/* Root Variables - Oceanic Palette (Lightened) */
:root {
    --ocean-deep: #07575B;
    --ocean-mid: #66A5AD;
    --ocean-light: #C4DFE6;
    --ocean-soft: #E3F2FD;
    --ocean-bg: #F0F7F9;
    --accent: #26C6DA;
    --text-dark: #1A2E35;
    --text-light: #F4F9F9;
    --soft-white: #FFFFFF;
    --shadow: 0 10px 30px rgba(7, 87, 91, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--soft-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, .serif {
    font-family: 'Playfair Display', serif;
}

.script-font {
    font-family: 'Alex Brush', 'Amsterdam Two', cursive !important;
    font-weight: 400 !important;
}

.italic {
    font-style: italic;
}

/* Typography Enhancements */
h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

p {
    font-size: 1.1rem;
    color: rgba(26, 46, 53, 0.8);
    margin-bottom: 32px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--soft-white);
    color: var(--ocean-deep);
}

.btn-primary:hover {
    background-color: var(--ocean-soft);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-nav {
    background-color: var(--ocean-deep);
    color: var(--soft-white);
    padding: 12px 24px;
    font-size: 0.9rem;
}

.btn-nav:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--soft-white);
    padding: 20px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 59, 70, 0.05);
}

.navbar.sticky {
    padding: 12px 0;
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 60px; /* Increased from 40px */
    border-radius: 50%;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem; /* Increased from 1.2rem */
    letter-spacing: 1px;
}

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

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    font-size: 1.4rem;
    cursor: pointer;
}

/* Hero Section */
.hero-premium {
    background-color: var(--ocean-deep);
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ocean-deep) 0%, #002D36 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content p {
    color: rgba(244, 249, 249, 0.8);
}

.hero-visual {
    position: relative;
}

.image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-img {
    width: 100%;
    border-radius: 300px 300px 0 0;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.3);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.fade-in-delay {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s 0.3s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-choose-us {
    padding: 120px 0;
    background-color: var(--ocean-bg);
}

.quote-pin-container {
    height: 200vh; /* Moves after 2 scroll lengths */
    position: relative;
    background-color: var(--soft-white);
    /* Removed overflow: hidden to fix sticky pinning */
}

.quote-pin-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Keep images contained within the sticky viewport */
    background: linear-gradient(135deg, var(--ocean-bg) 0%, var(--soft-white) 100%);
}

.quote-box {
    text-align: center;
    max-width: 800px;
    z-index: 10;
    position: relative;
    padding: 0 40px;
}

.serif-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.3;
    color: var(--ocean-deep);
    margin-bottom: 20px;
    text-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

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

.quote-author {
    font-size: 1.8rem;
    color: var(--ocean-mid);
}

.quote-parallax-images {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.parallax-img {
    position: absolute;
    width: 280px;
    height: 380px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow);
    will-change: transform;
}

.img-left {
    left: 5%;
    top: 15%;
    transform: translateX(-150%) rotate(-10deg); /* Start further off-screen */
}

.img-right {
    right: 5%;
    bottom: 15%;
    transform: translateX(150%) rotate(10deg); /* Start further off-screen */
}

.services-premium {
    padding: 120px 0;
    background-color: var(--soft-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--ocean-deep);
}

.services-slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0 60px;
}

.services-track {
    display: flex;
    gap: 30px;
    transition: var(--transition);
}

.service-card-premium {
    flex: 0 0 calc(33.333% - 20px);
    height: 500px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 59, 70, 0.9), transparent);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    color: var(--soft-white);
    transform: translateY(20px);
    transition: var(--transition);
}

.service-card-premium h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.service-card-premium p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    opacity: 0;
    transition: var(--transition);
}

