@charset "UTF-8";
/* ==========================================================================
   GLASTRES GREENS - ENTERPRISE UPGRADE CSS (V3.0 TOUCH-MASTER)
   ========================================================================== */

/* ------------------------------------
   1. CORE VARIABLES & UNIVERSAL RESETS
------------------------------------ */
:root {
    --color-forest: #0a1f15;
    --color-gold: #c3a343;
    --color-gold-hover: #b08d33;
    --color-text-dark: #1f2937;
    --color-text-muted: #555b66;
    --color-bg-light: #f7f9f8;
    --color-white: #ffffff;
    --color-border: #e5e7eb;
    
    --font-primary: 'Roboto', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 24px -8px rgba(0,0,0,0.12);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    overflow-x: hidden; 
    width: 100%;
    max-width: 100vw;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading); color: var(--color-forest); font-weight: 700; margin-top: 0; letter-spacing: -0.01em;
}

a { color: var(--color-gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-gold-hover); text-decoration: none; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.bg-light-surface { background-color: var(--color-bg-light); }
.pt-0 { padding-top: 0 !important; }

/* ------------------------------------
   2. HEADER STRUCTURE
------------------------------------ */
.site-header {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 9999;
    padding: 10px 0;
    width: 100%;
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.header-inner { display: flex; align-items: center; justify-content: space-between; position: relative; width: 100%; }
.logo-wrapper { z-index: 10000; }
.logo-wrapper img { height: 60px; width: auto; transition: var(--transition); }
.logo-wrapper img:hover { transform: scale(1.02); }

/* ------------------------------------
   3. DESKTOP NAVIGATION (LUXURY UPGRADE)
------------------------------------ */
#navigation, #navigation ul, #navigation ul li, #navigation ul li a {
    margin: 0; padding: 0; border: 0; list-style: none; line-height: 1; display: block; box-sizing: border-box;
}

#navigation { font-family: var(--font-heading); }
#navigation > ul { display: flex; justify-content: flex-end; align-items: center; }
#navigation > ul > li { margin: 0 10px; position: relative; }

#navigation > ul > li > a {
    padding: 24px 10px;
    font-size: 14px;
    color: var(--color-forest);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

/* Elegant Desktop Hover Line */
#navigation > ul > li > a::after {
    content: ''; position: absolute; bottom: 15px; left: 10px; width: 0; height: 2px; background: var(--color-gold); transition: width 0.3s ease;
}
#navigation > ul > li:hover > a::after, #navigation > ul > li.active > a::after { width: calc(100% - 20px); }
#navigation > ul > li:hover > a, #navigation > ul > li.active > a { color: var(--color-gold); }

/* Desktop Dropdown Indicators */
#navigation > ul > li.has-sub > a { padding-right: 22px; }
#navigation > ul > li.has-sub > a:before {
    position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-family: FontAwesome; content: "\f107"; transition: transform 0.3s ease; font-weight: 400;
}
#navigation > ul > li.has-sub:hover > a:before { transform: translateY(-50%) rotate(180deg); }

/* Desktop Dropdown Window */
#navigation ul ul {
    position: absolute; left: -9999px; top: 100%;
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    border: 1px solid var(--color-border);
    padding: 10px 0;
    z-index: 1000;
    width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

#navigation li:hover > ul {
    left: 0; opacity: 1; visibility: visible; transform: translateY(0);
}

#navigation ul ul li a {
    padding: 14px 24px; font-size: 13px; color: var(--color-text-muted); font-weight: 600; transition: var(--transition);
}
#navigation ul ul li:hover > a { background: var(--color-bg-light); color: var(--color-gold); padding-left: 30px; }

/* Hidden mobile button on desktop */
#navigation #menu-button { display: none; }

/* ------------------------------------
   4. HERO BANNERS (DESKTOP)
------------------------------------ */
.hero-banner-main,
.hero-banner-secondary {
    position: relative; width: 100%; height: 100vh; height: 100svh; background-size: cover; background-position: center; background-repeat: no-repeat; margin: 0; padding: 0; box-shadow: none; border: none; overflow: hidden;
}

.hero-banner-main::before, .hero-banner-main::after,
.hero-banner-secondary::before, .hero-banner-secondary::after {
    display: none !important;
}

