/* RAJ SHAMANI - PREMIUM REFINED WEBSITE */

/* Global Image Quality */
img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    transform: translateZ(0);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

:root {
    --gold: #D4AF37;
    --gold-muted: #B8960F;
    --white: #FFFFFF;
    --gray: #CCCCCC;
    --gray-dark: #666666;
    --black: #000000;
    --dark-bg: #0a0a0a;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s;
}

.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(255, 212, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.05em;
}

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

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
}

/* Hero */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    animation: slowZoom 30s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    letter-spacing: 0.05em;
    color: var(--gold);
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(20px);
}

.hero-cta {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    margin-right: 1rem;
}

.hero-cta:hover {
    background: var(--gold-muted);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.hero-cta-secondary {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    border: 2px solid var(--gold);
    border-radius: 4px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.hero-cta-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.scroll-indicator-text {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-transform: uppercase;
}

.scroll-indicator-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* Sections */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--white);
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About */
.about-section {
    background: #000000;
    padding: 6rem 0;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-content {
    padding-right: 2rem;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 2.5rem;
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.about-timeline {
    position: relative;
    padding-left: 2.5rem;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateX(-20px);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.9rem;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.timeline-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.quote-block {
    position: relative;
    padding: 2rem 2rem 2rem 2.5rem;
    margin: 3rem 0 0 0;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
    opacity: 0;
    transform: translateX(-20px);
}

.quote-block blockquote {
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 400;
    color: var(--white);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.about-image::after {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.3;
}

/* Figuring Out Brand Section - Hero Style */
.figuring-out-section {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.figuring-out-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.figuring-out-hero {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.figuring-out-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s ease forwards;
    animation-delay: 0.2s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.figuring-out-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.figuring-out-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 3rem;
}

.figuring-out-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.3rem;
    font-family: 'Poppins', sans-serif;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.figuring-out-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.figuring-out-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background: #FFA500;
}

.figuring-out-right {
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.8s ease forwards;
    animation-delay: 0.4s;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.figuring-out-image-wrapper {
    position: relative;
    padding: 2rem;
}

.figuring-out-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
    animation: pulseGlow 3s ease-in-out infinite;
}

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

.figuring-out-image-wrapper img {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(212, 175, 55, 0.4));
    z-index: 1;
}

/* Impact Video Section */
.impact-video-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #000000;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.impact-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, transparent 60%, rgba(0,0,0,0.9) 100%);
    z-index: 2;
}

.video-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 2rem;
    opacity: 0;
}

.video-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.video-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--gold);
    font-weight: 600;
}

/* Podcast Section - Netflix Style */
.podcast-section {
    background: #000000;
    padding: 5rem 0;
}

/* Featured Episodes Grid (Static - Vijay & Bill Gates ONLY) */
.featured-episodes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.featured-card {
    text-decoration: none;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-8px);
}

.featured-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    background: #000;
}

.featured-card:hover .featured-image-wrapper {
    box-shadow: 0 20px 60px rgba(255, 212, 0, 0.4);
}

.featured-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    transition: transform 0.3s ease;
}

.featured-card:hover .featured-image-wrapper img {
    transform: scale(1.03);
}

.featured-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.featured-card:hover .featured-title {
    color: var(--gold);
}

.featured-desc {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
}

/* Podcast Carousel (Horizontal Slider) */
.podcast-carousel-wrapper {
    position: relative;
    margin-top: 3rem;
}

.podcast-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 2rem 2rem 2.5rem 2rem;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) rgba(255, 255, 255, 0.1);
}

.podcast-carousel::-webkit-scrollbar {
    height: 4px;
}

.podcast-carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.podcast-carousel::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.podcast-card {
    min-width: 260px;
    max-width: 260px;
    flex-shrink: 0;
    text-decoration: none;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.podcast-card:hover {
    transform: scale(1.03) translateY(-8px);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    background: #000;
}

.podcast-card:hover .card-image-wrapper {
    box-shadow: 0 20px 60px rgba(255, 212, 0, 0.4);
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    transition: transform 0.3s ease;
}

.podcast-card:hover .card-image-wrapper img {
    transform: scale(1.03);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.podcast-card:hover .card-overlay,
.featured-card:hover .card-overlay {
    opacity: 1;
}

.play-icon {
    width: 70px;
    height: 70px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.podcast-card:hover .play-icon,
.featured-card:hover .play-icon {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--black);
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    border-radius: 4px;
    z-index: 2;
}

.genre-tag {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 212, 0, 0.3);
    color: var(--gold);
    padding: 0.4rem 0.8rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 4px;
    z-index: 2;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.card-title {
    font-size: 1.15rem;
    font-weight: 700;
    text-align: center;
    transition: color 0.3s ease;
    margin-bottom: 0.4rem;
}

.podcast-card:hover .card-title {
    color: var(--gold);
}

.card-episode {
    font-size: 0.85rem;
    color: var(--gray);
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

/* Clip Strip */
.clip-strip {
    background: #000000;
    padding: 4rem 0;
    overflow: hidden;
}

.clip-scroll {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
}

.clip-scroll:hover {
    animation-play-state: paused;
}

.clip-item {
    min-width: 280px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: #000;
}

.clip-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.clip-item:hover img {
    transform: scale(1.03);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* YouTube Channels - Ashish & Young Blud ONLY */
.youtube-section {
    background: #0a0a0a;
    padding: 5rem 0;
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.youtube-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 212, 0, 0.2);
    border-radius: 12px;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.youtube-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(255, 212, 0, 0.2);
}

.youtube-thumbnail {
    width: 100%;
    height: 230px;
    overflow: hidden;
    background: #000;
    padding: 1rem;
}

.youtube-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    transition: transform 0.3s ease;
}

.youtube-card:hover .youtube-thumbnail img {
    transform: scale(1.03);
}

.youtube-info {
    padding: 2rem 1.5rem;
}

.youtube-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.youtube-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.youtube-purpose {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.youtube-subs {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 2rem;
}

/* Impact Section with Overlay */
.impact-section {
    background: var(--dark-bg);
    padding: 0;
    position: relative;
}

.impact-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

.impact-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.impact-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.impact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.95) 100%);
}

