/* Custom Fonts */
@font-face {
    font-family: 'Zataar';
    src: url('font/Boharat-Zataar_Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-dark: #051F20;
    --bg-darker: #020e0f;
    --gold: #D4AF37;
    --gold-light: #F2D06B;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --text-main: #FFFFFF;
    --text-muted: #A0B3B5;

    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(12px);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-arabic: 'Zataar', serif;

    --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
    --ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Ambient Light / Noise */
.ambient-light {
    position: fixed;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 80vh;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    opacity: 0.02;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--gold);
    font-weight: 400;
}

h1 {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    /* Increased size */
    line-height: 1.1;
    margin-bottom: 2rem;
}

h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    /* Increased size */
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.text-gradient {
    background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s var(--ease-out);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    z-index: 10;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-darker);
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    pointer-events: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--gold-glow);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-text {
    background: transparent;
    color: var(--text-main);
    padding: 1rem;
    position: relative;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.btn-text:hover::after {
    width: 100%;
}

.btn-text .arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.btn-text:hover .arrow {
    transform: translateX(5px);
}

.btn.sm {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
}

.full-width {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 2rem 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(5, 31, 32, 0.9);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.8;
    transition: all 0.3s;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -15px;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
    transition: transform 0.3s var(--ease-out);
}

.nav-link:hover {
    opacity: 1;
    color: var(--gold);
}

.nav-link:hover::before {
    transform: translateY(-50%) scale(1);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 8rem;
    padding-bottom: 4rem;
}

/* Hero container - allow full width for video */
.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: none;
}

.hero-content {
    max-width: 800px;
    text-align: center;
}

.eyebrow {
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: block;
}

.hero-text {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: center;
    justify-content: center;
}

/* Sections General */
.section {
    padding: 10rem 0;
    /* Increased padding */
}

.section-head {
    margin-bottom: 5rem;
    max-width: 700px;
}

.center {
    margin: 0 auto;
    text-align: center;
}

/* Grid Utilities */
/* Grid Utilities */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Features (Constat) */
.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    /* Reduced padding */
    border-radius: 12px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::after {
    opacity: 1;
}

/* Values */
.value-card-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.value-content {
    flex: 1;
    z-index: 2;
}

.value-content p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.value-title-large {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.value-sub {
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    display: block;
}

.value-icon {
    width: 60px;
    height: auto;
    object-fit: contain;
    opacity: 0.8;
    align-self: flex-end;
    margin-top: auto;
    transition: transform 0.4s var(--ease-out);
    z-index: 2;
}

.feature-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    opacity: 1;
}

/* Watermark */
.watermark-bg {
    position: absolute;
    top: 70%;
    /* Requested top position */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: auto;
    opacity: 0.25;
    /* Requested opacity */
    z-index: 0;
    pointer-events: none;
    transition: all 0.5s ease-out;
    filter: grayscale(100%);
}

.feature-card:hover .watermark-bg {
    opacity: 0.35;
    transform: translate(-50%, -50%) scale(1.05);
}

/* Method (5 Phases) */
.phases-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.phase-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    height: 100%;
}

.phase-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.3);
}

.phase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1.5rem;
}

.phase-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
    transition: color 0.3s;
}

.phase-card:hover .phase-num {
    color: rgba(212, 175, 55, 0.25);
}

.phase-card h3 {
    color: var(--text-main);
    margin-bottom: 0;
    font-size: 1.5rem;
}

.phase-icon {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s;
}

.phase-card:hover .phase-icon {
    transform: scale(1.1);
}

.phase-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* CTA */
.cta-section {
    padding-top: 6rem;
    padding-bottom: 12rem;
}

.cta-glass {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.6), rgba(10, 10, 10, 0.8));
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: var(--glass-blur);
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.1);
}

.cta-glass h2 {
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.input-field {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    color: white;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.input-field:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.5);
}

/* ========================================
   VSL VIDEO SECTION - LAPTOP FRAME STYLE
   ======================================== */
