/* ============================================
   DARK LUXURY GOLD THEME
   Font Note: Import 'Playfair Display' & 'Cormorant Garamond' & 'Jost' via Google Fonts in HTML
   ============================================ */

:root {
    /* Color Palette: Dark Luxury & Gold */
    --bg-dark: #0D0D0D;
    --bg-light: #1A1A1A;
    --bg-card: #111111;
    --primary-gold: #C9A96E;
    --accent-gold: #C9A96E;
    --primary-orchid: #C9A96E;  /* Legacy alias → gold */
    --light-gold: #E8D5B5;
    --dark-gold: #A0845C;
    --text-main: #F5F0EB;
    --text-muted: #9A9A9A;
    --text-heading: #FFFFFF;

    /* Typography */
    --font-heading: 'Playfair Display', 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;

    /* Spacing & Transitions */
    --transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --section-padding: 100px 0;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-main);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* For custom cursor */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-gold);
}
.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 169, 110, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-heading);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-heading);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.section-padding {
    padding: var(--section-padding);
}

/* ============================================
   DIVIDER
   ============================================ */
.divider {
    width: 60px;
    height: 1px;
    background-color: var(--primary-gold);
    margin: 1rem auto 0;
    opacity: 0.5;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    background: var(--primary-gold);
    color: var(--bg-dark);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
    cursor: none;
    transition: var(--transition);
    display: inline-block;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(201, 169, 110, 0.15);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--light-gold);
    z-index: -1;
    transition: opacity 0.4s;
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 50px;
    font-weight: 400;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    transition: var(--transition);
    cursor: none;
    background: transparent;
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
}

.btn-outline {
    width: 100%;
    padding: 18px;
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: none;
    transition: var(--transition);
    margin-top: 1rem;
    border-radius: 50px;
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1rem 5%;
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.logo a {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-heading);
}
.logo span {
    font-style: italic;
    font-weight: 600;
    color: var(--primary-gold);
}

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

.nav-links li a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    color: var(--text-main);
}

.nav-links li a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-gold);
    transition: var(--transition);
}

.nav-links li a:not(.btn-primary):hover::after,
.nav-links li a.active:not(.btn-primary)::after {
    width: 100%;
}

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

.hamburger {
    display: none;
    cursor: none;
}
.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    transition: all 0.3s;
    background-color: var(--text-main);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%; height: 100%;
    background: radial-gradient(circle at center, rgba(201, 169, 110, 0.12) 0%, transparent 60%);
    z-index: 0;
}

.hero-content {
    z-index: 2;
    padding-top: 5rem;
}

.hero h2 {
    font-size: 3rem;
    font-style: italic;
    color: var(--primary-gold);
    margin-bottom: -1rem;
}

.hero h1 {
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: var(--text-heading);
    font-family: var(--font-heading);
    font-weight: 700;
}

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

.hero-image {
    position: relative;
    height: 80vh;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    width: 90%;
    height: 90%;
    border-radius: 200px 200px 0 0;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(201, 169, 110, 0.12),
                0 0 80px rgba(201, 169, 110, 0.06);
    position: relative;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle at center, rgba(201, 169, 110, 0.25) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 5%;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: rotate(-90deg);
    transform-origin: left center;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-main);
}

.scroll-indicator .line {
    width: 50px;
    height: 1px;
    background-color: var(--text-main);
    position: relative;
    overflow: hidden;
}

.scroll-indicator .line::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: var(--primary-gold);
    animation: scroll-line 2s infinite ease-in-out;
}

