/* =========================================
   LUXURY EVENTS — MASTER STYLESHEET
   Brand: Warm Gold (#d4af37) + Deep Navy (#003b52) + Cream (#fffef2)
   Last updated: 2026-05-30
========================================= */

/* =========================================
   1. DESIGN TOKENS (CSS VARIABLES)
========================================= */
:root {
    /* Core brand colours */
    --gold:          #d4af37;
    --gold-dark:     #b8960c;
    --gold-light:    #f0e0a0;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f0d060 50%, #c9a227 100%);
    --dark:          #003b52;
    --dark-deep:     #002535;
    --text:          #222222;
    --text-muted:    #666666;
    --bg:            #fffef2;
    --white:         #ffffff;
    --border-light:  #ebe8da;

    /* Shadows */
    --shadow-card:   0 8px 30px rgba(0, 59, 82, 0.08);
    --shadow-gold:   0 8px 30px rgba(212, 175, 55, 0.20);
    --shadow-hover:  0 16px 40px rgba(212, 175, 55, 0.30);

    /* Typography */
    --font-body:     "Poppins", sans-serif;
    --font-display:  "Montserrat", sans-serif;
    --font-script:   "Allura", cursive;

    /* Spacing */
    --section-gap:   60px;
    --radius-card:   20px;
    --radius-pill:   50px;

    /* Transitions */
    --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =========================================
   2. GLOBAL RESET & BASE
========================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* overflow-x on html (not body) so position:fixed elements still work correctly on mobile */
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    /* Do NOT set overflow-x here — breaks position:fixed on iOS/Android */
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

/* =========================================
   3. HEADER & NAVIGATION
========================================= */
.site-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 6px 0 10px;
    /* Refined shadow instead of a harsh black border */
    box-shadow: 0 2px 20px rgba(0, 59, 82, 0.10);
    border-bottom: 1px solid var(--border-light);
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Logo pill */
.logo-pill {
    padding: 4px 28px;
    display: inline-block;
    margin-top: 14px;
    border-radius: var(--radius-pill);
    background: var(--bg);
    font-family: var(--font-script);
    font-size: 28px;
    color: var(--gold);
    border: 2px solid var(--gold);
    letter-spacing: 0.5px;
    transition: box-shadow 0.3s var(--ease);
}
.logo-pill:hover {
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
}
.logo-pill a {
    text-decoration: none;
    color: inherit;
}

/* Desktop nav */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 22px;
}
.nav-desktop a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    transition: color 0.25s;
    position: relative;
}
.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
    border-radius: 2px;
}
.nav-desktop a:hover { color: var(--dark); }
.nav-desktop a:hover::after { width: 100%; }

/* CTA button in nav */
.btn {
    background: var(--gold-gradient);
    padding: 9px 22px;
    border-radius: var(--radius-pill);
    color: var(--dark-deep);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.30);
    border: none;
}
.btn:hover {
    background: var(--dark);
    color: var(--gold);
    box-shadow: 0 6px 20px rgba(0, 59, 82, 0.25);
    transform: translateY(-1px);
}
.btn::after { display: none; } /* remove underline effect on CTA */

/* Hamburger */
.hamburger {
    font-size: 24px;
    cursor: pointer;
    display: none;
    color: var(--dark);
    padding: 4px;
}

/* =========================================
   4. MOBILE MENU
========================================= */
.mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 37, 53, 0.60);
    backdrop-filter: blur(3px);
    z-index: 9998;
    display: none;
    transition: opacity 0.3s;
}
.mobile-menu {
    position: fixed;
    top: 0; left: -100%;
    width: 80%; max-width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: 9999;
    transition: left 0.4s var(--ease);
    padding: 24px 20px;
    box-shadow: 6px 0 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    border-right: 3px solid var(--gold);
}
.mobile-menu.open { left: 0; }
.mobile-menu-overlay.open { display: block; }

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 12px;
}
.menu-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.mobile-close {
    font-size: 30px;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 0.8;
    transition: color 0.2s;
}
.mobile-close:hover { color: var(--gold); }

.mobile-nav a {
    display: block;
    padding: 13px 0;
    font-size: 1rem;
    text-decoration: none;
    color: var(--text);
    border-bottom: 1px solid var(--border-light);
    font-weight: 500;
    transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav a:hover {
    color: var(--gold);
    padding-left: 8px;
}
.btn-mobile {
    display: block;
    background: var(--gold-gradient);
    text-align: center;
    padding: 14px;
    margin-top: 24px;
    border-radius: 12px;
    color: var(--dark-deep);
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-gold);
    letter-spacing: 0.3px;
}