.vsl-container {
    margin-top: 4rem;
    width: 65vw;
    /* 65% of screen width */
    max-width: 1200px;
    /* Cap for very large screens */
    min-width: 320px;
    /* Minimum for mobile */
    perspective: 1000px;
    /* Enable 3D perspective */
}

/* Premium Laptop Frame with Golden Border */
.laptop-frame {
    position: relative;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 20px;
    overflow: visible;
    /* Allow shadow to overflow */
    /* Golden border glow */
    border: 2px solid rgba(212, 175, 55, 0.4);
    /* Massive 3D elevation effect */
    box-shadow:
        /* Golden glow */
        0 0 40px rgba(212, 175, 55, 0.25),
        0 0 80px rgba(212, 175, 55, 0.15),
        /* Deep shadows for elevation */
        0 50px 100px rgba(0, 0, 0, 0.8),
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 15px 30px rgba(0, 0, 0, 0.5),
        /* Inner highlight */
        0 0 1px rgba(255, 255, 255, 0.2) inset;
    /* 3D transform - slight tilt for depth */
    transform: translateY(-20px) rotateX(2deg);
    transform-style: preserve-3d;
}

/* Browser-style Top Bar with golden accent */
.laptop-top-bar {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    background: linear-gradient(180deg, #3d3d3d 0%, #2d2d2d 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 18px 18px 0 0;
}

/* Three Colored Dots (macOS style) */
.window-dots {
    display: flex;
    gap: 10px;
}

.window-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.window-dots .dot.red {
    background: linear-gradient(180deg, #ff5f57 0%, #e0443e 100%);
    box-shadow: 0 0 6px rgba(255, 95, 87, 0.5);
}

.window-dots .dot.yellow {
    background: linear-gradient(180deg, #febc2e 0%, #d9a021 100%);
    box-shadow: 0 0 6px rgba(254, 188, 46, 0.5);
}

.window-dots .dot.green {
    background: linear-gradient(180deg, #28c840 0%, #1fa835 100%);
    box-shadow: 0 0 6px rgba(40, 200, 64, 0.5);
}

.laptop-frame:hover .window-dots .dot {
    transform: scale(1.15);
}

/* Window Title with golden text */
.window-title {
    flex: 1;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(212, 175, 55, 0.6);
    letter-spacing: 1px;
}

/* Video Content Area */
.laptop-frame .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    background: #0a0a0a;
    border: none;
    border-radius: 0 0 18px 18px;
    overflow: hidden;
}

.laptop-frame .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Golden reflection at bottom */
.laptop-frame::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 10%;
    right: 10%;
    height: 30px;
    background: linear-gradient(180deg,
            rgba(212, 175, 55, 0.15) 0%,
            transparent 100%);
    filter: blur(15px);
    pointer-events: none;
    border-radius: 50%;
}

/* Golden glow ring behind frame */
.laptop-frame::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0.3) 0%,
            rgba(212, 175, 55, 0.1) 50%,
            rgba(212, 175, 55, 0.3) 100%);
    border-radius: 24px;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.6;
}

/* Hover effect - even more elevation */
.laptop-frame:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow:
        /* Stronger golden glow */
        0 0 60px rgba(212, 175, 55, 0.35),
        0 0 120px rgba(212, 175, 55, 0.2),
        /* Even deeper shadows */
        0 60px 120px rgba(0, 0, 0, 0.85),
        0 40px 80px rgba(0, 0, 0, 0.7),
        0 20px 40px rgba(0, 0, 0, 0.6),
        /* Inner highlight */
        0 0 2px rgba(255, 255, 255, 0.25) inset;
    transform: translateY(-30px) rotateX(2deg) scale(1.02);
}

.laptop-frame:hover::before {
    opacity: 0.9;
}

.laptop-frame {
    transition: all 0.5s var(--ease-out);
}

/* Video placeholder (kept for fallback) */
.video-wrapper {
    position: relative;
    z-index: 10;
}

.video-wrapper iframe {
    position: relative;
    z-index: 20;
    pointer-events: auto;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(5, 31, 32, 0.9) 0%, rgba(2, 14, 15, 0.95) 100%);
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
}

