/* ==========================================================================
   LUXURY EVENT MANAGEMENT DESIGN SYSTEM
   Theme: Obsidian Dark & Metallic Gold (#D4AF37)
   Typography: Plus Jakarta Sans & Playfair Display
   ========================================================================== */

:root {
    --bg-primary: #0D0D0D;
    --bg-surface: #141416;
    --bg-card: #1C1C1F;
    --bg-card-hover: #242428;
    
    --text-primary: #FFFFFF;
    --text-secondary: #E4E4E7;
    --text-muted: #9CA3AF;
    
    --accent-gold: #D4AF37;
    --accent-gold-light: #F3E5AB;
    --accent-champagne: #F7E7CE;
    --accent-gradient: linear-gradient(135deg, #D4AF37 0%, #F39C12 50%, #B8860B 100%);
    --accent-glow: rgba(212, 175, 55, 0.25);
    
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(212, 175, 55, 0.3);
    
    --shadow-luxury: 0 20px 50px rgba(0, 0, 0, 0.7);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Clean Native Cursor System */
body {
    cursor: default;
}

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--accent-gradient);
    width: 0%;
    z-index: 10001;
    box-shadow: 0 0 10px var(--accent-gold);
}

/* Typography */
h1, h2, h3, .font-serif {
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; line-height: 1.15; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; }

.gold-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* Containers & Layout */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 7rem 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }

/* Sticky Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
}

.brand-logo-img {
    height: 70px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 12px rgba(255, 225, 120, 0.35));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.brand-logo:hover .brand-logo-img {
    transform: scale(1.03);
    filter: drop-shadow(0 4px 14px rgba(212, 175, 55, 0.45));
}

.brand-symbol {
    font-size: 1.8rem;
    color: var(--accent-gold);
    line-height: 1;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.brand-name span {
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.4rem 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #0D0D0D;
    font-weight: 700;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
    color: #000;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border-color: var(--border-gold);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--accent-gold);
    color: var(--accent-gold-light);
    transform: translateY(-3px);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    overflow: hidden;
}

.hero-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.5s ease, transform 6s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(13, 13, 13, 0.75) 0%, 
        rgba(13, 13, 13, 0.85) 50%, 
        rgba(13, 13, 13, 0.98) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--border-gold);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnim 1.8s infinite;
}

@keyframes scrollAnim {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* Section Header */
.section-header {
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-luxury);
    background: var(--bg-card-hover);
}

.about-card:hover::before {
    opacity: 1;
}

.about-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.about-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.15);
}

.service-img-wrapper {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-img {
    transform: scale(1.08);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(13, 13, 13, 0.75);
    backdrop-filter: blur(8px);
    color: var(--accent-gold);
    border: 1px solid var(--border-gold);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

.service-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-link {
    align-self: flex-start;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 0.8rem;
    color: var(--accent-gold-light);
}

/* Portfolio / Gallery Masonry */
.gallery-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-full);
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent-gradient);
    color: #0D0D0D;
    border-color: transparent;
    font-weight: 700;
    box-shadow: var(--shadow-gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    border: 1px solid var(--border-subtle);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(13, 13, 13, 0.95) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-category {
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-title {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10000;
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-luxury);
    border: 1px solid var(--border-gold);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    color: var(--text-primary);
    font-size: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* ==========================================================================
   LAUNCHING SOON / UNDER CONSTRUCTION OVERLAY & ELEGANT ADMIN LOGIN
   ========================================================================== */
.coming-soon-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #08080A;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1.25rem 3.5rem 1.25rem;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    text-align: center;
}

.cs-bg-darkener {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(13, 13, 13, 0.88) 0%, rgba(8, 8, 10, 0.98) 100%);
    z-index: 2;
    pointer-events: none;
}

.coming-soon-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.20;
    z-index: 1;
    filter: blur(6px);
    pointer-events: none;
}

.coming-soon-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 820px;
    margin: auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cs-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 1.5rem;
}

.cs-logo {
    height: 90px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.45));
}

.cs-tag {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.cs-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 1.2rem;
}

.cs-desc {
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.coming-soon-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.8rem;
    width: 100%;
}

.timer-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-gold);
    padding: 1.2rem 1rem;
    border-radius: var(--radius-md);
    min-width: 95px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.timer-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
    line-height: 1;
}

.timer-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 0.5rem;
    display: block;
}

.cs-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 580px;
    background: rgba(20, 20, 24, 0.85);
    border: 1px solid var(--border-subtle);
    padding: 0.4rem;
    border-radius: 50px;
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.cs-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.8rem 1.4rem;
    color: #FFFFFF;
    font-size: 0.95rem;
}

