/* =========================================
   1. UNIVERSAL RESET & FONTS
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    font-family: 'Poppins', sans-serif;
    background: #fdfdfd;
    color: #333;
    overflow-x: clip; 
    width: 100%;
    max-width: 100vw;
    position: relative;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* FIX: Scroll margin ensures anchor links don't hide behind sticky nav */
    scroll-padding-top: 80px; 
}

/* =========================================
   2. NAVIGATION BAR
   ========================================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Ensures everything is centered vertically */
    padding: 0 5%; /* Removed top/bottom padding to control height via height property */
    background: #ffffff;
    /* Fixed is better for cross-browser top-shift fixes */
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    height: 80px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

/* NEW: GLASSMORPHISM EFFECT ON SCROLL */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* LOGO FIX (Universal Alignment) */
.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%; /* Take full height of navbar */
}

/* Fix for the extra container if it exists on some pages */
.nav-logo-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-logo-img {
    height: 65px; /* Slightly reduced to fit within 80px bar comfortably */
    width: auto;
    object-fit: contain;
    display: block; /* Removes bottom space under image */
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #f39c12;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.logo-text span {
    color: #1a1a1a;
    display: block;
    font-size: 0.8em;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links li {
    margin-left: 25px;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a:hover {
    color: #f39c12;
}

.dropdown i, .dropdown-submenu i {
    font-size: 12px;
    transition: transform 0.3s ease;
    will-change: transform;
}

.dropdown:hover > a > i, .dropdown.active-dropdown > a > i {
    transform: rotate(180deg);
}

.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

/* =========================================
   3. NESTED DROPDOWN MENU (GLASS EFFECT UPGRADE)
   ========================================= */
.dropdown-menu {
    position: absolute;
    top: 80px;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(15px);
    
    width: 260px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-top: 4px solid #f39c12;
    border-radius: 0 0 8px 8px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 9999;
    display: block;
    will-change: transform, opacity;
}

.dropdown:hover > .dropdown-menu, .dropdown.active-dropdown > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0 !important;
    width: 100%;
    display: block;
    height: auto;
    position: relative; 
}

.dropdown-menu li a {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); 
    display: flex;
    justify-content: space-between; 
    align-items: center;
    width: 100%;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    transition: background 0.3s, color 0.3s, padding-left 0.3s;
}

.dropdown-menu li a:hover {
    background: rgba(243, 156, 18, 0.1); 
    color: #f39c12;
    padding-left: 25px;
}

/* LEVEL 2: FLYOUT SUBMENU */
.dropdown-submenu {
    position: relative; 
}

.dropdown-submenu .submenu {
    position: absolute; 
    top: 0;
    left: 100%; 
    
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(15px);
    
    width: 260px;
    margin-top: -4px; 
    border-top: 4px solid #f39c12;
    border-radius: 4px 8px 8px 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateX(20px); 
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    list-style: none;
    z-index: 10000;
}

.dropdown-submenu:hover > .submenu, .dropdown-submenu.active-dropdown > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-submenu .submenu li a {
    font-size: 13.5px;
}

/* GLOWING ACTIVE LINK EFFECT */
.nav-links .active-link {
    color: #f39c12 !important;
    font-weight: 700;
    position: relative;
    text-shadow: 0 0 10px rgba(243, 156, 18, 0.5); 
    animation: glowPulse 1.5s infinite alternate;
}

.nav-links .active-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: #f39c12;
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.8);
    border-radius: 2px;
}

@keyframes glowPulse {
    0% { text-shadow: 0 0 5px rgba(243, 156, 18, 0.4); }
    100% { 
        text-shadow: 0 0 20px rgba(243, 156, 18, 0.9), 0 0 10px rgba(243, 156, 18, 0.6);
        color: #e67e22 !important; 
    }
}

/* =========================================
   4. HERO & PAGE HEADERS (TOP SHIFT FIX APPLIED HERE)
   ========================================= */
.hero {
    height: 90vh;
    margin-top: 80px; /* FIX: Pushes the hero down by the height of the fixed navbar */
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/suraj-fabricator-peb-structure-gorakhpur.webp') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
}

