:root {
    --dark-navy: #0c1a2e;
    --primary-green: #0d9488;
    --nav-teal: #0f4c4c;
    --bg-light: #f0fdfa;
    --bg-card: #ffffff;
    --accent-amber: #f59e0b;
    --text-main: #1e293b;
    --text-muted: #475569;
    --border-color: #cbd5e1;
    --border-light: #e2e8f0;
    --radius-lg: 24px;
    --radius-md: 14px;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --design-forest-green: #023c36;
}

body.dark-mode {
    --bg-light: #0c1a2e;
    --bg-card: #111e30;
    --text-main: #f0fdfa;
    --text-muted: #94a3b8;
    --border-color: #1e293b;
    --border-light: #0f4c32;
    --dark-navy: #f0fdfa;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--bg-light);
    color: var(--text-main);
    transition:
        background 0.3s,
        color 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: var(--transition-smooth);
}

button {
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
}

.container-inner {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* HIGHLY PLEASANT MINIMAL SPACING ACCORDING TO IMAGE 2 MAP */
.inline-svg-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 10px;
}

.inline-svg-icon stroke {
    stroke: currentColor;
}

.icon-teal,
.color-teal {
    color: var(--primary-green);
}

.icon-orange,
.color-orange {
    color: var(--accent-amber);
}

.header-svg-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--primary-green);
    vertical-align: middle;
}

.section-decor-header {
    text-align: center;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-decor-header h1 {
    font-size: 1.5rem;
    color: var(--dark-navy);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-decor-header::before,
.section-decor-header::after {
    content: "";
    height: 2px;
    width: 45px;
    background: var(--border-color);
    border-radius: 2px;
}

.site-header {
    background: transparent;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 100;
    padding: 0 20px;
    margin-top: 15px;
}

.header-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1250px;
    flex-wrap: wrap;
    gap: 15px;
    background: var(--nav-teal);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
}

body.dark-mode .header-container {
    background: var(--bg-card);
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary-green);
    outline-offset: 3px;
    border-radius: 4px;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon-box {
    color: #ffffff;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo-title {
    font-size: 16px;
    color: #fff;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.logo-tagline {
    font-size: 11px;
    color: #ccfbf1;
    font-weight: 500;
    margin-top: 2px;
    display: block;
}

.nav-links-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-link {
    color: #f8fafc;
    font-weight: 500;
    font-size: 0.85rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-amber);
}

.announcement-bar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 10px 24px;
    margin: 10px auto 15px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    flex-wrap: wrap;
    transition: var(--transition-smooth);
}

.announcement-cta {
    color: var(--primary-green);
}

.announcement-bar .divider {
    color: var(--border-color);
    font-weight: 300;
}

.hero-wrapper {
    margin: 0 auto 20px auto;
}

.hero-container {
    position: relative;
    overflow: hidden;
    background: var(--bg-card);
    border: none;
    border-radius: var(--radius-lg);
    padding: 60px 50px;
    display: flex;
    gap: 50px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

body.dark-mode .hero-container {
    background: var(--bg-card);
}

.hero-left-content,
.hero-right-stats,
.teacher-photo-frame,
.teacher-biography {
    position: relative;
    z-index: 2;
}

.hero-left-content {
    flex: 1.2;
}

.hero-right-stats {
    flex: 0.9;
}

.hero-matrix-dots {
    position: absolute;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(#0d9488 12%, transparent 30%);
    background-size: 16px 16px;
    opacity: 0.18;
    pointer-events: none;
    z-index: 1;
}

.hero-dots-bl {
    bottom: 15px;
    left: 20px;
}

.hero-dots-tr {
    top: 25px;
    right: 25px;
}

.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ccfbf1;
    color: #0f4c32;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-left-content h1 {
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 1.15;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.hero-left-content h1 span.text-green {
    color: var(--primary-green);
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 520px;
    margin-bottom: 30px;
}

.btn {
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--primary-green);
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.15);
}

.btn-primary:hover {
    background: #0a756c;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-green);
    color: var(--primary-green) !important;
}

.btn-outline:hover {
    background: rgba(13, 148, 136, 0.04);
}

