/* assets/css/style.css */

:root {
    /* Premium Light Color Palette */
    --bg-dark: #fafafa; /* Soft off-white base */
    --bg-gradient-start: #ffffff; /* Pure white */
    --bg-gradient-end: #f1f5f9; /* Subtle gray/slate */
    --accent-primary: #be123c; /* Softer, premium red */
    --accent-hover: #9f1239;
    --accent-glow: rgba(190, 18, 60, 0.15); /* Softer glow */
    --text-primary: #0f172a; /* Rich charcoal */
    --text-secondary: #334155; /* Muted deep gray (darkened for legibility) */
    --text-muted: #64748b;
    
    /* Premium Glassmorphism / Depth */
    --glass-bg: rgba(255, 255, 255, 0.7); /* Frosted white */
    --glass-border: rgba(0, 0, 0, 0.04); /* Barely-there gray border */
    --glass-blur: blur(24px);
    --shadow-soft: 0 1px 3px rgba(15, 23, 42, 0.03), 0 3px 10px rgba(15, 23, 42, 0.025);
    --shadow-md: 0 2px 6px rgba(15, 23, 42, 0.04), 0 4px 14px rgba(15, 23, 42, 0.03);
    --shadow-lg: 0 4px 12px rgba(15, 23, 42, 0.05), 0 6px 18px rgba(15, 23, 42, 0.04);
    --shadow-hover: 0 4px 14px rgba(15, 23, 42, 0.06), 0 0 6px var(--accent-glow);
    --shadow-accent: 0 2px 6px var(--accent-glow);
    --shadow-accent-hover: 0 3px 10px var(--accent-glow);
    --shadow-modal: 0 8px 24px rgba(15, 23, 42, 0.1);
    --shadow-dropdown: 0 4px 16px rgba(15, 23, 42, 0.08);
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Spacing & Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 9999px;
    --spacing-section: 4rem;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background Gradient */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at top left, var(--bg-gradient-start), var(--bg-gradient-end));
    z-index: -1;
}

/* Add a subtle grid pattern overlay */
.bg-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
    pointer-events: none;
    z-index: -1;
}

/* Add a subtle blue glow to the background */
.bg-gradient::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    width: 60vw;
    height: 60vh;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    filter: blur(100px);
    opacity: 0.5;
    pointer-events: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

p {
    line-height: 1.7;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin: 0 auto 3rem auto;
    background: linear-gradient(to right, #0f172a, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: block;
    width: fit-content;
    max-width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--accent-primary);
    border-radius: var(--radius-pill);
    box-shadow: 0 0 6px var(--accent-glow);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: var(--spacing-section) 0;
}

/* Glassmorphism Utility */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(-120%);
    width: calc(100% - 2rem);
    max-width: 1200px;
    z-index: 1000;
    padding: 1rem 0;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
                opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
                background 0.3s ease,
                box-shadow 0.3s ease,
                padding 0.3s ease;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    opacity: 0;
    pointer-events: none;
}

.navbar.nav-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
}

.logo {
    text-decoration: none;
    flex-shrink: 0;
    min-width: 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: var(--text-primary);
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    padding: 0;
}

.nav-links > a::after {
    content: '';
    position: absolute;
    right: -0.6rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: rgba(0, 0, 0, 0.15);
}

/* Remove separator after last nav link */
.nav-links > a:last-child::after {
    display: none;
}

.nav-link:hover {
    color: var(--text-primary);
}

/* --- Nav Icons (desktop) --- */
.nav-icon {
    flex-shrink: 0;
    opacity: 0.65;
    transition: opacity 0.2s ease;
}

.nav-link:hover .nav-icon {
    opacity: 1;
}

/* --- Book Slot Button --- */
.btn-book-slot {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--accent-primary);
    color: #fff;
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: var(--shadow-accent);
    transition: var(--transition-smooth);
    text-decoration: none;
    white-space: nowrap;
}

.btn-book-slot:hover {
    background: var(--accent-hover);
    box-shadow: var(--shadow-accent-hover);
    transform: translateY(-2px);
    color: #fff;
}

