/* Import Tony Robbins Style Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Light Mode Color Palette (Default) */
    --primary-cyan: #0066cc;
    --primary-purple: #4a90e2;
    --primary-pink: #e91e63;
    --primary-blue: #2196f3;
    --primary-indigo: #3f51b5;
    
    /* Light Mode Backgrounds */
    --bg-primary: #fafafa;
    --bg-secondary: #ffffff;
    --bg-offwhite: #f8f9fa;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-muted: #999999;
    
    /* Light Mode Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-purple) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-blue) 100%);
    --gradient-tertiary: linear-gradient(135deg, var(--primary-indigo) 0%, var(--primary-cyan) 100%);
    --gradient-bg: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    
    /* Shadows */
    --shadow-light: 0 4px 20px rgba(0, 102, 204, 0.15);
    --shadow-medium: 0 8px 30px rgba(0, 102, 204, 0.2);
    --shadow-heavy: 0 15px 40px rgba(0, 102, 204, 0.25);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s ease;
    
    /* Fonts */
    --font-primary: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --primary-cyan: #00f5ff;
    --primary-purple: #8b5cf6;
    --primary-pink: #ec4899;
    --primary-blue: #3b82f6;
    --primary-indigo: #6366f1;
    
    --bg-primary: #0f0f23;
    --bg-secondary: #1a1a2e;
    --bg-offwhite: #16213e;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #b0b0b0;
    
    --gradient-bg: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    
    --shadow-light: 0 4px 20px rgba(0, 245, 255, 0.2);
    --shadow-medium: 0 8px 30px rgba(0, 245, 255, 0.3);
    --shadow-heavy: 0 15px 40px rgba(0, 245, 255, 0.4);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-accent: var(--primary-cyan);
    
    /* Background Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #111827;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-glass: rgba(255, 255, 255, 0.1);
    
    /* Shadows and Glows */
    --glow-cyan: 0 0 20px rgba(0, 245, 255, 0.5);
    --glow-purple: 0 0 20px rgba(139, 92, 246, 0.5);
    --glow-pink: 0 0 20px rgba(236, 72, 153, 0.5);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(0, 245, 255, 0.3);
    
    /* Typography */
    --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-script: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: var(--font-primary);
    background: var(--gradient-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: var(--transition-smooth);
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Navigation - Bulletproof Styling */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff !important;
    border-bottom: 2px solid #0066cc;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-height: 80px;
}

[data-theme="dark"] .navbar {
    background: #1a1a2e !important;
    border-bottom: 2px solid #00f5ff;
    box-shadow: 0 2px 10px rgba(0, 245, 255, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-signature {
    height: 40px;
    width: auto;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.3));
}

[data-theme="light"] .nav-signature {
    filter: drop-shadow(0 0 5px rgba(0, 102, 204, 0.3));
}

.nav-signature:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.5));
}

[data-theme="light"] .nav-signature:hover {
    filter: drop-shadow(0 0 10px rgba(0, 102, 204, 0.5));
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.5)); }
    100% { filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.8)); }
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #1a1a1a !important;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: var(--transition-smooth);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 1rem;
}

[data-theme="dark"] .nav-link {
    color: #ffffff !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

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

.nav-link:hover {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px rgba(0, 102, 204, 0.3);
}

[data-theme="dark"] .nav-link:hover {
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

[data-theme="dark"] .bar {
    background: #ffffff;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile menu styles will be added in media queries */

.nav-menu.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
.nav-menu.active .nav-link:nth-child(2) { transition-delay: 0.2s; }
.nav-menu.active .nav-link:nth-child(3) { transition-delay: 0.3s; }
.nav-menu.active .nav-link:nth-child(4) { transition-delay: 0.4s; }
.nav-menu.active .nav-link:nth-child(5) { transition-delay: 0.5s; }
.nav-menu.active .nav-link:nth-child(6) { transition-delay: 0.6s; }
.nav-menu.active .nav-link:nth-child(7) { transition-delay: 0.7s; }

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 0; /* Remove negative margin */
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

[data-theme="light"] .slide-overlay {
    background: rgba(255, 255, 255, 0.3);
}

.slide-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    position: relative;
    z-index: 2;
    width: 100%;
}

.content-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: contentFloat 6s ease-in-out infinite;
    text-align: center;
    max-width: 500px;
    position: relative;
    z-index: 3;
    margin-left: 2rem;
}

[data-theme="light"] .content-box {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 102, 204, 0.2);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.1);
}

@keyframes contentFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: var(--glow-cyan);
    animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #2c2c2c;
    animation: titleGlow 4s ease-in-out infinite alternate;
}