.btn-text {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.service-card-premium:hover {
    transform: scale(1.02);
}

.service-card-premium:hover .card-bg {
    transform: scale(1.1);
}

.service-card-premium:hover .card-content {
    transform: translateY(0);
}

.service-card-premium:hover p {
    opacity: 1;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #DDD;
    cursor: pointer;
}

.dot.active {
    background-color: var(--ocean-deep);
    width: 30px;
    border-radius: 10px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 120px 0;
    background-color: var(--ocean-bg);
}

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

.text-side h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.features-list {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 4px;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.image-side .rounded-image-box {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.image-side img {
    width: 100%;
    display: block;
}

/* Footer */
.footer-premium {
    background-color: var(--ocean-deep);
    color: var(--text-light);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand .logo-text {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 20px;
}

.footer-grid h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(244, 249, 249, 0.5);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .hero-grid, .split-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-img {
        max-width: 500px;
        margin: 0 auto;
    }

    .service-card-premium {
        flex: 0 0 100%;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
    }
}

/* Testimonials Section */
.testimonials-premium {
    padding: 120px 0;
    background-color: var(--soft-white);
}

.section-header.center {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-alternating-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.testimonial-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.testimonial-row.reverse {
    flex-direction: row-reverse;
}

.testimonial-image, .testimonial-card {
    flex: 1;
}

.testimonial-image img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: block;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--ocean-bg);
    padding: 60px;
    border-radius: 40px;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(7, 87, 91, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(7, 87, 91, 0.1);
    background-color: var(--soft-white);
}

.treatment-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    margin: 20px 0 32px;
    line-height: 1.5;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(7, 87, 91, 0.1);
    padding-top: 24px;
}

.client-name {
    font-weight: 700;
    color: var(--ocean-deep);
}

.rating {
    color: #FFB300;
}

/* Animations for Reveal */
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 1s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 1s ease-out;
}

.fade-in-active {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* Media Access Segment */
.media-access-segment {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(7, 87, 91, 0.1);
}

.media-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ocean-deep);
    margin-bottom: 20px;
    font-weight: 700;
}

.media-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.media-action-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--soft-white);
    border-radius: 15px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(7, 87, 91, 0.05);
}

.media-action-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}

.media-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.media-icon.bbc {
    background: #BB1919; /* BBC Red */
}

.media-icon.talks {
    background: var(--ocean-deep);
}

.media-info h5 {
    font-size: 0.95rem;
    color: var(--ocean-deep);
    margin-bottom: 2px;
}

.media-info p {
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 0;
    font-weight: 600;
}

.media-action-card > i {
    margin-left: auto;
    color: rgba(7, 87, 91, 0.2);
    font-size: 1.1rem;
}

.media-action-card:hover > i {
    color: var(--accent);
}

/* Live Counter Styling */
.live-counter-box {
    margin-top: 40px;
    padding: 20px 35px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    gap: 30px;
}

.counter-item {
    text-align: left;
}

.counter-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.counter-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--soft-white);
    line-height: 1;
}

.counter-plus {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
    margin-left: 2px;
}

.counter-label {
    margin: 5px 0 0 0 !important;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(244, 249, 249, 0.5) !important;
    font-weight: 600;
}

/* Video Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease-in-out;
}

#preloader-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.skip-intro {
    position: absolute;
    bottom: 40px;
    right: 40px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.skip-intro:hover {
    background: white;
    color: black;
    border-color: white;
}

#preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Visionary Expert Section Styling */
.expert-visionary-section {
    padding: 120px 0;
    background-color: var(--soft-white);
}

.expert-header {
    margin-bottom: 80px;
}

.expert-subtitle {
    font-size: 1.2rem;
    color: var(--ocean-mid);
    margin-top: 15px;
}

.expert-main-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.main-portrait {
    position: relative;
    margin-bottom: 40px;
}

.experience-seal {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    z-index: 5;
}

.experience-seal .years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-seal .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.philosophy-box {
    padding: 30px;
    background: var(--ocean-bg);
    border-radius: 30px;
    border-left: 5px solid var(--accent);
}

.philosophy-box h4 {
    color: var(--ocean-deep);
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.accolades-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
}

.accolade-card {
    background: white;
    padding: 30px;
    border-radius: 25px;
    border: 1px solid rgba(7, 87, 91, 0.05);
    transition: var(--transition);
}

.accolade-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}

.accolade-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.accolade-card h5 {
    font-size: 1.1rem;
    color: var(--ocean-deep);
    margin-bottom: 10px;
}

.accolade-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.expertise-timeline {
    margin-bottom: 60px;
}

