:root {
            --bg-base: #08090b;
            --bg-surface: #0e1117;
            --bg-card: rgba(18, 22, 30, 0.7);
            --bg-card-hover: rgba(28, 34, 46, 0.9);
            --gold-primary: #c5a880;
            --gold-light: #f0dec5;
            --gold-dark: #8c7352;
            --gold-glow: rgba(197, 168, 128, 0.22);
            --text-main: #f8fafc;
            --text-muted: #94a3b8;
            --border-subtle: rgba(197, 168, 128, 0.15);
            --border-highlight: rgba(197, 168, 128, 0.45);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-base);
            color: var(--text-main);
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 50% 0%, rgba(197, 168, 128, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 100% 40%, rgba(30, 41, 59, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 0% 80%, rgba(197, 168, 128, 0.05) 0%, transparent 60%);
        }

        /* Top Header */
        header {
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            background: rgba(8, 9, 11, 0.85);
            border-bottom: 1px solid var(--border-subtle);
        }

        .header-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 1.2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .brand-logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .brand-symbol {
            width: 40px;
            height: 40px;
            border: 1px solid var(--border-highlight);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
            color: var(--gold-primary);
            font-size: 1.2rem;
            font-weight: 700;
            font-family: 'Cinzel', serif;
        }

        .brand-text {
            font-family: 'Cinzel', serif;
            font-size: 1.4rem;
            font-weight: 700;
            letter-spacing: 3px;
            color: var(--text-main);
        }

        .brand-text span {
            color: var(--gold-primary);
            font-size: 0.75rem;
            display: block;
            letter-spacing: 4px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 600;
        }

        nav.nav-links {
            display: flex;
            gap: 2.5rem;
        }

        nav.nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: color 0.2s ease;
        }

        nav.nav-links a:hover {
            color: var(--gold-light);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .phone-link {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-main);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            padding: 0.65rem 1.4rem;
            border: 1px solid var(--border-highlight);
            border-radius: 40px;
            background: rgba(197, 168, 128, 0.06);
            transition: all 0.3s ease;
        }

        .phone-link:hover {
            background: rgba(197, 168, 128, 0.15);
            box-shadow: 0 0 25px var(--gold-glow);
            transform: translateY(-2px);
            border-color: var(--gold-primary);
        }

        /* Hero Section */
        .hero-section {
            max-width: 1300px;
            margin: 0 auto;
            padding: 5rem 2rem 6rem;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: rgba(197, 168, 128, 0.08);
            border: 1px solid var(--border-subtle);
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold-primary);
            margin-bottom: 1.8rem;
        }

        .hero-title {
            font-family: 'Syne', sans-serif;
            font-size: 3.6rem;
            line-height: 1.15;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff 30%, #c5a880 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-desc {
            color: var(--text-muted);
            font-size: 1.15rem;
            line-height: 1.7;
            margin-bottom: 2.5rem;
            max-width: 540px;
            font-weight: 300;
        }

        .hero-buttons {
            display: flex;
            gap: 1.2rem;
            align-items: center;
        }

        .btn-gold {
            background: linear-gradient(135deg, #d4af37 0%, #aa824a 100%);
            color: #07080a;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 1rem 2.2rem;
            border-radius: 40px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-gold:hover {
            box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
            transform: translateY(-2px);
        }

        .btn-outline {
            color: var(--text-main);
            border: 1px solid var(--border-subtle);
            padding: 1rem 2rem;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-outline:hover {
            border-color: var(--gold-primary);
            background: rgba(197, 168, 128, 0.08);
            transform: translateY(-2px);
        }

        .hero-image-wrapper {
            position: relative;
        }

        .hero-image-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 24px;
            padding: 12px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
            position: relative;
            overflow: hidden;
            transition: transform 0.4s ease;
        }

        .hero-image-card:hover {
            transform: scale(1.02);
            border-color: var(--border-highlight);
        }

        .hero-image-card img {
            width: 100%;
            height: auto;
            border-radius: 16px;
            display: block;
            object-fit: cover;
        }

        .floating-spec-badge {
            position: absolute;
            bottom: 30px;
            left: 30px;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            background: rgba(10, 14, 20, 0.85);
            border: 1px solid var(--border-highlight);
            padding: 12px 20px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .floating-spec-badge .spec-title {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--gold-primary);
            font-weight: 600;
        }

        .floating-spec-badge .spec-val {
            font-size: 1rem;
            font-weight: 700;
            color: #ffffff;
        }

        /* Section Layouts */
        .section-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 6rem 2rem;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4.5rem;
        }

        .section-tag {
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold-primary);
            margin-bottom: 0.8rem;
            display: block;
        }

        .section-title {
            font-family: 'Syne', sans-serif;
            font-size: 2.6rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            color: var(--text-muted);
            font-size: 1.05rem;
            font-weight: 300;
        }

        /* Grid Showcase */
        .feature-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3.5rem;
            align-items: center;
            margin-bottom: 6rem;
        }

        .feature-grid.reverse {
            direction: rtl;
        }

        .feature-grid.reverse .feature-content {
            direction: ltr;
        }

        .feature-img-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            padding: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .feature-img-card:hover {
            border-color: var(--border-highlight);
            transform: translateY(-4px);
        }

        .feature-img-card img {
            width: 100%;
            height: auto;
            border-radius: 14px;
            display: block;
            object-fit: cover;
        }

        .feature-content h3 {
            font-family: 'Syne', sans-serif;
            font-size: 2rem;
            color: #ffffff;
            margin-bottom: 1.2rem;
        }

        .feature-content p {
            color: var(--text-muted);
            font-size: 1.05rem;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .specs-list {
            list-style: none;
            display: grid;
            gap: 1rem;
        }

        .specs-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
            color: #cbd5e1;
        }

        .specs-list li::before {
            content: '✦';
            color: var(--gold-primary);
            font-size: 0.9rem;
        }

        /* Pillars 3 Columns */
        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .pillar-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .pillar-card:hover {
            background: var(--bg-card-hover);
            border-color: var(--border-highlight);
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        }

        .pillar-icon {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            display: inline-block;
        }

        .pillar-title {
            font-family: 'Syne', sans-serif;
            font-size: 1.35rem;
            color: #ffffff;
            margin-bottom: 0.8rem;
        }

        .pillar-text {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Booking Section */
        .booking-box {
            background: linear-gradient(145deg, rgba(20, 24, 32, 0.9) 0%, rgba(10, 12, 16, 0.95) 100%);
            border: 1px solid var(--border-highlight);
            border-radius: 28px;
            padding: 4rem;
            max-width: 900px;
            margin: 0 auto;
            box-shadow: 0 30px 70px rgba(0,0,0,0.7);
            position: relative;
        }

        .booking-box::after {
            content: '';
            position: absolute;
            top: -1px;
            left: 20%;
            right: 20%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group.full {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-size: 0.85rem;
            color: var(--gold-primary);
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 600;
        }

        .form-control {
            background: rgba(8, 10, 14, 0.8);
            border: 1px solid var(--border-subtle);
            color: #ffffff;
            padding: 1rem 1.4rem;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            outline: none;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--gold-primary);
            box-shadow: 0 0 15px var(--gold-glow);
        }

        /* Footer */
        footer {
            border-top: 1px solid var(--border-subtle);
            background: #050608;
            padding: 4rem 2rem 3rem;
        }

        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand h4 {
            font-family: 'Cinzel', serif;
            font-size: 1.5rem;
            color: var(--text-main);
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .footer-brand p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
            max-width: 380px;
        }

        .footer-column h5 {
            color: var(--gold-primary);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1.2rem;
        }

        .footer-column p, .footer-column a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            line-height: 2;
            display: block;
            transition: color 0.2s;
        }

        .footer-column a:hover {
            color: var(--gold-light);
        }

        .footer-bottom {
            max-width: 1300px;
            margin: 0 auto;
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #64748b;
            font-size: 0.85rem;
        }

        /* Modal */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }

        .modal-card {
            background: #0f131a;
            border: 1px solid var(--border-highlight);
            padding: 3rem;
            border-radius: 24px;
            text-align: center;
            max-width: 440px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.8);
        }

        .modal-card h3 {
            font-family: 'Syne', sans-serif;
            font-size: 1.6rem;
            color: #fff;
            margin-bottom: 0.8rem;
        }

        .modal-card p {
            color: var(--text-muted);
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        @media (max-width: 968px) {
            .hero-section {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
                padding-top: 3rem;
            }
            .hero-desc {
                margin: 0 auto 2rem;
            }
            .hero-buttons {
                justify-content: center;
            }
            .feature-grid, .feature-grid.reverse {
                grid-template-columns: 1fr;
                direction: ltr;
            }
            .pillars-grid {
                grid-template-columns: 1fr;
            }
            .form-grid {
                grid-template-columns: 1fr;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            nav.nav-links {
                display: none;
            }
        }