/* =========================================
   5. SCROLL FADE-IN ANIMATION
   JS adds .show-card when element enters viewport
========================================= */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.show-card {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   6. HERO SECTION
========================================= */
.hero {
    margin-top: 110px;
    text-align: center;
    padding: 70px 30px;
    background: var(--white);
    border-radius: var(--radius-card);
    border: 1.5px solid rgba(212, 175, 55, 0.40);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

/* Subtle decorative gold glow behind hero */
.hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

.hero h1 {
    font-family: var(--font-display);
    color: var(--dark);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.apple-btn {
    background: var(--gold-gradient);
    padding: 13px 32px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    color: var(--dark-deep);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-block;
    margin-top: 24px;
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-gold);
    letter-spacing: 0.3px;
}
.apple-btn:hover {
    background: var(--dark);
    color: var(--gold);
    box-shadow: 0 8px 24px rgba(0, 59, 82, 0.25);
    transform: translateY(-2px);
}

/* =========================================
   6. SECTION BASE STYLE
========================================= */
section {
    width: 90%;
    max-width: 1200px;
    margin: var(--section-gap) auto;
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 48px 30px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    position: relative;
    /* overflow:hidden removed — it was trapping position:fixed mobile sidebar */
}

/* Gold left-edge accent for premium feel on standard sections */
section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--gold-gradient);
    border-radius: 4px 0 0 4px;
}

.section-title {
    text-align: center;
    font-family: var(--font-script);
    font-size: 2.8rem;
    margin-bottom: 36px;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: 0.5px;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
    margin: 10px auto 0;
}

/* =========================================
   7. CATEGORY / SERVICES GRID
========================================= */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 18px;
}

/* Category cards are now <a> elements */
.cat-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid var(--border-light);
    cursor: pointer;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
    background: var(--white);
    display: block; /* anchor element */
    text-decoration: none;
    color: var(--text);
}
.cat-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
}
/* Image container — needs overflow:hidden so border-radius clips the img */
.cat-card .cat-img {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}
.cat-card .cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s var(--ease);
}
.cat-card:hover .cat-img img {
    transform: scale(1.05);
}
.cat-card span {
    display: block;
    padding: 10px 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark);
    letter-spacing: 0.2px;
}

/* =========================================
   8. GALLERY GRID
========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 4px;
}

.gallery-item {
    width: 100%;         /* Fixed: was 90%, which broke grid filling */
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    border: 1.5px solid var(--border-light);
    cursor: pointer;
    transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
    display: block;
}
.gallery-item:hover {
    transform: scale(1.04);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

/* =========================================
   9. FEATURES / HOW WE WORK
========================================= */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.feature-box {
    background: var(--white);
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    width: 100%;
    max-width: 300px;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}
.feature-box::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}
.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}
.feature-box:hover::after { transform: scaleX(1); }

.feature-box i {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 14px;
    display: inline-block;
}
.feature-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
    font-family: var(--font-display);
}
.feature-box p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* =========================================
   10. FAQ SECTION
========================================= */
.faq-section {
    width: 90%;
    max-width: 1200px;
    margin: var(--section-gap) auto;
    /* FAQ gets the full card treatment too */
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 48px 30px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
}

.faq-item {
    background: var(--bg);
    padding: 18px 20px 16px 24px;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    margin-bottom: 14px;
    transition: box-shadow 0.25s, background 0.25s;
}
.faq-item:hover {
    background: #fffcf0;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.12);
}
.faq-item:last-child { margin-bottom: 0; }
.faq-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 7px;
    color: var(--dark);
}
.faq-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =========================================
   11. MODAL (Pop-up)
========================================= */
.full-screen-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 37, 53, 0.88);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.modal-glass-card {
    background: var(--white);
    width: 100%;
    max-width: 520px;
    padding: 24px;
    border-radius: var(--radius-card);
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-top: 4px solid var(--gold);
}
.modal-glass-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 16px;
}
.close-btn {
    position: absolute;
    top: 12px; right: 16px;
    font-size: 32px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 0.8;
    z-index: 2;
    transition: color 0.2s;
}
.close-btn:hover { color: var(--gold); }

.modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 16px;
}
.m-btn {
    flex: 1;
    padding: 11px 10px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.25s var(--ease);
}
.call {
    background: var(--dark);
    color: var(--white);
}
.call:hover {
    background: var(--dark-deep);
    transform: translateY(-1px);
}
.whatsapp {
    background: #25D366;
    color: var(--white);
}
.whatsapp:hover {
    background: #1ebe5c;
    transform: translateY(-1px);
}

/* Navigation arrows in modal */
.nav-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.92);
    border: none;
    width: 42px; height: 42px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 5;
    color: var(--dark);
    display: none;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.nav-arrow:hover { background: var(--gold); color: var(--white); }
.prev-btn { left: 10px; }
.next-btn { right: 10px; }

/* =========================================
   12. FOOTER
========================================= */
footer {
    background: var(--dark-deep);
    color: rgba(255, 255, 255, 0.85);
    padding: 60px 20px 24px;
    margin-top: var(--section-gap);
    border-top: 4px solid var(--gold);
}

.footer-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.20);
}

