/* --- PRESTIGE BRAND IDENTITY CONFIGURATION --- */
:root {
    --bg-dark: #00231f;           /* Deep Luxury Green */
    --accent-gold: #cda773;       /* Imperial Gold */
    --text-light: #ffffff;        /* Pure White */
    --text-muted: #a2b5b2;        /* Muted Editorial Sage */
    --border-gold-alpha: rgba(205, 167, 115, 0.2);
    --gold-glow: rgba(205, 167, 115, 0.15);
    
    /* Transaction Fill Colors */
    --whatsapp-green: #25D366;
    --whatsapp-pulse: rgba(37, 211, 102, 0.35);
    --btn-disabled-bg: #122f2b;
    --btn-disabled-text: #3d5652;

    /* Structural Artifacts */
    --font-editorial: 'Tajawal', sans-serif;
    --transition-cinema: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-micro: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- CORE ARCHITECTURAL RESET --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    font-family: var(--font-editorial);
    color: var(--text-light);
    overflow-x: hidden;
}

body {
    position: relative;
    min-height: 100vh;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    background-color: var(--bg-dark);
}

/* --- TACTILE GEOMETRIC SURFACE OVERLAY --- */
.tactile-overlay {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('texture.png');
    background-repeat: repeat;
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

/* --- RESPONSIVE LAYOUT CONTAINERS --- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2.5rem;
    position: relative;
    z-index: 2;
}

section {
    padding: 8rem 0;
    border-bottom: 1px solid rgba(205, 167, 115, 0.08);
    position: relative;
    overflow: hidden;
}

/* --- EDITORIAL TYPOGRAPHY SYSTEM --- */
.section-header-center {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-header-left {
    text-align: right;
    margin-bottom: 5rem;
    position: relative;
}

.section-pre-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-gold);
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-light);
    position: relative;
    display: inline-block;
}

/* --- CINEMATIC SCROLL REVEAL ARTIFACTS --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
    transition: var(--transition-cinema);
    will-change: transform, opacity;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* --- REDESIGNED MAJESTIC BRAND ANCHOR HEADER --- */
.site-header-prestige {
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 24, 21, 0.95) 0%, rgba(0, 35, 31, 0.85) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(205, 167, 115, 0.12);
    position: relative;
    z-index: 100;
    padding: 1rem 0;
}

.header-prestige-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.majestic-logo-wrapper {
    position: relative;
    padding: 0.25rem;
    display: inline-block;
    transition: var(--transition-cinema);
}

.brand-logo-centered {
    height: 85px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
    transition: var(--transition-cinema);
}

.logo-gold-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(205, 167, 115, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    transition: var(--transition-cinema);
}

/* Header Hover Animations */
.majestic-logo-wrapper:hover {
    transform: scale(1.03);
}

.majestic-logo-wrapper:hover .logo-gold-glow {
    background: radial-gradient(circle, rgba(205, 167, 115, 0.15) 0%, transparent 70%);
    width: 220px;
    height: 220px;
}

.header-prestige-line {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

/* --- ZONE 01: THE HERO SECTION --- */
.hero-section {
    padding: 8rem 0 6rem 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(205, 167, 115, 0.06) 0%, transparent 65%);
}

.hero-badge {
    display: inline-block;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 0.4rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 50px;
    margin-bottom: 2rem;
    background: rgba(205, 167, 115, 0.03);
}

.hero-h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.35;
    color: var(--text-light);
    max-width: 1000px;
    margin: 0 auto 2rem auto;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
    font-size: 1.45rem;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 3.5rem auto;
    line-height: 1.7;
}

.hero-line-separator {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    margin: 0 auto;
}

/* --- ZONE 02: EMPIRICAL PROOF GRID --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-gold-alpha);
    padding: 3.5rem 2rem;
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-cinema);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(205, 167, 115, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-micro);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(205, 167, 115, 0.03);
    border: 1px solid rgba(205, 167, 115, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition-micro);
}

.stat-icon {
    width: 32px;
    height: 32px;
    fill: var(--accent-gold);
    transition: var(--transition-micro);
}

.stat-name {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    min-height: 3.4rem;
    display: flex;
    align-items: center;
}

.stat-number-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
}

.stat-unit {
    font-size: 0.95rem;
    color: var(--accent-gold);
    font-weight: 500;
}

.card-border-decorator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-micro);
}

/* Interaction Mechanics */
.stat-card:hover {
    transform: translate3d(0, -10px, 0);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px var(--gold-glow);
}

.stat-card:hover .card-glow {
    opacity: 1;
}

