/* ============================================
   LA ROUGE DESIGN SYSTEM
   ============================================
   Colors:
     --black:        #000000  (60% - dominant)
     --gold:         #c9a84c  (30% - secondary)
     --gold-light:   #d4b86a  (gold hover/light)
     --gold-dark:    #a8893d  (gold pressed)
     --red:          #e50000  (10% - accent/CTA)
     --red-hover:    #c40000  (red hover)
     --red-light:    rgba(229,0,0,0.08) (red tint)
     --cream:        #fff8f3  (light background)
     --white:        #ffffff
     --gray-dark:    #1a1a1a  (alt dark bg)
     --gray-text:    #333333  (body text on light)
     --gray-light:   #999999  (muted text)
     --gray-border:  #e0d5c7  (subtle borders)

   Typography:
     Headlines (HE):  'Suez One', serif
     Body (HE):       'Assistant', sans-serif
     Display (EN):    'Cormorant Garamond', serif

   Spacing: 8px base unit
   Border-radius: 0px (sharp luxury) | 4px (buttons)
   Max-width: 1200px
============================================ */

:root {
    --black: #000000;
    --gold: #c9a84c;
    --gold-light: #d4b86a;
    --gold-dark: #a8893d;
    --red: #e50000;
    --red-hover: #c40000;
    --red-light: rgba(229, 0, 0, 0.08);
    --cream: #fff8f3;
    --white: #ffffff;
    --gray-dark: #1a1a1a;
    --gray-text: #333333;
    --gray-light: #999999;
    --gray-border: #e0d5c7;

    --font-headline: 'Suez One', serif;
    --font-body: 'Assistant', sans-serif;
    --font-display: 'Cormorant Garamond', serif;

    --max-width: 1200px;
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 64px;
    --space-2xl: 96px;
    --space-3xl: 128px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--white);
    background-color: var(--black);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul { list-style: none; }

/* TYPOGRAPHY */
h1 {
    font-family: var(--font-headline);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

h2 {
    font-family: var(--font-headline);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 400;
    line-height: 1.3;
}

h3 {
    font-family: var(--font-headline);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 400;
    line-height: 1.4;
}

h4 {
    font-family: var(--font-headline);
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 400;
    line-height: 1.4;
}

.text-gold { color: var(--gold); }
.text-red { color: var(--red); }
.text-cream { color: var(--cream); }
.text-dark { color: var(--gray-text); }

.display-en {
    font-family: var(--font-display);
    font-style: normal;
    direction: ltr;
    unicode-bidi: isolate;
}

/* CONTAINER */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* GOLD DIVIDER */
.divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: var(--space-md) auto;
}

.divider-red {
    width: 40px;
    height: 3px;
    background: var(--red);
    margin: var(--space-sm) auto;
}

.divider-left {
    margin-right: 0;
    margin-left: auto;
}

/* SECTION LABEL */
.section-label {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    direction: ltr;
    unicode-bidi: isolate;
    display: block;
    text-align: center;
    margin-bottom: var(--space-sm);
}

.section-label-dark {
    color: var(--gold-dark);
}

/* SECTION HEADER */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header p {
    color: var(--gray-light);
    font-size: 18px;
    margin-top: var(--space-sm);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-radius: 4px;
}

.btn-primary:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 4px;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-radius: 4px;
    gap: 8px;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
    border-radius: 4px;
    font-weight: 700;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
    min-width: auto;
}

.btn-lg {
    padding: 14px 36px;
    font-size: 17px;
}

/* ============================================
   NAVIGATION
============================================ */
.nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: all 0.3s ease;
    background: transparent;
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

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

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px !important;
    font-size: 14px !important;
    min-width: auto !important;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gold) !important;
    font-size: 14px !important;
    direction: ltr;
    unicode-bidi: isolate;
}

.nav-phone svg {
    width: 16px;
    height: 16px;
}

/* Mobile menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    position: relative;
    z-index: 1002;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s;
    display: block;
}

/* Hamburger → X animation */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

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

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

