/**
 * Webinar Theme - Main Stylesheet
 * Author: Soumya Gupta
 */

@font-face {
    font-family: 'Glacial Indifference';
    src: url('https://fonts.cdnfonts.com/s/15011/GlacialIndifference-Regular.woff') format('woff');
    font-weight: 400;
}
@font-face {
    font-family: 'Glacial Indifference';
    src: url('https://fonts.cdnfonts.com/s/15011/GlacialIndifference-Bold.woff') format('woff');
    font-weight: 700;
}

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

:root {
    --primary: #003A7A;
    --primary-light: #0052a3;
    --secondary: #9CD6C8;
    --accent: #D4AF37;
    --accent-light: #F5D77C;
    --dark: #021633;
    --darker: #010d1f;
    --light: #F3EFE7;
    --slate: #A8B0C5;
    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(212, 175, 55, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--darker);
    color: var(--light);
    overflow-x: hidden;
}

/* Floating Shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 25s infinite ease-in-out;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, 50px) rotate(90deg); }
    50% { transform: translate(0, 100px) rotate(180deg); }
    75% { transform: translate(-50px, 50px) rotate(270deg); }
}

/* Hero - Split Design */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    z-index: 1;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px 80px 100px;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 30px;
    width: fit-content;
    backdrop-filter: blur(10px);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title .brand-tagline {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 15px;
    background: none;
    -webkit-text-fill-color: var(--secondary);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--light);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
    opacity: 0.85;
}

.hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-glow {
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border: none;
    border-radius: 60px;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

.btn-glow:hover::before {
    left: 100%;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.5);
}

.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 50px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-image-main {
    width: 100%;
    border-radius: 30px;
    position: relative;
    z-index: 2;
}

.hero-image-main img {
    width: 100%;
    border-radius: 30px;
    display: block;
}

.hero-floating-card {
    position: absolute;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px;
    z-index: 3;
}

.hero-card-1 {
    top: -20px;
    right: -40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-card-1 .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
}

.hero-card-1 .stat-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.hero-card-1 .stat-label {
    font-size: 0.8rem;
    color: var(--slate);
}

.hero-card-2 {
    bottom: 40px;
    left: -60px;
}

.hero-card-2 .stars {
    color: var(--accent);
    margin-bottom: 10px;
}

.hero-card-2 p {
    font-size: 0.9rem;
    color: var(--light);
}

/* Stats Ribbon */
.stats-ribbon {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    padding: 60px 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
    border-top: 3px solid var(--accent);
    border-bottom: 3px solid var(--accent);
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-item .label {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 5px;
    color: var(--light);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--accent);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.section-title {
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light);
}

.section-title .gradient {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Main Video Section */
.main-video-section {
    padding: 100px 80px;
    position: relative;
    z-index: 1;
}

.video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(212, 175, 55, 0.3);
    border: 2px solid var(--accent);
}

.video-wrapper video {
    width: 100%;
    display: block;
    border-radius: 28px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 22, 51, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
}

.video-play-big {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 20px rgba(212, 175, 55, 0.2);
}

.video-play-big:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 30px rgba(212, 175, 55, 0.3);
}

.video-overlay p {
    font-size: 1.2rem;
    color: var(--light);
    font-weight: 600;
}

/* Video Controls */
.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 25px;
    background: linear-gradient(transparent, rgba(2, 22, 51, 0.9));
    border-radius: 0 0 28px 28px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.video-controls .play-pause {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--dark);
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.video-controls .play-pause:hover {
    transform: scale(1.1);
    background: var(--accent-light);
}

.video-controls .seek-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.video-controls .seek-bar {
    flex: 1;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
    outline: none;
}

.video-controls .seek-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.video-controls .seek-bar::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.video-controls .seek-bar::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.video-controls .time-display {
    font-size: 0.85rem;
    color: var(--light);
    font-weight: 500;
    min-width: 90px;
    text-align: right;
}

.video-controls .mute-btn {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--light);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.video-controls .mute-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Bento Grid Section */
.bento-section {
    padding: 120px 80px;
    position: relative;
    z-index: 1;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 25px;
    min-height: 500px;
}