[data-theme="dark"] .hero-title {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 10px rgba(0, 102, 204, 0.3)); }
    100% { filter: drop-shadow(0 0 20px rgba(0, 102, 204, 0.6)); }
}

[data-theme="dark"] .hero-title,
[data-theme="dark"] .section-title {
    animation: titleGlowDark 4s ease-in-out infinite alternate;
}

@keyframes titleGlowDark {
    0% { filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3)); }
    100% { filter: drop-shadow(0 0 20px rgba(0, 245, 255, 0.6)); }
}

.cta-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-bounce);
    box-shadow: var(--glow-cyan);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.8);
}

.cta-btn i {
    animation: iconSpin 2s linear infinite;
}

@keyframes iconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hero image styles removed - now using background images */

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    pointer-events: all;
}

.slider-btn:hover {
    background: var(--gradient-primary);
    box-shadow: var(--glow-cyan);
    transform: scale(1.1);
}

.slide-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.indicator.active {
    background: var(--primary-cyan);
    box-shadow: var(--glow-cyan);
    transform: scale(1.2);
}

/* Section Styles */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-top: 0.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
    animation: titleGlow 4s ease-in-out infinite alternate;
}

[data-theme="dark"] .section-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .about {
    background: var(--gradient-light);
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 245, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-top: 1rem;
}

[data-theme="light"] .about-content {
    background: rgba(0, 102, 204, 0.05);
}

.about-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    max-width: none;
}

.about-text p {
    margin-bottom: 1rem;
}

.story-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.1), transparent);
    transition: left 0.5s;
}

.story-card:hover::before {
    left: 100%;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-cyan);
    border-color: var(--primary-cyan);
}

.story-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-cyan);
}

.highlight {
    color: var(--primary-cyan);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.highlight-link {
    color: var(--primary-cyan);
    text-decoration: underline;
    transition: var(--transition-smooth);
    font-weight: 600;
}

.highlight-link:hover {
    color: var(--primary-purple);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.about-image {
    flex: 0 0 200px;
    position: relative;
    animation: imageFloat 8s ease-in-out infinite;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.3);
}

.image-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--gradient-primary);
    border-radius: 30px;
    opacity: 0.3;
    filter: blur(20px);
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

/* Achievements Section */
.achievements {
    background: var(--gradient-dark);
    position: relative;
}

.achievements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 245, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.achievement-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.1), transparent);
    transition: left 0.5s;
}

.achievement-card:hover::before {
    left: 100%;
}

.achievement-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--glow-cyan);
    border-color: var(--primary-cyan);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: var(--glow-cyan);
    animation: iconFloat 3s ease-in-out infinite;
}

.achievement-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-cyan);
}

/* Offerings Section */
.offerings {
    background: var(--gradient-dark);
    position: relative;
}

[data-theme="light"] .offerings {
    background: var(--gradient-light);
}

/* Book Section */
.book-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    margin-top: 1rem;
}

.book-image {
    position: relative;
    animation: imageFloat 8s ease-in-out infinite;
}

.book-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    box-shadow: var(--shadow-glow);
    border: 2px solid rgba(0, 245, 255, 0.3);
}

.book-actions {
    margin-top: 2rem;
}

/* Course Section */
.course-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.course-icon {
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    box-shadow: var(--glow-cyan);
    animation: iconFloat 3s ease-in-out infinite;
    margin: 0 auto;
}

.course-actions {
    margin-top: 2rem;
}

/* Podcast Section */
.podcast-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    gap: 2rem;
}

.podcast-icon {
    width: 150px;
    height: 150px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    box-shadow: var(--glow-pink);
    animation: iconFloat 3s ease-in-out infinite;
    margin: 0 auto;
    order: -1; /* Move icon to top */
}

.podcast-actions {
    margin-top: 2rem;
    text-align: center;
}

.podcast-text {
    text-align: left;
    width: 100%;
}

.podcast-features {
    text-align: left;
    width: 100%;
}

.podcast-player {
    text-align: center;
    width: 100%;
}

.offering-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.offering-card:hover::before {
    opacity: 0.1;
}

.offering-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--glow-cyan);
    border-color: var(--primary-cyan);
}

.offering-card.featured {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
}

.offering-card.featured:hover {
    transform: translateY(-10px) scale(1.08);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: var(--glow-cyan);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.offering-card.featured .card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.offering-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-cyan);
}

.offering-card.featured h3 {
    color: white;
}

.card-actions {
    margin-top: 2rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-bounce);
    box-shadow: var(--glow-cyan);
    margin-bottom: 1rem;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.8);
}

.platform-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.platform-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: var(--primary-cyan);
    text-decoration: none;
    transition: var(--transition-smooth);
    min-width: 80px;
    text-align: center;
}