/* Mobile overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(229, 0, 0, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 var(--space-md);
}

.hero-logo {
    width: 280px;
    margin: 0 auto var(--space-lg);
    animation: fadeInDown 1s ease-out;
}

.hero-headline {
    font-family: var(--font-headline);
    font-size: clamp(22px, 3.5vw, 32px);
    color: var(--cream);
    margin-bottom: var(--space-xs);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subheadline {
    font-family: var(--font-body);
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--gray-light);
    font-weight: 300;
    margin-bottom: var(--space-sm);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-subheadline span {
    color: var(--gold);
}

.hero-urgency {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--red);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    opacity: 0.6;
}

/* ============================================
   TRUST BAR (logos / numbers strip)
============================================ */
.trust-bar {
    padding: var(--space-lg) 0;
    background: var(--gray-dark);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.trust-bar .container {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

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

.trust-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    display: block;
    direction: ltr;
    unicode-bidi: isolate;
}

.trust-label {
    font-size: 14px;
    color: var(--gray-light);
    margin-top: var(--space-xs);
    display: block;
}

/* ============================================
   VALUE PROPOSITIONS
============================================ */
.values {
    padding: var(--space-2xl) 0;
    background: var(--black);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.value-card {
    text-align: center;
    padding: var(--space-lg);
    position: relative;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    width: 40px;
    height: 3px;
    background: var(--red);
}

.value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.value-card h3 {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: var(--space-sm);
}

.value-card p {
    color: var(--gray-light);
    font-size: 15px;
    line-height: 1.8;
}

/* ============================================
   ABOUT SECTION
============================================ */
.about {
    padding: var(--space-3xl) 0;
    background: var(--black);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--gray-dark);
}

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

.about-image-frame::after {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid var(--gold);
    opacity: 0.3;
    pointer-events: none;
}

.about-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--gray-light);
    font-size: 14px;
    text-align: center;
    padding: var(--space-md);
}

.about-content h2 {
    color: var(--cream);
    margin-bottom: var(--space-md);
}

.about-content p {
    color: var(--gray-light);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: var(--space-md);
}

.about-content p strong {
    color: var(--cream);
    font-weight: 600;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    display: block;
    direction: ltr;
    unicode-bidi: isolate;
}

.stat-label {
    font-size: 13px;
    color: var(--gray-light);
    margin-top: var(--space-xs);
    display: block;
}

/* ============================================
   COURSES SECTION
============================================ */
.courses {
    padding: var(--space-3xl) 0;
    background: var(--cream);
    color: var(--gray-text);
}

.courses h2 {
    color: var(--black);
    text-align: center;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.course-card {
    position: relative;
    background: var(--white);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--gray-border);
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.course-image {
    aspect-ratio: 3/4;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

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

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--gray-light);
    font-size: 12px;
    text-align: center;
    padding: var(--space-sm);
}

.course-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    letter-spacing: 1px;
    z-index: 2;
}

.course-info {
    padding: var(--space-md);
    text-align: center;
}

.course-info h3 {
    color: var(--black);
    font-size: 18px;
    margin-bottom: var(--space-xs);
}

.course-info .course-en {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--gold);
    direction: ltr;
    unicode-bidi: isolate;
    letter-spacing: 1px;
}

.course-info .course-desc {
    font-size: 14px;
    color: var(--gray-light);
    margin-top: var(--space-xs);
}

.course-info .course-meta {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
    font-size: 12px;
    color: var(--gray-light);
}

.course-info .course-cta {
    margin-top: var(--space-sm);
}

/* ============================================
   TESTIMONIALS / SUCCESS STORIES
============================================ */
.testimonials {
    padding: var(--space-3xl) 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.03) 0%, transparent 70%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    position: relative;
}

.testimonial-card {
    background: var(--gray-dark);
    padding: var(--space-lg);
    border: 1px solid rgba(201, 168, 76, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--gold);
}

.testimonial-card::before {
    content: '\201D';
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--red);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-sm);
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.9;
    color: var(--cream);
    font-weight: 300;
    margin-bottom: var(--space-md);
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar-placeholder span {
    font-family: var(--font-headline);
    color: var(--gold);
    font-size: 18px;
}

.testimonial-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--white);
}

.testimonial-role {
    font-size: 13px;
    color: var(--gold);
}

/* ============================================
   VIDEO TESTIMONIAL
============================================ */
.video-testimonial {
    margin-top: var(--space-xl);
    text-align: center;
}

.video-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: var(--gray-dark);
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.video-wrapper iframe,
.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--gray-light);
    gap: var(--space-sm);
}

.video-placeholder svg {
    width: 64px;
    height: 64px;
    stroke: var(--gold);
    opacity: 0.5;
}

/* ============================================
   GALLERY
============================================ */
.gallery {
    padding: var(--space-3xl) 0;
    background: var(--gray-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--black);
}

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

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: var(--space-sm);
}

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

.gallery-item-overlay p {
    font-size: 13px;
    color: var(--white);
}

/* Large featured items */
.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

/* ============================================
   FOR WHO SECTION
============================================ */
.for-who {
    padding: var(--space-3xl) 0;
    background: var(--cream);
    color: var(--gray-text);
}

.for-who h2 {
    text-align: center;
    color: var(--black);
}

.personas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.persona-card {
    padding: var(--space-lg);
    background: var(--white);
    border: 1px solid var(--gray-border);
    position: relative;
    overflow: hidden;
}

.persona-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(to left, var(--gold), var(--red));
}