.bento-logo {
    grid-row: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-logo img {
    max-width: 100%;
    object-fit: contain;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    transition: all 0.4s ease;
}

.bento-logo img:hover {
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.2);
}

.bento-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.2);
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card h3 {
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--light);
}

.bento-card p {
    color: var(--light);
    line-height: 1.6;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Mini CTA Banners */
.mini-cta {
    padding: 50px 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(0, 58, 122, 0.3));
    position: relative;
    z-index: 1;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

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

.mini-cta-top {
    margin-bottom: 20px;
}

.mini-cta h3 {
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.mini-cta h3 .gradient {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mini-cta-subtext {
    font-size: 1rem;
    opacity: 0.85;
    color: var(--light);
}

.mini-cta-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.mini-cta-timer {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 68, 68, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.mini-cta-timer-label {
    color: #ff6b6b;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.mini-cta-timer-value {
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-light);
}

.mini-cta .btn-cta {
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border: none;
    border-radius: 60px;
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.mini-cta .btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

.mini-cta .seats-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-weight: 600;
}

.mini-cta .seats-left .pulse {
    width: 10px;
    height: 10px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

/* Doctor Section */
.doctor-section {
    position: relative;
    z-index: 1;
    padding: 0;
    overflow: hidden;
}

.doctor-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.doctor-image-side {
    position: relative;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    padding: 80px;
    display: flex;
    align-items: center;
}

.doctor-photo {
    width: 100%;
    max-width: 450px;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.doctor-content-side {
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.doctor-name {
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--light);
}

.doctor-title {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.doctor-bio {
    color: var(--light);
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.05rem;
    opacity: 0.85;
}

.doctor-stats {
    display: flex;
    gap: 40px;
}

.doc-stat {
    text-align: center;
    padding: 30px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.doc-stat .num {
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.doc-stat .txt {
    font-size: 0.9rem;
    color: var(--slate);
    margin-top: 5px;
}

/* Testimonials - Marquee Style */
.testimonials-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonials-section .section-header {
    padding: 0 80px;
}

.marquee-wrapper {
    position: relative;
}

.marquee {
    display: flex;
    gap: 30px;
    animation: marquee 40s linear infinite;
    width: max-content;
}

.marquee:hover {
    animation-play-state: paused;
}

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

.testimonial-card {
    width: 400px;
    min-width: 400px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 35px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--accent);
    transform: scale(1.02);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--light);
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--slate);
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--light);
    line-height: 1.7;
    font-style: italic;
    opacity: 0.9;
}

/* Learning Section */
.learn-section {
    padding: 120px 80px;
    position: relative;
    z-index: 1;
}

.learn-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.learn-image {
    position: relative;
}

.learn-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.learn-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.learn-item {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.learn-item:hover {
    transform: translateX(10px);
    border-color: var(--accent);
    background: rgba(212, 175, 55, 0.1);
}

.learn-number {
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 60px;
}

.learn-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--light);
}

.learn-content p {
    color: var(--light);
    line-height: 1.6;
    opacity: 0.85;
}

/* Who Can Join */
.who-section {
    padding: 120px 80px;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 50%, var(--darker) 100%);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.who-card {
    background: linear-gradient(145deg, var(--dark), var(--darker));
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.who-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.2);
}

.who-card-mockup {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--primary), var(--dark));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.who-card-mockup::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    top: -50%;
    right: -30%;
}

.who-card-mockup img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: contain;
    background: #94C8F7;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.who-card-content {
    padding: 30px;
    text-align: center;
}

.who-card-content h3 {
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--light);
}

.who-card-content p {
    color: var(--light);
    line-height: 1.6;
    font-size: 0.95rem;
    opacity: 0.85;
}

.who-card-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
}

/* Materials */
.materials-section {
    padding: 120px 80px;
    position: relative;
    z-index: 1;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.material-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(156, 214, 200, 0.1));
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.material-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 40px 80px rgba(212, 175, 55, 0.3);
}

