/* -------------------------------------------------------------
   SIGARAM PRESCHOOL TAMIL ADMISSION LANDING PAGE CSS STYLING
   ------------------------------------------------------------- */

/* Brand Color Variables */
:root {
    --color-red: #c40014;
    --color-red-hover: #a10010;
    --color-orange: #fcb54d;
    --color-yellow: #fda526;
    --color-yellow-light: #fef4e2;
    --color-green: #acca69;
    --color-green-light: #f1f8e4;
    --color-blue: #78d0e4;
    --color-blue-light: #e8f7fa;
    --color-text-dark: #222222;
    --color-text-light: #555555;
    --color-bg-light: #fefbfa;
    --color-bg-alt: #f8f6f2;
    --color-white: #ffffff;
    --font-heading: 'Dosis', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --shadow-default: 0 15px 35px rgba(26, 9, 9, 0.08);
    --shadow-hover: 0 20px 40px rgba(26, 9, 9, 0.15);
    --shadow-inset: inset 0 2px 4px rgba(0,0,0,0.06);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.65;
    color: var(--color-text-light);
    background-color: var(--color-bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.25;
}

p {
    margin-bottom: 1.25rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

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

.text-white {
    color: var(--color-white) !important;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

/* Shared Components & Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-red);
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(196, 0, 20, 0.25);
}

.btn-primary:hover {
    background-color: var(--color-red-hover);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: var(--color-blue);
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(120, 208, 228, 0.25);
}

.btn-secondary:hover {
    background-color: #5bbccf;
    transform: translateY(-3px);
}

.btn-warning {
    background-color: var(--color-yellow);
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(253, 165, 38, 0.25);
}

.btn-warning:hover {
    background-color: #e59017;
    transform: translateY(-3px);
}

.card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-default);
    padding: 2.5rem;
    transition: var(--transition);
}

.badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background-color: var(--color-yellow-light);
    color: var(--color-yellow);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    border: 2px solid var(--color-yellow);
}

/* Sections Header */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem auto;
}

.section-header h2 {
    font-size: 2.85rem;
    color: var(--color-red);
    margin-bottom: 0.5rem;
}

.section-header .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-header .divider::before,
.section-header .divider::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-yellow);
    border-radius: 50px;
}

.section-header .divider i {
    color: var(--color-yellow);
    font-size: 1.25rem;
}

.section-header .subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
}

/* Header & Navbar */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(254, 251, 250, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo-area .logo {
    height: 90px;
    border-radius: var(--radius-sm);
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-text-dark);
}

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

.nav-links .cta-nav {
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(196, 0, 20, 0.2);
}

.nav-links .cta-nav:hover {
    background-color: var(--color-red-hover);
    color: var(--color-white);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--color-text-dark);
    cursor: pointer;
}

/* Mobile Dropdown Nav */
.mobile-nav {
    display: none;
    background-color: var(--color-white);
    border-bottom: 2px solid var(--color-bg-alt);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--color-text-dark);
}