.video-placeholder:hover {
    background: linear-gradient(135deg, rgba(5, 31, 32, 0.8) 0%, rgba(2, 14, 15, 0.9) 100%);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 30px var(--gold-glow);
}

.play-button svg {
    width: 32px;
    height: 32px;
    color: var(--bg-dark);
    margin-left: 4px;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 0 50px var(--gold-glow);
}

.video-placeholder p {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.video-duration {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========================================
   BOOKING / CALENDLY SECTION
   ======================================== */
.booking-section {
    background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.02) 50%, transparent 100%);
}

.calendly-embed {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.calendly-inline-widget {
    min-width: 320px;
    height: 700px;
}

/* ========================================
   WHATSAPP SECTION
   ======================================== */
.whatsapp-section {
    padding: 4rem 0;
}

.whatsapp-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem 3rem;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
}

.whatsapp-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.whatsapp-content p {
    color: var(--text-muted);
    margin: 0;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #25D366;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-whatsapp:hover {
    background: #20BD5A;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.02) 0%, transparent 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    transition: all 0.4s var(--ease-out);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--bg-dark);
}

.testimonial-info h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: var(--text-main);
}

.testimonial-project {
    font-size: 0.85rem;
    color: var(--gold);
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team-section {
    background: var(--bg-darker);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.team-member {
    text-align: center;
    transition: transform 0.4s var(--ease-out);
    cursor: pointer;
    padding: 1rem;
    border-radius: 12px;
    background: transparent;
    border: 1px solid transparent;
}

.team-member:hover {
    transform: translateY(-5px);
    background: var(--glass-bg);
    border-color: var(--glass-border);
}

.team-member.expanded {
    background: var(--glass-bg);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.team-photo-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--glass-border);
    transition: border-color 0.4s ease, transform 0.3s ease;
}

.team-member:hover .team-photo-wrapper,
.team-member:focus .team-photo-wrapper,
.team-member.expanded .team-photo-wrapper {
    border-color: var(--gold);
}

.team-member.expanded .team-photo-wrapper {
    transform: scale(1.05);
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.team-member:hover .team-photo,
.team-member:focus .team-photo,
.team-member.expanded .team-photo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--text-main);
}

.team-role {
    display: block;
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Short description - always visible */
.team-desc-short {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Full description - hidden by default */
.team-desc-full {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.3s ease;
    margin-top: 0;
}

.team-desc-full p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    padding-top: 0.75rem;
    border-top: 1px solid var(--glass-border);
}

/* Expanded state */
.team-member.expanded .team-desc-full {
    max-height: 300px;
    opacity: 1;
    margin-top: 0.75rem;
}

.team-member.expanded .team-desc-short {
    color: var(--gold);
}

.team-member.expanded .team-expand-hint {
    opacity: 0;
}

/* Expand hint */
.team-expand-hint {
    display: block;
    font-size: 0.7rem;
    color: var(--gold);
    opacity: 0.6;
    margin-top: 0.5rem;
    transition: opacity 0.3s ease;
}

.team-member:hover .team-expand-hint {
    opacity: 1;
}

/* ========================================
   CTA BUTTONS GROUP
   ======================================== */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-whatsapp {
    background: transparent;
    border: 2px solid #25D366;
    color: #25D366;
}

.cta-buttons .btn-whatsapp:hover {
    background: #25D366;
    color: white;
}

/* Animations Classes */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    will-change: opacity, transform;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 5rem 0;
    }

    .grid-3,
    .split-layout,
    .phases-wrapper,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .feature-card,
    .phase-card {
        padding: 2rem;
    }

    .hero {
        padding-top: 8rem;
        text-align: center;
        min-height: auto;
        padding-bottom: 5rem;
    }

    .hero-content {
        margin: 0 auto;
    }

    .vsl-container {
        margin-top: 2rem;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .header-inner {
        justify-content: space-between;
    }

    .cta-glass {
        padding: 2.5rem;
    }

    /* WhatsApp Section Mobile */
    .whatsapp-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .whatsapp-content {
        margin-bottom: 1rem;
    }

    /* Team Section Mobile */
    .team-photo-wrapper {
        width: 120px;
        height: 120px;
    }

    /* CTA Buttons Mobile */
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* Initial Load Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s forwards var(--ease-out);
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   BLOG SECTION
   ======================================== */
.blog-section {
    padding: 8rem 0;
    position: relative;
    background-color: var(--bg-dark);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    min-height: 300px;
    padding: 2.5rem 2rem;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.3);
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: linear-gradient(45deg, var(--gold) 25%, transparent 25%, transparent 50%, var(--gold) 50%, var(--gold) 75%, transparent 75%, transparent);
    background-size: 60px 60px;
    z-index: 0;
    transition: opacity 0.4s ease;
}