.platform-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--glow-cyan);
    border-color: var(--primary-cyan);
}

.platform-link i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.platform-link span {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Story Hero Section */
.story-hero {
    background: var(--gradient-dark);
    padding: 120px 0 40px;
    position: relative;
    margin-top: 80px;
}

.story-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.story-hero .hero-image {
    position: relative;
    animation: imageFloat 8s ease-in-out infinite;
}

.story-hero .hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-glow);
    border: 2px solid rgba(0, 245, 255, 0.3);
}

.story-hero .hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Timeline Images */
.timeline-image {
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.timeline-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-card);
}

/* Journey Images */
.journey-image {
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.journey-image img {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-card);
}

/* Early Life Section */
.early-life {
    background: var(--bg-primary);
    position: relative;
}

.early-life::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 30%, rgba(236, 72, 153, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(0, 245, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.early-life-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.prodigy-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.prodigy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.1), transparent);
    transition: left 0.5s;
}

.prodigy-card:hover::before {
    left: 100%;
}

.prodigy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-pink);
    border-color: var(--primary-pink);
}

.prodigy-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-pink);
}

.early-life-image {
    position: relative;
    animation: imageFloat 8s ease-in-out infinite;
}

.book-cover {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
    border: 2px solid rgba(236, 72, 153, 0.3);
}

.book-cover img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.book-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--gradient-secondary);
    border-radius: 25px;
    opacity: 0.3;
    filter: blur(20px);
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

.book-cover-image {
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
    border: 2px solid rgba(0, 245, 255, 0.3);
}

.book-cover-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.offering-card:hover .book-cover-image img {
    transform: scale(1.05);
}

/* Blog Section */
.blog {
    background: var(--gradient-dark);
}

.blog-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.1), transparent);
    transition: left 0.5s;
}

.blog-card:hover::before {
    left: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-cyan);
    border-color: var(--primary-cyan);
}

.blog-image {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.category {
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.read-more {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: var(--glow-cyan);
}

.read-more:hover {
    transform: scale(1.2) rotate(45deg);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.8);
}

/* Contact Section */
.contact {
    background: var(--bg-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.1), transparent);
    transition: left 0.5s;
}

.contact-card:hover::before {
    left: 100%;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    box-shadow: var(--glow-cyan);
    animation: iconFloat 3s ease-in-out infinite;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-cyan);
}

.contact-link {
    color: var(--primary-cyan);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.contact-link:hover {
    color: white;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.contact-form {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

/* Light mode form field styling */
[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 102, 204, 0.2);
    color: #1a1a1a;
    box-shadow: 0 2px 10px rgba(0, 102, 204, 0.1);
}

[data-theme="light"] .form-group input:focus,
[data-theme="light"] .form-group select:focus,
[data-theme="light"] .form-group textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .form-group input::placeholder,
[data-theme="light"] .form-group textarea::placeholder {
    color: #666666;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    padding: 4rem 0 1rem;
    border-top: 1px solid rgba(0, 245, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
}

.footer-content {
    margin-bottom: 3rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-brand {
    text-align: center;
}

.signature-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.signature-image {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.3));
    transition: var(--transition-smooth);
}

.signature-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(0, 245, 255, 0.5));
}

.signature-quote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.signature-quote::before,
.signature-quote::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-cyan);
    position: absolute;
    top: -10px;
}

.signature-quote::before {
    left: -20px;
}

.signature-quote::after {
    right: -20px;
}

.footer-links h4,
.footer-connect h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-cyan);
    text-align: center;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: block;
    padding: 0.3rem 0;
    border-radius: 5px;
}

.footer-links a:hover {
    color: var(--primary-cyan);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-cyan);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-smooth);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--glow-cyan);
    color: white;
}

.social-link i {
    position: relative;
    z-index: 1;
    animation: iconFloat 3s ease-in-out infinite;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

/* Floating Contact Button */
/* Vengo AI Chatbot will handle its own styling */

/* Story Content Styles */
.story-content {
    padding: 1rem 0;
    background: var(--gradient-dark);
}

[data-theme="light"] .story-content {
    background: var(--gradient-light);
}

.story-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.story-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.story-text a {
    color: var(--primary-cyan);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.story-text a:hover {
    color: var(--accent-purple);
    text-decoration: underline;
}

.video-container {
    margin: 2rem 0;
    text-align: center;
}

.video-container iframe {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.philosophy-quote {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--primary-cyan);
}

[data-theme="light"] .philosophy-quote {
    background: rgba(0, 102, 204, 0.05);
    border-left-color: var(--primary-blue);
}

.philosophy-quote blockquote {
    margin: 0 0 1.5rem 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--primary-cyan);
}

[data-theme="light"] .philosophy-quote blockquote {
    color: var(--primary-blue);
}

.philosophy-quote p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.signature-section {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

[data-theme="light"] .signature-section {
    background: rgba(0, 102, 204, 0.05);
}

.signature-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-cyan);
    margin-bottom: 1rem;
}