.stat-card:hover .icon-wrapper {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.stat-card:hover .stat-icon {
    fill: var(--bg-dark);
}

.stat-card:hover .card-border-decorator {
    width: 100%;
}

/* --- ZONE 03: EXECUTIVE COMPLIANCE FRAMEWORK --- */
.editorial-policy-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: start;
}

.policy-timeline {
    position: relative;
    padding-right: 1rem;
}

.policy-timeline-item {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
}

.policy-timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 2.25rem;
    top: 5rem;
    width: 1px;
    height: calc(100% - 2.5rem);
    background: linear-gradient(to bottom, var(--border-gold-alpha), transparent);
}

.policy-index-badge {
    width: 4.5rem;
    height: 4.5rem;
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    background: var(--bg-dark);
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(205, 167, 115, 0.05);
}

.policy-content-block {
    padding-top: 0.75rem;
}

.policy-text {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
}

.prestige-blockquote {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.01) 0%, rgba(205, 167, 115, 0.02) 100%);
    border: 1px solid var(--border-gold-alpha);
    border-right: 3px solid var(--accent-gold);
    padding: 3.5rem;
    position: relative;
    border-radius: 4px;
}

.blockquote-icon {
    position: absolute;
    top: -1.5rem;
    right: 2.5rem;
    font-size: 5rem;
    color: var(--accent-gold);
    font-family: serif;
    line-height: 1;
    opacity: 0.3;
}

.prestige-blockquote p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.9;
    position: relative;
    z-index: 2;
}

/* --- ZONE 04: RESTRICTED CONTENT MATRIX --- */
.matrix-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.matrix-card {
    border: 1px solid var(--border-gold-alpha);
    padding: 4rem 3.5rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-cinema);
}

.exclusivity-zone {
    background: linear-gradient(180deg, rgba(205, 167, 115, 0.02) 0%, transparent 100%);
}

.restriction-zone {
    background: linear-gradient(180deg, rgba(139, 0, 0, 0.04) 0%, transparent 100%);
}

.matrix-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.matrix-icon-box {
    width: 45px;
    height: 45px;
    fill: var(--accent-gold);
    opacity: 0.8;
}

.matrix-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.matrix-list {
    list-style: none;
}

.matrix-list li {
    position: relative;
    padding-right: 2rem;
    margin-bottom: 1.75rem;
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.matrix-list li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0.7rem;
    width: 8px;
    height: 1px;
    background: var(--accent-gold);
}

.matrix-card-decorator {
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 0;
    background: var(--accent-gold);
    transition: var(--transition-cinema);
}

.matrix-card:hover {
    border-color: rgba(205, 167, 115, 0.4);
    transform: translate3d(0, -6px, 0);
}

.matrix-card:hover .matrix-card-decorator {
    height: 100%;
}

/* --- ZONE 05: REFACTORED HIGHLY SCANNABLE SPECIFICATIONS --- */
.specs-editorial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
}

.editorial-spec-card {
    background: rgba(255, 255, 255, 0.005);
    border-bottom: 1px solid var(--border-gold-alpha);
    padding: 0 0 3.5rem 0;
    position: relative;
    transition: var(--transition-cinema);
}

.spec-meta {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.spec-index {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

.spec-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--text-light);
}

/* Refactored High-End Bulleted System Styles */
.spec-scannable-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-scannable-list li {
    position: relative;
    padding-right: 1.75rem;
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.9;
    text-align: justify;
}

.spec-scannable-list li:last-child {
    margin-bottom: 0;
}

/* Custom Gold Marker Geometric Artifacts */
.spec-scannable-list li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0.85rem;
    width: 5px;
    height: 5px;
    background-color: var(--accent-gold);
    transform: rotate(45deg);
    box-shadow: 0 0 8px var(--accent-gold);
}

.spec-card-line {
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: var(--transition-micro);
}

.editorial-spec-card:hover .spec-card-line {
    width: 100%;
}

/* --- ZONE 06: THE OPTIMIZATION GUIDE --- */
.guide-asymmetric-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.guide-editorial-box {
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed var(--border-gold-alpha);
    padding: 3.5rem;
    border-radius: 4px;
    transition: var(--transition-cinema);
}

