/* ==========================================================================
   THE LIFE OF DANCE - STYLE SYSTEM
   Pixel-Perfect Clone of Reference Landing Page
   ========================================================================== */

/* --- ROOT VARIABLES & RESET --- */
:root {
    --bg-primary: #FAF6F0;
    --bg-secondary: #FFFDFB;
    --bg-dark: #C94A29; /* Terracotta orange background */
    --primary-orange: #D95A2B;
    --primary-orange-hover: #BF4D21;
    --text-dark: #2C1E18;
    --text-muted: #6B5B52;
    --text-white: #FFFFFF;
    --border-color: #EADFD3;
    --font-heading: 'Cinzel', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.3s ease;
    --container-max-width: 1100px;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

/* --- UTILITIES & LAYOUTS --- */
.container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 20px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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

.align-center {
    align-items: center;
}

.orange-text {
    color: var(--primary-orange);
}

/* --- HEADER / NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(250, 246, 240, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 15px 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    width: 100%;
    max-width: 240px;
    height: auto;
    border-radius: 0;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.gold-text {
    color: var(--primary-orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-smooth);
}

.nav-item:hover {
    color: var(--primary-orange);
}

.btn-nav-cta {
    background: var(--primary-orange);
    color: var(--text-white) !important;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-nav-cta:hover {
    background: var(--primary-orange-hover);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition-smooth);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-primary);
        border-bottom: 1px solid var(--border-color);
        padding: 20px 0;
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}

/* --- SCROLL ANIMATION HERO SECTION --- */
.scroll-hero-section {
    position: relative;
    width: 100%;
    height: 350vh;
    background-color: #0c0b0a;
    margin-top: 70px;
}

.scroll-hero-sticky {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0c0b0a;
    z-index: 1;
}

.smoke-dancer-frame {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
}

.smoke-dancer-canvas-fallback {
    display: none;
}

/* --- HERO CONTENT SECTION --- */
.hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 20px;
    margin-top: 0;
    margin-bottom: 40px;
    text-align: center;
}

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

.hero-background-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.9;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.hero-tagline {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.hero-logo-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.hero-logo {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 0;
    object-fit: contain;
    box-shadow: none;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 36px;
    }
}

.hero-desc {
    max-width: 700px;
    margin: 0 auto 30px auto;
    font-size: 17px;
    color: var(--text-muted);
}

.hero-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    max-width: 550px;
    margin: 0 auto 30px auto;
}

.hero-form input[type="email"] {
    flex: 1;
    padding: 16px 24px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-smooth);
}

.hero-form input[type="email"]:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(217, 90, 43, 0.1);
}

.btn-hero-cta {
    background-color: var(--primary-orange);
    color: var(--text-white);
    border: none;
    padding: 16px 28px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-hero-cta:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .hero-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-hero-cta {
        width: 100%;
    }
}

.hero-bullets {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.bullet-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.bullet-check {
    color: var(--primary-orange);
    font-weight: bold;
}

.hero-video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background-color: #000;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: var(--transition-smooth);
    z-index: 10;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #ffffff;
}

.play-icon {
    font-size: 24px;
    color: var(--text-dark);
    margin-left: 4px;
}

/* Hide play button when video is playing */
.video-container.playing .video-play-btn {
    opacity: 0;
    pointer-events: none;
}

/* --- SECTION 2: PROCESS & METHODOLOGY --- */
.methodology-section {
    background-color: var(--bg-primary);
    margin-top: 32px;
    margin-bottom: 40px;
    padding: 20px 0;
}

.methodology-header {
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.methodology-tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.methodology-heading {
    font-family: var(--font-heading);
    font-size: 32px;
    line-height: 1.35;
    color: var(--text-dark);
    font-weight: 500;
}

.methodology-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.methodology-image-col {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.methodology-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.methodology-content-col {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.methodology-item {
    border-left: 2px solid var(--primary-orange);
    padding-left: 24px;
}

.methodology-item-title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.methodology-item-text {
    font-size: 15px;
    color: var(--text-muted);
}

.btn-orange {
    display: inline-block;
    background-color: var(--primary-orange);
    color: var(--text-white);
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(217, 90, 43, 0.2);
}

.btn-orange:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 90, 43, 0.35);
}

/* --- SECTION 3: TESTIMONIAL STRIP --- */
.testimonial-strip-section {
    background-color: var(--bg-dark);
    margin-top: 32px;
    margin-bottom: 40px;
    padding: 40px 0;
    color: var(--text-white);
}

.strip-container {
    padding: 0;
}

.strip-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.strip-avatar-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.4);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.strip-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strip-quote {
    font-size: 19px;
    font-style: italic;
    line-height: 1.5;
    font-weight: 300;
}

.strip-author {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* --- SECTION 4: DANCE FORMS --- */
.dance-forms-section {
    background-color: var(--bg-primary);
    margin-top: 32px;
    margin-bottom: 40px;
    padding: 20px 0;
}

.forms-header {
    margin-bottom: 60px;
}

.forms-heading {
    font-family: var(--font-heading);
    font-size: 38px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.forms-subheading {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
}

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

@media (max-width: 900px) {
    .forms-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.form-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 380px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: var(--transition-smooth);
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.card-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(44, 30, 24, 0.9) 20%, rgba(44, 30, 24, 0.1) 80%);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    z-index: 2;
    transition: var(--transition-smooth);
}

.form-card:hover .card-arrow {
    background-color: var(--primary-orange);
    color: var(--text-white);
}

.card-title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
    z-index: 2;
}

