/**
 * Elev8d Therapy - Main Stylesheet
 * Modern, clean design for rehabilitation therapy
 */

/* ========================================
   CSS Variables
   ======================================== */
:root {
    /* Colors - Gamma lavender theme */
    --color-primary: #2d2d3a;
    --color-secondary: #3d3d4a;
    --color-accent: #4ecdc4;
    --color-accent-hover: #3dbdb5;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-muted: #888888;
    --color-white: #ffffff;
    --color-background: #c9c9d8;
    --color-surface: #ffffff;
    --color-surface-alt: #e8e8f0;
    --color-border: #d0d0dc;
    --color-lavender: #c9c9d8;
    --color-lavender-light: #d8d8e4;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 16px;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3rem;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;

    /* Layout */
    --max-width: 1200px;
    --header-height: 80px;

    /* Effects */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --transition: 0.3s ease;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

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

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

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

ul, ol {
    list-style: none;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-primary);
}

h1 { font-size: var(--font-size-5xl); font-weight: 800; }
h2 { font-size: var(--font-size-4xl); font-weight: 700; }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }

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

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

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

/* ========================================
   Header & Navigation
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    gap: var(--spacing-xs);
    font-size: var(--font-size-xl);
    font-weight: 700;
}

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

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav-menu a {
    font-weight: 500;
    color: var(--color-text);
    transition: color var(--transition);
}

.nav-menu a:hover {
    color: var(--color-accent);
}

.nav-cta {
    background: var(--color-accent);
    color: var(--color-white) !important;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    transition: background var(--transition);
}

.nav-cta:hover {
    background: var(--color-accent-hover);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm);
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    left: 0;
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: calc(100vh - var(--header-height));
    display: grid;
    grid-template-columns: 55% 45%;
    position: relative;
    background: var(--color-lavender);
    overflow: hidden;
    margin-top: var(--header-height);
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-3xl);
    background: var(--color-lavender);
}

.hero-label {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
}

.hero-logo {
    width: 130px;
    height: 130px;
    object-fit: contain;
    margin-bottom: var(--spacing-xl);
    border-radius: var(--radius-md);
}

.hero-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: var(--font-size-2xl);
    color: var(--color-text-light);
    max-width: 450px;
    line-height: 1.6;
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-base);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

/* ========================================
   Section Styles
   ======================================== */
.section {
    padding: var(--spacing-4xl) var(--spacing-xl);
}

.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

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

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

.section-header p {
    color: var(--color-text-light);
    font-size: var(--font-size-lg);
}

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

.section-dark {
    background: var(--color-lavender);
    color: var(--color-text);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--color-primary);
}

/* ========================================
   Card Grid
   ======================================== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-2xl);
}

.card-icon-gray {
    width: 45px;
    height: 45px;
    background: #8a8a99;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    font-size: 1.25rem;
    color: white;
}

/* ========================================
   Techniques Grid
   ======================================== */
.techniques-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    margin-top: var(--spacing-3xl);
    align-items: center;
}

.techniques-content h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-lg);
}

.techniques-list {
    list-style: disc;
    padding-left: 1.5rem;
    display: grid;
    gap: 0.75rem;
}

.techniques-list li {
    font-size: var(--font-size-sm);
    color: var(--color-text);
}

.techniques-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.techniques-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.card h3 {
    margin-bottom: var(--spacing-sm);
}

.card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* ========================================
   Features List
   ======================================== */
.features-list {
    display: grid;
    gap: var(--spacing-md);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--color-accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: var(--font-size-sm);
}

/* ========================================
   About Section - Split Layout with Gradient
   ======================================== */
.about-split {
    padding: 0;
    overflow: hidden;
}

.about-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.about-gradient-side {
    background: linear-gradient(
        135deg,
        #b8a6d9 0%,
        #c9b8e4 25%,
        #ddd0ef 50%,
        #efe8f9 75%,
        #ffffff 100%
    );
    display: flex;
    align-items: center;
    padding: var(--spacing-4xl) var(--spacing-3xl);
    position: relative;
    z-index: 1;
}