.persona-card h3 {
    color: var(--black);
    margin-bottom: var(--space-sm);
}

.persona-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: var(--space-md);
}

.persona-features {
    list-style: none;
}

.persona-features li {
    padding: var(--space-xs) 0;
    font-size: 14px;
    color: var(--gray-text);
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
}

.persona-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: var(--red);
    margin-top: 8px;
}

.persona-cta {
    margin-top: var(--space-md);
}

/* ============================================
   PROCESS / HOW IT WORKS
============================================ */
.process {
    padding: var(--space-3xl) 0;
    background: var(--black);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to left, transparent, var(--gold), transparent);
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gray-dark);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gold);
    position: relative;
    z-index: 1;
}

.process-step h4 {
    color: var(--cream);
    margin-bottom: var(--space-xs);
    font-size: 18px;
}

.process-step p {
    color: var(--gray-light);
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================
   FAQ SECTION
============================================ */
.faq {
    padding: var(--space-3xl) 0;
    background: var(--cream);
    color: var(--gray-text);
}

.faq h2 {
    color: var(--black);
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: var(--space-xl) auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--gray-border);
}

.faq-question {
    width: 100%;
    padding: var(--space-md) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--black);
    text-align: right;
    gap: var(--space-sm);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    stroke: var(--gold);
    transition: transform 0.3s;
}

.faq-item.open .faq-question svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 0 var(--space-md);
    font-size: 15px;
    line-height: 1.9;
    color: #555;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

/* ============================================
   CTA BANNER
============================================ */
.cta-banner {
    padding: var(--space-2xl) 0;
    background: var(--gray-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(229, 0, 0, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
}

.cta-banner .container {
    position: relative;
}

.cta-banner h2 {
    color: var(--cream);
    margin-bottom: var(--space-sm);
}

.cta-banner p {
    color: var(--gray-light);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

.cta-banner .urgency {
    color: var(--red);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: var(--space-md);
}

/* ============================================
   CTA / CONTACT SECTION
============================================ */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--black);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(229, 0, 0, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
}

.contact-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.contact-content h2 {
    color: var(--cream);
    margin-bottom: var(--space-sm);
}

.contact-content p {
    color: var(--gray-light);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.contact-info-list {
    margin-top: var(--space-lg);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
    color: var(--gray-light);
    font-size: 15px;
}

.contact-info-item svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    stroke: var(--gold);
}

.contact-info-item a {
    color: var(--gold);
    transition: color 0.3s;
}

.contact-info-item a:hover {
    color: var(--gold-light);
}

.contact-form {
    background: var(--gray-dark);
    padding: var(--space-lg);
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.contact-form-title {
    font-family: var(--font-headline);
    font-size: 20px;
    color: var(--cream);
    margin-bottom: var(--space-md);
    text-align: center;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--black);
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.3s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-light);
    opacity: 0.5;
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 16px center;
    padding-left: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.form-buttons .btn {
    flex: 1;
    min-width: 160px;
}

.form-promise {
    text-align: center;
    font-size: 13px;
    color: var(--gray-light);
    margin-top: var(--space-sm);
}

/* ============================================
   FOOTER
============================================ */
.footer {
    padding: var(--space-xl) 0 var(--space-lg);
    background: var(--black);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.footer-brand p {
    color: var(--gray-light);
    font-size: 14px;
    line-height: 1.8;
    margin-top: var(--space-sm);
    max-width: 300px;
}

.footer-logo img {
    height: 40px;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: var(--space-sm);
}

.footer-col ul li {
    margin-bottom: var(--space-xs);
}

.footer-col ul a {
    color: var(--gray-light);
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--gold);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-light);
}

/* ============================================
   BLOG / ARTICLES
============================================ */
.blog-preview {
    padding: var(--space-3xl) 0;
    background: var(--cream);
    color: var(--gray-text);
}

.blog-preview h2 {
    color: var(--black);
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.blog-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--gray-dark);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: var(--space-md);
}

.blog-card-category {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: var(--space-xs);
    display: inline-block;
}

.blog-card-body h3 {
    font-size: 18px;
    color: var(--black);
    margin-bottom: var(--space-xs);
    line-height: 1.4;
}

.blog-card-body p {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--gray-light);
}

.blog-card-link {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.blog-card-link:hover {
    color: var(--red);
}

.blog-more {
    text-align: center;
    margin-top: var(--space-lg);
}

/* ── Blog Main Page ── */
.blog-page {
    padding: var(--space-2xl) 0;
    background: var(--cream);
    color: var(--gray-text);
    min-height: 60vh;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: var(--space-xl);
}

.blog-main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    align-content: start;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.blog-sidebar-section {
    margin-bottom: var(--space-lg);
}

.blog-sidebar-section h4 {
    font-size: 16px;
    color: var(--black);
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--gold);
}