.material-num {
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    opacity: 0.1;
    color: var(--accent);
}

.material-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--dark);
}

.material-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light);
}

.material-card p {
    color: var(--light);
    opacity: 0.85;
}

/* Quote Section */
.quote-section {
    padding: 50px 80px;
    position: relative;
    z-index: 1;
    text-align: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(156, 214, 200, 0.1));
}

.quote-mark {
    font-size: 8rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
}

.quote-text {
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.5;
    max-width: 1000px;
    margin: -40px auto 40px;
    color: var(--light);
}

.quote-author {
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 120px 80px;
    position: relative;
    z-index: 1;
}

.cta-box {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 50px;
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-urgency {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(255,255,255,0.2);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.cta-urgency .pulse {
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse-dot 1s infinite;
}

.cta-title {
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-btn {
    padding: 20px 60px;
    background: white;
    border: none;
    border-radius: 60px;
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* FAQ */
.faq-section {
    padding: 120px 80px;
    position: relative;
    z-index: 1;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.faq-image {
    position: sticky;
    top: 150px;
}

.faq-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--light);
}

.faq-question i {
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--light);
    line-height: 1.7;
    opacity: 0.85;
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 80px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--slate);
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-5px);
    color: var(--dark);
}

/* Sticky Bottom CTA Bar */
.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    padding: 12px 20px;
    z-index: 9999;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.4);
    border-top: 1px solid var(--glass-border);
    transition: bottom 0.4s ease;
    backdrop-filter: blur(10px);
}

.sticky-cta.visible {
    bottom: 0;
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.sticky-social-proof {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--secondary);
    animation: fadeInOut 4s infinite;
}

.sticky-social-proof i {
    color: var(--accent);
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.sticky-spots {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--light);
}

.sticky-spots .spots-num {
    color: var(--accent);
    font-weight: 700;
}

.sticky-spots .pulse-dot {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.sticky-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--light);
}

.sticky-timer span {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-weight: 600;
    color: var(--accent-light);
}

.sticky-timer-label {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.sticky-cta-btn {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--dark);
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    text-decoration: none;
}