.mobile-nav .cta-mobile {
    background-color: var(--color-red);
    color: var(--color-white);
    text-align: center;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 7rem 0 10rem 0;
    background: radial-gradient(circle at 10% 20%, #fffbf6 0%, #fff7eb 90%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.85rem;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    color: var(--color-red);
    font-weight: 800;
    font-size: 1.15em;
    position: relative;
    z-index: 1;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: rgba(253, 165, 38, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--color-text-light);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item h3 {
    font-size: 2.25rem;
    color: var(--color-red);
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
    font-weight: 500;
}

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

.hero-image-container {
    position: relative;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    border-radius: inherit;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.slide-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slide-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slide-dots .dot.active {
    background-color: var(--color-red);
    width: 25px;
    border-radius: 10px;
}

/* Floating Bubbles Animation */
.bubble {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(253, 165, 38, 0.08);
    pointer-events: none;
    animation: floatBubble 15s infinite ease-in-out;
}

.bubble-1 { width: 120px; height: 120px; top: 15%; left: 80%; animation-delay: 0s; }
.bubble-2 { width: 80px; height: 80px; top: 60%; left: 45%; animation-delay: 2s; background-color: rgba(120, 208, 228, 0.08); }
.bubble-3 { width: 150px; height: 150px; top: 70%; left: 5%; animation-delay: 4s; background-color: rgba(172, 202, 105, 0.08); }
.bubble-4 { width: 60px; height: 60px; top: 10%; left: 30%; animation-delay: 1s; }

@keyframes floatBubble {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(140% + 1.3px);
    height: 80px;
    transform: rotateY(180deg);
}

.wave-bottom .shape-fill {
    fill: var(--color-bg-light);
}

/* About Section */
.about {
    padding: 7rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.about-text-content h3 {
    font-size: 2.25rem;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
}

.about-text-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.eq-highlight {
    display: flex;
    gap: 1.5rem;
    background-color: var(--color-yellow-light);
    border-left: 5px solid var(--color-yellow);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    margin-top: 2rem;
}

.eq-icon {
    font-size: 2.5rem;
    color: var(--color-yellow);
}

.eq-desc h4 {
    font-size: 1.35rem;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.eq-desc p {
    font-size: 1rem;
    margin-bottom: 0;
}

.about-infographics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-default);
    border: 2px solid transparent;
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--color-yellow);
    transform: translateX(10px);
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.icon-red { background-color: rgba(196, 0, 20, 0.1); color: var(--color-red); }
.icon-yellow { background-color: var(--color-yellow-light); color: var(--color-yellow); }
.icon-green { background-color: var(--color-green-light); color: var(--color-green); }

.info-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.info-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Why Choose Section */
.why-choose {
    position: relative;
    padding: 10rem 0 7rem 0;
    background: linear-gradient(135deg, #1b094f 0%, #0d0426 100%);
}

.wave-top-inverse {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotateX(180deg);
}

.wave-top-inverse svg {
    position: relative;
    display: block;
    width: calc(140% + 1.3px);
    height: 80px;
}

.wave-top-inverse .shape-fill {
    fill: var(--color-bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.why-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 2.25rem 1.75rem;
    text-align: center;
    color: var(--color-white);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.why-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.25);
}

.why-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    margin: 0 auto 1.5rem auto;
}

.icon-blue { background-color: var(--color-blue-light); color: var(--color-blue); }
.why-card .why-icon.icon-green { background-color: var(--color-green-light); color: var(--color-green); }
.why-card .why-icon.icon-yellow { background-color: var(--color-yellow-light); color: var(--color-yellow); }
.why-card .why-icon.icon-red { background-color: rgba(196, 0, 20, 0.1); color: var(--color-red); }

.why-card h3 {
    font-size: 1.35rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.why-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
    color: #cccccc;
}

.enrichment-area {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    text-align: center;
}

.enrichment-area h3 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.enrichment-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

.tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.tag-badge i {
    color: var(--color-orange);
}

.tag-badge:hover {
    background-color: var(--color-white);
    color: var(--color-text-dark);
}

/* Pain Points Section */
.pain-points {
    padding: 7rem 0;
    background-color: var(--color-bg-alt);
}

.pain-points-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.pain-card {
    border-radius: var(--radius-lg);
    background-color: var(--color-white);
    padding: 3rem;
    box-shadow: var(--shadow-default);
}

.pain-card.problem {
    border-top: 8px solid var(--color-red);
}

.pain-card.solution {
    border-top: 8px solid var(--color-green);
}

.pain-header {
    margin-bottom: 2rem;
}

.status-marker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
}

.marker-red { color: var(--color-red); }
.marker-green { color: var(--color-green); }

.pain-card ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.75rem;
    font-size: 1.05rem;
}

.pain-card ul li:last-child {
    margin-bottom: 0;
}

.pain-card.problem ul li::before {
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--color-red);
    position: absolute;
    left: 0;
    top: 2px;
}