.sc-canvas-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-stat-strip {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 10px 25px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

body.dark-mode .hero-stat-strip {
    border: 1px solid #1e293b;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border-light);
}

.hero-stat-item:last-child {
    border-bottom: none;
}

.hero-stat-left-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-stat-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-stat-icon-box svg {
    width: 22px;
    height: 22px;
}

.icon-teal-bg {
    background: #ccfbf1;
    color: #0d9488;
}

.icon-amber-bg {
    background: #fef9c3;
    color: #a16207;
}

.icon-blue-bg {
    background: #e0f2fe;
    color: #1d4ed8;
}

.hero-stat-info-text h4 {
    color: var(--dark-navy);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-bottom: 3px;
}

.hero-stat-info-text p {
    color: var(--text-muted) !important;
    font-size: 0.8rem !important;
}

.teacher-section {
    position: relative;
    overflow: hidden;
    background: #0c1a2e;
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 60px 30px;
    display: flex;
    gap: 40px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: background 0.3s;
    margin-top: 8px;
    margin-bottom: 25px;
}

body.dark-mode .teacher-section {
    background: #07101c;
}

.teacher-photo-frame {
    background: linear-gradient(135deg, #2dd4bf, #0d9488);
    padding: 5px;
    border-radius: 50%;
    width: 205px;
    height: 205px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.teacher-photo-frame img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #0c1a2e;
}

body.dark-mode .teacher-photo-frame img {
    border-color: #07101c;
}

.teacher-biography {
    flex: 1;
}

.teacher-biography h2 {
    font-family: "Poppins", sans-serif;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.teacher-biography h3 {
    color: #99f6e4;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.teacher-biography p {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
}

.results-section {
    border: none;
    background: transparent;
    padding: 20px 0;
    margin-bottom: 25px;
}

.testimonials-slider-container {
    position: relative;
    width: 100%;
}

.slides-track {
    position: relative;
    width: 100%;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    width: 100%;
    transition: opacity 0.4s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

/* ==========================================================================
   EXACT REPLICATION: SOFT MINIMAL SEPARATED DOUBLE CARD DESIGN (final.png)
   ========================================================================== */
.testimonial-cards-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    /* Crisp spatial visual break between containers */
}

/* 1. INDIVIDUAL TOP PROFILE DETAILS BLOCK */
.premium-testimonial-card-top {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #eef2f6;
    padding: 30px 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.015);
}

body.dark-mode .premium-testimonial-card-top {
    background: #111e30;
    border-color: #1e293b;
}

/* EXACT BACKGROUND GRID DOT ACCENTS FROM THE IMAGE */
.fading-dot-matrix {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    background-image: radial-gradient(#cbd5e1 15%, transparent 20%);
    background-size: 10px 10px;
    opacity: 0.35;
    pointer-events: none;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

body.dark-mode .fading-dot-matrix {
    background-image: radial-gradient(#475569 15%, transparent 20%);
}

.student-profile-side {
    display: flex;
    align-items: center;
    gap: 35px;
    position: relative;
    z-index: 2;
}

.student-round-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid #023c36;
    /* Dark Green variant frame contour */
    overflow: hidden;
    flex-shrink: 0;
}

body.dark-mode .student-round-avatar {
    border-color: #2dd4bf;
}

.student-round-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.student-identity-meta {
    display: flex;
    flex-direction: column;
}

.student-title-display {
    font-size: 2.3rem;
    font-weight: 800;
    color: #023c36;
    /* Correct Dark Forest Green Variant styling */
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1;
}

body.dark-mode .student-title-display {
    color: #2dd4bf;
}

.green-accent-underline {
    width: 45px;
    height: 4px;
    background-color: #0d9488;
    margin: 10px 0 18px 0;
    border-radius: 2px;
}

.academic-rows-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.academic-row-item {
    display: flex;
    align-items: center;
    font-size: 0.92rem;
}

.minimal-icon-container {
    width: 32px;
    height: 32px;
    background-color: #f0fdfa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #023c36;
    margin-right: 14px;
    flex-shrink: 0;
}

body.dark-mode .minimal-icon-container {
    background-color: #0c1a2e;
    color: #2dd4bf;
}

.minimal-icon-container svg {
    width: 15px;
    height: 15px;
}

.item-label-txt {
    color: #475569;
    font-weight: 500;
    min-width: 60px;
}

body.dark-mode .item-label-txt {
    color: #94a3b8;
}

.item-separator-pipe {
    color: #cbd5e1;
    margin: 0 15px;
    font-weight: 300;
}

.item-value-txt {
    color: #023c36;
    font-weight: 700;
}

body.dark-mode .item-value-txt {
    color: #f8fafc;
}

/* 2. PREMIUM RIGHT SCORE BLOCK (DARK FOREST GREEN MATCH) */
.forest-score-panel {
    background: linear-gradient(135deg, #023c36, #044b43);
    border-radius: 24px;
    padding: 25px;
    text-align: center;
    color: #ffffff;
    min-width: 270px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 12px 30px rgba(2, 60, 54, 0.12);
    position: relative;
    z-index: 2;
}

/* MARKS IN THE SAME DIFFERENT TURQUOISE VARIANT */
.huge-score-display {
    font-size: 5rem;
    font-weight: 800;
    line-height: 0.95;
    color: #14b8a6;
    /* Perfect alternative variant match */
    letter-spacing: -1px;
    box-shadow: 30 30 30px rgba(13, 148, 136, 0.3);
}

.score-subtext-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 12px;
    letter-spacing: 0.5px;
}

.score-bottom-line {
    width: 38px;
    height: 3px;
    background-color: #14b8a6;
    margin-top: 10px;
    border-radius: 2px;
}

/* 3. INDIVIDUAL BOTTOM QUOTE TEXT PANEL */
.premium-testimonial-card-bottom {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 45px 70px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.01);
}

body.dark-mode .premium-testimonial-card-bottom {
    background: #111e30;
    border-color: #1e293b;
}

.giant-quote-mark {
    position: absolute;
    font-size: 5.5rem;
    font-family: Georgia, serif;
    color: #0d9488;
    opacity: 0.9;
    line-height: 1;
    font-weight: bold;
    pointer-events: none;
}

.layout-open {
    top: 20px;
    left: 30px;
}

.layout-close {
    bottom: -30px;
    right: 30px;
}

.main-quote-text {
    font-size: 0.9rem;
    line-height: 1.75;
    color: #334155;
    font-weight: 400;
    text-align: center;
    max-width: 86%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

body.dark-mode .main-quote-text {
    color: #cbd5e1;
}

.dark-green-highlight {
    color: #023c36;
    /* Smooth matching dark forest highlight format */
    font-weight: 700;
}

body.dark-mode .dark-green-highlight {
    color: #2dd4bf;
}

/* ==========================================================================
   MINIMAL CONTINUOUS TRACK HORIZONTAL LINE SLIDER ACCENTS
   ========================================================================== */
.slider-controls-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 35px;
}

.slider-arrow-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #94a3b8;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

body.dark-mode .slider-arrow-btn {
    background: #111e30;
    border-color: #1e293b;
}

.slider-arrow-btn:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.slider-track-line-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 320px;
}

.slider-horizontal-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #e2e8f0;
    /* Perfect continuous linear line matching image style */
    z-index: 1;
}

body.dark-mode .slider-horizontal-line {
    background: #1e293b;
}

.slider-dots {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 12px;
    align-items: center;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    padding: 0;
    transition:
        width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        background-color 0.35s ease;
}

body.dark-mode .slider-dot {
    background: #475569;
}

.slider-dot.active {
    background: #0d9488;
    width: 26px;
    /* Pill stretch variant configuration */
    border-radius: 100px;
}

/* Courses & Core Layout Panels styling */
.classes-section {
    position: relative;
    overflow: hidden;
    background: var(--bg-card);
    border: none;
    border-radius: var(--radius-lg);
    padding: 45px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    margin-bottom: 25px;
}

.classes-layout-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.class-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.class-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

body.dark-mode .class-card {
    background: #111e30;
}

.c-icon-box {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    flex-shrink: 0;
}

.c-icon-box svg {
    width: 24px;
    height: 24px;
}

.c-theme-green .c-icon-box {
    background: #0d9488;
}

.c-theme-blue .c-icon-box {
    background: #2563eb;
}

.c-theme-purple .c-icon-box {
    background: #7c3aed;
}

.class-info-metadata h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.class-info-metadata h3 {
    margin-top: 4px;
    font-size: 1.05rem;
    color: var(--dark-navy);
    font-weight: 600;
}

.classes-summary-footer {
    display: flex;
    justify-content: center;
    gap: 25px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    flex-wrap: wrap;
}

.playlists-section {
    position: relative;
    overflow: hidden;
    background: var(--bg-card);
    border: none;
    border-radius: var(--radius-lg);
    padding: 45px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

body.dark-mode .playlists-section {
    background: var(--bg-card);
}

.pl-header-wrap {
    text-align: center;
    margin-bottom: 25px;
}

.pl-main-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.pl-main-title::before,
.pl-main-title::after {
    content: "";
    height: 2px;
    width: 45px;
    background: var(--border-color);
    border-radius: 2px;
}

.title-play-icon {
    width: 22px;
    height: 22px;
}

.pl-sub-title {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pl-group-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    margin: 25px 0 12px 0;
}

.pl-group-divider::before,
.pl-group-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border-color);
    margin: 0 15px;
}