.footer-brand h2 {
    font-family: var(--font-script);
    font-size: 2.6rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}
.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.60);
    margin-bottom: 18px;
    max-width: 260px;
}
.contact-btn {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--dark-deep);
    padding: 10px 28px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s var(--ease);
}
.contact-btn:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

.footer-col h3 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}
.footer-links { list-style: none; }
.footer-links li {
    margin-bottom: 8px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.60);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links li i { color: var(--gold); font-size: 0.8rem; }
.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.60);
    transition: color 0.25s, padding-left 0.25s;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

/* Map */
.map-section {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto 0;
    text-align: center;
}
.map-section h3 {
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 16px;
    text-transform: uppercase;
    font-weight: 600;
}
.map-frame {
    width: 100%;
    height: 260px;
    border: 2px solid rgba(212, 175, 55, 0.30);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    letter-spacing: 0.3px;
}

.designedby {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.28);
    margin-top: 6px;
}
.designedby a {
    color: var(--gold);
    text-decoration: none;
    opacity: 0.75;
    transition: opacity 0.2s;
}
.designedby a:hover { opacity: 1; }

/* =========================================
   13. FLOATING WHATSAPP BUTTON
========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 22px; right: 22px;
    width: 58px; height: 58px;
    z-index: 9000;
    transition: transform 0.3s var(--ease);
    /* Fixed: was invalid 'drop-shadow' property */
    filter: drop-shadow(0 4px 12px rgba(37, 211, 102, 0.45));
    border-radius: 50%;
}
.whatsapp-float:hover { transform: scale(1.12); }
.whatsapp-float img { width: 100%; height: 100%; }

/* =========================================
   14. RESPONSIVE — TABLET (max 1024px)
========================================= */
@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================
   15. RESPONSIVE — MOBILE (max 768px)
========================================= */
@media (max-width: 768px) {
    :root { --section-gap: 36px; }

    /* Header */
    .nav-desktop { display: none; }
    .hamburger { display: block; }

    /* Hero */
    .hero { margin-top: 90px; padding: 44px 18px; }
    .hero h1 { font-size: 1.65rem; }

    /* Section */
    section {
        padding: 32px 16px;
        width: 92%;
        border-width: 1px;
    }
    section::before { width: 3px; }

    /* Section title */
    .section-title { font-size: 2.2rem; margin-bottom: 24px; }

    /* Gallery — Fixed: comment said 3 but code was 4; now correct 2 columns on mobile */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .gallery-item { height: 130px; border-radius: 10px; }

    /* Category grid */
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .cat-card .cat-img { height: 130px; }

    /* Modal */
    .modal-glass-card { width: 96%; padding: 16px; }
    .modal-glass-card img { height: 210px; }

    /* FAQ */
    .faq-section { padding: 32px 16px; }

    /* Footer */
    footer { padding: 44px 16px 20px; }
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }
    .footer-brand p { max-width: 100%; }
    .footer-links li { justify-content: center; }

    /* WhatsApp float */
    .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
}

/* =========================================
   16. RESPONSIVE — SMALL MOBILE (max 400px)
========================================= */
@media (max-width: 400px) {
    .hero h1 { font-size: 1.45rem; }
    .section-title { font-size: 1.9rem; }
    .gallery-grid { gap: 6px; }
    .gallery-item { height: 110px; }
}

/* ===== Free Quote Form (added in audit) ===== */
.quote-section{width:92%;max-width:760px;margin:34px auto 10px;}
.quote-card{background:#fffef8;border:1px solid var(--gold-light);border-radius:16px;padding:28px 26px;box-shadow:0 8px 30px rgba(184,150,12,.12);}
.quote-card h3{color:var(--gold-dark);font-size:1.5rem;margin:0 0 4px;text-align:center;}
.quote-sub{text-align:center;color:#666;font-size:.92rem;margin:0 0 18px;}
.quote-row{display:flex;gap:12px;margin-bottom:12px;}
.quote-row input,.quote-row select{flex:1;width:100%;padding:12px 14px;border:1.5px solid #e6dcb8;border-radius:10px;font-size:.95rem;font-family:inherit;background:#fff;color:#333;}
.quote-row input:focus,.quote-row select:focus{outline:none;border-color:var(--gold);box-shadow:0 0 0 3px rgba(212,175,55,.15);}
.quote-btn{width:100%;padding:14px;border:none;border-radius:10px;background:#25D366;color:#fff;font-size:1.05rem;font-weight:700;cursor:pointer;display:flex;align-items:center;justify-content:center;gap:8px;transition:.2s;}
.quote-btn:hover{background:#1ebe57;transform:translateY(-1px);}
.quote-note{text-align:center;margin:12px 0 0;font-size:.9rem;color:#777;}
.quote-note a{color:var(--gold-dark);font-weight:600;text-decoration:none;}
@media(max-width:600px){.quote-row{flex-direction:column;gap:12px;}.quote-card{padding:22px 18px;}}