.pain-card.solution ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--color-green);
    position: absolute;
    left: 0;
    top: 2px;
}

.pain-card ul li strong {
    display: block;
    color: var(--color-text-dark);
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

/* Virtual Tour Section */
.virtual-tour {
    padding: 7rem 0;
    background-color: var(--color-white);
}

.video-container {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-default);
    aspect-ratio: 16/9;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.video-cta p {
    font-size: 1.25rem;
    color: var(--color-text-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* How We Teach Section */
.how-we-teach {
    padding: 7rem 0;
    background-color: var(--color-bg-light);
}

.step-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto 5rem auto;
    padding-left: 3rem;
}

.step-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 17px;
    width: 6px;
    height: 100%;
    background-color: var(--color-green-light);
    border-radius: 10px;
}

.step-item {
    position: relative;
    margin-bottom: 3.5rem;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-num {
    position: absolute;
    left: -48px;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-green);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.35rem;
    box-shadow: 0 4px 10px rgba(172, 202, 105, 0.3);
    z-index: 2;
}

.step-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-dark);
}

.step-content p {
    font-size: 1.05rem;
    margin-bottom: 0;
}

.tree-showcase {
    background-color: var(--color-white);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-default);
}

.tree-showcase h3 {
    font-size: 2.15rem;
    color: var(--color-red);
    margin-bottom: 0.5rem;
}

.tree-image-container {
    max-width: 650px;
    margin: 3rem auto 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-default);
}

/* Awards and Milestones */
.awards {
    padding: 7rem 0;
    background-color: var(--color-white);
}

.awards-gallery {
    margin-bottom: 5rem;
    overflow-x: auto;
    padding-bottom: 1.5rem;
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    min-width: max-content;
    padding: 0 1rem;
}

.award-img-card {
    width: 200px;
    height: 170px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-default);
    border: 4px solid var(--color-white);
    transition: var(--transition);
}

.award-img-card:hover {
    transform: translateY(-8px) rotate(2deg);
    box-shadow: var(--shadow-hover);
}

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

.media-container h3 {
    font-size: 1.85rem;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.newspaper-clip {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-default);
    border: 6px solid var(--color-white);
    margin-top: 2rem;
}

.video-container.small {
    margin-top: 2rem;
}

/* Reviews / Testimonials Grid */
.reviews {
    padding: 7rem 0;
    background-color: var(--color-bg-alt);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 3rem auto 0 auto;
    max-width: 1100px;
    padding: 0 1rem;
}

.testimonial-card {
    background-color: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

/* Responsive Rules for Testimonials Grid */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 380px;
    }
}

/* Video Testimonials Section */
.video-testimonials {
    padding: 7rem 0;
    background-color: var(--color-white);
}

.video-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.tab-btn {
    padding: 0.75rem 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    border: 3px solid var(--color-bg-alt);
    border-radius: var(--radius-sm);
    background-color: var(--color-white);
    color: var(--color-text-light);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
    border-color: var(--color-red);
    color: var(--color-red);
    background-color: rgba(196, 0, 20, 0.03);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.video-card {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-default);
    border: 1px solid rgba(0,0,0,0.05);
}

.video-card iframe {
    display: block;
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.video-info p {
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Call to Action Banner */
.video-banner {
    background: linear-gradient(135deg, var(--color-red) 0%, #99000e 100%);
    border-radius: var(--radius-lg);
    padding: 2.2rem 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-white);
    box-shadow: 0 15px 35px rgba(196, 0, 20, 0.25);
    margin-top: 2rem;
}

.banner-text {
    max-width: 70%;
}

.banner-text h3 {
    font-size: 2.15rem;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.banner-text p {
    font-size: 1.15rem;
    margin-bottom: 0;
}

.banner-cta {
    flex-shrink: 0;
}

/* FAQ Accordion Section */
.faq {
    padding: 7rem 0;
    background-color: var(--color-bg-alt);
}

.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-white);
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-default);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-text-dark);
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
}

