/* ============================================
   ATBATIC - Main Stylesheet
   Design: Premium Minimalist (Light Edition)
   ============================================ */

:root {
    /* Bold Dominant Orange and Blue Palette */
    --primary-color: #f97316;
    /* Vibrant Orange */
    --primary-dark: #ea580c;
    /* Deeper Orange */
    --primary-light: #fff7ed;
    /* Soft Orange Tint */
    --secondary-color: #1e40af;
    /* Deep Royal Blue (Dominant Blue) */
    --accent-color: #0284c7;
    /* Sky Blue accent */

    --bg-white: #ffffff;
    --bg-soft: #f8fafc;
    --bg-page: #f1f5f9;

    --text-main: #1e293b;
    --text-muted: #475569;
    --text-white: #ffffff;

    --border-color: #e2e8f0;
    --success-color: #10b981;
    --error-color: #ef4444;

    /* Smoother, More Refined Shadows */
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-lg: 0 10px 25px -5px rgb(0 0 0 / 0.04), 0 8px 10px -6px rgb(0 0 0 / 0.04);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.08);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 5rem;
    --spacing-3xl: 8rem;

    /* Theme colors from new design */
    --night: #0b1120;
    --deep: #0e1c35;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --white: #f5f0e8;
    --muted: #8a9ab5;

    /* Typography - More modern stack */
    --font-heading: 'Outfit', 'Petrona', serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.875rem;
    --font-size-3xl: 2.25rem;
    --font-size-4xl: 4rem;
    --font-size-5xl: 5rem;

    /* Borders */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 2rem;
    --radius-full: 9999px;

    /* Smoother, Faster Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[v-cloak] {
    display: none !important;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    color: var(--secondary-color);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(var(--font-size-3xl), 8vw, var(--font-size-5xl));
}

h2 {
    font-size: clamp(var(--font-size-2xl), 5vw, var(--font-size-4xl));
}

h3 {
    font-size: var(--font-size-2xl);
}

h4 {
    font-size: var(--font-size-xl);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-muted);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: var(--font-size-base);
    text-transform: none;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    /* maintain readability */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(79, 70, 229, 0.4);
}

.btn-secondary {
    background: var(--bg-soft);
    color: var(--secondary-color);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--secondary-color);
    /* keep contrast */
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background: white;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: white;
    border-bottom-color: var(--border-color);
    box-shadow: var(--shadow-sm);
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.navbar.scrolled .navbar-container {
    padding: 1rem var(--spacing-lg);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -0.04em;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--primary-color);
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 120px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-cta {
    padding: 0.65rem 1.5rem !important;
    font-size: 0.9rem !important;
    border-radius: var(--radius-md) !important;
    /* Slightly less round for a modern look */
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION (NEW DESIGN)
   ============================================ */

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 4rem;
    overflow: hidden;
    background: var(--night);
}

/* Geometric background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(160deg, rgba(11, 17, 32, .4) 0%, rgba(14, 28, 53, .4) 50%, rgba(11, 21, 40, .4) 100%),
        url('/assets/img/header.jpg'),
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201, 168, 76, .10) 0%, transparent 65%),
        radial-gradient(ellipse 50% 80% at 10% 80%, rgba(14, 28, 53, .9) 0%, transparent 70%);
    background-size: cover, cover, auto, auto;
    background-position: center, center, auto, auto;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-attachment: scroll;
}

/* @media (max-width: 768px) {
    .hero::before {
        background-position: right center, right center, auto, auto;
        background-size: cover, cover, auto, auto;
        background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    }
} */

.hero::after {
    display: none;
    /* Disable old after gradient */
}

/* Decorative arc */
.arc {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, .15);
    pointer-events: none;
    overflow: hidden;
}

.arc::after {
    content: '';
    position: absolute;
    inset: 40px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, .08);
}

/* Dot grid */
.dot-grid {
    position: absolute;
    right: 8%;
    top: 15%;
    width: 280px;
    height: 280px;
    background-image: radial-gradient(circle, rgba(201, 168, 76, .25) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
    opacity: .6;
}

/* Content */
.hero-content {
    text-align: left;
    /* Alignment changed from center to left */
    max-width: 780px;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(201, 168, 76, .12);
    border: 1px solid rgba(201, 168, 76, .3);
    border-radius: 100px;
    padding: .4rem 1rem;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp .6s .1s ease forwards;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold);
}

