:root {
    /* ==========================
       NEW RED/ORANGE THEME COLORS
       ========================== */
    --color-red-primary: #E02124;         /* (Red Primary/Dark) */
    --color-orange-secondary: #F48C06;    /* (Orange Secondary) */
    --color-white: #FFFFFF;
    --color-dark-text: #0D0D0D;           /* (Dark Text) */

    /* MAPPING OLD VARIABLES TO NEW LOGIC */
    --primary: var(--color-red-primary);    /* New Red: #E02124 */
    --secondary: var(--color-orange-secondary); /* New Orange: #F48C06 */
    --medium-pink: var(--color-red-primary); /* Mapped to Primary Red */
    --light-pink: #FEEBC8; /* Mapped to a light orange/peach for subtle backgrounds */
    --white: var(--color-white);
    --text-dark: var(--color-dark-text);
    --text-light: #E2E8F0; /* Kept light text as grey/white */
    --footer-bg: var(--primary);
    --footer-accent: var(--secondary);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}








/* Hero Section */
.hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Hardcoded pink gradient changed to Red/Orange variables */
    background:linear-gradient(135deg, #ff000045, #7a7474b6),
        url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?w=1400&h=400&fit=crop');
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

@media (max-width: 992px) {
    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 40px;
    }

    .breadcrumb {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
        text-align: center;
    }

    .breadcrumb {
        gap: 6px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }

    .breadcrumb {
        font-size: 13px;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    /* Used new light pink (light orange/peach) variable */
    /* background: var(--light-pink); */
    background: #ffffff;
}

.gallery-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    /* Used new primary red variable */
    color: var(--primary);
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    /* Hardcoded pink shadow changed to a red shadow */
    box-shadow: 0 4px 15px rgba(224, 33, 36, 0.2); 
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

@media (max-width: 992px) {
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .gallery-grid {
        gap: 16px;
    }

    .gallery-grid img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .gallery-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .gallery-grid img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 40px 0;
    }

    .gallery-title {
        font-size: 22px;
    }

    .gallery-grid {
        gap: 12px;
    }

    .gallery-grid img {
        height: 180px;
        border-radius: 10px;
    }
}




/* ========== BACK TO TOP & FLOATING ACTION BUTTONS ========== */
.back-to-top-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1100;
}

#backToTopBtn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1E88E5;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

#backToTopBtn:hover {
    filter: brightness(0.95);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    transform: translateY(-4px);
}

#backToTopBtn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-social-container {
    position: fixed;
    bottom: 110px;
    right: 30px;
    left: auto;
    z-index: 1201;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.floating-social-menu {
    display: flex;
    flex-direction: column;
    gap: 14px;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
}

/* Individual Social Buttons */
.floating-social-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 1;
    transform: scale(1);
}

/* Individual Button Colors */
.btn-call {
    background: #1E88E5;
}

.btn-whatsapp {
    background: #25D366;
}

.floating-social-btn[aria-label="instagram"],
.floating-social-btn[data-tooltip="instagram"] {
    background: linear-gradient(45deg, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%);
    color: #ffffff;
}

.btn-facebook {
    background: #1877F2;
}

.btn-youtube {
    background: #FF0000;
}

/* Hover Effects */
.floating-social-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

.floating-social-btn i {
    transition: transform 0.3s ease;
}

.floating-social-btn:hover i {
    transform: rotate(360deg);
}






@media (max-width: 480px) {
    .footer-logo h3 {
        font-size: 18px;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
    }

    .footer-developed p {
        font-size: 12px;
        flex-direction: column;
        gap: 4px;
    }
}


.floating-social-btn .fa-brands{
    color: white;
}