.faq-question i {
    font-size: 1rem;
    color: var(--color-text-light);
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--color-yellow);
}

.faq-item.active .faq-question {
    background-color: var(--color-yellow-light);
    color: var(--color-yellow);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p {
    padding: 1.5rem 2rem;
    font-size: 1.05rem;
    margin-bottom: 0;
    line-height: 1.65;
    border-top: 1px solid rgba(0,0,0,0.03);
}

/* Admission Registration Form Section */
.registration {
    position: relative;
    padding: 10rem 0 7rem 0;
    background: linear-gradient(135deg, #1b094f 0%, #0d0426 100%);
    overflow: hidden;
}

.registration .wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.registration .wave-top svg {
    position: relative;
    display: block;
    width: calc(140% + 1.3px);
    height: 80px;
}

.registration .wave-top .shape-fill {
    fill: var(--color-bg-alt);
}

.registration-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.registration-info h2 {
    font-size: 2.85rem;
    color: var(--color-white);
    margin-bottom: 1.25rem;
}

.registration-info p {
    font-size: 1.2rem;
    margin-bottom: 3.5rem;
    color: #cccccc;
}

.contact-details-box {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-item-row i {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--color-blue);
    flex-shrink: 0;
}

.contact-item-row h4 {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.contact-item-row p {
    font-size: 1.05rem;
    color: #b3b3b3;
    margin-bottom: 0;
}

.contact-item-row a {
    color: var(--color-blue);
}

.contact-item-row a:hover {
    text-decoration: underline;
}

.registration-form-container {
    perspective: 1000px;
}

.form-card {
    padding: 3rem;
}

.form-card h3 {
    font-size: 1.85rem;
    color: var(--color-text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-dark);
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-light);
    font-size: 1.05rem;
    pointer-events: none;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 45px;
    border-radius: var(--radius-sm);
    border: 2px solid #e1e1e1;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-dark);
    outline: none;
    background-color: var(--color-white);
    transition: var(--transition);
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    border-color: var(--color-blue);
    box-shadow: 0 0 0 4px rgba(120, 208, 228, 0.15);
}

.input-wrapper select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.form-message {
    display: none;
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.form-message.success {
    background-color: var(--color-green-light);
    color: #4b6b10;
    border: 1px solid #c2e28a;
}

.form-message.error {
    background-color: rgba(196, 0, 20, 0.05);
    color: var(--color-red);
    border: 1px solid rgba(196, 0, 20, 0.15);
}

.btn-submit {
    width: 100%;
    background-color: var(--color-red);
    color: var(--color-white);
    font-size: 1.25rem;
    padding: 1rem;
    box-shadow: 0 6px 20px rgba(196, 0, 20, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-submit:hover {
    background-color: var(--color-red-hover);
}

/* Spinner Loader */
.loader-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: var(--color-white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Footer Styling */
.footer {
    background-color: var(--color-bg-alt);
    padding: 5rem 0 2rem 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    margin-bottom: 3.5rem;
}

.footer-brand .footer-logo {
    height: 100px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-text-dark);
    font-size: 1.2rem;
    box-shadow: var(--shadow-default);
}

.social-links a:hover {
    background-color: var(--color-red);
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer-links h3 {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-light);
}

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

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 2rem;
    font-size: 0.9rem;
}

/* Floating Sticky WhatsApp Widget */
.whatsapp-sticky {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.4rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    z-index: 999;
}

.whatsapp-sticky i {
    font-size: 1.65rem;
}

.whatsapp-sticky:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
    background-color: #20ba59;
}

/* Does This Sound Familiar Section Styles */
.parent-worry {
    padding: 6rem 0;
    background-color: var(--color-bg-light);
}

.familiar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    width: 100%;
}

.familiar-left {
    display: flex;
    flex-direction: column;
}

.familiar-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.familiar-img-container {
    width: 100%;
    transition: var(--transition);
}

.familiar-img-container:hover {
    transform: translateY(-5px);
}

.familiar-img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
}

.familiar-pill-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}