/* Headline */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--white);
    margin-bottom: 1.6rem;
    opacity: 0;
    animation: fadeUp .7s .25s ease forwards;
}

.hero-title em {
    font-style: normal;
    color: var(--gold);
    position: relative;
}

.hero-title em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
}

/* Subline */
.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
    color: #c2cfe0;
    max-width: 580px;
    margin: 0 0 2.4rem 0;
    /* Alignment fix */
    opacity: 0;
    animation: fadeUp .7s .4s ease forwards;
}

.hero-subtitle strong {
    color: var(--white);
    font-weight: 500;
}

/* Feature pills */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp .7s .55s ease forwards;
    text-align: left;
}

.feat {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 10px;
    padding: .6rem 1rem;
    font-size: .88rem;
    color: #c2cfe0;
    transition: border-color .2s, background .2s;
}

.feat:hover {
    border-color: rgba(201, 168, 76, .4);
    background: rgba(201, 168, 76, .06);
    color: var(--white);
}

.feat-icon {
    font-size: 1rem;
}

/* CTA */
.cta-wrap {
    opacity: 0;
    animation: fadeUp .7s .7s ease forwards;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    background: var(--gold);
    color: #0b1120;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 24px rgba(201, 168, 76, .25);
}

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

.cta-arrow {
    display: inline-block;
    transition: transform .2s;
}

.cta:hover .cta-arrow {
    transform: translateX(4px);
}

.cta-note {
    margin-top: .9rem;
    font-size: .82rem;
    color: var(--muted);
}

/* Divider line */
.divider {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .3) 40%, transparent);
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@media (max-width: 600px) {
    .dot-grid {
        display: none;
    }

    .hero-features {
        gap: .5rem;
    }

    .feat {
        font-size: .82rem;
        padding: .5rem .8rem;
    }
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-3xl);
}

.section-tagline {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

/* Cards & Grids */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.card {
    background: var(--bg-white);
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
    transform: translateY(-12px);
}

/* Icons box */
.icon-box {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    transition: var(--transition);
    border: 1px solid rgba(249, 115, 22, 0.1);
}

.card:hover .icon-box {
    background: var(--primary-color);
    color: white;
    transform: rotate(10deg);
}

.card h3 {
    margin-bottom: 1rem;
    font-weight: 750;
    color: var(--secondary-color);
}

/* ============================================
   PROBLEM SECTION
   ============================================ */

.problem-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-soft);
}

.problem-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.problem-column {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.problem-title {
    font-size: var(--font-size-xl);
    margin: var(--spacing-sm) 0 var(--spacing-lg);
    line-height: 1.3;
}

.problem-list {
    list-style: none;
    padding: 0;
}

.problem-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-lg);
    color: var(--text-muted);
}

.list-bullet {
    font-size: 1.25rem;
    min-width: 24px;
    text-align: center;
}

.problem-conclusion {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.problem-conclusion p {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    color: var(--secondary-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .problem-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .problem-title {
        font-size: 1.1rem;
        word-break: break-word;
    }
}

/* ============================================
   POSITIONING SECTION
   ============================================ */

.positioning-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-white);
}

.positioning-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.positioning-title {
    font-size: var(--font-size-3xl);
    margin: var(--spacing-sm) 0 var(--spacing-lg);
    color: var(--secondary-color);
}

.positioning-text {
    font-size: var(--font-size-xl);
    color: var(--text-muted);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
}

.positioning-text strong {
    color: var(--secondary-color);
}

.positioning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.pos-item {
    background: var(--bg-soft);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    transition: var(--transition);
}

.pos-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--primary-light);
}

.pos-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.pos-item p {
    margin: 0;
    font-weight: 600;
    color: var(--secondary-color);
}

.positioning-footer {
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--border-color);
}

.positioning-footer p {
    font-size: var(--font-size-2xl);
    color: var(--text-muted);
}

.positioning-footer strong {
    color: var(--primary-color);
}