@keyframes scroll-line {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background-color: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.brush-stroke {
    width: 80%;
    height: 300px;
    object-fit: cover;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    margin-top: 2rem;
    box-shadow: 0 20px 40px rgba(201, 169, 110, 0.1);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 100px;
    border: 1px solid rgba(201, 169, 110, 0.12);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(201, 169, 110, 0.1);
    border-color: rgba(201, 169, 110, 0.25);
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background-color: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 30px;
    border: 1px solid rgba(201, 169, 110, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(201, 169, 110, 0.08);
    border-color: rgba(201, 169, 110, 0.3);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-heading);
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.price-tag {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.4rem 1rem;
    background-color: rgba(13, 13, 13, 0.8);
    border: 1px solid rgba(201, 169, 110, 0.2);
    color: var(--primary-gold);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio {
    background-color: var(--bg-light);
}

/* Portfolio Tabs */
.portfolio-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 0.6rem 2rem;
    border: 1px solid rgba(201, 169, 110, 0.3);
    color: var(--text-muted);
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
    border-color: var(--primary-gold);
}

.gallery-item.hidden {
    display: none !important;
}

/* Portfolio Carousel */
.carousel-wrapper {
    position: relative;
    margin-top: 3rem;
    padding: 0 60px;
}

.portfolio-gallery {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0 2rem;
    scroll-snap-type: x mandatory;
}

.portfolio-gallery::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    position: relative;
    border-radius: 150px 150px 0 0;
    overflow: hidden;
    min-width: 320px;
    max-width: 320px;
    aspect-ratio: 3/4;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    scroll-snap-align: start;
    flex-shrink: 0;
    transition: opacity 0.4s, transform 0.4s;
}

/* Carousel Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(13, 13, 13, 0.85);
    border: 1px solid rgba(201, 169, 110, 0.4);
    color: var(--primary-gold);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    pointer-events: all;
}

.carousel-nav:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.3);
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}


/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.2);
    border: 1px solid rgba(201, 169, 110, 0.3);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: scale(1.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.95), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
    text-align: center;
}

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

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

.item-overlay h3 {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.item-overlay p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background-color: var(--bg-dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-list-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-list-item .icon-box {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border: 1px solid rgba(201, 169, 110, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-gold);
    font-size: 1.1rem;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.contact-list-item .icon-box:hover {
    border-color: rgba(201, 169, 110, 0.35);
    box-shadow: 0 8px 20px rgba(201, 169, 110, 0.08);
}

/* Form */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group-new {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-new label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.form-group-new input,
.form-group-new select,
.form-group-new textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid rgba(201, 169, 110, 0.12);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.form-group-new input::placeholder,
.form-group-new textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-group-new input:focus,
.form-group-new select:focus,
.form-group-new textarea:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.1);
}

.form-group-new select option {
    color: var(--text-main);
    background-color: var(--bg-card);
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.5;
    cursor: none;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    text-align: center;
    background-color: var(--bg-dark);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo h2 {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-heading);
}
.footer-logo span {
    font-style: italic;
    font-weight: 600;
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--text-main);
    transition: var(--transition);
    display: inline-block;
}

.social-links a:hover {
    color: var(--primary-gold);
    transform: translateY(-3px);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   BRANDS SECTION
   ============================================ */
.brands-section {
    padding: 3rem 0;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    background-color: var(--bg-light);
    text-align: center;
}
.brands-section .section-subtitle {
    margin-bottom: 2rem;
}
.brands-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}
.brand-logo {
    color: var(--text-muted);
    transition: var(--transition);
    cursor: default;
    opacity: 0.6;
}
.brand-logo:hover {
    color: var(--primary-gold);
    opacity: 1;
}
.brand-mufe { font-family: var(--font-body); font-weight: 600; font-size: 1.2rem; letter-spacing: 1px; }
.brand-dalba { font-family: var(--font-heading); font-style: italic; font-size: 1.6rem; font-weight: 600; }
.brand-dior { font-family: var(--font-heading); font-weight: 600; font-size: 1.6rem; letter-spacing: 3px; text-transform: uppercase; }
.brand-chanel { font-family: var(--font-body); font-weight: 600; font-size: 1.3rem; letter-spacing: 4px; text-transform: uppercase; }
.brand-muaq { font-family: var(--font-body); font-weight: 400; font-size: 1.3rem; letter-spacing: 2px; }
.brand-mac { font-family: var(--font-body); font-weight: 700; font-size: 1.4rem; letter-spacing: 1px; }
.brand-buttonscarves { font-family: var(--font-heading); font-style: italic; font-size: 1.5rem; }
.brand-studiotropik { font-family: var(--font-body); font-weight: 500; font-size: 1.1rem; letter-spacing: 1px; text-transform: uppercase; }

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
}
.fade-in {
    opacity: 0;
}
.fade-up {
    opacity: 0;
    transform: translateY(40px);
}