[data-theme="light"] .signature-quote {
    color: var(--primary-blue);
}

.signature {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-purple);
    margin-top: 1rem;
}

[data-theme="light"] .signature {
    color: var(--primary-blue);
}

/* Story Sections with Images */
.story-section {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 3rem 0;
    padding: 2rem 0;
}

.story-image-left,
.story-image-right {
    flex: 0 0 300px;
    text-align: center;
}

.story-image-left img,
.story-image-right img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    cursor: pointer;
}

/* Make first image bigger on desktop */
.story-section:first-child .story-image-left {
    flex: 0 0 400px;
}

.story-section:first-child .story-image-left img {
    max-width: 400px;
}

/* Stack first image on mobile like others */
@media (max-width: 768px) {
    .story-section:first-child {
        flex-direction: column;
    }
    
    .story-section:first-child .story-image-left {
        flex: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .story-section:first-child .story-image-left img {
        max-width: 300px;
    }
}

.story-image-left img:hover,
.story-image-right img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.story-text-left,
.story-text-right {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Achievements Section */
.achievements-section {
    margin: 4rem 0;
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

[data-theme="light"] .achievements-section {
    background: rgba(0, 102, 204, 0.05);
}

.achievements-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-cyan);
}

[data-theme="light"] .achievements-section h3 {
    color: var(--primary-blue);
}

.achievements-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="light"] .achievement-item {
    background: rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.2);
}

.achievement-image {
    flex: 0 0 200px;
}

.achievement-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

.achievement-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Screenplays Section */
.screenplays-section {
    margin: 4rem 0;
    padding: 2rem 0;
}

.screenplays-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-cyan);
}

[data-theme="light"] .screenplays-section h3 {
    color: var(--primary-blue);
}

.screenplays-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

[data-theme="light"] .screenplays-content {
    background: rgba(0, 102, 204, 0.05);
}

.screenplay-item {
    flex: 0 0 200px;
}

.screenplay-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.screenplay-item img:hover {
    transform: scale(1.05);
}

.screenplay-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Early Childhood Section */
.early-childhood-section {
    margin: 4rem 0;
    padding: 2rem 0;
}

.early-childhood-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-cyan);
}

[data-theme="light"] .early-childhood-section h3 {
    color: var(--primary-blue);
}

.early-childhood-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

[data-theme="light"] .early-childhood-content {
    background: rgba(0, 102, 204, 0.05);
}

.childhood-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.6;
}

.childhood-image {
    flex: 0 0 300px;
}

.childhood-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

/* Book Feature Section */
.book-feature-section {
    margin: 4rem 0;
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

[data-theme="light"] .book-feature-section {
    background: rgba(0, 102, 204, 0.05);
}

.book-feature-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
}

.book-image {
    flex: 0 0 200px;
}

.book-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

.book-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Behind Scenes Section */
.behind-scenes-section {
    margin: 4rem 0;
    padding: 2rem 0;
}

.behind-scenes-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-cyan);
}

[data-theme="light"] .behind-scenes-section h3 {
    color: var(--primary-blue);
}

.behind-scenes-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

[data-theme="light"] .behind-scenes-content {
    background: rgba(0, 102, 204, 0.05);
}

.behind-scenes-image {
    flex: 0 0 300px;
}

.behind-scenes-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.behind-scenes-image img:hover {
    transform: scale(1.05);
}

.behind-scenes-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Screenplay Gallery Trigger */
.screenplay-gallery-trigger {
    position: relative;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border: 2px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
    pointer-events: auto;
}

[data-theme="light"] .screenplay-gallery-trigger {
    border: 2px solid rgba(0, 102, 204, 0.1);
}

.screenplay-gallery-trigger:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-cyan);
}

[data-theme="light"] .screenplay-gallery-trigger:hover {
    border-color: var(--primary-blue);
}

.screenplay-gallery-trigger img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.screenplay-gallery-trigger:hover .gallery-overlay,
.screenplay-gallery-trigger:active .gallery-overlay {
    opacity: 1;
}

/* Show overlay on mobile touch */
@media (max-width: 768px) {
    .screenplay-gallery-trigger .gallery-overlay {
        opacity: 0.8;
    }
}

.gallery-icon {
    text-align: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.gallery-icon i {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-cyan);
}