/* ============================================
   DETAILED SERVICES SECTION
   ============================================ */

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.service-detail-card {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.service-number {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    color: var(--gold);
    font-weight: 900;
    opacity: 0.3;
}

.service-detail-header h3 {
    font-size: var(--font-size-xl);
    margin: 0;
    color: var(--secondary-color);
    line-height: 1.2;
}

.service-detail-body p {
    font-size: var(--font-size-base);
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.service-sublist {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-md);
}

.service-sublist li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    font-weight: 500;
}

.service-accent-text {
    background: rgba(249, 115, 22, 0.1);
    color: var(--gold);
    padding: 0.85rem 1.15rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    border-left: 4px solid var(--gold);
    display: block;
    margin-top: 1rem;
    line-height: 1.4;
}

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

.service-sublist li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.extra-list {
    list-style: none;
    padding: 0;
}

.extra-list li {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
}

.extra-list li::before {
    content: "→ ";
    color: var(--gold);
}

/* ============================================
   PACKS & PRICING SECTION
   ============================================ */

.packs-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-soft);
}

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

.pack-card {
    background: var(--bg-white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

.pack-card.featured {
    border: 2px solid var(--gold);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    z-index: 2;
}

.pack-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--night);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pack-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.pack-header h3 {
    font-size: var(--font-size-xl);
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.pack-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pack-body {
    flex-grow: 1;
}

.pack-features {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-xl);
}

.pack-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.feat-check {
    color: var(--success-color);
    font-weight: bold;
}

.pack-footer {
    text-align: center;
    margin-top: auto;
}

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

.btn-outline:hover {
    background: var(--gold);
    color: var(--night);
}

/* ============================================
   DIASPORA SECTION
   ============================================ */

.diaspora-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--night);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.diaspora-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-3xl);
    max-width: 1100px;
    margin: 0 auto;
}

.diaspora-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.05);
    border-radius: var(--radius-md);
    padding: var(--spacing-2xl);
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.diaspora-tag {
    background: var(--gold);
    color: var(--night);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
}

.icon-world {
    font-size: 5rem;
    filter: drop-shadow(0 0 15px rgba(201, 168, 76, 0.3));
}

.diaspora-content {
    flex: 1.5;
}

.diaspora-content h2 {
    color: var(--white);
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-lg);
}

.diaspora-intro {
    font-size: var(--font-size-lg);
    color: #c2cfe0;
    line-height: 1.6;
}

.diaspora-benefits {
    list-style: none;
    padding: 0;
    margin: var(--spacing-xl) 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.diaspora-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.diaspora-conclusion {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--gold);
    margin-bottom: var(--spacing-xl);
}

/* ============================================
   DIFFERENTIATION & PROCESS
   ============================================ */

.differentiation-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-white);
}

.diff-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-3xl);
}

.diff-trust,
.process-steps {
    background: var(--bg-soft);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.diff-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-xl) 0;
}

.diff-list li {
    padding: 0.75rem 0;
    border-bottom: 1px dashed var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.diff-motto {
    font-size: var(--font-size-lg);
    color: var(--text-muted);
}

.diff-motto strong {
    color: var(--secondary-color);
}

.step-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.step-num {
    width: 35px;
    height: 35px;
    background: var(--gold);
    color: var(--night);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.process-footer {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--secondary-color);
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

/* ============================================
   REASSURANCE SECTION
   ============================================ */

.reassurance-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-soft);
}

.reassurance-header h3 {
    text-align: center;
    font-size: var(--font-size-xl);
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xl);
}

.reassurance-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.re-item {
    background: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    color: var(--text-main);
}

.reassurance-footer {
    text-align: center;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
    font-style: italic;
    color: var(--text-muted);
}

/* Videos Grid Styling */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.video-item {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background: var(--bg-white);
}

.video-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

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

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .videos-grid {
        gap: var(--spacing-md);
    }
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(160deg, var(--deep) 0%, var(--night) 100%);
    color: var(--white);
    text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-lg);
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
}

.cb-item {
    font-weight: 500;
    color: var(--gold-light);
}

/* ============================================
   WHATSAPP FLOATING BUTTON (PREMIUM)
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: #25D366;
    /* Official WhatsApp Green */
    color: white;
    padding: 0.6rem 1.4rem 0.6rem 0.6rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid white;
}

.whatsapp-icon-wrapper {
    background: white;
    color: #25D366;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    color: white;
}