.pl-dashboard-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
}

.pl-dashboard-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.06);
    border-color: var(--primary-green);
}

body.dark-mode .pl-dashboard-row {
    background: #111e30;
    border-color: #1e293b;
}

.pl-left-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pl-raw-icon {
    width: 28px;
    height: 28px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.pl-item-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-navy);
}

.pl-item-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.pl-arrow-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    transition: all 0.25s ease;
}

body.dark-mode .pl-arrow-circle {
    background: #0c1a2e;
}

.pl-dashboard-row:hover .pl-arrow-circle {
    background: var(--primary-green);
    color: #ffffff;
    border-color: var(--primary-green);
    transform: translateX(3px);
}

.pl-arrow-circle svg {
    width: 16px;
    height: 16px;
}

.site-footer {
    background: #040b14;
    color: #94a3b8;
    padding: 50px 20px 25px 20px;
    margin-top: auto;
}

.footer-layout-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 30px auto;
}

.centers-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.center-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.center-text strong {
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.center-text p {
    font-size: 0.88rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.footer-map-link {
    display: inline-block;
    margin-top: 6px;
    color: var(--accent-amber) !important;
    font-size: 0.82rem;
    font-weight: 500;
}

.footer-map-link:hover {
    text-decoration: underline;
}

.footer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.email-footer-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.email-footer-row a {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.email-footer-row a:hover {
    color: #ffffff;
}

.footer-column h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-links-list {
    list-style: none;
}

.social-links-list li {
    margin-bottom: 12px;
}

.site-footer .social-links-list .social-item-card {
    background: transparent !important;
    border: none !important;
    padding: 4px 0 !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center;
    color: #cbd5e1 !important;
    gap: 12px;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.site-footer .social-links-list .social-item-card:hover {
    color: var(--accent-amber) !important;
    transform: translateX(6px);
}

.social-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #cbd5e1;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: #cbd5e1;
    margin-left: 20px;
}

.footer-legal-links a:hover {
    color: var(--accent-amber);
}

.floating-action-hud {
    position: fixed;
    right: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hud-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.hud-btn:hover {
    transform: translateY(-4px) scale(1.05);
}

.floating-action-hud .hud-btn {
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    background: rgba(255, 255, 255, 0.82) !important;
    border: 1px solid var(--border-color) !important;
}

body.dark-mode .floating-action-hud .hud-btn {
    background: rgba(17, 30, 48, 0.85) !important;
    border: 1px solid #1e293b !important;
}

.theme-toggle-btn {
    background: var(--bg-card);
    color: #f59e0b;
    border: 1px solid var(--border-color);
}

.icon-sun {
    display: none;
}

body.dark-mode .icon-moon {
    display: none;
}

body.dark-mode .icon-sun {
    display: block;
}

.share-action-btn {
    background: var(--bg-card);
    color: var(--primary-green);
    border: 1px solid var(--border-color);
}

.floating-action-hud .scroll-top-btn {
    background: var(--primary-green) !important;
    color: #ffffff !important;
    border: 1px solid var(--primary-green) !important;
}

/* RESPONSIVE LAYOUT CONFIGURATIONS */
@media (max-width: 1100px) {
    .hero-container {
        flex-direction: column;
        padding: 45px 35px;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 30px auto;
    }

    .hero-action-buttons {
        justify-content: center;
    }

    .footer-layout-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .centers-sub-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 950px) {
    .premium-testimonial-card-top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .student-profile-side {
        flex-direction: column;
    }

    .green-accent-underline {
        margin: 10px auto 18px auto;
    }

    .academic-row-item {
        justify-content: center;
    }
}

@media (max-width: 650px) {
    .premium-testimonial-card-bottom {
        padding: 35px 25px;
    }

    .main-quote-text {
        max-width: 100%;
        font-size: 1.05rem;
    }

    .giant-quote-mark {
        display: none;
    }

    .announcement-bar {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        padding: 10px 15px;
        margin: 15px auto;
        border-radius: 12px;
    }

    .announcement-bar .divider,
    .hide-mobile {
        display: none;
    }

    .hero-left-content h1 {
        font-size: 2.2rem;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .pl-dashboard-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media print {
    /* Hide all images, testimonials, and avatars when trying to print/save page */
    img,
    .student-round-avatar,
    .premium-testimonial-card-top,
    .teacher-photo-frame {
        display: none !important;
    }

    /* Optional: Show a warning text instead */
    body::before {
        content: "Content protected by SinghClasses. Printing is disabled.";
        font-size: 20px;
        color: red;
        font-weight: bold;
    }
}