.btn-book-slot:active {
    transform: translateY(0);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Animated Canvas Background */
#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-tagline {
    color: var(--accent-primary);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #0f172a 0%, #334155 60%, var(--accent-primary) 180%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.dynamic-roles {
    position: relative;
    height: 1.5rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.role-text {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    transition: top 0.5s ease, opacity 0.5s ease;
}

.role-text.active {
    top: 0;
    opacity: 1;
}

.role-text.exit {
    top: -100%;
    opacity: 0;
}

.hero-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--accent-primary);
    color: #fff;
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: var(--shadow-accent-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.hero-image-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.profile-card {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    padding: 10px;
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.3));
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg), 0 0 10px var(--accent-glow);
    flex-shrink: 0;
    animation: float 6s ease-in-out infinite;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Stats Section */
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0,0,0,0.1);
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 8px var(--accent-glow);
}

.stat-title {
    color: var(--text-secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Skills Section */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.skill-pill {
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 500;
    transition: var(--transition-smooth);
    cursor: default;
}

.skill-pill:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-accent);
}

/* Core Expertise Tags */
.expertise-tag {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.9rem 1.8rem;
    letter-spacing: 0.01em;
}

.expertise-icon {
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 0 2px var(--accent-glow));
}

.expertise-tag:hover .expertise-icon {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

/* Wider container for expertise tags */
.skills-container {
    max-width: 960px;
}

/* Services Accordion Section */
.services-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--glass-border);
}

.accordion-item:hover {
    border-color: rgba(0, 0, 0, 0.1);
}

.accordion-item.active {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-soft), 0 0 8px var(--accent-glow);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.accordion-title-wrap {
    flex: 1;
    padding-right: 1.5rem;
}

.accordion-title {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.accordion-item.active .accordion-title {
    color: var(--accent-primary);
}

.accordion-short-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.accordion-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.accordion-item:hover .accordion-icon {
    background: rgba(0, 0, 0, 0.08);
}

.accordion-item.active .accordion-icon {
    background: var(--accent-primary);
    color: #fff;
}

.accordion-icon .chevron {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon .chevron {
    transform: rotate(180deg);
}

.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.accordion-content-inner {
    overflow: hidden;
    padding: 0 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease, padding 0.4s ease;
    color: var(--text-secondary);
}

.accordion-item.active .accordion-content {
    grid-template-rows: 1fr;
}

.accordion-item.active .accordion-content-inner {
    padding: 0 1.5rem 1.5rem 1.5rem;
    opacity: 1;
}

/* Pricing & Duration Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.duration-preset.active {
    background: var(--accent-primary);
    color: #fff;
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-accent);
}

/* Social Proof Popup */
.social-proof-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    max-width: 320px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.social-proof-popup.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.social-proof-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--glass-bg) !important;
}

.social-proof-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-glow);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-proof-text {
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.4;
    font-weight: 500;
}

@media (max-width: 768px) {
    .social-proof-popup {
        bottom: 20px;
        left: 20px;
        right: 20px;
        max-width: none;
    }
}


/* Platforms Section */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.platform-card {
    padding: 2.5rem;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.platform-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow-hover);
}

.platform-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-glow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
}

.platform-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.platform-desc {
    color: var(--text-secondary);
    flex-grow: 1;
}

/* Podcasts Section */
.podcasts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.podcast-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    cursor: pointer;
    border: 1px solid var(--glass-border);
}

.podcast-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.podcast-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.podcast-card:hover .podcast-thumb {
    transform: scale(1.08);
}

.podcast-card {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.podcast-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.podcast-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    color: #fff;
}

.podcast-card:hover .podcast-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.podcast-title {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Focus Media Section */
.focus-media-card {
    padding: 2rem;
    overflow: hidden;
}

.focus-media-layout {
    display: grid;
    grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.focus-media-brand {
    display: flex;
    align-items: center;
    justify-content: center;
}

.focus-media-logo-wrap {
    width: 100%;
    text-align: center;
}

.focus-media-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.focus-media-logo-placeholder {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    border: 1px dashed rgba(0, 0, 0, 0.12);
    background: rgba(248, 250, 252, 0.9);
    display: grid;
    place-items: center;
    color: var(--text-muted);
    font-size: 2rem;
}

.focus-media-logo-hint {
    margin-top: 0.75rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.focus-media-logo-hint code,
.focus-media-slide-placeholder code {
    font-size: 0.72rem;
    background: rgba(0, 0, 0, 0.04);
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
}

.focus-media-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 0;
}

.focus-media-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(248, 250, 252, 0.95);
    border: 1px solid var(--glass-border);
}

.focus-media-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.8s ease, transform 1.2s ease;
    pointer-events: none;
}