.about-gradient-content {
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    padding-right: var(--spacing-xl);
}

.about-gradient-content h2 {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-2xl);
    color: var(--color-primary);
    line-height: 1.2;
}

.about-text-blocks {
    display: grid;
    gap: var(--spacing-2xl);
}

.about-text-block h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
    font-weight: 600;
}

.about-text-block p {
    font-size: var(--font-size-base);
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

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

.about-image-side {
    position: relative;
    overflow: hidden;
    z-index: 2;
    background: var(--color-white);
}

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

/* ========================================
   Two Column Layout
   ======================================== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.two-col-content {
    padding-right: var(--spacing-xl);
}

.two-col-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Session Cards
   ======================================== */
.session-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.session-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    text-align: center;
    border: 2px solid var(--color-border);
    transition: all var(--transition);
}

.session-card:hover {
    border-color: var(--color-accent);
}

.session-card.featured {
    border-color: var(--color-accent);
    position: relative;
}

.session-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: var(--color-white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.session-duration {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.session-duration span {
    font-size: var(--font-size-lg);
    font-weight: 400;
    color: var(--color-text-light);
}

.session-title {
    margin-bottom: var(--spacing-lg);
}

.session-description {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xl);
}

/* ========================================
   Timeline / Steps
   ======================================== */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    counter-reset: step;
}

.step {
    position: relative;
    padding-left: var(--spacing-3xl);
}

.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step h3 {
    margin-bottom: var(--spacing-sm);
}

.step p {
    color: var(--color-text-light);
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-3xl) var(--spacing-xl) var(--spacing-xl);
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-3xl);
    padding-bottom: var(--spacing-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.footer-tagline {
    margin-top: var(--spacing-sm);
    font-size: var(--font-size-base);
    font-weight: 400;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: var(--spacing-3xl);
}

.footer-column h4 {
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-base);
}

.footer-column ul {
    display: grid;
    gap: var(--spacing-sm);
}

.footer-column a {
    opacity: 0.8;
    transition: opacity var(--transition);
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: var(--spacing-xl) auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size-sm);
    opacity: 0.6;
}

.env-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
}

/* ========================================
   When to Book Section - Image Background with Overlay
   ======================================== */
