:root {
    /* Colors */
    --color-bg: #0a0e17;
    /* Deep midnight blue/black */
    --color-bg-light: #151a25;
    --color-gold: #d4af37;
    /* Classic Gold */
    --color-gold-hover: #e0be4e;
    --color-rose: #b76e79;
    /* Subtle feminine touch */
    --color-text: #f0f0f0;
    --color-text-muted: #a0a0a0;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.gold-text {
    color: var(--color-gold);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(10, 14, 23, 0.85);
    /* Glassmorphism background later */
    backdrop-filter: blur(10px);
    z-index: 1000;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo .gold {
    color: var(--color-gold);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 23, 0.98);
    z-index: 1001;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav-links li a {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text);
    transition: color 0.3s ease;
}

.mobile-nav-links li a:hover {
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav-overlay {
        display: flex;
    }

    .nav-links {
        display: none !important;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-clean {
    border: 1px solid var(--color-gold);
    padding: 0.5rem 1.5rem;
    border-radius: 0;
    color: var(--color-gold);
}

.btn-clean:hover {
    background: var(--color-gold);
    color: var(--color-bg);
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold), #b39025);
    color: var(--color-bg);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-text);
    margin-left: 1rem;
}

.btn-outline:hover {
    border-color: var(--color-text);
    background: rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    /* Header offset */
    background: radial-gradient(circle at top right, #1a202e, var(--color-bg));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero .subtitle {
    display: block;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Sections Common */
.section {
    padding: var(--spacing-lg) 0;
    position: relative;
}

.section-dark {
    background: var(--color-bg-light);
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.section-lead {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

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

/* Split Layouts */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-grid-vertical {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-item .icon {
    font-size: 2rem;
    background: rgba(212, 175, 55, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-gold);
}

.img-framed {
    width: 100%;
    border-radius: 12px;
    box-shadow: 20px 20px 0 rgba(212, 175, 55, 0.1);
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.img-framed:hover {
    filter: grayscale(0%);
    box-shadow: 20px 20px 0 rgba(212, 175, 55, 0.3);
    transform: translate(-5px, -5px);
}

/* Video Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: #000;
}

.video-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.video-link:hover .video-thumbnail {
    opacity: 0.5;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.play-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid #0a0e17;
}

.video-link:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
}

.video-link:hover .play-button::after {
    border-left-color: var(--color-gold);
}

.video-overlay p {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.video-link:hover .video-overlay p {
    opacity: 1;
    transform: translateY(0);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Services Wrapper */
.services-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.img-tall {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100px 100px 0 0;
    /* Arch shape */
    border: 2px solid var(--color-gold);
    opacity: 0.9;
}

.services-grid-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Why Choose Section (About) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(145deg, #1a202e, #11151e);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--color-gold);
}

.service-content {
    padding: 2.5rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.service-content p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.service-list {
    margin-bottom: 2rem;
}

.service-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    color: #d0d0d0;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

.btn-text {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-text:hover {
    color: #fff;
    margin-left: 5px;
    /* Subtle slide */
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--color-gold);
    border-radius: 0 12px 12px 0;
}

.contact-details p {
    margin-bottom: 1rem;
    color: #d0d0d0;
}

.contact-details .scarcity {
    color: var(--color-rose);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* Form Styles */
.contact-form {
    background: #151a25;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: #0a0e17;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: #05070c;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Spectacle Section */
.spectacle-content {
    max-width: 900px;
    margin: 0 auto;
}

.spectacle-block {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.spectacle-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.spectacle-block p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.spectacle-block p:last-child {
    margin-bottom: 0;
}

.spectacle-block strong {
    color: var(--color-text);
}

/* Themes Grid */
.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.theme-item {
    padding: 1rem 1.5rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    text-align: center;
    color: var(--color-text);
    font-weight: 500;
    transition: all 0.3s ease;
}

.theme-item:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.theme-trending {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border-color: var(--color-gold);
    position: relative;
}

.badge {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-bg);
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    text-transform: uppercase;
    font-weight: 700;
}

.themes-note {
    font-style: italic;
    margin-top: 1rem;
}

/* Tenues Gallery */
.tenues-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tenue-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.tenue-item:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.tenue-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

@media (max-width: 900px) {
    .tenues-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .tenues-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .tenue-item {
        border-radius: 8px;
    }
}

/* Steps Timeline */
.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-gold), #b39025);
    color: var(--color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--color-text);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.step-content p {
    color: var(--color-text-muted);
    margin: 0;
}

.highlight-text {
    padding: 1rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--color-gold);
    border-radius: 0 8px 8px 0;
    margin-top: 1.5rem;
}

/* Pricing Block */
.pricing-block {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.05), rgba(255, 255, 255, 0.02));
    border-color: rgba(212, 175, 55, 0.3);
}

.pricing-info {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.price-main {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.price-value {
    display: block;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-weight: 700;
}

.price-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-details p.highlight {
    color: var(--color-gold);
    font-weight: 600;
}

/* Wero Payment */
.payment-wero {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1f2e, #151a25);
    border-radius: 12px;
    border: 2px solid var(--color-gold);
    text-align: center;
}

.payment-wero h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.payment-wero p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.wero-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    margin: 1.5rem 0;
}

.wero-icon {
    font-size: 2rem;
}

.wero-phone {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-weight: 700;
    letter-spacing: 2px;
}

.wero-phone:hover {
    color: #fff;
}

.wero-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .pricing-info {
        flex-direction: column;
        align-items: center;
    }

    .price-main {
        width: 100%;
    }

    .themes-grid {
        grid-template-columns: 1fr;
    }

    .wero-phone {
        font-size: 1.4rem;
    }
}

/* Animation Utilities */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Section - Réserver Maintenant */
.cta-section {
    background: linear-gradient(135deg, #1a1024 0%, #0a0e17 50%, #0d1520 100%);
    padding: var(--spacing-lg) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-box {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.02));
    border: 2px solid var(--color-gold);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff4757, #c0392b);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-lead {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
}

.cta-lead strong {
    color: var(--color-gold);
}

.cta-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-icon {
    font-size: 1.5rem;
}

.cta-benefit span:last-child {
    font-weight: 500;
    color: var(--color-text);
}

.cta-pricing {
    margin-bottom: 2rem;
}

.cta-price {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 2.5rem;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
}

.price-note {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.cta-actions {
    margin-bottom: 1.5rem;
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn-icon {
    margin-right: 0.5rem;
}

.btn-pulse {
    animation: btn-glow 2s ease-in-out infinite;
}

@keyframes btn-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5); }
}

.cta-urgency {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--color-rose);
    font-weight: 600;
}

.cta-payment {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-payment p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.cta-payment strong {
    color: var(--color-gold);
}

.cta-testimonial {
    margin-top: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 4px solid var(--color-gold);
}

.cta-testimonial blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.7;
    margin: 0 0 1rem 0;
}

.cta-testimonial cite {
    color: var(--color-gold);
    font-style: normal;
    font-weight: 600;
}

/* Hero tagline */
.hero-tagline {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 650px;
    line-height: 1.7;
}

/* Stagger delays for grids */
.feature-card:nth-child(2) {
    transition-delay: 0.2s;
}

.feature-card:nth-child(3) {
    transition-delay: 0.4s;
}

.service-card:nth-child(2) {
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-image-container {
    position: absolute;
    right: 5%;
    bottom: 0;
    width: 450px;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    /* Basic blending attempt if bg is white, though hard on dark theme without removal. 
       Adding a glow/shadow to make it pop instead since it has a bg. */
    border-radius: 20px 20px 0 0;
    /* Soften top edges */
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    filter: brightness(0.9) contrast(1.1);
    /* Cinematic touch */
    transition: transform 0.5s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 900px) {

    .contact-wrapper,
    .split-layout,
    .services-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .split-image,
    .services-image {
        order: -1;
        /* Image first on mobile? Or last? Let's keep images visible but maybe smaller */
        display: flex;
        justify-content: center;
    }

    .img-framed,
    .img-tall {
        max-width: 400px;
        width: 100%;
        height: auto;
    }

    .img-tall {
        border-radius: 20px;
    }

    .cta-box {
        padding: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-benefits {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-benefit {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-links {
        display: none;
    }

    .nav {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    /* Hero Mobile */
    .hero {
        padding-top: 100px;
        min-height: 100vh;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero .subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .hero-tagline {
        font-size: 1rem;
        text-align: center;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .btn-outline {
        margin-left: 0;
    }

    .hero-image-container {
        display: none;
    }

    /* Sections Mobile */
    .section {
        padding: 3rem 0;
    }

    .section h2 {
        font-size: 1.75rem;
    }

    .section-lead {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        margin-bottom: 1.5rem;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-content h3 {
        font-size: 1.2rem;
    }

    /* Features Mobile */
    .features-grid-vertical {
        gap: 1.5rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .feature-item .icon {
        margin: 0 auto;
    }

    /* Spectacle Section Mobile */
    .spectacle-block {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .spectacle-block h3 {
        font-size: 1.2rem;
    }

    .themes-grid {
        grid-template-columns: 1fr;
    }

    .steps-timeline {
        gap: 1rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .step-number {
        margin: 0 auto;
    }

    /* Pricing Mobile */
    .pricing-info {
        flex-direction: column;
        align-items: center;
    }

    .price-main {
        width: 100%;
    }

    .wero-phone {
        font-size: 1.4rem;
    }

    .wero-number {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 2rem 0;
    }

    .cta-box {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .cta-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-lead {
        font-size: 1rem;
    }

    .cta-benefits {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-benefit {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .benefit-icon {
        font-size: 1.2rem;
    }

    .cta-price {
        width: 100%;
        padding: 1rem 1.5rem;
    }

    .price-amount {
        font-size: 1.6rem;
    }

    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    .cta-urgency {
        font-size: 0.85rem;
    }

    .cta-testimonial {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .cta-testimonial blockquote {
        font-size: 1rem;
    }

    /* Contact Mobile */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-details {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    /* Video Mobile */
    .video-container {
        border-radius: 12px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button::after {
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 18px solid #0a0e17;
    }
}

/* Small Mobile (375px and below) */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .section h2 {
        font-size: 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.4rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

    .btn-lg {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    .price-amount {
        font-size: 1.4rem;
    }
}

/* Mobile-First Fixed CTA Button */
.mobile-fixed-cta {
    display: none;
}

@media (max-width: 768px) {
    .mobile-fixed-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--color-gold), #b39025);
        padding: 1rem;
        z-index: 999;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
    }

    .mobile-fixed-cta a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        color: var(--color-bg);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 1rem;
    }

    /* Add padding at the bottom to account for fixed CTA */
    .footer {
        padding-bottom: 5rem;
    }
}