.blog-card:hover::before {
    opacity: 0.1;
}

.blog-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.blog-card-eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: block;
    font-weight: 500;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.blog-card-subtitle {
    font-size: 1rem;
    color: var(--text-main);
    opacity: 0.8;
    line-height: 1.5;
}

/* ========================================
   ARTICLE PAGE STYLES
   ======================================== */
.article-page header {
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.article-page header.scrolled {
    background: var(--bg-darker);
    border-bottom: 1px solid var(--glass-border);
}

.article-page .hero {
    min-height: 40vh;
    padding-top: 8rem;
    padding-bottom: 4rem;
    align-items: flex-end;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.article-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s;
    font-weight: 500;
}

.back-link svg {
    margin-right: 0.5rem;
    width: 18px;
    height: 18px;
}

.back-link:hover {
    transform: translateX(-5px);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.article-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.article-content h2 {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

.article-content h3 {
    color: white;
    font-size: 1.4rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    color: #e0e0e0;
}

.article-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.article-content strong {
    color: white;
    font-weight: 600;
}

.article-content blockquote {
    border-left: 4px solid var(--gold);
    padding: 1.5rem 2rem;
    margin: 3rem 0;
    font-style: italic;
    color: var(--gold-light);
    font-size: 1.25rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 0 12px 12px 0;
}

/* ═══════════════════════════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════════════════════════ */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.blog-card {
    display: block;
    text-decoration: none;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
    z-index: 5;
    cursor: pointer;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(212, 175, 55, 0.02) 10px,
            rgba(212, 175, 55, 0.02) 20px);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-card-content {
    position: relative;
    z-index: 1;
}

.blog-card-eyebrow {
    display: block;
    font-family: var(--font-arabic);
    font-size: 1.8rem;
    color: var(--gold);
    opacity: 0.4;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.blog-card-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   ENHANCED FOOTER STYLES
   ═══════════════════════════════════════════════════════════════ */
.footer {
    background: linear-gradient(180deg, transparent, rgba(10, 9, 8, 0.95));
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 4rem 0 2rem;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-brand .footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--text-muted);
    font-style: italic;
}

.footer-links h4,
.footer-social h4 {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.35rem 0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    color: var(--gold);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--gold);
}

.admin-link {
    opacity: 0.5;
}

.admin-link:hover {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE MENU TOGGLE
   ═══════════════════════════════════════════════════════════════ */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 2rem;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, rgba(20, 18, 15, 0.98), rgba(10, 9, 8, 0.99));
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(212, 175, 55, 0.15);
        z-index: 1000;
        display: flex;
    }

    .nav.mobile-open {
        right: 0;
    }

    .nav .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav .btn {
        margin-top: 1rem;
        text-align: center;
    }

    /* Footer mobile */
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal {
        gap: 1.5rem;
    }
}

/* ========================================
   LEGAL PAGES STYLES
   ======================================== */
.legal-page {
    padding-top: 8rem;
    padding-bottom: 4rem;
    background-color: var(--bg-dark);
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legal-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--gold), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    position: sticky;
    top: 100px;
    z-index: 50;
    background: rgba(5, 31, 32, 0.9);
    padding: 1rem;
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.legal-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.legal-nav a:hover,
.legal-nav a.active {
    color: var(--bg-dark);
    background: var(--gold);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 6rem;
    scroll-margin-top: 180px;
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.legal-section h2 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.legal-section h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-section h4 {
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
}

.legal-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-align: justify;
}