.page-header {
    height: 60vh;
    margin-top: 80px; /* FIX: Pushes all sub-page headers down by the height of the fixed navbar */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content h1 span { color: #f39c12; }

.hero-content p {
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* Backgrounds */
.bg-about { background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images/suraj-fabricator-gorakhpur-established-2006.webp') no-repeat center center; background-size: cover; background-attachment: fixed; }
.bg-products { background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images/peb-industrial-shed-products.webp') no-repeat center center; background-size: cover; background-attachment: fixed; }
.bg-sectors { background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images/industrial-sectors-peb-construction-gorakhpur.webp') no-repeat center center; background-size: cover; background-attachment: fixed; }
.bg-projects { background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images/gida-factory-construction-projects.webp') no-repeat center center; background-size: cover; background-attachment: fixed; }
.bg-media { background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images/gida-factory-construction-media.webp') no-repeat center center; background-size: cover; background-attachment: fixed; }
.bg-blog { background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images/gida-factory-construction-blog.webp') no-repeat center center; background-size: cover; background-attachment: fixed; }
.bg-contact { background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images/gida-factory-construction-contact.webp') no-repeat center center; background-size: cover; background-attachment: fixed; }

.page-header h1 { font-size: 3rem; margin-bottom: 10px; }
.page-header h1 span { color: #f39c12; }

/* =========================================
   5. ABOUT SECTION & COUNTERS
   ========================================= */
.about-mission {
    position: relative;
    padding: 80px 8%;
    overflow: hidden;
    background-color: #f4f7f6;
    color: #333;
    width: 100%;
}

.about-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
    background-image: url('images/blueprint-bg1.webp');
    background-size: cover;
    background-position: center;
    will-change: transform;
    animation: panImage 20s ease-in-out infinite alternate;
}

@keyframes panImage {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(50px, 0, 0); }
}

.about-content-wrapper { position: relative; z-index: 2; }
.top-heading { text-align: center; margin-bottom: 50px; }
.about-container { display: flex; flex-wrap: wrap; gap: 50px; align-items: flex-start; }
.about-text { flex: 1; min-width: 300px; text-align: left; }
.about-text h3 { font-family: 'Outfit', sans-serif; font-size: 2.2rem; color: #1a1a1a; margin-bottom: 20px; }
.about-text p { margin-bottom: 18px; color: #555; line-height: 1.8; text-align: justify; }
.about-text h4 { font-size: 1.5rem; color: #333; margin: 30px 0 15px; border-left: 4px solid #f39c12; padding-left: 15px; }
.about-video { flex: 1; min-width: 300px; }

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    background: #000;
}
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

.counter-wrapper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 20px; }
.counter-box {
    background: #fff; border: 1px solid #ddd; padding: 15px 5px; text-align: center;
    border-radius: 10px; transition: transform 0.3s, border-color 0.3s; 
    transform: translateZ(0); backface-visibility: hidden; will-change: transform;
}
.counter-box:hover { transform: translateY(-5px); border-color: #f39c12; }
.counter-number {
    font-size: 1.8rem; font-weight: 700; color: #f39c12; display: block;
    font-family: 'Outfit', sans-serif; font-variant-numeric: tabular-nums; will-change: content; 
}
.counter-text { font-size: 0.9rem; color: #555; font-weight: 600; }

/* =========================================
   6. COMMON STYLES, CARDS & SECTORS
   ========================================= */
section { 
    padding: 80px 8%; 
    text-align: center; 
    overflow-x: hidden; 
    width: 100%; 
    max-width: 100vw; 
}

h2 { font-size: 2.5rem; margin-bottom: 40px; font-family: 'Outfit', sans-serif; color: #222; }
h2 span { color: #f39c12; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.btn {
    padding: 14px 35px; border-radius: 50px; text-decoration: none; font-weight: bold;
    background: #f39c12; color: #fff; display: inline-block; border: none; cursor: pointer;
    transition: transform 0.3s, background 0.3s; box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
    will-change: transform;
}
.btn:hover { background: #e67e22; transform: translateY(-3px); }

/* Basic Cards */
.card {
    background: #fff; border-radius: 15px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: transform 0.4s ease, border-bottom 0.4s ease; 
    text-align: left; padding: 40px; will-change: transform; border-bottom: 4px solid transparent;
}
.card:hover { transform: translateY(-10px); border-bottom-color: #f39c12; }
.card img { width: 100%; height: 220px; object-fit: cover; border-radius: 10px; margin-bottom: 15px; }
.card h3 { font-family: 'Outfit', sans-serif; color: #1a1a1a; margin-bottom: 10px; }
.card p { color: #666; line-height: 1.6; }

/* Sector Cards */
.sector-card {
    background: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-bottom-color 0.4s ease; 
    text-align: left; position: relative; padding: 0; border-bottom: 4px solid transparent; will-change: transform;
}
.sector-card:hover { transform: translateY(-12px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); border-bottom-color: #f39c12; }
.sector-img-box { position: relative; height: 220px; overflow: hidden; }
.sector-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; will-change: transform; }
.sector-card:hover .sector-img-box img { transform: scale(1.1); }
.sector-icon-box {
    position: absolute; bottom: -25px; right: 20px; width: 60px; height: 60px; background: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); font-size: 24px; color: #f39c12; border: 3px solid #f39c12; z-index: 2;
}
.sector-content { padding: 35px 25px 25px; }
.sector-content h3 { font-family: 'Outfit', sans-serif; font-size: 1.4rem; color: #1a1a1a; margin-bottom: 12px; font-weight: 700; }
.sector-content p { font-size: 0.95rem; color: #666; line-height: 1.6; margin-bottom: 20px; }
.read-more-btn {
    display: inline-block; padding: 10px 20px; background: #f4f4f4; color: #333; text-decoration: none;
    font-weight: 600; border-radius: 30px; font-size: 0.9rem; transition: transform 0.3s ease, background 0.3s ease;
    will-change: transform;
}
.sector-card:hover .read-more-btn { background: #f39c12; color: #fff; box-shadow: 0 0 15px rgba(243, 156, 18, 0.6); transform: translateX(5px); }

/* =========================================
   7. EXPERIENCE, GALLERY, REVIEWS & BRANDS
   ========================================= */
.experience-section { background-color: #CFC7B8; padding: 100px 8%; display: flex; justify-content: center; align-items: center; overflow: hidden; width: 100%; }
.experience-container { display: flex; gap: 80px; align-items: center; justify-content: center; flex-wrap: wrap; max-width: 1400px; width: 100%; }
.exp-map-area { flex: 0 0 350px; text-align: center; }
.map-video-box {
    position: relative; border-radius: 20px; border: 2px solid rgba(243, 156, 18, 0.5); overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.3); transform: rotateY(-10deg) rotateX(5deg); transition: transform 0.5s ease;
}
.map-video-box video { width: 100%; display: block; }
.exp-skills-area { flex: 1; max-width: 600px; text-align: left; }
.skill-item { margin-bottom: 30px; }
.skill-info { display: flex; justify-content: space-between; margin-bottom: 10px; font-weight: 700; color: #222; }
.progress-bar-bg { width: 100%; height: 16px; background: rgba(0, 0, 0, 0.1); border-radius: 30px; overflow: hidden; }
.progress-bar-fill { height: 100%; background: linear-gradient(90deg, #f39c12, #e67e22); width: 0; border-radius: 30px; }

/* FIX: Removing Side Space to make Gallery Edge-to-Edge */
.full-width-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100vw;
    overflow: hidden;
}

/* Breathing Animation for Arrows */
@keyframes breathePulse {
    0% { transform: translateY(-50%) scale(1); box-shadow: 0 4px 10px rgba(243, 156, 18, 0.4); }
    50% { transform: translateY(-50%) scale(1.15); box-shadow: 0 8px 20px rgba(243, 156, 18, 0.8); }
    100% { transform: translateY(-50%) scale(1); box-shadow: 0 4px 10px rgba(243, 156, 18, 0.4); }
}

@media (min-width: 901px) {
    .gallery-btn { display: none; } /* Hide arrows on PC */
    /* Add back a little padding for PC Grid so it doesn't touch exact edges */
    .full-width-section .gallery-grid {
        padding-left: 8%;
        padding-right: 8%;
    }
}

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.gallery-item { overflow: hidden; border-radius: 12px; height: 250px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; will-change: transform; }
.gallery-item:hover img { transform: scale(1.1); }

.slider-container { overflow: hidden; white-space: nowrap; position: relative; padding: 20px 0; width: 100%; max-width: 100vw; }
.slider-track { display: flex; gap: 40px; width: max-content; animation: scroll 20s linear infinite; will-change: transform; }
@keyframes scroll { 0% { transform: translate3d(0,0,0); } 100% { transform: translate3d(-50%,0,0); } }

.review-box { background: #fdfdfd; padding: 30px; border-radius: 15px; text-align: left; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #eee; min-width: 350px; white-space: normal; }
.client-info h3 { color: #f39c12; margin-top: 15px; font-size: 1.1rem; }
.stars { color: #f39c12; font-size: 14px; }

.brand-logo { height: 70px; width: auto; filter: grayscale(100%); opacity: 0.6; transition: filter 0.4s, opacity 0.4s; margin: 0 20px; }
.brand-logo:hover { filter: grayscale(0%); opacity: 1; }

/* =========================================
   8. FOOTER & FLOATING BTNS
   ========================================= */
footer { background-color: #1a1a1a; color: #fff; padding: 70px 8% 30px; text-align: left; width: 100%; overflow: hidden; }

.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 30px; }
.footer-links, .footer-contact { border-left: 1px solid rgba(255, 255, 255, 0.15); padding-left: 30px; }

.footer-brand h2 { font-size: 28px; margin-bottom: 20px; color: #f39c12; font-family: 'Outfit', sans-serif;}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { color: #ccc; text-decoration: none; transition: color 0.3s, padding-left 0.3s; }
.footer-links ul li a:hover { color: #f39c12; padding-left: 5px; }
.footer-item { margin-bottom: 20px; }
.footer-label { font-weight: bold; color: #fff; margin-bottom: 5px; }
.footer-value { color: #ccc; font-size: 0.95rem; }
.social-icons { display: flex; gap: 15px; margin-top: 15px; }
.social-btn { width: 45px; height: 45px; background: #333; color: #fff; display: flex; align-items: center; justify-content: center; border-radius: 5px; text-decoration: none; transition: transform 0.3s, background 0.3s; will-change: transform; }
.social-btn:hover { background: #f39c12; transform: translateY(-3px); }
.copyright { border-top: 1px solid #333; margin-top: 50px; padding-top: 20px; text-align: center; color: #aaa; font-size: 14px; }

.float-container { position: fixed; bottom: 30px; right: 30px; z-index: 10001; display: flex; flex-direction: column; gap: 15px; }
.float-btn { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; color: #fff; text-decoration: none; box-shadow: 0 5px 15px rgba(0,0,0,0.3); border: 2px solid #fff; transition: transform 0.3s; will-change: transform; }
.wa-float { background: #25d366; } .call-float { background: #f39c12; } .float-btn:hover { transform: scale(1.1); }

/* NEW & FIXED: FAB MENU CSS ADDED GLOBALLY */
#sf-draggable-container { position: fixed; bottom: 30px; left: 30px; z-index: 9999; display: flex; flex-direction: column-reverse; align-items: center; touch-action: none; }
.sf-fab-menu { display: flex; flex-direction: column-reverse; align-items: center; gap: 15px; margin-bottom: 15px; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s ease; }

/* ✅ FIX: Name changed to match JavaScript's .show-menu */

.sf-fab-menu.show-menu, .sf-fab-menu.sf-show { opacity: 1; visibility: visible; transform: translateY(0); }

.sf-menu-item { background-color: #ffffff; color: #333; padding: 10px 20px; border-radius: 30px; text-decoration: none; font-weight: bold; font-size: 14px; box-shadow: 0 4px 10px rgba(0,0,0,0.2); display: flex; align-items: center; gap: 8px; border: 2px solid #d32f2f; white-space: nowrap; }
.sf-menu-item:hover { background-color: #ffebee; }
.sf-fab-main { width: 65px; height: 65px; background-color: #d32f2f; color: white; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 28px; box-shadow: 0 5px 15px rgba(211, 47, 47, 0.5); cursor: grab; border: none; outline: none; user-select: none; }
.sf-fab-main:active { cursor: grabbing; }

/* =========================================
   10. GLOBAL CTA BANNER STYLE
   ========================================= */
.cta-banner { 
    background: linear-gradient(135deg, #f39c12, #e67e22); 
    padding: 80px 8%; 
    text-align: center; 
    color: #fff; 
    width: 100%;
    overflow-x: hidden; 
}

.cta-banner h2 { 
    color: #fff !important; 
    font-size: 2.5rem; 
    margin-bottom: 15px; 
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.cta-banner p { 
    font-size: 1.2rem; 
    margin-bottom: 35px; 
    color: #fff; 
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn-dark { 
    background: #1a1a1a; 
    color: #fff; 
    padding: 16px 45px; 
    border-radius: 50px; 
    font-size: 1.1rem; 
    font-weight: bold; 
    text-decoration: none; 
    display: inline-block; 
    transition: transform 0.4s ease, background 0.4s, box-shadow 0.4s; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-btn-dark:hover { 
    background: #fff; 
    color: #1a1a1a; 
    transform: translateY(-5px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.3); 
}


/* =========================================
   11. MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
    .menu-icon { 
        display: block; 
        position: relative; 
        z-index: 10005; 
    }
    footer { padding-bottom: 120px; }
    
    .footer-content { 
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    
    .footer-links, .footer-contact {
        border-left: none; 
        border-top: 1px solid rgba(255, 255, 255, 0.15); 
        padding-left: 0;
        padding-top: 25px;
        margin-top: 10px;
    }

    .social-icons { position: relative; z-index: 50; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        
        /* MOBILE GLASSMORPHISM ADDED HERE */
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(15px);
        
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 40px;
        transition: right 0.4s ease-in-out;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        overflow-y: auto;
    }

    .nav-links.active { right: 0; }
    .nav-links li { margin: 15px 0; width: 100%; display: block; height: auto; }
    .nav-links a { font-size: 18px; justify-content: space-between; }

    /* RESET NESTED MENU FOR MOBILE (ACCORDION STYLE) */
    .dropdown-menu, .dropdown-submenu .submenu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        border-radius: 0;
        opacity: 0;
        visibility: hidden;
        transform: none;
        display: none;
        padding: 5px 0 5px 15px;
        background: transparent; 
        transition: none;
    }

    .dropdown.active-dropdown > .dropdown-menu,
    .dropdown-submenu.active-dropdown > .submenu {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .dropdown-menu li a {
        padding: 10px 15px;
        font-size: 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05); 
    }

    .dropdown-menu li a i {
        float: right;
        margin-top: 4px;
    }

    .hero { background-attachment: scroll; }
    .experience-container { flex-direction: column; gap: 40px; }
    .map-video-box { transform: none; width: 100%; }

    .hero-content h1 { font-size: 2.8rem; }
    .float-btn { width: 45px; height: 45px; font-size: 22px; }
    .sf-fab-main { width: 50px; height: 50px; font-size: 22px; }
    .float-container { bottom: 15px; right: 15px; gap: 10px; }
    #sf-draggable-container { bottom: 15px; left: 15px; }
    .sf-menu-item { padding: 8px 15px; font-size: 12px; }

    /* Mobile Gallery Slider */
    .gallery-wrapper { position: relative; display: block; width: 100%; }
    .gallery-btn {
        position: absolute; top: 40%; transform: translateY(-50%);
        background: #f39c12; color: #fff; border: none;
        width: 40px; height: 40px; border-radius: 50%;
        z-index: 10; cursor: pointer; display: flex;
        justify-content: center; align-items: center;
        transition: background 0.3s;
        animation: breathePulse 2.5s infinite ease-in-out;
    }
    .gallery-btn:hover { background: #1a1a1a; animation-play-state: paused; transform: translateY(-50%) scale(1.1); }
    .left-btn { left: 10px; }
    .right-btn { right: 10px; }
    
    .gallery-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 20px;
        padding-left: 15px; 
        padding-right: 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; 
        scroll-behavior: smooth; 
    }
    .gallery-grid::-webkit-scrollbar { display: none; }
    .gallery-grid .gallery-item {
        flex: 0 0 85%; 
        scroll-snap-align: center;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .cta-banner h2 { font-size: 1.8rem; }
    .cta-banner p { font-size: 1rem; }
}