.reveal-text.active {
    animation: slideUpFade 0.8s forwards;
}
.fade-in.active {
    animation: fadeIn 1s forwards;
}
.fade-up.active {
    animation: slideUpFade 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes slideUpFade {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* ============================================
   RESPONSIVE — 992px
   ============================================ */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 6rem;
    }
    .hero p {
        margin: 0 auto 2rem;
    }
    .hero h1 { font-size: 4.5rem; }
    .about-grid, .contact-wrapper { grid-template-columns: 1fr; gap: 2rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item { min-width: 280px; max-width: 280px; }
}

/* ============================================
   RESPONSIVE — 768px
   ============================================ */
@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--bg-dark);
        width: 100%;
        height: 100vh;
        justify-content: center;
        transition: 0.3s;
    }
    .nav-links.active { left: 0; }
    .hero h1 { font-size: 3.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-item { min-width: 260px; max-width: 260px; }
    .carousel-wrapper { padding: 0 45px; }
    .carousel-nav { width: 40px; height: 40px; font-size: 1rem; }
    .contact-wrapper { padding: 2rem; }
    .footer-content { flex-direction: column; gap: 2rem; }
    .portfolio-tabs { gap: 0.5rem; }
    .tab-btn { padding: 0.5rem 1.5rem; font-size: 0.8rem; }
}

/* ============================================
   LES PRIVAT PAGE
   ============================================ */
.lp-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 2rem 80px;
    background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #0D0D0D 100%);
    position: relative;
}

.lp-hero::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201,169,110,0.15) 0%, transparent 70%);
    z-index: 0;
}

.lp-hero-content {
    position: relative;
    z-index: 1;
}

.lp-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.lp-hero p {
    color: #9A9A9A;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: #111;
    border: 1px solid rgba(201,169,110,0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201,169,110,0.3);
    box-shadow: 0 20px 40px rgba(201,169,110,0.08);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #C9A96E;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #F5F0EB;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    color: #9A9A9A;
    font-size: 0.95rem;
    line-height: 1.6;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background: #111;
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: 24px;
    padding: 2.5rem;
    transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.program-card:hover {
    border-color: rgba(201,169,110,0.35);
    box-shadow: 0 15px 35px rgba(201,169,110,0.08);
}

.program-card .program-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(201,169,110,0.1);
    color: #C9A96E;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.program-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #F5F0EB;
    margin-bottom: 1rem;
}

.program-card .program-desc {
    color: #9A9A9A;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.program-card .program-details {
    list-style: none;
    margin-bottom: 1.5rem;
}

.program-card .program-details li {
    color: #9A9A9A;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(201,169,110,0.08);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.program-card .program-details li i {
    color: #C9A96E;
    font-size: 0.8rem;
}

.program-levels {
    margin-top: 1.5rem;
}

.program-levels h4 {
    font-family: 'Playfair Display', serif;
    color: #E8D5B5;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.level-item {
    background: rgba(201,169,110,0.05);
    border: 1px solid rgba(201,169,110,0.1);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 0.8rem;
    transition: 0.3s;
}

.level-item:hover {
    border-color: rgba(201,169,110,0.25);
}

.level-item .level-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.level-item .level-name {
    color: #F5F0EB;
    font-weight: 600;
    font-size: 0.95rem;
}

.level-item .level-price {
    color: #C9A96E;
    font-weight: 600;
    font-size: 0.95rem;
}

.level-item .level-desc {
    color: #9A9A9A;
    font-size: 0.85rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .lp-hero h1 { font-size: 2.5rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .program-grid { grid-template-columns: 1fr; }
}