.cs-input::placeholder {
    color: var(--text-muted);
}

.cs-btn {
    background: var(--accent-gradient);
    color: #0D0D0D;
    font-weight: 700;
    border: none;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.cs-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
}

.cs-footer {
    position: relative;
    z-index: 10;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    width: 100%;
}

.cs-footer-address {
    margin-bottom: 0.35rem;
}

.cs-footer-phone {
    margin-bottom: 0.7rem;
}

.cs-phone-link {
    color: var(--accent-gold);
    text-decoration: none;
    white-space: nowrap;
    font-weight: 600;
}

.cs-admin-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cs-admin-link:hover {
    color: var(--accent-gold);
}

@media (max-width: 640px) {
    .coming-soon-overlay {
        padding: 2rem 1rem 4.5rem 1rem;
    }

    .cs-logo {
        height: 62px;
    }

    .cs-tag {
        font-size: 0.68rem;
        letter-spacing: 2px;
        padding: 0.35rem 1rem;
        margin-bottom: 1rem;
    }

    .cs-title {
        font-size: 2.1rem;
        margin-bottom: 0.8rem;
    }

    .cs-desc {
        font-size: 0.95rem;
        margin-bottom: 1.8rem;
        padding: 0 0.5rem;
    }

    .coming-soon-timer {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.4rem;
        margin-bottom: 2rem;
    }

    .timer-box {
        min-width: 0;
        padding: 0.8rem 0.3rem;
    }

    .timer-number {
        font-size: 1.5rem;
    }

    .timer-label {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .cs-form {
        flex-direction: column;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        gap: 0.75rem;
    }

    .cs-input {
        width: 100%;
        background: rgba(20, 20, 24, 0.95);
        border: 1px solid var(--border-gold);
        border-radius: 50px;
        padding: 0.9rem 1.2rem;
        text-align: center;
    }

    .cs-btn {
        width: 100%;
        padding: 0.9rem;
        text-align: center;
    }

    .cs-footer {
        margin-top: 2.5rem;
        padding-bottom: 3rem;
        font-size: 0.82rem;
    }
}

/* Admin Login Modal */
.admin-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(8, 8, 10, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.admin-modal.active {
    display: flex;
}

.admin-modal-card {
    background: #141418;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.admin-modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.admin-modal-close:hover {
    color: #FFFFFF;
}

/* Testimonials & Stats */
.stats-banner {
    background: var(--bg-surface);
    border-y: 1px solid var(--border-subtle);
    padding: 4rem 0;
    margin-bottom: 5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-title {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.testimonials-carousel {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-luxury);
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.testimonial-quote {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    object-fit: cover;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.author-event {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* FAQ Accordion */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: var(--border-gold);
}

.faq-question {
    padding: 1.5rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.75rem 1.5rem 1.75rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-text p, .contact-text a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-luxury);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-input {
    width: 100%;
    padding: 1rem 1.2rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
}

/* Floating WhatsApp & Back to Top */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

/* Floating Action Buttons (WhatsApp & Back-To-Top) */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
    animation: whatsappPulse 2s infinite;
    z-index: 9999;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.back-to-top {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

/* Footer */
.footer {
    background: #08080A;
    border-top: 1px solid var(--border-subtle);
    padding: 5rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 1rem;
    max-width: 320px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.88rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Luxury Toast Notifications (Replaces Native Browser Alerts) */
.gng-toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10000000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.gng-toast {
    background: rgba(18, 18, 22, 0.94);
    border: 1px solid var(--border-gold);
    color: #FFFFFF;
    padding: 1rem 1.4rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.92rem;
    font-weight: 500;
    pointer-events: auto;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    max-width: 380px;
}

.gng-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.gng-toast-icon {
    font-size: 1.2rem;
    color: var(--accent-gold);
}

/* Responsive Navigation Toggle & iPhone Layout Cleanups */
@media (max-width: 992px) {
    .mobile-nav-toggle { display: block; }
    .nav-cta { display: none !important; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 380px;
        height: 100vh;
        background: var(--bg-surface);
        border-left: 1px solid var(--border-gold);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.4s ease;
        z-index: 1001;
    }
    .nav-links.active { right: 0; }
}

@media (max-width: 768px) {
    .brand-logo-img {
        height: 44px !important;
    }
    
    .hero-content {
        padding-top: 5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 3rem auto;
        gap: 0.8rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }

    .floating-whatsapp {
        bottom: 20px;
        right: 15px;
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }

    .scroll-indicator {
        display: none;
    }
    
    .gng-toast-container {
        top: 15px;
        left: 15px;
        right: 15px;
        align-items: center;
    }
    .gng-toast {
        max-width: 100%;
    }
}