.whatsapp-float:hover .whatsapp-icon-wrapper {
    transform: rotate(15deg);
}

.whatsapp-text {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* Animation de pulsation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: whatsapp-pulse 2s infinite;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 0.5rem;
    }

    .whatsapp-text {
        display: none;
        /* Icone seule sur mobile pour ne pas gêner la lecture */
    }

    .whatsapp-float {
        padding-right: 0.5rem;
    }
}

@media (max-width: 768px) {
    .diaspora-container {
        flex-direction: column;
        text-align: center;
    }

    .diaspora-benefits {
        grid-template-columns: 1fr;
    }

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

    .cta-benefits {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

@media (max-width: 992px) {
    .packs-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .pack-card.featured {
        transform: scale(1);
        order: -1;
    }
}

/* ============================================
   FOUNDER SECTION (AESTHETIC REFACTOR)
   ============================================ */

.founder-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(to bottom, var(--white), var(--bg-soft));
}

.founder-aesthetic-container {
    display: flex;
    align-items: stretch;
    gap: var(--spacing-3xl);
    max-width: 1200px;
    margin: 0 auto;
    min-height: 650px;
}

.founder-visual {
    flex: 0 0 450px;
    position: relative;
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    flex-direction: column;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(249, 115, 22, 0.2);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 10;
}

.play-button svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.video-thumbnail:hover .play-button svg {
    transform: scale(1.1);
}

.founder-placeholder {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 6rem;
    font-weight: 900;
    opacity: 0.15;
}

.visual-decoration {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    background: var(--gold);
    border-radius: var(--radius-md);
    z-index: 1;
    opacity: 0.1;
}

.founder-text-aesthetic {
    flex: 1;
}

.founder-text-aesthetic h2 {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-md);
    position: relative;
}

.founder-text-aesthetic h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.founder-bio-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: var(--spacing-xl) 0;
}

.founder-bio-text p {
    margin-bottom: var(--spacing-md);
}

.founder-highlight-box {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--secondary-color);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-xl);
}

.founder-highlight-box strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Latest realization styles */
.aesthetic-realizations {
    margin-top: var(--spacing-2xl);
}

.aesthetic-realizations h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: var(--spacing-lg);
}

.realization-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.real-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: var(--transition);
}

.real-tag:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.tag-status {
    color: var(--success-color);
    font-size: 0.8rem;
}

.founder-aesthetic-footer {
    margin-top: var(--spacing-2xl);
}