.familiar-pill {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    border: 2px solid;
    box-shadow: 0 4px 15px rgba(26, 9, 9, 0.03);
    transition: var(--transition);
}

.familiar-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 9, 9, 0.08);
}

/* Border & Background Color Modifiers */
.familiar-pill.border-red {
    border-color: var(--color-red);
}

.familiar-pill.bg-red-light {
    background-color: #fff5f5;
}

.familiar-pill.border-green {
    border-color: #acca69;
}

.familiar-pill.bg-green-light {
    background-color: #f1f8e4;
}

/* Icon circular badges */
.pill-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.15rem;
}

.pill-icon-circle.bg-red {
    background-color: var(--color-red);
    color: var(--color-white);
}

.pill-icon-circle.bg-green {
    background-color: #27ae60;
    color: var(--color-white);
}

/* Text layout and formatting */
.pill-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.5;
    text-align: left;
}

.pill-text-red {
    color: var(--color-red) !important;
    font-weight: 600;
}

.pill-bold-green {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: #27ae60;
    margin-right: 0.25rem;
}

/* Responsive Overrides for Empathy Section */
@media (max-width: 992px) {
    .familiar-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .familiar-right {
        order: 2; /* Place image below list on tablets/mobiles */
    }
    
    .familiar-img-container {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .familiar-pill {
        border-radius: var(--radius-md);
        padding: 1rem 1.5rem;
        gap: 1rem;
        flex-direction: row;
        align-items: flex-start;
    }
    
    .pill-icon-circle {
        margin-top: 0.15rem;
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .pill-text {
        font-size: 0.95rem;
    }

    .pill-bold-green {
        font-size: 1.05rem;
        display: block;
        margin-bottom: 0.15rem;
    }
}

/* After Joining Our Program Section Styles */
.program-success {
    padding: 6rem 0;
    background-color: var(--color-bg-alt);
    position: relative;
    overflow: hidden;
}

.success-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4.5rem;
    align-items: center;
    width: 100%;
}

.success-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-img-container {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-default);
    border: 8px solid var(--color-white);
    transform: rotate(-1.5deg);
    transition: var(--transition);
}

.success-img-container:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.success-img {
    width: 100%;
    height: auto;
    display: block;
}

.success-right {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.success-header h2 {
    font-size: 2.2rem;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.divider-left {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.divider-left span {
    background-color: #27ae60;
    color: var(--color-white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(39, 174, 96, 0.3);
}

.divider-left::after {
    content: '';
    flex: 1;
    height: 3px;
    background: linear-gradient(to right, #27ae60, transparent);
    margin-left: 1rem;
    border-radius: 2px;
}

.success-interactive-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.success-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border-left: 4px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}

.success-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.08);
    border-left-color: #27ae60;
    background-color: #f7fbf3;
}

.success-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #e2f6e9;
    color: #27ae60;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.success-item:hover .success-badge {
    background-color: #27ae60;
    color: var(--color-white);
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.success-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-text-dark);
    line-height: 1.4;
    transition: var(--transition);
    text-align: left;
}

.success-item:hover .success-text {
    color: #208d4e;
}

@media (max-width: 992px) {
    .success-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .success-left {
        order: 1;
    }
    
    .success-img-container {
        max-width: 500px;
        margin: 0 auto;
        transform: rotate(0deg);
    }
    
    .success-right {
        order: 2;
    }
    
    .success-header {
        text-align: center;
    }
    
    .divider-left {
        justify-content: center;
    }
    
    .divider-left::after {
        display: none;
    }
    
    .success-item:hover {
        transform: translateY(-3px);
    }
}

/* CTA Banner Two (Grandparents Empathy Section) */
.video-banner-two {
    background: linear-gradient(135deg, #c40014 0%, #8b000d 100%);
    border-radius: var(--radius-lg);
    padding: 2.2rem 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-white);
    box-shadow: 0 15px 35px rgba(196, 0, 20, 0.25);
    width: 100%;
}