.legal-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--text-muted);
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-section strong {
    color: #fff;
    font-weight: 600;
}

/* Arabic Calligraphy Watermark */
.card-watermark-arabic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-arabic);
    font-size: 8rem;
    color: var(--gold);
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
    line-height: 1;
}

.method-card:hover .card-watermark-arabic,
.offer-card:hover .card-watermark-arabic {
    opacity: 0.08;
    transform: translate(-50%, -50%) scale(1.1);
    transition: all 0.5s ease;
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS CAROUSEL
   ═══════════════════════════════════════════════════════════════ */
.testimonials-grid {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 1rem 1rem 3rem 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */

    /* Center align scroll items */
    scroll-padding: 1rem;

    /* Ensure nice momentum scrolling on iOS */
    -webkit-overflow-scrolling: touch;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.testimonial-card {
    flex: 0 0 350px;
    width: 350px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    /* Assurer que la hauteur s'adapte mais reste cohérente */
    height: auto;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), rgba(212, 175, 55, 0.5));
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.testimonial-avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.testimonial-info {
    flex: 1;
    overflow: hidden;
}

.testimonial-info h4 {
    color: var(--text-main);
    font-size: 1.1rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-project {
    display: block;
    color: var(--gold);
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-quote {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Stars rating */
.stars {
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .testimonials-grid {
        gap: 1rem;
        padding-left: 0;
        padding-right: 0;
    }

    .testimonial-card {
        flex: 0 0 85vw;
        width: 85vw;
        scroll-snap-align: center;
    }
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    /* Glass feel */
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
}

/* Darker background for testimonials to make cards pop */
#temoignages {
    background: rgba(0, 0, 0, 0.3);
    /* Slightly darker than base */
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    /* Context for absolute positioning if needed */
}

/* Ensure padding is sufficient for the background to look deliberate */
.testimonials-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* =========================================
   TESTIMONIALS MARQUEE - Full Width Carousel
   ========================================= */
.testimonials-section-fullwidth {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}

.testimonials-marquee-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    position: relative;
    /* Fade mask on sides */
    mask-image: linear-gradient(to right,
            rgba(0, 0, 0, 0) 0%,
            rgb(0, 0, 0) 10%,
            rgb(0, 0, 0) 90%,
            rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right,
            rgba(0, 0, 0, 0) 0%,
            rgb(0, 0, 0) 10%,
            rgb(0, 0, 0) 90%,
            rgba(0, 0, 0, 0) 100%);
}

.testimonials-marquee {
    display: flex;
    width: fit-content;
    animation: scroll-marquee 60s linear infinite;
}

.testimonials-marquee:hover {
    animation-play-state: paused;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonials-track {
    display: flex;
    gap: 24px;
    padding: 1rem 0;
    flex-shrink: 0;
}

/* Marquee Testimonial Card */
.marquee-testimonial-card {
    flex-shrink: 0;
    width: 380px;
    margin-right: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.4s var(--ease-out);
    cursor: default;
}

.marquee-testimonial-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.marquee-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.marquee-quote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
    min-height: 100px;
}

.marquee-person {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-darker);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.marquee-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.marquee-info strong {
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 600;
}

.marquee-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.marquee-info em {
    color: var(--gold);
    font-style: normal;
    font-weight: 500;
}

/* Responsive Marquee */
@media (max-width: 768px) {
    .marquee-testimonial-card {
        width: 300px;
        padding: 1.5rem;
    }

    .marquee-quote {
        font-size: 0.9rem;
        min-height: 80px;
    }

    .testimonials-marquee {
        animation-duration: 40s;
    }

    .testimonials-marquee-wrapper {
        mask-image: linear-gradient(to right,
                rgba(0, 0, 0, 0) 0%,
                rgb(0, 0, 0) 5%,
                rgb(0, 0, 0) 95%,
                rgba(0, 0, 0, 0) 100%);
        -webkit-mask-image: linear-gradient(to right,
                rgba(0, 0, 0, 0) 0%,
                rgb(0, 0, 0) 5%,
                rgb(0, 0, 0) 95%,
                rgba(0, 0, 0, 0) 100%);
    }
}