.card-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    z-index: 2;
}

/* Card 1 specific styling (No image in screenshot) */
.card-no-image {
    background-color: var(--bg-secondary);
    justify-content: flex-end;
}

.card-no-image .card-title {
    color: var(--text-dark);
}

.card-no-image .card-desc {
    color: var(--text-muted);
}

.card-no-image .card-arrow {
    background-color: rgba(44, 30, 24, 0.05);
    color: var(--text-dark);
}

.card-no-image:hover .card-arrow {
    background-color: var(--primary-orange);
    color: var(--text-white);
}

/* --- SECTION 5: REAL TRANSFORMATIONS --- */
.transformations-section {
    margin-top: 32px;
    margin-bottom: 40px;
    padding: 20px 0;
    background-color: var(--bg-primary);
}

.trans-heading {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.trans-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.metric-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.metric-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
}

.metric-item:last-child {
    border-bottom: none;
}

.metric-title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
    display: flex;
    gap: 12px;
    align-items: baseline;
}

.metric-text {
    font-size: 14px;
    color: var(--text-muted);
}

.transformations-visual {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.trans-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --- SECTION 6: WHAT OUR STUDENTS SAY --- */
.testimonials-section {
    background-color: var(--bg-primary);
    margin-top: 32px;
    margin-bottom: 40px;
    padding: 20px 0;
}

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

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.01);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stars {
    color: var(--primary-orange);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
    flex-grow: 1;
}

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

.author-avatar-text {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(217, 90, 43, 0.1);
    color: var(--primary-orange);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.author-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.author-meta {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- SECTION 7: FAQ ACCORDION --- */
.faq-section {
    margin-top: 32px;
    margin-bottom: 40px;
    padding: 20px 0;
    background-color: var(--bg-primary);
}

.faq-heading {
    font-family: var(--font-heading);
    font-size: 38px;
    color: var(--text-dark);
    line-height: 1.25;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-trigger {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.accordion-trigger span:first-child {
    flex-grow: 1;
}

.accordion-icon {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-orange);
    margin-left: 20px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
    padding-bottom: 20px;
}

/* Active Accordion Item */
.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-item.active {
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

/* --- SECTION 8: BANNER CARD --- */
.cta-banner-section {
    margin-top: 32px;
    margin-bottom: 40px;
    padding: 10px 0;
    background-color: var(--bg-primary);
}

.cta-banner-card {
    background-color: var(--bg-dark);
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .cta-banner-card {
        grid-template-columns: 1fr;
    }
}

.cta-banner-image {
    position: relative;
    height: 100%;
    min-height: 350px;
}

.cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.cta-banner-content {
    padding: 50px 60px;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 600px) {
    .cta-banner-content {
        padding: 30px;
    }
}

.cta-card-title {
    font-family: var(--font-body);
    font-size: 26px;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 24px;
}

.cta-bullet-list {
    list-style: none;
    margin-bottom: 30px;
}

.cta-bullet-list li {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-bullet-list li::before {
    content: '✓';
    color: var(--text-white);
    font-weight: bold;
}

.cta-card-form {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.cta-card-form input[type="email"] {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
}

.btn-cta-submit {
    background-color: var(--text-white);
    color: var(--primary-orange);
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-cta-submit:hover {
    background-color: rgba(255,255,255,0.9);
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .cta-card-form {
        flex-direction: column;
    }
}

.cta-card-footer-text {
    font-size: 12px;
    opacity: 0.8;
}

/* --- SECTION 9: FOOTER / VISIT & FORM --- */
.footer-contact-section {
    background-color: var(--bg-primary);
    margin-top: 32px;
    margin-bottom: 0;
    padding: 40px 0 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 40px;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.footer-subheading-text {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    font-size: 20px;
}

.contact-detail-text {
    font-size: 14.5px;
    color: var(--text-dark);
    line-height: 1.5;
}

.footer-form-wrapper {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.01);
    position: relative;
}

@media (max-width: 600px) {
    .footer-form-wrapper {
        padding: 24px;
    }
}

.footer-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field-group label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.form-field-group input {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-secondary);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-smooth);
}

.form-field-group input:focus {
    border-color: var(--primary-orange);
}

.btn-submit-info {
    background-color: var(--primary-orange);
    color: var(--text-white);
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-submit-info:hover {
    background-color: var(--primary-orange-hover);
}

.footer-bottom-bar {
    margin-top: 80px;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
}

.footer-bottom-bar p {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- SUCCESS OVERLAY POPUP --- */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.form-success-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.success-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.success-icon {
    font-size: 40px;
}

.success-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--text-dark);
}

.success-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.success-card .btn-primary {
    background-color: var(--primary-orange);
    color: var(--text-white);
    border: none;
    padding: 10px 24px;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.success-card .btn-primary:hover {
    background-color: var(--primary-orange-hover);
}

/* --- VIDEO THUMBNAIL OVERLAY --- */
.video-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background-color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.4s ease;
}

.video-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.15); /* zoomed scale 1.1-1.2 */
    padding: 24px; /* proper padding */
    transition: var(--transition-smooth);
}

.video-container.playing .video-thumbnail-overlay {
    opacity: 0;
    pointer-events: none;
}