.sticky-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-left {
        padding: 150px 50px 50px;
        text-align: center;
        align-items: center;
    }

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

    .hero-right {
        padding: 50px;
    }

    .hero-card-1 {
        right: 0;
    }

    .hero-card-2 {
        left: 0;
    }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }

    .bento-logo {
        grid-column: span 2;
        grid-row: span 1;
    }

    .doctor-section {
        overflow-x: hidden;
    }

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

    .doctor-image-side {
        clip-path: none;
        padding: 40px 25px;
        justify-content: center;
    }

    .doctor-photo {
        max-width: 280px;
    }

    .doctor-content-side {
        padding: 40px 25px;
    }

    .doctor-name {
        font-size: 2rem;
    }

    .doctor-title {
        font-size: 1rem;
    }

    .doctor-bio {
        font-size: 0.95rem;
    }

    .doctor-stats {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .doc-stat {
        padding: 20px 15px;
        min-width: 100px;
        flex: 1;
    }

    .doc-stat .num {
        font-size: 1.8rem;
    }

    .doc-stat .txt {
        font-size: 0.8rem;
    }

    .who-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .faq-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-left {
        padding: 120px 25px 30px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-glow {
        width: 100%;
        justify-content: center;
    }

    .hero-right {
        padding: 30px 25px;
    }

    .hero-floating-card {
        display: none;
    }

    .stats-ribbon {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 25px;
    }

    .stat-item .number {
        font-size: 2.5rem;
    }

    .bento-section,
    .who-section,
    .learn-section,
    .materials-section,
    .cta-section,
    .faq-section,
    .main-video-section {
        padding: 80px 25px;
    }

    .mini-cta {
        padding: 40px 25px;
    }

    .mini-cta-content {
        flex-direction: column;
        gap: 20px;
    }

    .mini-cta h3 {
        font-size: 1.3rem;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-logo {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-card h3 {
        font-size: 1.5rem;
    }

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

    .quote-section {
        padding: 80px 25px;
    }

    .quote-text {
        font-size: 1.5rem;
    }

    .cta-box {
        padding: 50px 30px;
        border-radius: 30px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .footer {
        padding: 50px 25px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .sticky-cta-content {
        justify-content: center;
        text-align: center;
    }
    
    .sticky-social-proof,
    .sticky-spots,
    .sticky-timer {
        font-size: 0.75rem;
        flex: 1 1 45%;
        justify-content: center;
    }

    .sticky-cta-btn {
        flex: 1 1 100%;
        justify-content: center;
        margin-top: 8px;
    }

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

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

/* ===============================================
   RESULTS SECTION (v1.1.2) - Action Takers
   =============================================== */
.results-section {
    padding: 80px 5%;
    position: relative;
    z-index: 1;
    background: var(--darker) !important;
}

.results-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 60px;
    align-items: center;
}

.results-content {
    text-align: left !important;
}

.results-content h2 {
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    font-style: italic !important;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--light);
    text-align: left !important;
}

.results-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--slate);
    text-align: left !important;
}

.results-cards {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px;
}

.result-card {
    background: linear-gradient(135deg, rgba(0, 58, 122, 0.4), rgba(212, 175, 55, 0.1)) !important;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 25px 30px;
    position: relative;
    overflow: hidden;
    text-align: left !important;
}

.result-card.highlight {
    border-color: var(--accent) !important;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(0, 58, 122, 0.3)) !important;
}

.result-card-label {
    font-size: 0.95rem;
    color: var(--light);
    margin-bottom: 5px;
    opacity: 0.9;
    text-align: left !important;
}

.result-card-sublabel {
    font-size: 0.85rem;
    color: var(--slate);
    margin-bottom: 10px;
    text-align: left !important;
}

.result-card-number {
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 3.5rem !important;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    text-align: left !important;
}

.result-card:not(.highlight) .result-card-number {
    color: var(--slate);
}

/* ===============================================
   PATIENT VIDEOS SECTION (v1.1.0)
   =============================================== */
.patient-videos-section {
    padding: 100px 5%;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, transparent, rgba(0, 58, 122, 0.1), transparent);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto 0;
	justify-items: center;
}

.video-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
	width: 700px;
}

.video-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: 0 20px 50px rgba(156, 214, 200, 0.15);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.video-play-btn:hover {
    background: var(--accent);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.video-play-btn i {
    margin-left: 4px; /* Optical centering for play icon */
}

.video-info {
    padding: 25px;
}

.video-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 8px;
}

.video-info p {
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.6;
}

@media (max-width: 1024px) {
  .video-card {
    width: 100%;
    margin: 0 auto;
  }
}

/* Timer Urgent Animation */
.timer-urgent {
    color: #ff6b6b !important;
    animation: pulse-urgent 0.5s ease-in-out infinite alternate;
}

@keyframes pulse-urgent {
    from { opacity: 1; }
    to { opacity: 0.6; }
}

/* Responsive for new sections */
@media (max-width: 900px) {
    .results-container {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .results-content h2 {
        font-size: 2.2rem;
    }

    .results-section {
        padding: 60px 5%;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 600px) {
    .result-card-number {
        font-size: 2.5rem !important;
    }

    .result-card {
        padding: 20px 20px;
    }
}

/* Page Template Styles */
.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--dark);
    border-bottom: 1px solid var(--glass-border);
}

.page-header .logo a {
    color: var(--light);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
}

.page-header .main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.page-header .main-nav a {
    color: var(--slate);
    text-decoration: none;
    transition: color 0.3s;
}

.page-header .main-nav a:hover {
    color: var(--accent);
}

.page-content {
    flex: 1;
    padding: 60px 5%;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--light);
}

.entry-content {
    line-height: 1.8;
    color: var(--slate);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: var(--light);
    margin: 30px 0 15px;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content a {
    color: var(--accent);
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.entry-content li {
    margin-bottom: 10px;
}

.page-footer {
    padding: 30px 5%;
    text-align: center;
    background: var(--dark);
    border-top: 1px solid var(--glass-border);
    color: var(--slate);
}