.impact-stats-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem;
    z-index: 2;
}

.impact-stats-overlay .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    opacity: 0;
    transform: translateY(20px);
}

.stat-number {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--gold);
    display: inline-block;
}

.stat-unit {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--gold);
    display: inline-block;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray);
    margin-top: 0.5rem;
}

/* Book */
.book-section {
    background: var(--dark-bg);
}

.book-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.book-image img {
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(255, 212, 0, 0.3);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.book-image img:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 40px 100px rgba(255, 212, 0, 0.5);
}

.book-content .section-title {
    text-align: left;
}

.book-content p {
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.cta-button {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(255, 212, 0, 0.4);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 212, 0, 0.6);
    background: #FFA500;
}

/* Media & Recognition - MODERN ANIMATED */
.media-section {
    background: #000000;
    padding: 6rem 2rem;
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.media-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.media-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--white);
    letter-spacing: 1px;
}

.media-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.media-list li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    transform: translateX(30px);
    animation: slideIn 0.6s ease forwards;
}

.media-list li:nth-child(1) { animation-delay: 0.1s; }
.media-list li:nth-child(2) { animation-delay: 0.2s; }
.media-list li:nth-child(3) { animation-delay: 0.3s; }
.media-list li:nth-child(4) { animation-delay: 0.4s; }

.media-list li strong {
    display: block;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 4px;
}

.media-list li span {
    font-size: 14px;
    opacity: 0.7;
    color: var(--gray);
}

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

/* Footer / Connect Section - ICON BASED */
.connect-footer {
    padding: 60px 0 40px;
    text-align: center;
    background: var(--dark-bg);
    margin-top: 0;
}

.connect-footer h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.connect-footer p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.connect-icons {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.connect-icons a {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.connect-icons span {
    font-size: 12px;
    margin-top: 6px;
    opacity: 0.7;
}

.connect-icons a:hover {
    transform: translateY(-6px);
    color: #FFD400;
}

/* Footer */
.footer {
    background: #000;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 212, 0, 0.2);
    color: var(--gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-container,
    .book-container,
    .youtube-grid,
    .featured-episodes-grid,
    .figuring-out-hero {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .figuring-out-hero {
        padding: 0 2rem;
    }
    
    .figuring-out-left {
        text-align: center;
    }
    
    .figuring-out-stats {
        justify-content: center;
    }
    
    .hero-stat {
        text-align: center;
    }
    
    .figuring-out-image-wrapper img {
        margin: 0 auto;
        display: block;
    }
    
    .about-content,
    .book-content {
        padding-left: 0;
    }
    
    .about-content .section-title,
    .book-content .section-title {
        text-align: center;
    }
    
    .podcast-card {
        min-width: 260px;
        max-width: 260px;
    }
    
    .card-image-wrapper {
        height: 260px;
    }
    
    .featured-image-wrapper {
        height: 350px;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .media-image {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: left 0.3s;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .section-container {
        padding: 6rem 1.5rem;
    }
    
    .figuring-out-hero {
        padding: 0 1.5rem;
        gap: 3rem;
    }
    
    .figuring-out-title {
        font-size: 2rem;
    }
    
    .figuring-out-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .figuring-out-image-wrapper img {
        max-width: 350px;
    }
    
    .about-image img {
        height: 450px;
    }
    
    .featured-episodes-grid {
        gap: 3rem;
    }
    
    .featured-image-wrapper {
        height: 300px;
    }
    
    .podcast-carousel {
        padding: 2rem 1rem 3rem 1rem;
        gap: 1.5rem;
    }
    
    .podcast-card {
        min-width: 240px;
        max-width: 240px;
    }
    
    .card-image-wrapper {
        height: 240px;
    }
    
    .clip-item {
        min-width: 240px;
        height: 180px;
    }
    
    .youtube-thumbnail {
        height: 200px;
    }
    
    .social-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 2rem;
    }
    
    .social-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .social-icon {
        font-size: 2rem;
    }
    
    .connect-icons {
        gap: 20px;
    }
    
    .connect-icons a {
        font-size: 18px;
    }
}

/* Impact Video Section - CRITICAL FIX */
.impact-video-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2;
}

.video-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.video-content h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.video-content p {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--gold);
    font-weight: 600;
}