.timeline-title {
    font-size: 1.3rem;
    color: var(--ocean-deep);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.timeline-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-date {
    flex: 0 0 100px;
    font-weight: 700;
    color: var(--accent);
    font-size: 0.9rem;
    padding-top: 5px;
}

.timeline-content h6 {
    font-size: 1.05rem;
    color: var(--ocean-deep);
    margin-bottom: 5px;
}

.timeline-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Mobile Adjustments for Expert Section */
@media (max-width: 992px) {
    .expert-main-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .accolades-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .timeline-date {
        flex: none;
    }
}

/* Detailed Expert Segment Enhancements */
.expertise-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.exp-item {
    padding: 20px;
    background: var(--ocean-bg);
    border-radius: 20px;
    transition: var(--transition);
}

.exp-item:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.exp-item h6 {
    color: var(--ocean-deep);
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.exp-item p {
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.accent-box {
    background: var(--ocean-deep) !important;
    color: white !important;
}

.accent-box h4 {
    color: var(--accent) !important;
}

.accent-box p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Aesthetic Media Recognition Section */
.media-recognition-section {
    padding: 120px 0;
    background-color: var(--soft-white);
}

.aesthetic-media-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.media-button-aesthetic {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 450px;
    padding: 40px;
    background: var(--ocean-bg);
    border-radius: 40px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(7, 87, 91, 0.03);
    position: relative;
    overflow: hidden;
}

.media-button-aesthetic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, transparent 100%);
    z-index: 1;
}

.media-button-aesthetic:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(7, 87, 91, 0.1);
    background: white;
    border-color: var(--accent);
}

.media-btn-content {
    display: flex;
    align-items: center;
    gap: 25px;
    z-index: 2;
}

.media-btn-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%; /* Softer circular icons */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.media-btn-text span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.media-btn-text label {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ocean-deep);
    cursor: pointer;
    line-height: 1.2;
}

.media-btn-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ocean-deep);
    transition: var(--transition);
    z-index: 2;
    box-shadow: var(--shadow);
}

/* Theme Colors */
.bbc-theme .media-btn-icon { background: #BB1919; }
.cnn-theme .media-btn-icon { background: #003087; }
.expert-theme .media-btn-icon { background: var(--ocean-deep); }

.media-button-aesthetic:hover .media-btn-icon {
    transform: rotate(-10deg);
}

.media-button-aesthetic:hover .media-btn-arrow {
    background: var(--ocean-deep);
    color: white;
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .aesthetic-media-grid { flex-direction: column; align-items: center; }
}

/* Expert Video Gallery Styling */
.video-gallery-section {
    padding: 100px 0;
    background-color: var(--soft-white);
}

.video-grid-aesthetic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.video-card-premium {
    display: block;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(7, 87, 91, 0.05);
    box-shadow: var(--shadow);
}

.video-thumb-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumb-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ocean-deep);
    font-size: 1.2rem;
    opacity: 0;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.video-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(7, 87, 91, 0.15);
    border-color: var(--accent);
}

.video-card-premium:hover .video-thumb-container img {
    transform: scale(1.1);
}

.video-card-premium:hover .play-overlay {
    opacity: 1;
}

.video-card-info {
    padding: 25px;
}

.video-card-info h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--ocean-deep);
    margin-bottom: 10px;
}

.video-card-info p {
    font-size: 0.85rem;
    color: var(--text-mid);
    margin-bottom: 0;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .video-grid-aesthetic { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .video-grid-aesthetic { grid-template-columns: 1fr; }
}

/* Expert Series Dropdown Gallery */
.media-wrapper-visionary {
    position: relative;
    width: 100%;
}

.expert-dropdown-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s ease;
    opacity: 0;
    margin-top: 30px;
    padding: 0 20px;
}

.expert-dropdown-container.active {
    max-height: 2000px; /* Large enough to fit the grid */
    opacity: 1;
    padding: 40px 20px;
}

#expert-series-toggle {
    cursor: pointer;
}

/* Ensure the toggle button arrow rotates when active */
.expert-theme.active .media-btn-arrow i {
    transform: rotate(180deg);
}

.media-btn-arrow i {
    transition: transform 0.4s ease;
}