.video-banner-two .banner-text {
    max-width: 70%;
    text-align: left;
}

.video-banner-two .banner-text h3 {
    font-size: 2.15rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.video-banner-two .banner-urgency {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #FFEA00;
    margin: 0;
}

.btn-white-red {
    position: relative;
    background: var(--color-white) !important;
    border: none !important;
    color: var(--color-red) !important;
    font-weight: 700;
    overflow: visible;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    animation: buttonGlowPulse 2s infinite ease-in-out;
}

.btn-white-red:hover {
    background: #fff0f0 !important;
    color: var(--color-red-hover) !important;
}

@keyframes buttonGlowPulse {
    0% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 0 0 0 0px rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.7), 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 0 0 0 0px rgba(255, 255, 255, 0.5);
    }
}

@media (max-width: 992px) {
    .video-banner-two {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.8rem 2rem;
    }
    
    .video-banner-two .banner-text {
        max-width: 100%;
        text-align: center;
    }
}

/* Center Comparison Section */
.comparison {
    padding: 7rem 0;
    background-color: var(--color-bg-light);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-default);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--color-white);
    text-align: center;
    min-width: 800px;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eeeeee;
}

.comparison-table th {
    background-color: var(--color-bg-alt);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-text-dark);
}

.comparison-table th.highlight {
    background-color: var(--color-yellow-light);
    color: var(--color-yellow);
    border-bottom: 3px solid var(--color-yellow);
}

.comparison-table td.feat-title {
    text-align: left;
    font-weight: 700;
    color: var(--color-text-dark);
    width: 30%;
}