.focus-media-slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.focus-media-slide-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.focus-media-slide-placeholder.is-active {
    opacity: 1;
}

.focus-media-slide-placeholder i {
    font-size: 2rem;
    color: var(--accent-primary);
    opacity: 0.8;
}

.focus-media-copy p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.focus-media-copy p:last-of-type {
    margin-bottom: 1.5rem;
}

.focus-media-cta {
    display: inline-flex;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: var(--glass-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    box-shadow: var(--shadow-modal);
}

.close-video-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-video-modal:hover {
    color: var(--accent-primary);
    transform: scale(1.1);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Gallery Section */
.gallery-grid {
    column-count: 3;
    column-gap: 1.5rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
}

.gallery-img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

/* Contact Section */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 3rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.2rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(190, 18, 60, 0.1);
    background: rgba(255, 255, 255, 0.8);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    padding: 1rem;
    border-radius: var(--radius-sm);
    text-align: center;
    margin-bottom: 1rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Toast Notification */
.toast {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(5, 8, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-pill);
    padding: 1rem 2rem;
    z-index: 10000;
    box-shadow: var(--shadow-modal);
    display: flex;
    align-items: center;
    transition: top 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.5s ease;
    opacity: 0;
}

.toast.show {
    top: 40px;
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.toast.success {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: var(--shadow-md), 0 0 8px rgba(16, 185, 129, 0.12);
}

.toast.error {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: var(--shadow-md), 0 0 8px rgba(239, 68, 68, 0.12);
}

.toast-icon {
    width: 24px;
    height: 24px;
    display: none;
}

.toast.success .success-icon {
    display: block;
    color: #10b981;
}

.toast.error .error-icon {
    display: block;
    color: #ef4444;
}

.toast-text {
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
}

/* Consultation Form Styles */
.form-modal-content {
    max-width: 700px;
    padding: 3rem 2.5rem;
}

.consult-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.consult-form-header h2 {
    font-size: 2rem;
    background: linear-gradient(to right, #0f172a, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.consult-form-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.consult-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.half-width {
    flex: 1;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon svg {
    position: absolute;
    left: 15px;
    color: var(--text-secondary);
}

.input-with-icon .form-control {
    padding-left: 45px;
}

.consult-form select.form-control option {
    background: var(--bg-dark);
    color: var(--text-primary);
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0;
    margin-top: 4rem;
    background: rgba(255, 255, 255, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(248, 250, 252, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    color: var(--accent-primary);
    border-color: rgba(190, 18, 60, 0.18);
    background: rgba(190, 18, 60, 0.06);
    transform: translateY(-2px);
}

.footer-social-links {
    justify-content: center;
}

.social-circle-links {
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-pill-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.05rem;
    padding: 0.8rem 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-primary);
}

.social-pill-icon {
    color: var(--accent-primary);
    font-size: 1.3rem;
}

.social-pill-label {
    font-weight: 600;
}

.social-pill-link:hover {
    transform: translateY(-2px);
    border-color: rgba(190, 18, 60, 0.18);
}

/* Animations & Skeletons */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.skeleton {
    position: relative;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.05);
    color: transparent !important;
    border-color: transparent !important;
    pointer-events: none;
}

.skeleton::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0) 0,
        rgba(0, 0, 0, 0.03) 20%,
        rgba(0, 0, 0, 0.08) 60%,
        rgba(0, 0, 0, 0)
    );
    animation: shimmer 2s infinite;
    content: '';
}

.skeleton * {
    visibility: hidden;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* =============================================
   RESPONSIVE DESIGN — Comprehensive Overhaul
   ============================================= */

/* --- Tablet (≤ 992px) --- */
@media (max-width: 992px) {

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 3rem;
        gap: 2.5rem;
    }

    /* Profile image comes FIRST (above name) on tablet & mobile */
    .hero-image-wrap {
        order: -1;
    }

    .profile-card {
        width: 240px;
        height: 240px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-desc {
        margin: 0 auto 1.5rem;
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .quick-tags {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .platforms-grid {
        grid-template-columns: 1fr 1fr;
    }

    .podcasts-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        column-count: 2;
    }

    .stats-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-value {
        font-size: 2.2rem;
    }
}

/* --- Mobile (≤ 768px) --- */
@media (max-width: 768px) {

    :root {
        --spacing-section: 3rem;
    }

    section {
        padding: var(--spacing-section) 0;
    }

    /* Navbar mobile dropdown */
    .navbar {
        top: 0.8rem;
        width: calc(100% - 1.5rem);
    }

    body.nav-menu-open {
        overflow: hidden;
    }

    body.nav-menu-open::after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.12);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        z-index: 998;
        pointer-events: none;
    }

    .navbar.menu-open {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-lg);
    }

    /* Mobile nav dropdown — light glass panel */
    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        padding: 0.65rem;
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-dropdown);
        z-index: 2;
    }

    .nav-links.active {
        display: flex;
    }

    /* Remove vertical separators on mobile */
    .nav-links > a::after {
        display: none;
    }

    /* Clean list-style nav items on mobile */
    .nav-link {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.95rem;
        font-weight: 600;
        padding: 0.82rem 1rem;
        border-radius: var(--radius-sm);
        background: rgba(248, 250, 252, 0.95);
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: none;
        color: var(--text-primary);
        transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
        width: 100%;
    }

    .nav-link::before {
        display: none;
    }

    .nav-link:hover,
    .nav-link:active,
    .nav-link:focus-visible {
        background: rgba(190, 18, 60, 0.07);
        border-color: rgba(190, 18, 60, 0.14);
        color: var(--accent-primary);
        transform: none;
    }

    .nav-icon {
        width: 18px;
        height: 18px;
        opacity: 0.9;
        flex-shrink: 0;
        color: var(--accent-primary);
    }

    .nav-link:hover .nav-icon,
    .nav-link:active .nav-icon,
    .nav-link:focus-visible .nav-icon {
        opacity: 1;
    }

    .mobile-menu-btn {
        width: 38px;
        height: 38px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(248, 250, 252, 0.95);
        border: 1px solid rgba(0, 0, 0, 0.06);
        transition: background 0.2s ease, border-color 0.2s ease;
    }

    .navbar.menu-open .mobile-menu-btn {
        background: rgba(190, 18, 60, 0.08);
        border-color: rgba(190, 18, 60, 0.14);
    }

    /* ── Mobile Header Actions: force side-by-side row ── */
    .header-actions {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        gap: 0.6rem;
    }

    /* Hide "Book Slot" text on mobile — icon only */
    .book-text {
        display: none !important;
    }

    /* Circle icon button on mobile */
    .btn-book-slot {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        padding: 0;
        border-radius: 50% !important;
        flex-shrink: 0;
    }

    /* Hamburger always visible, no shrink */
    .mobile-menu-btn {
        display: flex !important;
        flex-shrink: 0;
        order: 2;
    }

    /* Book button first, hamburger second */
    .btn-book-slot {
        order: 1;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding-top: 20px;
        padding-bottom: 3rem;
    }

    .hero-container {
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.4rem;
        text-align: center;
    }

    .hero-tagline {
        font-size: 0.8rem;
        text-align: center;
        display: block;
    }

    /* Dynamic role text — center on mobile */
    .dynamic-roles {
        width: 100%;
        text-align: center;
    }

    .role-text {
        width: 100%;
        text-align: center;
        left: 0;
    }

    /* Quick tags center */
    .quick-tags {
        justify-content: center !important;
    }

    .hero-desc {
        text-align: center;
    }

    /* Profile card */
    .hero-image-wrap {
        order: -1;
    }

    .profile-card {
        width: 200px;
        height: 200px;
    }

    /* Platforms */
    .platforms-grid {
        grid-template-columns: 1fr;
    }

    .focus-media-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .focus-media-card {
        padding: 1.5rem;
    }

    .focus-media-logo {
        max-width: 150px;
    }

    .focus-media-copy {
        text-align: center;
    }

    .focus-media-cta {
        width: 100%;
        justify-content: center;
    }

    .platform-card {
        padding: 2rem;
    }

    /* Platform tag (Paid Learning Platform etc.) — align with title */
    .platform-card .hero-tagline {
        text-align: left;
        display: block;
    }

    /* Podcasts */
    .podcasts-grid {
        grid-template-columns: 1fr;
    }

    /* Gallery */
    .gallery-grid {
        column-count: 2;
        column-gap: 1rem;
    }

    .gallery-item {
        margin-bottom: 1rem;
    }

    /* Stats */
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    /* Section title */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    /* Skills */
    .skills-container {
        gap: 0.8rem;
    }

    .skill-pill {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Contact form */
    .contact-form {
        padding: 2rem 1.5rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    /* Consultation modal */
    .form-modal-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
}

/* --- Small Mobile (≤ 480px) --- */
@media (max-width: 480px) {

    .hero-title {
        font-size: 2rem;
        letter-spacing: -0.03em;
    }

    .profile-card {
        width: 170px;
        height: 170px;
    }

    .btn {
        padding: 0.7rem 1.4rem;
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .gallery-grid {
        column-count: 1;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .stat-value {
        font-size: 2.2rem;
    }

    .platforms-grid,
    .podcasts-grid {
        grid-template-columns: 1fr;
    }

    .contact-form,
    .form-modal-content {
        padding: 1.5rem 1rem;
    }

    .consult-form-header h2 {
        font-size: 1.5rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .navbar {
        width: calc(100% - 1rem);
    }
}

/* =============================================
   PREMIUM MICRO-INTERACTIONS
   Pure CSS — no JS weight, GPU-composited
   ============================================= */

/* --- Global easing token --- */
:root {
    --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out:    cubic-bezier(0.25, 0.8, 0.25, 1);
    --dur-fast:    0.18s;
    --dur-med:     0.28s;
}

/* --- Smooth scroll (already on html, reinforced) --- */
html { scroll-behavior: smooth; }

/* ----------------------------------------
   BUTTONS — scale + press
   ---------------------------------------- */
.btn,
button:not(.mobile-menu-btn):not(#close-quick-book) {
    transition: transform var(--dur-fast) var(--ease-spring),
                box-shadow var(--dur-med) var(--ease-out),
                background var(--dur-med) ease,
                border-color var(--dur-med) ease !important;
    will-change: transform;
}

.btn:hover,
button:not(.mobile-menu-btn):not(#close-quick-book):hover {
    transform: scale(1.03) translateY(-1px);
}

.btn:active,
button:not(.mobile-menu-btn):not(#close-quick-book):active {
    transform: scale(0.97) translateY(0px);
    transition-duration: 0.08s;
}

/* ----------------------------------------
   GLASS CARDS — lift on hover
   ---------------------------------------- */
.glass-panel,
.stat-item,
.platform-card,
.podcast-card,
.accordion-item,
.session-item,
.trust-layer,
.gallery-item {
    transition: transform var(--dur-med) var(--ease-spring),
                box-shadow var(--dur-med) var(--ease-spring),
                border-color var(--dur-med) ease;
    will-change: transform;
}

.glass-panel:not(.chat-window):hover,
.stat-item:hover,
.platform-card:hover,
.accordion-item:hover,
.session-item:hover,
.trust-layer:hover,
.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

/* ----------------------------------------
   INPUT FIELDS — border glow on focus
   ---------------------------------------- */
.form-control {
    transition: border-color var(--dur-fast) ease,
                box-shadow var(--dur-fast) ease,
                background var(--dur-fast) ease !important;
}

.form-control:focus {
    border-color: var(--accent-primary) !important;
    box-shadow: 0 0 0 2px rgba(190, 18, 60, 0.12), var(--shadow-soft) !important;
    background: rgba(0, 0, 0, 0.35) !important;
    outline: none;
}

/* ----------------------------------------
   SOCIAL PROOF NOTIFICATION — softer slide
   ---------------------------------------- */
#social-proof-container {
    transition: opacity 0.38s var(--ease-out),
                transform 0.38s var(--ease-spring) !important;
}

#social-proof-container.show-notification {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ----------------------------------------
   CHATBOT WINDOW — fade + scale open/close
   ---------------------------------------- */
.chat-window {
    transform-origin: bottom right;
    transform: scale(0.94) translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--dur-med) var(--ease-spring),
                opacity var(--dur-med) var(--ease-out);
    will-change: transform, opacity;
}

.chat-window.active {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: all;
}

/* Chatbot option buttons — hover lift */
.chat-option-btn {
    transition: transform var(--dur-fast) var(--ease-spring),
                background var(--dur-fast) ease,
                border-color var(--dur-fast) ease !important;
}
.chat-option-btn:hover {
    transform: translateY(-2px) !important;
}
.chat-option-btn:active {
    transform: translateY(0) scale(0.98) !important;
    transition-duration: 0.08s !important;
}

/* ----------------------------------------
   PAGE LOAD — section fade-in (JS-driven)
   sections start hidden, JS adds .section-visible
   ---------------------------------------- */
.section-animate {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s var(--ease-out),
                transform 0.55s var(--ease-spring);
}

.section-animate.section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ----------------------------------------
   NAV LINKS — underline slide
   ---------------------------------------- */
.nav-link::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 2px;
    transition: width var(--dur-med) var(--ease-spring);
}
.nav-link:hover::before {
    width: 100%;
}

/* ----------------------------------------
   Respect reduced motion users
   ---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}


/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
}

.reviews-scroller-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.reviews-scroller {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    cursor: grab;
}

.reviews-scroller.grabbing {
    cursor: grabbing;
    scroll-snap-type: none; /* Disable snapping while dragging for smoother feel */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.reviews-scroller::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 280px; /* Reel style width */
    height: 498px; /* 16:9 approx for vertical (280 * 16/9 = 497.7) */
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    scroll-snap-align: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 255, 255, 0.2);
}