.guide-header-wrapper {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.guide-bullet {
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    transform: rotate(45deg);
}

.guide-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.guide-text-content {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.guide-editorial-box:hover {
    border-style: solid;
    border-color: var(--accent-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.02);
}

/* --- ZONE 07: GATEKEEPER CONSENT & BOOKING CARD --- */
.booking-section {
    border-bottom: none;
    padding-bottom: 12rem;
}

.prestige-booking-card {
    background: #001a17;
    border: 1px solid var(--accent-gold);
    border-radius: 4px;
    padding: 6rem 4rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.card-inner-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('texture.png');
    background-repeat: repeat;
    opacity: 0.02;
    pointer-events: none;
}

.booking-card-header {
    margin-bottom: 4rem;
}

.booking-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.booking-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Luxury Interactive Checkbox Architecture */
.prestige-checkbox-container {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    user-select: none;
    max-width: 700px;
    margin-bottom: 4.5rem;
    text-align: right;
    position: relative;
    z-index: 3;
}

.hidden-native-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.luxury-checkbox-box {
    width: 28px;
    height: 28px;
    border: 1px solid var(--accent-gold);
    border-radius: 2px;
    position: relative;
    flex-shrink: 0;
    background: transparent;
    transition: var(--transition-micro);
}

.checkbox-inner-mark {
    position: absolute;
    top: 4px;
    left: 9px;
    width: 6px;
    height: 13px;
    border: solid var(--bg-dark);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: all 0.3s cubic-bezier(0.75, -0.5, 0.25, 1.5);
}

.checkbox-editorial-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.6;
}

/* Checked State Changes */
.hidden-native-checkbox:checked ~ .luxury-checkbox-box {
    background-color: var(--accent-gold);
}

.hidden-native-checkbox:checked ~ .luxury-checkbox-box .checkbox-inner-mark {
    transform: rotate(45deg) scale(1);
}

/* Kinetic Morphing Mechanism */
.cta-button-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
}

.premium-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding: 1.5rem 4rem;
    font-family: var(--font-editorial);
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    width: 100%;
    max-width: 500px;
    position: relative;
    overflow: hidden;
    outline: none;
    will-change: transform, background-color, box-shadow;
}

/* Disabled Default Architecture */
.premium-whatsapp-btn.status-disabled {
    background-color: var(--btn-disabled-bg);
    color: var(--btn-disabled-text);
    cursor: not-allowed;
    box-shadow: none;
    transition: var(--transition-cinema);
}

.premium-whatsapp-btn.status-disabled .whatsapp-svg-icon {
    fill: var(--btn-disabled-text);
}

/* Active Morph State Architecture */
.premium-whatsapp-btn.status-active {
    background-color: var(--whatsapp-green);
    color: var(--text-light);
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.25);
    transition: var(--transition-cinema);
    animation: cinemaPulse 2.5s infinite;
}

.premium-whatsapp-btn.status-active .whatsapp-svg-icon {
    fill: var(--text-light);
}

.premium-whatsapp-btn.status-active:hover {
    transform: translate3d(0, -4px, 0);
    box-shadow: 0 20px 45px rgba(37, 211, 102, 0.4);
}

.whatsapp-svg-icon {
    width: 28px;
    height: 28px;
    transition: var(--transition-micro);
}

/* --- FOOTER ARTIFACT --- */
.site-footer {
    background: #001210;
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid rgba(205, 167, 115, 0.04);
    position: relative;
    z-index: 2;
}

.footer-copyright {
    font-size: 1rem;
    color: var(--text-muted);
}

/* --- HARDWARE ACCELERATED PULSE --- */
@keyframes cinemaPulse {
    0% {
        box-shadow: 0 0 0 0 var(--whatsapp-pulse);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* --- STRICT MOBILE-FIRST RESPONSIVE STRATEGY --- */
@media (max-width: 1100px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .editorial-policy-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .prestige-blockquote {
        padding: 3rem;
    }
}

@media (max-width: 850px) {
    section {
        padding: 6rem 0;
    }

    .site-header-prestige {
        padding: 1rem 0;
    }

    .brand-logo-centered {
        height: 75px;
    }

    .hero-h1 {
        font-size: 2.6rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .matrix-grid, 
    .specs-editorial-grid, 
    .guide-asymmetric-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .prestige-booking-card {
        padding: 4rem 2rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1.5rem;
    }

    .site-header-prestige {
        padding: 0.75rem 0;
    }

    .brand-logo-centered {
        height: 65px;
    }

    .logo-gold-glow {
        width: 100px;
        height: 100px;
    }

    .hero-h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .policy-timeline-item {
        gap: 1.5rem;
    }

    .policy-index-badge {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.25rem;
    }

    .policy-text {
        font-size: 1.1rem;
    }

    .spec-title {
        font-size: 1.45rem;
    }

    .spec-scannable-list li {
        font-size: 1.05rem;
    }

    .checkbox-editorial-text {
        font-size: 1.05rem;
    }

    .premium-whatsapp-btn {
        padding: 1.25rem 2.5rem;
        font-size: 1.15rem;
    }
}