.blog-categories {
    list-style: none;
}

.blog-categories li {
    margin-bottom: 4px;
}

.blog-categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    font-size: 14px;
    color: var(--gray-text);
    border-radius: 4px;
    transition: all 0.2s;
}

.blog-categories a:hover,
.blog-categories a.active {
    background: var(--black);
    color: var(--gold);
}

.blog-categories .cat-count {
    font-size: 12px;
    color: var(--gray-light);
    background: rgba(0,0,0,0.05);
    padding: 2px 8px;
    border-radius: 10px;
}

.blog-categories a:hover .cat-count,
.blog-categories a.active .cat-count {
    background: rgba(201,168,76,0.2);
    color: var(--gold);
}

/* Featured article */
.blog-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border: 1px solid var(--gray-border);
    overflow: hidden;
    transition: all 0.3s;
}

.blog-featured:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.blog-featured .blog-card-image {
    aspect-ratio: auto;
    min-height: 300px;
}

.blog-featured .blog-card-body {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured .blog-card-body h3 {
    font-size: 24px;
}

/* ============================================
   FLOATING WHATSAPP
============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.whatsapp-tooltip {
    position: fixed;
    bottom: 90px;
    left: 24px;
    background: var(--white);
    color: var(--gray-text);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 999;
    max-width: 220px;
    opacity: 0;
    transform: translateY(10px);
    animation: tooltipIn 0.5s ease 3s both;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 30px;
    width: 12px;
    height: 12px;
    background: var(--white);
    transform: rotate(45deg);
}

/* ============================================
   PAGE HEADER (inner pages)
============================================ */
.page-header {
    padding: 160px 0 var(--space-2xl);
    background: var(--black);
    text-align: center;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.page-header h1 {
    color: var(--cream);
    margin-bottom: var(--space-xs);
}

.page-header p {
    color: var(--gray-light);
    font-size: 18px;
}

/* ============================================
   COURSE DETAIL PAGE
============================================ */
.course-detail {
    padding: var(--space-3xl) 0;
}

.course-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.course-detail-image {
    aspect-ratio: 3/4;
    background: var(--gray-dark);
    overflow: hidden;
    position: relative;
}

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

.course-detail-content h2 {
    color: var(--cream);
    margin-bottom: var(--space-sm);
}

.course-detail-content .course-en-title {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--gold);
    direction: ltr;
    unicode-bidi: isolate;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
}

.course-detail-content p {
    color: var(--gray-light);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: var(--space-md);
}

.course-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
}

.course-highlight {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm);
    background: var(--gray-dark);
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.course-highlight svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    stroke: var(--gold);
}

.course-highlight span {
    font-size: 14px;
    color: var(--cream);
}

.course-curriculum {
    margin-top: var(--space-xl);
}

.course-curriculum h3 {
    color: var(--cream);
    margin-bottom: var(--space-md);
}

.curriculum-item {
    padding: var(--space-md);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    display: flex;
    gap: var(--space-sm);
}

.curriculum-number {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gold);
    min-width: 40px;
}

.curriculum-item h4 {
    color: var(--cream);
    font-size: 16px;
    margin-bottom: 4px;
}

.curriculum-item p {
    color: var(--gray-light);
    font-size: 14px;
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes tooltipIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .blog-featured {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .process-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        bottom: 0;
        width: 280px;
        background: var(--black);
        flex-direction: column;
        padding: 100px var(--space-lg) var(--space-lg);
        border-left: 1px solid rgba(201, 168, 76, 0.15);
        gap: 0;
        z-index: 1001;
        transition: right 0.35s ease;
        overflow-y: auto;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    }

    .nav-links a {
        display: block;
        padding: var(--space-sm) 0;
        font-size: 16px;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links .nav-phone {
        padding: var(--space-sm) 0;
        font-size: 16px !important;
    }

    .nav-links .nav-cta {
        margin-top: var(--space-sm);
        text-align: center;
        width: 100%;
        padding: 10px 20px !important;
        font-size: 14px !important;
        min-height: auto !important;
    }

    .nav .container {
        flex-direction: row-reverse;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-logo img {
        height: 36px;
    }

    .hero-logo {
        width: 200px;
    }

    .about-wrapper,
    .contact-wrapper,
    .course-detail-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .about-image {
        order: -1;
    }

    .values-grid,
    .testimonials-grid,
    .personas-grid {
        grid-template-columns: 1fr;
    }

    .courses-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: var(--space-xl) auto 0;
    }

    .blog-main-grid {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: var(--space-xl) auto 0;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .course-highlights {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .trust-bar .container {
        gap: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .form-buttons {
        flex-direction: column;
    }

    .form-buttons .btn {
        width: 100%;
    }
}