.review-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.review-card:hover .review-thumb {
    transform: scale(1.05);
}

.review-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 2;
}

.review-card:hover .review-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--accent-primary);
}

/* Journey Timeline Section */
.journey {
    position: relative;
    padding: var(--spacing-section) 0;
    overflow: hidden;
}

.journey-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

/* The vertical line */
.journey-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--accent-primary), var(--accent-primary), transparent);
    transform: translateX(-50%);
    opacity: 0.3;
}

.journey-item {
    position: relative;
    width: 100%;
    margin-bottom: 4rem;
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    transition: var(--transition-smooth);
}

.journey-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.journey-dot {
    position: absolute;
    top: 0;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--bg-dark);
    border: 3px solid var(--accent-primary);
    border-radius: 50%;
    transform: translate(-50%, 0);
    z-index: 10;
    box-shadow: var(--shadow-accent);
}

.journey-content {
    width: 90%;
    max-width: 400px;
    padding: 2.5rem;
    position: relative;
    margin: 0 2rem;
}

.journey-item:nth-child(odd) .journey-content {
    text-align: right;
    margin-right: 3rem;
}

.journey-item:nth-child(even) .journey-content {
    text-align: left;
    margin-left: 3rem;
}

.journey-date {
    display: inline-block;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.journey-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.journey-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.journey-highlight {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
    font-weight: 600;
    color: var(--accent-primary);
    font-size: 0.9rem;
    font-style: italic;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .journey-container::before {
        left: 30px;
    }
    
    .journey-item, .journey-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 60px;
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .journey-dot {
        left: 30px;
    }
    
    .journey-content, .journey-item:nth-child(odd) .journey-content, .journey-item:nth-child(even) .journey-content {
        max-width: 100%;
        text-align: left;
        margin: 0;
        padding: 1.5rem;
    }
}

/* Animation classes */
.journey-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.journey-item.active {
    opacity: 1;
    transform: translateY(0);
}