@media (max-width: 992px) {
    .founder-aesthetic-container {
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }

    .founder-visual {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto var(--spacing-2xl);
        padding-right: 0;
        height: 500px;
    }

    .founder-text-aesthetic h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .realization-tags {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .founder-visual {
        max-width: 100%;
        height: 400px;
    }
}

/* ============================================
   SPECIFIC SECTIONS
   ============================================ */

/* Founder Section Improvements */
.founder-section {
    background-color: var(--bg-soft);
    /* Reverting to soft background after white positioning section */
    position: relative;
    padding: var(--spacing-3xl) 0;
}

.founder-content {
    display: flex;
    align-items: flex-start;
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.founder-text {
    flex: 1;
    padding: 1rem 0;
}

.founder-text h3 {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.founder-text h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 4px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
}

.realization-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.realization-card:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.realization-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.realization-title {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.realization-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.founder-image {
    flex: 0 0 400px;
    position: relative;
}

.founder-quote {
    margin-top: var(--spacing-3xl);
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-soft) 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.founder-quote::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
}

.quote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.quote-item {
    display: flex;
    flex-direction: column;
    padding: var(--spacing-lg);
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.quote-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.quote-item .icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.quote-item .text {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-lg);
}

.quote-item .status {
    align-self: flex-start;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
}

.status-vendu {
    color: rgb(17, 0, 201);
    background: rgba(139, 118, 243, 0.1);
}

.status-loue {
    color: var(--success-color);
    background: rgba(16, 185, 129, 0.1);
}

.image-wrapper {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--primary-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
}

/* Testimonials */
.testimonials-section {
    background: var(--secondary-color);
    color: white;
}

.testimonials-section h2 {
    color: white;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-align: left;
    height: 100%;
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 2rem;
    font-family: var(--font-body);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
}

/* Contact Form */
.contact-section {
    background: var(--bg-soft);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-info-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
}

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

.contact-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.contact-info-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.map-card {
    padding: 0;
    overflow: hidden;
    min-height: 450px;
    width: 100%;
    height: 450px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.contact-info {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    height: 100%;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item .icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.map-container {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 0;
    border: none;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.form-container {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

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

.input-field {
    width: 100%;
    padding: 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-soft);
    font-family: var(--font-body);
    transition: var(--transition);
}

.input-field:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

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

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .founder-content {
        flex-direction: column;
    }

    .founder-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: white;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-xl);
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-header {
        margin-bottom: var(--spacing-lg);
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .form-container,
    .contact-info {
        padding: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ============================================
   LEGAL PAGES STYLES
   ============================================ */

.legal-section {
    padding: 100px 0;
    line-height: 1.6;
}

.legal-content {
    max-width: 800px;
    margin: 40px auto 0;
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.legal-block {
    margin-bottom: 30px;
}

.legal-block h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.legal-block p {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.legal-block ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.legal-block ul li {
    margin-bottom: 5px;
    color: var(--text-muted);
}

/* ============================================
   Google Review Carousel (TrustIndex) Styles
   ============================================ */
.aesthetic-realizations {
    background: var(--bg-soft);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

.aesthetic-realizations h4 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.ti-widget-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 1rem 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.ti-widget-container::-webkit-scrollbar {
    height: 6px;
}

.ti-widget-container::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}

.ti-review-item {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ti-review-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.ti-review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ti-profile-img img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.ti-name {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.ti-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.ti-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.8rem;
}

.ti-star {
    width: 16px;
    height: 16px;
}

.ti-review-content {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-main);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    max-height: 6.4em;
    /* ~4 lines * 1.6 line-height */
}

.ti-review-item.expanded .ti-review-content {
    -webkit-line-clamp: initial;
    max-height: 1000px;
}

.ti-read-more {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.ti-read-more:hover {
    color: var(--primary-dark);
}

.ti-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.ti-rating-text strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.ti-controls {
    display: none;
}

@media (max-width: 768px) {
    .ti-review-item {
        flex: 0 0 85%;
    }
}
/* YouTube Shorts Section Improvements */
.youtube-shorts-section {
    padding: var(--spacing-2xl) 0;
    background: radial-gradient(circle at top right, var(--primary-light), transparent),
                radial-gradient(circle at bottom left, var(--bg-soft), transparent);
    position: relative;
    overflow: hidden;
}

.youtube-shorts-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    filter: blur(120px);
    opacity: 0.05;
    z-index: 0;
}

.shorts-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    z-index: 1;
}

.shorts-container {
    position: relative;
    padding-bottom: 177.78%; /* 9:16 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    background: var(--night);
    border: 8px solid var(--white);
    transition: var(--transition);
}

.shorts-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -12px rgba(249, 115, 22, 0.15);
}

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

.shorts-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px dashed var(--primary-color);
    opacity: 0.1;
    border-radius: 40px;
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .shorts-wrapper {
        max-width: 320px;
    }
}

/* YouTube Shorts Section - Refined Design */
.youtube-shorts-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-soft);
    position: relative;
    overflow: hidden;
}

.youtube-shorts-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shorts-display-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    max-width: 1000px;
    margin-top: var(--spacing-xl);
}

.shorts-video-frame {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.shorts-phone-mockup {
    position: relative;
    padding-bottom: 211%; /* Mockup aspect ratio */
    background: var(--night);
    border-radius: 40px;
    border: 12px solid #1a1a1a;
    box-shadow: 0 50px 100px -20px rgba(0,0,0,0.3);
    overflow: hidden;
    z-index: 2;
}

.shorts-phone-mockup iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.shorts-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 110%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(40px);
    z-index: 1;
}

.shorts-info-card {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--primary-color);
}

.shorts-info-card h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}

.shorts-info-card p {
    color: var(--text-muted);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
}

.shorts-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: var(--font-size-xl);
}

.stat-label {
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .shorts-display-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .shorts-info-card {
        border-left: none;
        border-top: 5px solid var(--primary-color);
        order: -1;
    }
    
    .shorts-video-frame {
        max-width: 320px;
    }
}