.gallery-icon span {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Screenplay Gallery Modal */
.screenplay-gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.screenplay-gallery-content {
    position: relative;
    margin: 2% auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screenplay-gallery-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: var(--transition-smooth);
}

.screenplay-gallery-close:hover {
    color: var(--primary-cyan);
    transform: scale(1.1);
}

.screenplay-gallery-slides {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenplay-gallery-slide {
    display: none;
    width: 100%;
    height: 100%;
    text-align: center;
    animation: slideIn 0.5s ease-in-out;
}

.screenplay-gallery-slide.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screenplay-gallery-slide img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
}

.screenplay-gallery-caption {
    margin-top: 1rem;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.screenplay-gallery-prev,
.screenplay-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 245, 255, 0.2);
    border: 2px solid var(--primary-cyan);
    color: white;
    font-size: 24px;
    font-weight: bold;
    width: 50px;
    height: 60px;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10002;
}

.screenplay-gallery-prev {
    left: -70px;
}

.screenplay-gallery-next {
    right: -70px;
}

.screenplay-gallery-prev:hover,
.screenplay-gallery-next:hover {
    background: var(--primary-cyan);
    transform: translateY(-50%) scale(1.1);
}

.screenplay-gallery-dots {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.screenplay-gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.screenplay-gallery-dot.active,
.screenplay-gallery-dot:hover {
    background: var(--primary-cyan);
    transform: scale(1.2);
}

/* Screenplay Gallery Trigger */
.screenplay-gallery-trigger {
    position: relative;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.screenplay-gallery-trigger:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-cyan);
}

.screenplay-gallery-trigger img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.screenplay-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.screenplay-gallery-trigger:hover .screenplay-gallery-overlay {
    opacity: 1;
}