.hero-banner-bg-1 { background-image: url('images/rectangle-planter.webp'); }
.hero-banner-bg-2 { background-image: url('https://www.glastresgreens.com/images/3.png'); }
.hero-content-seo { position: absolute; opacity: 0; visibility: hidden; z-index: -100; pointer-events: none; height: 0; width: 0; overflow: hidden; }

/* ------------------------------------
   5. GENERAL SECTIONS & MASTER HEADINGS
------------------------------------ */
.content-section, .premium-grid-section, .premium-features-section, .master-section { padding: clamp(60px, 8vw, 100px) 0; width: 100%; }
.master-header { max-width: 800px; margin: 0 auto 50px; }
.overline-text { display: block; color: var(--color-gold); font-family: var(--font-heading); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 15px; }
.master-heading { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.2; margin-bottom: 25px; }
.master-lead { font-size: 1.15rem; color: var(--color-text-muted); line-height: 1.8; }

/* ------------------------------------
   6. PREMIUM CARD LAYOUTS
------------------------------------ */
.premium-post-card { background: var(--color-white); border-radius: 16px; padding: 40px; box-shadow: var(--shadow-md); transition: var(--transition); height: 100%; }
.premium-post-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.post-img-gallery { display: flex; flex-direction: column; gap: 20px; }
.post-img-gallery img { width: 100%; border-radius: 12px; object-fit: cover; box-shadow: var(--shadow-sm); }
.post-text-content h2, .post-text-content h3 { font-size: 1.8rem; margin-bottom: 20px; }
.post-text-content h2 a, .post-text-content h3 a { color: var(--color-forest); }
.post-text-content p { font-size: 1.05rem; color: var(--color-text-muted); margin-bottom: 20px; }
.premium-feature-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-top: 30px; }
.premium-feature-list li { position: relative; padding-left: 25px; font-size: 0.95rem; color: var(--color-forest); }
.premium-feature-list li::before { content: '\f00c'; font-family: 'FontAwesome'; position: absolute; left: 0; color: var(--color-gold); font-size: 0.9rem; }

/* ------------------------------------
   7. LUXURY PRODUCT GRID
------------------------------------ */
.custom-flex-row { display: flex; flex-wrap: wrap; align-items: stretch; margin: -15px; }
.custom-flex-row > * { padding: 15px; width: 33.333%; } 
.luxury-product-card, .luxury-highlight-card { background: var(--color-white); border: 1px solid var(--color-border); border-radius: 12px; padding: 0; overflow: hidden; height: 100%; display: flex; flex-direction: column; transition: var(--transition); position: relative; }
.luxury-product-card:hover, .luxury-highlight-card:hover { box-shadow: var(--shadow-hover); border-color: var(--color-gold); transform: translateY(-8px); }
.card-img-wrap { position: relative; width: 100%; padding-top: 85%; background: var(--color-white); border-radius: 0; margin-bottom: 0; overflow: hidden; border-bottom: 1px solid var(--color-border); }
.card-img-wrap img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.luxury-product-card:hover .card-img-wrap img, .luxury-highlight-card:hover .card-img-wrap img { transform: scale(1.08); }
.card-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.card-content h2, .luxury-highlight-card h3 { font-size: 1.4rem; margin-bottom: 10px; margin-top: 0; }
.card-content p { margin: 0 0 8px; font-size: 0.95rem; color: var(--color-text-muted); }
.badge-premium { position: absolute; top: 15px; right: 15px; background: var(--color-forest); color: var(--color-gold); font-size: 0.75rem; font-weight: 700; padding: 6px 16px; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; z-index: 2; }
.luxury-highlight-card h3 { padding: 25px 25px 0; }
.luxury-highlight-card p { padding: 0 25px; margin: 0 0 8px; font-size: 0.95rem; color: var(--color-text-muted); }
.spec-list { list-style: none; padding: 20px 25px 25px; margin: auto 0 0; border-top: 1px solid var(--color-border); }
.spec-list li { font-size: 0.95rem; font-weight: 600; display: flex; align-items: center; gap: 10px; margin-bottom: 8px;}
.spec-list li:last-child { margin-bottom: 0; }
.spec-list li::before { content: ''; display: inline-block; width: 6px; height: 6px; background: var(--color-gold); border-radius: 50%; }