.when-to-book-section {
    position: relative;
    min-height: 700px;
    background-image: url('/uploads/4_When-to-Book-Your-Massage-SessNotextion.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: var(--spacing-4xl) var(--spacing-xl);
}

.when-to-book-container {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.when-to-book-overlay {
    background: rgba(45, 45, 58, 0.92);
    backdrop-filter: blur(8px);
    padding: var(--spacing-3xl);
    border-radius: var(--radius-lg);
    max-width: 600px;
    box-shadow: var(--shadow-lg);
}

.when-to-book-overlay h2 {
    color: var(--color-white);
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.when-to-book-intro {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
}

.when-to-book-list {
    display: grid;
    gap: var(--spacing-xl);
}

.when-to-book-item {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.when-to-book-number {
    background: var(--color-accent);
    color: var(--color-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: var(--font-size-lg);
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
}

.when-to-book-item-content h4 {
    color: var(--color-white);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.when-to-book-item-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   What to Expect Section - Image Background with Overlay
   ======================================== */
.what-to-expect-section {
    position: relative;
    min-height: 700px;
    background-image: url('/uploads/5_What-to-Expect-in-a-Session.Notext.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: var(--spacing-4xl) var(--spacing-xl);
}

.what-to-expect-container {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: flex-start; /* Position overlay on LEFT side */
}

.what-to-expect-overlay {
    background: rgba(45, 45, 58, 0.92);
    backdrop-filter: blur(8px);
    padding: var(--spacing-3xl);
    border-radius: var(--radius-lg);
    max-width: 600px;
    box-shadow: var(--shadow-lg);
}

.what-to-expect-overlay h2 {
    color: var(--color-white);
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.what-to-expect-intro {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
}

.what-to-expect-list {
    display: grid;
    gap: var(--spacing-xl);
}

.what-to-expect-item {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.what-to-expect-icon {
    background: var(--color-accent);
    color: var(--color-white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
}

.what-to-expect-item-content h4 {
    color: var(--color-white);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.what-to-expect-item-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 968px) {
    .two-col {
        grid-template-columns: 1fr;
    }

    .two-col-content {
        padding-right: 0;
    }

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

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-surface);
        flex-direction: column;
        padding: var(--spacing-xl);
        gap: var(--spacing-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        border-bottom: 1px solid var(--color-border);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    h1 { font-size: var(--font-size-3xl); }
    h2 { font-size: var(--font-size-2xl); }

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

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-content {
        padding: var(--spacing-xl);
        text-align: center;
    }

    .hero-image {
        min-height: 250px;
    }

    .about-split-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .about-gradient-side {
        padding: var(--spacing-3xl) var(--spacing-xl);
        order: 1;
    }

    .about-gradient-content {
        max-width: 100%;
        margin-left: 0;
        padding-right: 0;
    }

    .about-gradient-content h2 {
        font-size: var(--font-size-2xl);
        margin-bottom: var(--spacing-xl);
    }

    .about-text-blocks {
        gap: var(--spacing-xl);
    }

    .about-image-side {
        min-height: 300px;
        order: 2;
    }

    .card-grid {
        grid-template-columns: 1fr !important;
    }

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

    .techniques-image {
        margin-top: var(--spacing-xl);
    }

    .two-col {
        grid-template-columns: 1fr;
    }

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

    .footer-links {
        flex-direction: column;
        gap: var(--spacing-xl);
    }

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

    /* When to Book Section - Mobile */
    .when-to-book-section {
        min-height: auto;
        padding: var(--spacing-3xl) var(--spacing-md);
        background-position: center center;
    }

    .when-to-book-container {
        justify-content: center;
    }

    .when-to-book-overlay {
        max-width: 100%;
        padding: var(--spacing-xl);
    }

    .when-to-book-overlay h2 {
        font-size: var(--font-size-2xl);
        margin-bottom: var(--spacing-md);
    }

    .when-to-book-intro {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-xl);
    }

    .when-to-book-list {
        gap: var(--spacing-lg);
    }

    .when-to-book-item {
        gap: var(--spacing-md);
    }

    .when-to-book-number {
        width: 36px;
        height: 36px;
        font-size: var(--font-size-base);
    }

    .when-to-book-item-content h4 {
        font-size: var(--font-size-lg);
    }

    .when-to-book-item-content p {
        font-size: var(--font-size-sm);
    }

    /* What to Expect Section - Mobile */
    .what-to-expect-section {
        min-height: auto;
        padding: var(--spacing-3xl) var(--spacing-md);
        background-position: center center;
    }

    .what-to-expect-container {
        justify-content: center;
    }

    .what-to-expect-overlay {
        max-width: 100%;
        padding: var(--spacing-xl);
    }

    .what-to-expect-overlay h2 {
        font-size: var(--font-size-2xl);
        margin-bottom: var(--spacing-md);
    }

    .what-to-expect-intro {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-xl);
    }

    .what-to-expect-list {
        gap: var(--spacing-lg);
    }

    .what-to-expect-item {
        gap: var(--spacing-md);
    }

    .what-to-expect-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .what-to-expect-item-content h4 {
        font-size: var(--font-size-lg);
    }

    .what-to-expect-item-content p {
        font-size: var(--font-size-sm);
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-md); }
.mb-2 { margin-bottom: var(--spacing-xl); }
.mt-2 { margin-top: var(--spacing-xl); }