.comparison-table td.highlight-val {
    background-color: rgba(253, 165, 38, 0.03);
    font-weight: 600;
    color: var(--color-text-dark);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table i.text-green {
    color: var(--color-green);
    margin-right: 0.5rem;
}

.comparison-table i.text-red {
    color: var(--color-red);
    margin-right: 0.5rem;
}

/* Additional Responsive Tweaks for new sections */
@media (max-width: 992px) {
    .worry-box {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem;
    }
}

.swipe-indicator {
    display: none;
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    animation: pulseSwipe 2.5s infinite ease-in-out;
    font-weight: 500;
}

@keyframes pulseSwipe {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* RESPONSIVE MEDIA QUERIES */

/* For iPads / Tablets (992px and below) */
@media (max-width: 992px) {
    body {
        font-size: 17px;
    }
    
    .gallery-track {
        justify-content: flex-start;
    }
    
    .section-header h2 {
        font-size: 2.35rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.85rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image-area {
        max-width: 550px;
        margin: 0 auto;
        width: 100%;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .pain-points-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .registration-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }
    
    .contact-details-box {
        align-items: center;
    }
    
    .contact-item-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .form-card {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* For Mobile Phones (768px and below) */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .mobile-nav {
        display: flex;
    }
    
    .swipe-indicator {
        display: block;
    }
    
    .section-header h2 {
        font-size: 2.15rem;
    }
    
    .hero-content h1 {
        font-size: 2.45rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .video-banner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.8rem 2rem;
    }
    
    .banner-text {
        max-width: 100%;
    }
    
    .banner-cta .btn {
        width: 100%;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1.15rem;
    }
    
    .faq-answer p {
        padding: 1.25rem 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .tree-showcase {
        padding: 1.5rem;
    }
    
    .carousel-slide img {
        max-height: 280px;
    }
    
    .prev-btn { left: -15px; }
    .next-btn { right: -15px; }
}

@media (max-width: 480px) {
    .whatsapp-sticky span {
        display: none;
    }
    
    .whatsapp-sticky {
        padding: 1rem;
        border-radius: 50%;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 600px) {
    .worry-visual {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .worry-visual .transition-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
}

/* -------------------------------------------------------------
   HIGH-CONVERTING COURSE REGISTRATION SECTION STYLES
   ------------------------------------------------------------- */

/* Form Deal Widget (Price + Timer Inside Card) */
.form-deal-widget {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--color-yellow-light) 0%, #fffbf2 100%);
    border: 2px solid var(--color-orange);
    border-radius: var(--radius-sm);
    padding: 1.15rem 1.35rem;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
    box-shadow: 0 8px 20px rgba(253, 165, 38, 0.08);
}

.form-deal-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    text-align: left;
}

.form-deal-pricing .price-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-text-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-deal-pricing .price-row-inner {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.form-deal-pricing .original-price {
    font-size: 1.8rem;
    color: #de0e0e;
    text-decoration: line-through;
    font-weight: 500;
}

.form-deal-pricing .discounted-price {
    font-size: 2.85rem;
    font-weight: 800;
    color: #27ae60; /* Large green text */
    line-height: 1;
    font-family: var(--font-heading);
}

.form-deal-timer {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
}

.timer-live-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Flashing Live Dot */
.live-pulse-container,
.timer-live-label .pulse-dot-container {
    position: relative;
    display: inline-flex;
    width: 10px;
    height: 10px;
}

.pulse-ring {
    border: 3px solid var(--color-red);
    border-radius: 30px;
    height: 12px;
    width: 12px;
    position: absolute;
    top: -1px;
    left: -1px;
    animation: pulsate 1.5s ease-out infinite;
    opacity: 0;
}

.pulse-dot {
    background: var(--color-red);
    border-radius: 50%;
    height: 6px;
    width: 6px;
    position: absolute;
    top: 2px;
    left: 2px;
}

@keyframes pulsate {
    0% { transform: scale(0.1, 0.1); opacity: 0; }
    50% { opacity: 1.0; }
    100% { transform: scale(1.4, 1.4); opacity: 0; }
}

.timer-countdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 0.4rem 0.95rem;
    border-radius: var(--radius-sm);
    font-family: 'Outfit', monospace;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(196, 0, 20, 0.2);
}

.timer-countdown i {
    font-size: 1.05rem;
}

.timer-separator {
    font-size: 1.25rem;
    font-weight: 700;
    padding: 0 0.1rem;
    animation: blink 1s steps(5, start) infinite;
}

@keyframes blink {
    to { visibility: hidden; }
}

/* Seat Scarcity Tracker */
.seat-scarcity-widget {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.scarcity-header {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.scarcity-header i {
    color: var(--color-orange);
}

.seats-left-text {
    color: #ea384d;
    font-weight: 800;
    animation: pulseText 2s infinite ease-in-out;
}

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

.scarcity-bar-container {
    height: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.scarcity-bar-fill {
    height: 100%;
    width: 0; /* Animated via CSS keyframes / load transition */
    background: linear-gradient(90deg, var(--color-orange) 0%, #ea384d 100%);
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(234, 56, 77, 0.5);
    animation: fillProgress 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fillProgress {
    to { width: 88%; }
}

.scarcity-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #b3b3b3;
}

/* Core Benefit Highlights list */
.benefit-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3.5rem;
    text-align: left;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.highlight-item i {
    font-size: 1.25rem;
    color: #4dfca2;
}

.highlight-item strong {
    color: var(--color-white);
}

/* Trust Badges under Form */
.form-trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 1.25rem;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.trust-badge-item i {
    color: #6bb92d;
    font-size: 0.95rem;
}

/* Upgraded button style and animation */
.btn-submit {
    position: relative;
    overflow: hidden;
    animation: pulseBtn 3s infinite;
    transition: var(--transition);
}

@keyframes pulseBtn {
    0% { box-shadow: 0 6px 20px rgba(196, 0, 20, 0.2), 0 0 0 0 rgba(196, 0, 20, 0.4); }
    70% { box-shadow: 0 6px 20px rgba(196, 0, 20, 0.2), 0 0 0 10px rgba(196, 0, 20, 0); }
    100% { box-shadow: 0 6px 20px rgba(196, 0, 20, 0.2), 0 0 0 0 rgba(196, 0, 20, 0); }
}

.price-increase-warning {
    flex-basis: 100%;
    font-size: 0.85rem;
    color: var(--color-red);
    background-color: rgba(196, 0, 20, 0.04);
    border: 1px dashed rgba(196, 0, 20, 0.15);
    padding: 0.6rem 0.85rem;
    border-radius: var(--radius-sm);
    margin-top: 0.75rem;
    margin-bottom: 0;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Mid-Page Video Banner Urgency styles */
.banner-urgency {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.15rem;
    margin-bottom: 0;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.banner-pulse .pulse-ring {
    border-color: var(--color-white);
}

.banner-pulse .pulse-dot {
    background-color: var(--color-white);
}

.banner-timer-box {
    background-color: rgba(0, 0, 0, 0.25);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-family: 'Outfit', monospace;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 992px) {
    .banner-urgency {
        justify-content: center;
    }
}

/* Breathing Pulse & Rotating Glow Border Animation for main CTA buttons */
.btn-pulse {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none !important;
    background-color: transparent !important;
    animation: btnBreath 3s infinite ease-in-out;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.btn-primary.btn-pulse {
    filter: drop-shadow(0 6px 15px rgba(196, 0, 20, 0.3));
}

.btn-warning.btn-pulse {
    filter: drop-shadow(0 6px 15px rgba(253, 165, 38, 0.3));
}

.btn-white-red.btn-pulse {
    filter: drop-shadow(0 6px 15px rgba(255, 215, 0, 0.3));
}

.btn-white-red.btn-pulse::before {
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        transparent 70%,
        #ffd700 90%, /* Glowing Gold line */
        transparent 100%
    ) !important;
}

/* Rotating glow line background */
.btn-pulse::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        transparent 70%,
        rgba(255, 255, 255, 0.95) 90%, /* Glowing white/light-cyan line */
        transparent 100%
    );
    animation: rotateGlow 3s linear infinite;
    z-index: -2;
}

/* Inner masking to reveal a 2.5px rotating glow border */
.btn-pulse::after {
    content: '';
    position: absolute;
    top: 2.5px;
    left: 2.5px;
    right: 2.5px;
    bottom: 2.5px;
    border-radius: calc(var(--radius-sm) - 2.5px);
    z-index: -1;
    transition: var(--transition);
}

.btn-primary.btn-pulse::after {
    background-color: var(--color-red);
}

.btn-warning.btn-pulse::after {
    background-color: var(--color-yellow);
}

.btn-white-red.btn-pulse::after {
    background-color: var(--color-white) !important;
}

.btn-primary.btn-pulse:hover::after {
    background-color: var(--color-red-hover);
}

.btn-warning.btn-pulse:hover::after {
    background-color: #e59017;
}

.btn-white-red.btn-pulse:hover::after {
    background-color: #fff0f0 !important;
}

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

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

.btn-pulse:hover {
    animation-play-state: paused;
    transform: translateY(-3px) scale(1.08) !important;
}

.btn-primary.btn-pulse:hover {
    filter: drop-shadow(0 10px 20px rgba(196, 0, 20, 0.45));
}

.btn-warning.btn-pulse:hover {
    filter: drop-shadow(0 10px 20px rgba(253, 165, 38, 0.45));
}

/* Responsive Overrides for new elements */
@media (max-width: 768px) {
    .benefit-highlights {
        align-items: center;
    }
    
    .highlight-item {
        text-align: left;
        max-width: 450px;
    }

    .seat-scarcity-widget {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .form-deal-widget {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.15rem 1rem;
    }

    .form-deal-pricing {
        align-items: center;
    }

    .form-deal-timer {
        align-items: center;
    }
}

/* Global தமிழ் Highlight style */
.highlight-tamil {
    color: var(--color-red) !important;
    font-weight: 700 !important;
    display: inline;
}