.screenplay-gallery-icon {
    text-align: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.screenplay-gallery-instruction {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.screenplay-gallery-instruction i {
    color: var(--primary-cyan);
    font-size: 1rem;
}

.screenplay-gallery-trigger:hover + .screenplay-gallery-instruction {
    color: var(--primary-cyan);
    transform: translateY(-2px);
}

/* Gallery Modal Content CSS Removed */

/* Gallery close button CSS removed */

.gallery-slides {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slide {
    display: none;
    width: 100%;
    height: 100%;
    text-align: center;
    animation: slideIn 0.5s ease;
}

.gallery-slide.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-slide img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-slide-caption {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1rem;
    text-align: center;
    max-width: 600px;
}

.gallery-prev,
.gallery-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 28px;
    transition: var(--transition-smooth);
    user-select: none;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-next {
    right: -80px;
}

.gallery-prev {
    left: -80px;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: var(--primary-cyan);
    transform: scale(1.1);
}

.gallery-dots {
    text-align: center;
    margin-top: 2rem;
}

.gallery-dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
    transition: var(--transition-smooth);
}

.gallery-dot.active,
.gallery-dot:hover {
    background-color: var(--primary-cyan);
    transform: scale(1.2);
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Mobile Responsive for Story Content */
@media (max-width: 768px) {
    .story-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .story-section {
        flex-direction: column;
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .story-image-left,
    .story-image-right {
        flex: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .story-text-left,
    .story-text-right {
        flex: none;
        width: 100%;
    }
    
    .achievements-content {
        gap: 1.5rem;
    }
    
    .achievement-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .achievement-image {
        flex: none;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .screenplays-content,
    .early-childhood-content,
    .behind-scenes-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .screenplay-item,
    .childhood-image,
    .behind-scenes-image {
        flex: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Gallery modal mobile CSS removed */
    
    .gallery-slides {
        height: 70vh;
    }
    
    .gallery-slide img {
        max-height: 60vh;
    }
    
    .gallery-slide-caption {
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 50px;
        height: 50px;
        font-size: 20px;
        padding: 12px;
    }
    
    .gallery-next {
        right: -60px;
    }
    
    .gallery-prev {
        left: -60px;
    }
    
    /* Gallery close button mobile CSS removed */
    
    /* About section uses flexbox - stack on mobile */
    .about-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text {
        flex: none;
        text-align: left;
    }
    
    .about-image {
        flex: none;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    /* Book sections use CSS Grid - stack on mobile */
    .book-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .book-feature-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .book-image {
        flex: none;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .philosophy-quote {
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    .philosophy-quote blockquote {
        font-size: 1.1rem;
    }
    
    .video-container iframe {
        width: 100%;
        height: 200px;
    }
    
    .signature-section {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .signature-quote {
        font-size: 1.1rem;
    }
    
    .signature {
        font-size: 1.3rem;
    }
    
    /* Author Section Mobile */
    .author-text h2 {
        font-size: 2rem;
    }
    
    .author-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    /* CTA Section Mobile */
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Author Section */
.author-section {
    background: var(--gradient-dark);
    padding: 4rem 0;
    position: relative;
}

[data-theme="light"] .author-section {
    background: var(--gradient-light);
}

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

.author-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .author-text h2 {
    color: var(--primary-blue);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.author-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    text-align: center;
}

.author-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA Section - Removed duplicate */

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn-primary,
.cta-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.cta-actions .btn-primary:hover,
.cta-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Video Section */
.video-section {
    padding: 4rem 0;
    background: var(--gradient-dark);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

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

/* Learn List */
.learn-list-container {
    max-width: 800px;
    margin: 0 auto;
}

.learn-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.learn-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.learn-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.learn-item i {
    color: var(--primary-cyan);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.learn-item span {
    color: var(--text-light);
    font-weight: 500;
}

/* Book Page Specific Styles */
.book-features {
    margin: 2rem 0;
}

.book-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.book-features .feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.book-features .feature-item i {
    color: var(--primary-cyan);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.book-features .feature-item span {
    color: var(--text-light);
    font-weight: 500;
}

/* Course Page Specific Styles */
.course-features {
    margin: 2rem 0;
}

.course-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.course-features .feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.course-features .feature-item i {
    color: var(--primary-cyan);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.course-features .feature-item span {
    color: var(--text-light);
    font-weight: 500;
}

.course-icon-large {
    font-size: 8rem;
    color: var(--primary-cyan);
    text-align: center;
    animation: pulse 2s infinite;
}

.course-icon {
    font-size: 4rem;
    color: var(--primary-cyan);
    text-align: center;
    animation: pulse 2s infinite;
}

/* Book Page Icons */
.book-icon-large {
    font-size: 8rem;
    color: var(--primary-cyan);
    text-align: center;
    animation: pulse 2s infinite;
}

.book-icon {
    font-size: 4rem;
    color: var(--primary-cyan);
    text-align: center;
    animation: pulse 2s infinite;
}

/* Podcast Page Icons */
.podcast-icon-large {
    font-size: 8rem;
    color: var(--primary-cyan);
    text-align: center;
    animation: pulse 2s infinite;
}

.podcast-icon {
    font-size: 4rem;
    color: var(--primary-cyan);
    text-align: center;
    animation: pulse 2s infinite;
}

/* Blog Page Icons */
.blog-icon-large {
    font-size: 8rem;
    color: var(--primary-cyan);
    text-align: center;
    animation: pulse 2s infinite;
}

.blog-icon {
    font-size: 4rem;
    color: var(--primary-cyan);
    text-align: center;
    animation: pulse 2s infinite;
}

/* Contact Page Icons */
.contact-icon-large {
    font-size: 8rem;
    color: var(--primary-cyan);
    text-align: center;
    animation: pulse 2s infinite;
}

.contact-icon {
    font-size: 4rem;
    color: var(--primary-cyan);
    text-align: center;
    animation: pulse 2s infinite;
}

/* Media Kit Page Icons */
.media-kit-icon-large {
    font-size: 8rem;
    color: var(--primary-cyan);
    text-align: center;
    animation: pulse 2s infinite;
}

.media-kit-icon {
    font-size: 4rem;
    color: var(--primary-cyan);
    text-align: center;
    animation: pulse 2s infinite;
}

/* Timeline Images Grid */
.timeline-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.timeline-images-grid .timeline-image {
    margin: 0;
}

.timeline-images-grid .timeline-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-glow);
    border: 2px solid rgba(0, 245, 255, 0.3);
    transition: var(--transition-smooth);
}

.timeline-images-grid .timeline-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.6);
}

/* Timeline Note */
.timeline-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    color: var(--primary-cyan);
    font-style: italic;
    animation: glow 3s ease-in-out infinite alternate;
}

.timeline-note i {
    font-size: 1.5rem;
    color: var(--primary-cyan);
    animation: pulse 2s infinite;
}

.timeline-note span {
    font-weight: 500;
    line-height: 1.4;
}

/* Image Modal */
.image-modal {
    display: none !important;
    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);
    animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 0 50px rgba(0, 245, 255, 0.5);
    animation: zoomIn 0.3s ease-in-out;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--text-light);
    padding: 10px 0;
    height: 150px;
    font-size: 1.1rem;
    font-weight: 500;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: var(--primary-cyan);
    font-size: 40px;
    font-weight: bold;
    transition: var(--transition-smooth);
    cursor: pointer;
    z-index: 10000;
    display: none !important;
}

.close:hover,
.close:focus {
    color: white;
    text-decoration: none;
    transform: scale(1.1);
}

/* Make images clickable */
.timeline-image img {
    cursor: pointer;
    transition: var(--transition-smooth);
}

.timeline-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.6);
}

/* Modal animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Podcast Player */
.podcast-player {
    margin: 2rem 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-glow);
}

.podcast-player iframe {
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
    transition: var(--transition-smooth);
}

.podcast-player iframe:hover {
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.5);
    transform: scale(1.02);
}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--bg-secondary);
    border: 2px solid var(--primary-cyan);
    border-radius: 50px;
    padding: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-light);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile theme toggle positioning */
@media (max-width: 768px) {
    .theme-toggle {
        top: 20px;
        right: 70px; /* Move left to avoid hamburger menu */
        z-index: 1001;
    }
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.theme-toggle i {
    font-size: 1.5rem;
    color: var(--primary-cyan);
    transition: var(--transition-smooth);
}

.theme-toggle:hover i {
    color: var(--primary-purple);
}

/* Light mode specific styles */
.theme-toggle .fa-moon {
    display: block;
}

.theme-toggle .fa-sun {
    display: none;
}

/* Dark mode specific styles */
[data-theme="dark"] .theme-toggle .fa-moon {
    display: none;
}

[data-theme="dark"] .theme-toggle .fa-sun {
    display: block;
}

/* Update heading fonts */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
}

/* Nav logo styling */
.nav-logo a {
    color: var(--text-primary) !important;
    font-weight: 700;
    font-family: var(--font-heading);
    transition: var(--transition-smooth);
}

.nav-logo a:hover {
    color: var(--primary-cyan) !important;
}

/* Navigation hover effects */
.nav-link:hover {
    color: var(--primary-cyan);
    background: rgba(0, 102, 204, 0.1);
}

[data-theme="dark"] .nav-link:hover {
    color: var(--primary-cyan);
    background: rgba(0, 245, 255, 0.1);
}

.nav-link.active {
    color: var(--primary-cyan);
    font-weight: 600;
}

/* Page Header */
.page-header {
    background: var(--gradient-bg);
    color: var(--text-primary);
    padding: 120px 0 80px 0;
    text-align: center;
    position: relative;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

[data-theme="light"] .page-header-overlay {
    background: rgba(255, 255, 255, 0.3);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header .section-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .page-header .section-title {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-header .section-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .page-header .section-subtitle {
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Update hero section */
.hero {
    background: var(--gradient-bg);
    color: var(--text-primary);
}

/* Update cards and sections */
.section-padding {
    background: var(--bg-offwhite);
}

[data-theme="dark"] .section-padding {
    background: var(--bg-primary);
}

/* Update buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: var(--gradient-light);
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 400px;
}

[data-theme="dark"] .testimonials {
    background: var(--gradient-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    min-height: 200px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .testimonial-card {
    background: rgba(10, 10, 15, 0.9);
    border: 1px solid rgba(0, 245, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--accent-purple));
    border-radius: 15px 15px 0 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .testimonial-card:hover {
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.2);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--primary-cyan);
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--primary-cyan);
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--accent-purple) 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 300px;
}

[data-theme="light"] .cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 100%);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .cta-content h2 {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

[data-theme="light"] .cta-content p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn-primary,
.cta-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-actions .btn-primary:hover,
.cta-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-actions .btn-primary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
    border-color: rgba(255, 255, 255, 0.9);
}

.cta-actions .btn-primary:hover {
    background: #ffffff;
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .cta-actions .btn-primary {
    background: #ffffff;
    color: #1e3a8a;
    border-color: #ffffff;
    text-shadow: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .cta-actions .btn-primary:hover {
    background: #f8fafc;
    color: #1e3a8a;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

[data-theme="light"] .cta-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 500;
    backdrop-filter: blur(10px);
}

[data-theme="light"] .cta-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Author Section */
.author-section {
    background: var(--gradient-light);
    padding: 4rem 0;
    position: relative;
}

[data-theme="dark"] .author-section {
    background: var(--gradient-dark);
}

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

.author-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-cyan);
}

[data-theme="light"] .author-text h2 {
    color: var(--primary-blue);
}

.author-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

.author-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Update cards */
.card, .offering-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 102, 204, 0.1);
    box-shadow: var(--shadow-light);
}

[data-theme="dark"] .card, 
[data-theme="dark"] .offering-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-light);
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
        padding-left: 1rem;
    }
    
    .testimonial-content p::before {
        font-size: 2.5rem;
        top: -0.3rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-actions .btn-primary,
    .cta-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .author-text h2 {
        font-size: 2rem;
    }
    
    .author-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .author-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hero responsive styles */
    .slide-content {
        padding: 0 1rem;
        justify-content: center;
    }
    
    .content-box {
        padding: 2rem;
        max-width: 90%;
        margin-left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
    
    .hamburger {
        display: flex;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1002;
        background: var(--bg-secondary);
        border: 2px solid var(--primary-cyan);
        border-radius: 8px;
        padding: 8px;
        box-shadow: var(--shadow-light);
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    [data-theme="dark"] .nav-menu {
        background: rgba(10, 10, 15, 0.98);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-link {
        font-size: 1.2rem;
        margin: 1rem 0;
        padding: 0.8rem 1.5rem;
        border-radius: 10px;
        color: #1a1a1a;
    }
    
    [data-theme="dark"] .nav-menu .nav-link {
        color: #ffffff;
    }
    
    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .content-box {
        padding: 2rem;
    }
    
    /* About section uses flexbox - no changes needed */
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links,
    .footer-connect {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .signature-image {
        max-width: 150px;
    }
    
    .signature-quote {
        font-size: 1rem;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .slider-nav {
        padding: 0 1rem;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
    }
    
    /* Page headers */
    .page-header {
        padding: 100px 0 60px 0;
    }
    
    .page-header .section-title {
        font-size: 2.5rem;
    }
    
    .page-header .section-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .content-box {
        padding: 1.5rem;
    }
    
    .story-card,
    .contact-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .offering-card {
        padding: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .timeline-images-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline-note {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .podcast-player iframe {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    
    /* Enhanced mobile navigation */
    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
        padding-top: 1rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
        margin: 0.8rem 0;
        padding: 0.8rem 1.5rem;
    }
    
    /* Hero adjustments for small screens */
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .tag {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .cta-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Typography adjustments */
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    /* Card adjustments */
    .achievement-card,
    .offering-card,
    .blog-card {
        padding: 1.2rem;
    }
    
    /* Form adjustments */
    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    /* About section mobile rules handled in main 768px media query */
    
    /* Gallery modal small mobile CSS removed */
    
    .gallery-slides {
        height: 65vh;
    }
    
    .gallery-slide img {
        max-height: 55vh;
    }
    
    .gallery-slide-caption {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 45px;
        height: 45px;
        font-size: 18px;
        padding: 10px;
    }
    
    .gallery-next {
        right: -50px;
    }
    
    .gallery-prev {
        left: -50px;
    }
    
    .gallery-dots {
        margin-top: 1rem;
    }
    
    .gallery-dot {
        height: 12px;
        width: 12px;
        margin: 0 6px;
    }
    
    /* Page headers for small mobile */
    .page-header {
        padding: 80px 0 40px 0;
    }
    
    .page-header .section-title {
        font-size: 2rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }
    
    .page-header .section-subtitle {
        font-size: 1rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    }
}

/* Large Mobile and Small Tablets */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .content-box {
        padding: 2.5rem;
        max-width: 90%;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    /* Two column layout for some sections */
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .platform-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .platform-link {
        flex: 1;
        min-width: 120px;
    }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .content-box {
        max-width: 80%;
    }
    
    /* Three column layout for achievements */
    .achievements-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Two column layout for offerings */
    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Keep single column for blog */
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .nav-link {
        padding: 1rem 1.5rem;
        margin: 0.5rem 0;
    }
    
    .btn-primary,
    .cta-btn {
        padding: 1rem 2rem;
        min-height: 48px;
    }
    
    .slider-btn {
        width: 60px;
        height: 60px;
    }
    
    
    /* Remove hover effects on touch devices */
    .nav-link:hover,
    .btn-primary:hover,
    .cta-btn:hover {
        transform: none;
    }
    
    /* Add active states for touch */
    .nav-link:active,
    .btn-primary:active,
    .cta-btn:active {
        transform: scale(0.95);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(0, 245, 255, 0.3);
    border-top: 3px solid var(--primary-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Media Kit Styles */
.products-content {
    max-width: 800px;
    margin: 0 auto;
}

.product-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="light"] .product-item {
    background: rgba(0, 102, 204, 0.05);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.product-item h3 {
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.product-item p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Media Download Section */
.media-download-section {
    background: var(--gradient-bg);
    text-align: center;
}

.download-content h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.large-btn {
    font-size: 1.5rem;
    padding: 1rem 2rem;
    margin-left: 1rem;
}

/* Social Media Section */
.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.social-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

[data-theme="light"] .social-item {
    background: rgba(0, 102, 204, 0.05);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.social-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .social-item:hover {
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.1);
}

.social-icon {
    margin-right: 1rem;
    font-size: 2rem;
    color: var(--primary-cyan);
    min-width: 50px;
    text-align: center;
}

.social-content {
    flex: 1;
}

.social-content strong {
    color: var(--primary-cyan);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.social-content a {
    word-break: break-all;
    font-size: 0.9rem;
}