/* ------------------------------------
   8. EDITORIAL & FEATURES
------------------------------------ */
.editorial-box { background: var(--color-white); padding: 40px; border-radius: 12px; height: 100%; box-shadow: var(--shadow-sm); }
.premium-check-list { list-style: none; padding: 0; margin: 25px 0 0; }
.premium-check-list li { padding-left: 30px; margin-bottom: 15px; position: relative; line-height: 1.6; }
.premium-check-list li::before { content: '\f105'; font-family: 'FontAwesome'; position: absolute; left: 0; color: var(--color-gold); font-size: 1.2rem; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; }
.feature-tags li { padding: 8px 16px; background: var(--color-bg-light); border: 1px solid var(--color-border); border-radius: 50px; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; }
.made-in-india-badge { margin-top: 30px; width: 120px; }
.editorial-list { list-style: none; padding: 0; margin: 40px 0 0; }
.editorial-list li { display: flex; gap: 20px; margin-bottom: 30px; }
.editorial-icon { width: 40px; height: 40px; background: rgba(195, 163, 67, 0.15); color: var(--color-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.editorial-text h4 { margin-bottom: 8px; font-size: 1.2rem; }
.editorial-text p { margin: 0; color: var(--color-text-muted); }
.image-showcase { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }

/* ------------------------------------
   9. BESPOKE BANNER
------------------------------------ */
.bespoke-module { background: linear-gradient(135deg, var(--color-forest) 0%, #153625 100%); padding: 80px 40px; border-radius: 20px; text-align: center; color: var(--color-white); box-shadow: var(--shadow-lg); max-width: 1000px; margin: 0 auto; }
.bespoke-module h2 { color: var(--color-gold); margin-bottom: 20px; }
.bespoke-module p { font-size: 1.1rem; max-width: 750px; margin: 0 auto 30px; opacity: 0.9; }
.bespoke-module .bespoke-note { font-size: 0.9rem; font-style: italic; opacity: 0.6; margin-bottom: 40px; }
.btn-luxury { display: inline-block; background: var(--color-gold); color: var(--color-forest); padding: 16px 40px; border-radius: 50px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border: 2px solid var(--color-gold); }
.btn-luxury:hover { background: transparent; color: var(--color-gold); }

/* ------------------------------------
   10. FAQ ACCORDION
------------------------------------ */
.faq-container { max-width: 800px; margin: 0 auto; }
.minimal-accordion { border-bottom: 1px solid var(--color-border); margin-bottom: 5px; }
.minimal-accordion summary { padding: 25px 40px 25px 0; font-size: 1.15rem; font-weight: 700; color: var(--color-forest); cursor: pointer; list-style: none; position: relative; outline: none; transition: var(--transition); }
.minimal-accordion summary::-webkit-details-marker { display: none; }
.minimal-accordion summary::after { content: '\f107'; font-family: 'FontAwesome'; position: absolute; right: 10px; top: 50%; transform: translateY(-50%); color: var(--color-gold); transition: transform 0.4s ease; }
.minimal-accordion[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.minimal-accordion[open] summary { color: var(--color-gold); }
.minimal-accordion p { padding: 0 40px 25px 0; color: var(--color-text-muted); font-size: 1.05rem; }

/* ------------------------------------
   11. SEO IMAGE GALLERY
------------------------------------ */
.seo-gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.gallery-figure { background: var(--color-white); border-radius: 12px; overflow: hidden; margin: 0; border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); transition: var(--transition); display: flex; flex-direction: column; }
.gallery-figure:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--color-gold); }
.gallery-img-box { position: relative; width: 100%; padding-top: 80%; overflow: hidden; background: var(--color-bg-light); border-bottom: 1px solid var(--color-border); }
.gallery-img-box img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; padding: 30px; object-fit: contain; transition: transform 0.6s ease; }
.gallery-figure:hover .gallery-img-box img { transform: scale(1.08); }
.gallery-caption { padding: 25px; text-align: center; flex-grow: 1; background: var(--color-white); }
.gallery-caption h4 { margin-bottom: 10px; }
.gallery-caption p { margin: 0; font-size: 0.95rem; color: var(--color-text-muted); }

/* ------------------------------------
   12. FOOTER
------------------------------------ */
.master-footer { background: #050a07; color: #9ca3af; padding: 80px 0 30px; border-top: 4px solid var(--color-gold); width: 100%; }
.footer-heading { color: var(--color-white); font-size: 1.1rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 25px; }
.footer-contact, .footer-nav, .social-links { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 15px; margin-bottom: 20px; line-height: 1.5; }
.footer-contact i { color: var(--color-gold); margin-top: 4px; }
.footer-contact a, .footer-nav a { color: #9ca3af; }
.footer-contact a:hover { color: var(--color-gold); }
.footer-nav li { margin-bottom: 12px; }
.footer-nav a:hover { color: var(--color-gold); transform: translateX(5px); display: inline-block; }
.newsletter-form { display: flex; margin-top: 25px; width: 100%; }
.newsletter-form input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 15px; border-radius: 6px 0 0 6px; color: var(--color-white); outline: none; width: 100%; }
.newsletter-form input:focus { border-color: var(--color-gold); }
.newsletter-form button { background: var(--color-gold); color: var(--color-forest); border: none; padding: 0 25px; border-radius: 0 6px 6px 0; font-weight: 700; text-transform: uppercase; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.newsletter-form button:hover { background: var(--color-white); }
.trust-badge { margin-top: 30px; }
.trust-badge img { filter: grayscale(1); transition: filter 0.3s; border-radius: 4px; }
.trust-badge img:hover { filter: grayscale(0); }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 60px; padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 40px; height: 40px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-white); }
.social-links a:hover { background: var(--color-gold); color: var(--color-forest); transform: translateY(-3px); }

/* ------------------------------------
   13. FLOATING WHATSAPP
------------------------------------ */
.floating-whatsapp { position: fixed; bottom: 30px; right: 30px; z-index: 9999; background: #25d366; border-radius: 50%; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); transition: var(--transition); }
.floating-whatsapp:hover { transform: scale(1.1); }
.floating-whatsapp img { width: 35px; height: 35px; }


/* ==========================================================================
   14. RESPONSIVE OPTIMIZATION (TABLET & MOBILE)
   ========================================================================== */

/* --- TABLET DEVICES (768px to 991px) --- */
@media (max-width: 991px) {
    .custom-flex-row > * { width: 50%; } 
    .editorial-content { text-align: center; margin-bottom: 40px; }
    .master-heading.text-left, .master-lead.text-left { text-align: center; }
    .editorial-list li { flex-direction: column; align-items: center; text-align: center; }
    .row-reverse .row { flex-direction: column; }
    .premium-post-card { padding: 30px; }
    .master-footer .row > * { width: 50%; margin-bottom: 40px; flex: 0 0 50%; }
}

/* --- MOBILE DEVICES (Under 767px) --- */
@media (max-width: 767px) {
    
    /* 1. HEADER & LOGO FIX (Stacked beautifully) */
    .site-header { padding: 15px 0 10px; }
    
    .header-inner {
        display: flex !important;
        flex-direction: column !important; 
        align-items: stretch !important;
        justify-content: flex-start !important;
    }
    
    .logo-wrapper { 
        display: flex; justify-content: center; width: 100%; margin-bottom: 10px; 
    }
    .logo-wrapper img { height: 45px !important; max-width: 100%; margin: 0 auto; }

    /* 2. MOBILE MENU & TOUCH OPTIMIZATIONS */
    #navigation.small-screen { width: 100%; position: relative; }

    /* The Hamburger Button */
    #navigation.small-screen #menu-button {
        font-size: 0 !important; color: transparent !important; 
        display: flex !important; align-items: center; justify-content: flex-start; 
        width: 100%; height: 35px; position: relative; z-index: 10000; padding: 0; cursor: pointer;
    }

    #navigation.small-screen #menu-button:before {
        content: ''; position: absolute; top: 8px; left: 0; width: 30px; height: 3px; background: var(--color-forest); box-shadow: 0 9px 0 0 var(--color-forest); transition: var(--transition); border-radius: 2px;
    }

    #navigation.small-screen #menu-button:after {
        content: ''; position: absolute; top: 26px; left: 0; width: 30px; height: 3px; background: var(--color-forest); transition: var(--transition); border-radius: 2px;
    }

    /* Hamburger to 'X' Animation */
    #navigation.small-screen #menu-button.menu-opened:before {
        top: 17px; transform: rotate(45deg); box-shadow: none;
    }
    #navigation.small-screen #menu-button.menu-opened:after {
        top: 17px; transform: rotate(-45deg);
    }

    /* Primary Dropdown Menu List */
    #navigation.small-screen > ul {
        display: none; /* Controlled completely by your JS */
        flex-direction: column; width: 100%; margin: 0; padding: 0;
        position: absolute; top: 100%; left: 0;
        background: var(--color-white); box-shadow: var(--shadow-lg); z-index: 9990; border-top: 1px solid var(--color-border);
    }
    
    #navigation.small-screen > ul > li {
        width: 100%; display: block; margin: 0; border-bottom: 1px solid var(--color-border); position: relative;
    }

    #navigation.small-screen > ul > li > a {
        width: 100%; display: block; padding: 18px 20px; text-align: left; font-size: 15px; font-weight: 700; color: var(--color-forest);
    }
    
    /* 3. THE SUB-MENU FIX (Massive touch target and working expansion) */
    
    /* Allow JS to toggle display freely by not using !important */
    #navigation.small-screen ul ul {
        display: none; 
        position: relative; left: 0; top: 0; width: 100%;
        margin: 0; padding: 0; box-shadow: none; border: none; opacity: 1; visibility: visible; transform: none; background: var(--color-bg-light);
    }

    #navigation.small-screen ul ul li a {
        padding: 16px 20px 16px 40px; /* Indented for visual hierarchy */
        font-size: 14px; font-weight: 500; border-bottom: 1px solid var(--color-border);
    }
    
    /* The clickable massive dropdown toggle box (+/-) */
    #navigation.small-screen .submenu-button {
        position: absolute; right: 0; top: 0; z-index: 10;
        width: 60px; /* HUGE touch target */
        height: 55px; /* Matches the exact height of the link */
        border-left: 1px solid var(--color-border);
        cursor: pointer; display: flex; align-items: center; justify-content: center; background: var(--color-white);
    }

    /* The Plus Icon */
    #navigation.small-screen .submenu-button:before {
        content: ''; position: absolute; width: 14px; height: 2px; background: var(--color-forest); transition: transform 0.3s ease;
    }
    #navigation.small-screen .submenu-button:after {
        content: ''; position: absolute; width: 2px; height: 14px; background: var(--color-forest); transition: transform 0.3s ease;
    }

    /* The Minus Icon (When submenu is opened by JS) */
    #navigation.small-screen .submenu-button.submenu-opened:after {
        transform: rotate(90deg); opacity: 0;
    }
    #navigation.small-screen .submenu-button.submenu-opened {
        background: var(--color-bg-light);
    }

    /* 4. HERO BANNER ANTI-PADDING FIX */
    .hero-banner-main, 
    .hero-banner-secondary {
        height: 0 !important;
        min-height: 0 !important;
        padding-bottom: 125% !important; /* Forces the box to match image proportions perfectly */
        background-size: cover !important; 
        background-position: center top !important;
        background-color: transparent !important;
    }
    
    /* 5. GRIDS & PADDING MOBILE OPTIMIZATION */
    .custom-flex-row { margin: 0; }
    .custom-flex-row > * { width: 100%; padding: 0 0 30px 0; }
    .seo-gallery-grid { grid-template-columns: 1fr; }
    .content-section, .premium-grid-section, .premium-features-section, .master-section { padding: 50px 0; }
    .master-header { margin-bottom: 30px; }
    .master-heading { font-size: 2rem; }
    .premium-post-card, .editorial-box, .bespoke-module { padding: 25px 20px; }
    .premium-feature-list { grid-template-columns: 1fr; }
    .card-img-wrap { padding-top: 75%; } 
    .card-content h2, .luxury-highlight-card h3 { font-size: 1.25rem; }
    .btn-luxury { padding: 14px 30px; width: 100%; text-align: center; font-size: 0.9rem; }
    
    /* 6. FOOTER MOBILE OPTIMIZATION */
    .master-footer { padding: 50px 0 20px; text-align: center; }
    .master-footer .row > * { width: 100%; margin-bottom: 40px; flex: 0 0 100%; }
    .footer-contact li { flex-direction: column; align-items: center; gap: 5px; }
    .footer-contact i { margin-top: 0; margin-bottom: 5px; font-size: 1.2rem; }
    .newsletter-form { flex-direction: column; width: 100%; }
    .newsletter-form input { border-radius: 6px; margin-bottom: 10px; text-align: center; width: 100%; padding: 16px; }
    .newsletter-form button { border-radius: 6px; padding: 16px; width: 100%; }
    .footer-legal { flex-direction: column; text-align: center; gap: 15px; }
    .social-links { justify-content: center; width: 100%; margin-top: 15px; }
    
    /* 7. FLOATING WHATSAPP */
    .floating-whatsapp { bottom: 20px; right: 20px; width: 50px; height: 50px; }
    .floating-whatsapp img { width: 30px; height: 30px; }
}