/* ============================================================
   Mentors' Noakhali Branch — Shared Stylesheet
   ============================================================ */

/* CSS Variables */
:root {
    --primary: #FF1A1A;
    --primary-light: #FF4444;
    --accent: #FF1A1A;
    --bg-light: #0D0D0D;
    --surface: #161616;
    --surface-2: #1E1E1E;
    --text-main: #F1F1F1;
    --text-muted: #9CA3AF;
    --border-color: #2A2A2A;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

/* ── Utilities ─────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(255, 26, 26, 0.35);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ── Navbar ────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.nav-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo span {
    color: var(--accent);
    font-weight: 600;
}

.nav-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* ── Nav Dropdown ─────────────────────────────────────────── */
.has-dropdown {
    position: relative;
}

.has-dropdown>a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    display: inline-flex;
    align-items: center;
    margin-left: 2px;
    transition: transform 0.25s;
    pointer-events: none;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 10px;
    list-style: none;
    min-width: 240px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    transform: translateX(-50%) translateY(8px);
    z-index: 999;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 9px 12px;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(255, 26, 26, 0.08);
    color: var(--text-main);
}

.dropdown-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.dropdown-item small {
    margin-left: auto;
    font-size: 0.7rem;
    background: rgba(255, 26, 26, 0.15);
    color: var(--accent);
    padding: 2px 8px;
    border-radius: 50px;
    white-space: nowrap;
}

.dropdown-viewall {
    display: block;
    text-align: center;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px;
    border-top: 1px solid var(--border-color);
    margin-top: 6px;
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-viewall:hover {
    letter-spacing: 0.3px;
}

/* ── Course Modal ─────────────────────────────────────────── */
#course-modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#course-modal-backdrop.active {
    display: flex;
}

.course-modal {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--accent);
    border-radius: 18px;
    width: 100%;
    max-width: 620px;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.93) translateY(20px);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
}

.course-modal.open {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-close {
    position: sticky;
    top: 0;
    float: right;
    margin: 16px 16px 0 0;
    background: rgba(255, 26, 26, 0.1);
    border: 1px solid rgba(255, 26, 26, 0.25);
    color: var(--text-muted);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.modal-body {
    padding: 24px 32px 32px;
}

.modal-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.modal-icon {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 6px;
}

.modal-badge {
    display: inline-block;
    background: rgba(255, 26, 26, 0.12);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 26, 26, 0.25);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-header h2 {
    font-size: 1.7rem;
    color: var(--text-main);
    margin-bottom: 6px;
}

.modal-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.modal-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.modal-detail-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 0.85rem;
}

.pill-label {
    color: var(--text-muted);
    font-weight: 500;
}

.pill-val {
    color: var(--text-main);
    font-weight: 700;
}

.modal-features-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.modal-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 28px;
}

.modal-feature {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 6px;
    transition: var(--transition);
}

.modal-feature:hover {
    background: rgba(255, 26, 26, 0.05);
}

.modal-feature svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.modal-feature span {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.modal-cta {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.modal-cta p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.modal-phones {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.modal-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(255, 26, 26, 0.3);
}

.modal-phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 26, 26, 0.45);
}

@media (max-width: 600px) {
    .modal-features {
        grid-template-columns: 1fr;
    }

    .modal-body {
        padding: 16px 20px 24px;
    }

    .modal-header {
        flex-direction: column;
        gap: 10px;
    }
}


.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
}

.nav-contact-info {
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.nav-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 7px 14px;
    border: 1.5px solid rgba(255, 26, 26, 0.45);
    border-radius: 8px;
    background: rgba(255, 26, 26, 0.07);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-phone-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    box-shadow: 0 4px 14px rgba(255, 26, 26, 0.35);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger svg {
    width: 28px;
    height: 28px;
    stroke: var(--text-main);
}

/* ── Page Hero (inner pages) ───────────────────────────── */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(160deg, #0D0D0D 0%, #1a0000 50%, #0D0D0D 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.page-hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 26, 26, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--text-main);
    margin-bottom: 16px;
}

.page-hero h1 em {
    font-style: normal;
    color: var(--accent);
}

.page-hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ── Hero (home only) ──────────────────────────────────── */
.hero {
    padding: 160px 0 100px 0;
    background: linear-gradient(160deg, #0D0D0D 0%, #1a0000 50%, #0D0D0D 100%);
    text-align: center;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 26, 26, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 26, 26, 0.12);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 24px;
    border: 1px solid rgba(255, 26, 26, 0.3);
    animation: fadeInDown 0.8s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--text-main);
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero h1 em {
    font-style: normal;
    color: var(--accent);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* ── Stats ─────────────────────────────────────────────── */
.stats-wrapper {
    background-color: var(--surface);
    transform: translateY(-50px);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 10;
    border: 1px solid var(--border-color);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-item p {
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* ── Courses ───────────────────────────────────────────── */
.courses {
    background-color: var(--bg-light);
    margin-top: -50px;
    padding-top: 100px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.course-card {
    background: var(--surface);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 26, 26, 0.12);
    border-color: rgba(255, 26, 26, 0.4);
}

a.course-card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.course-card-badge {
    display: inline-block;
    background: rgba(255, 26, 26, 0.1);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 50px;
    border: 1px solid rgba(255, 26, 26, 0.2);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.course-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 26, 26, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
}

.course-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.course-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.course-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.course-link:hover {
    color: var(--primary-light);
    gap: 8px;
}

/* ── Team ──────────────────────────────────────────────── */
.team-section {
    background-color: var(--bg-light);
}

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

.team-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border-color);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 26, 26, 0.1);
    border-color: rgba(255, 26, 26, 0.3);
}

.team-card:hover::before {
    background: var(--accent);
}

.featured-card {
    border-color: rgba(255, 26, 26, 0.3);
    box-shadow: 0 0 30px rgba(255, 26, 26, 0.08);
}

.featured-card::before {
    background: var(--accent);
}

.team-avatar {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-color);
    transition: var(--transition);
}

.featured-card .team-avatar,
.team-card:hover .team-avatar {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 26, 26, 0.15);
}

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

.team-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(255, 26, 26, 0.1);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.featured-badge {
    background: var(--accent);
    color: white;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.team-bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-2px);
}

/* ── Instructors ───────────────────────────────────────── */
.instructors-section {
    background: var(--surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.instructor-photo {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 26, 26, 0.3);
    flex-shrink: 0;
    align-self: center;
    order: 0;
}

.instructor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.instructor-card {
    background: var(--surface-2);
    border-radius: 14px;
    padding: 24px 28px;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent);
    transition: var(--transition);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.instructor-card> :not(.instructor-photo) {
    flex: 1 1 60%;
}

.instructor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(255, 26, 26, 0.1);
    border-color: rgba(255, 26, 26, 0.4);
    border-left-color: var(--accent);
}

.instructor-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
}

.instructor-qual {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.instructor-score {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 26, 26, 0.1);
    border: 1px solid rgba(255, 26, 26, 0.25);
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    width: fit-content;
    margin-top: 4px;
}

/* ── Schedule Table ────────────────────────────────────── */
.schedule {
    background: var(--bg-light);
}

.table-responsive {
    overflow-x: auto;
    background: var(--surface);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    color: var(--text-main);
}

.schedule-table th,
.schedule-table td {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.schedule-table th {
    background: var(--surface-2);
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

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

.schedule-table tbody tr {
    transition: var(--transition);
}

.schedule-table tbody tr:hover {
    background: rgba(255, 26, 26, 0.04);
}

.schedule-table td.days-cell {
    font-weight: 600;
    color: var(--text-main);
}

.schedule-table .batch-name {
    font-size: 1rem;
    font-weight: 700;
}

.schedule-table .batch-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-top: 3px;
}

.batch-null {
    color: var(--accent);
    font-weight: 700;
}

.batch-completed {
    text-decoration: line-through;
    color: var(--text-muted);
}

.schedule-group-header td {
    background: rgba(255, 26, 26, 0.08);
    border-left: 3px solid var(--accent);
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
}

/* ── Badge Status ──────────────────────────────────────── */
.badge-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-open {
    background: rgba(16, 185, 129, 0.15);
    color: #34D399;
}

.status-soon {
    background: rgba(251, 191, 36, 0.15);
    color: #FBBF24;
}

.status-full {
    background: rgba(239, 68, 68, 0.15);
    color: #F87171;
}

.status-completed {
    background: rgba(156, 163, 175, 0.15);
    color: #9CA3AF;
}

/* ── Mock Tests ────────────────────────────────────────── */
.mock-section {
    background: var(--bg-light);
}

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

.mock-schedule-box {
    background: var(--surface);
    border-radius: 16px;
    padding: 36px;
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--accent);
}

.mock-schedule-box h3 {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 20px;
}

.schedule-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
}

.schedule-row:last-child {
    border-bottom: none;
}

.sched-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 26, 26, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
}

.sched-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sched-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.mock-info-box {
    background: var(--surface);
    border-radius: 16px;
    padding: 36px;
    border: 1px solid var(--border-color);
    height: 100%;
}

.mock-info-box h3 {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 14px;
}

.mock-info-box p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.mock-info-list {
    list-style: none;
    margin-top: 16px;
}

.mock-info-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 6px 0;
}

.mock-info-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 36px;
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 8px;
}

.pricing-header p {
    color: var(--text-muted);
}

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

.price-card {
    background: var(--surface);
    border-radius: 14px;
    padding: 28px 24px;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 26, 26, 0.35);
    box-shadow: 0 16px 32px rgba(255, 26, 26, 0.1);
}

.price-card.best-value {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), 0 12px 30px rgba(255, 26, 26, 0.18);
}

.best-value-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.price-exams {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}

.price-exam-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.price-amount {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

.price-per {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.price-saving {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(52, 211, 153, 0.12);
    color: #34D399;
}

.price-saving.base {
    background: transparent;
    color: transparent;
}

.free-support-banner {
    background: linear-gradient(135deg, rgba(255, 26, 26, 0.12) 0%, rgba(255, 26, 26, 0.04) 100%);
    border: 1px solid rgba(255, 26, 26, 0.3);
    border-radius: 14px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 10px;
}

.support-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 14px;
    background: rgba(255, 26, 26, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.support-text h4 {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 5px;
}

.support-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

/* ── Contact ───────────────────────────────────────────── */
.contact {
    background-color: var(--surface);
    border-top: 1px solid var(--border-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-card {
    background: var(--surface-2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 26, 26, 0.15);
}

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

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 26, 26, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.contact-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.styled-link {
    color: var(--accent);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    transition: var(--transition);
}

.styled-link:hover {
    color: #ff4d4d;
    transform: translateX(4px);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 500px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ── Footer ────────────────────────────────────────────── */
.footer {
    background-color: #080808;
    color: var(--text-muted);
    padding: 60px 0 30px;
    font-size: 0.95rem;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.footer-logo span {
    color: var(--accent);
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

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

.branch-note {
    font-weight: 500;
    color: white;
}

/* ── Animations ────────────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px;
    }

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

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

    .mock-top {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #111111;
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-contact-info {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero {
        padding: 120px 0 80px 0;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .stats-wrapper {
        grid-template-columns: 1fr 1fr;
    }

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

    .free-support-banner {
        flex-direction: column;
        text-align: center;
    }
}

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

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

    .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-wrapper {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* ── Floating WhatsApp Button ───────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.whatsapp-float .wa-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
    animation: waPulse 2.5s infinite;
}

.whatsapp-float:hover .wa-btn {
    background: #1ebe5c;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
    animation: none;
}

.whatsapp-float .wa-tooltip {
    background: #111;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: var(--transition);
    pointer-events: none;
    order: -1;
    border: 1px solid var(--border-color);
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float .wa-tooltip {
        display: none;
    }
}

/* ── IELTS Detail Section ──────────────────────────────── */
.ielts-detail-section {
    background: var(--surface);
    border-top: 1px solid var(--border-color);
}

.ielts-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.ielts-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ielts-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    transition: var(--transition);
    background: transparent;
}

.ielts-feature-item:hover {
    background: rgba(255, 26, 26, 0.05);
}

.ielts-feature-item svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.ielts-feature-item span {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.ielts-feature-item.highlight {
    background: rgba(255, 26, 26, 0.07);
    border: 1px solid rgba(255, 26, 26, 0.2);
    border-radius: 8px;
}

.ielts-feature-item.highlight span {
    color: var(--text-main);
    font-weight: 600;
}

.ielts-feature-item.highlight svg {
    color: #FF4444;
}

/* ── Admission Banner ──────────────────────────────────── */
.admission-banner {
    background: linear-gradient(135deg, #1a0000 0%, var(--surface-2) 50%, #1a0000 100%);
    border: 1px solid rgba(255, 26, 26, 0.35);
    border-top: 3px solid var(--accent);
    border-radius: 16px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 0 40px rgba(255, 26, 26, 0.08);
}

.admission-badge {
    text-align: center;
    flex-shrink: 0;
    background: var(--accent);
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 0 20px rgba(255, 26, 26, 0.35);
}

.badge-top {
    font-size: 0.72rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-sub {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    line-height: 1.4;
    margin-top: 4px;
}

.admission-text {
    flex: 1;
}

.admission-tag {
    display: inline-block;
    background: rgba(255, 26, 26, 0.15);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 26, 26, 0.3);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admission-text h3 {
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 6px;
}

.admission-text h3 em {
    font-style: normal;
    color: var(--accent);
}

.admission-text p {
    color: var(--text-muted);
    margin-bottom: 18px;
}

.admission-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.admission-contact svg {
    color: var(--accent);
    flex-shrink: 0;
}

.admission-contact a {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
}

.admission-contact a:hover {
    color: var(--accent);
}

.admission-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.admission-address svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

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

    .admission-banner {
        flex-direction: column;
        padding: 32px 24px;
        text-align: center;
        gap: 24px;
    }

    .admission-contact {
        justify-content: center;
    }

    .admission-address {
        justify-content: center;
    }
}

/* ── SSC / Dakhil 2026 Section ─────────────────────────── */
.ssc-section {
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.ssc-header {
    text-align: center;
    margin-bottom: 48px;
}

.ssc-year-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 50px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.ssc-header h2 {
    font-size: 2.4rem;
    color: var(--text-main);
    margin-bottom: 14px;
}

.ssc-header h2 em {
    font-style: normal;
    color: var(--accent);
}

.ssc-tagline {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.ssc-tagline span {
    font-style: italic;
    color: var(--text-main);
}

.ssc-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.ssc-course-block {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--accent);
    border-radius: 14px;
    padding: 36px 40px;
    margin-bottom: 40px;
    text-align: center;
}

.ssc-course-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.ssc-course-title svg {
    color: var(--accent);
}

.ssc-course-sub {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.ssc-skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}

.ssc-skill-tag {
    background: var(--accent);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 8px 22px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(255, 26, 26, 0.3);
    transition: var(--transition);
}

.ssc-skill-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(255, 26, 26, 0.4);
}

.ssc-ict-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 26, 26, 0.08);
    border: 1px solid rgba(255, 26, 26, 0.25);
    color: var(--text-main);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
}

.ssc-ict-badge svg {
    color: var(--accent);
    flex-shrink: 0;
}

.ssc-ict-badge strong {
    color: var(--accent);
}

.ssc-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.ssc-detail-card {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}

.ssc-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(255, 26, 26, 0.1);
    border-color: rgba(255, 26, 26, 0.3);
}

.ssc-detail-card.highlight-card {
    border-color: rgba(255, 26, 26, 0.4);
    background: linear-gradient(135deg, #1a0000 0%, var(--surface) 100%);
}

.ssc-detail-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 26, 26, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--accent);
}

.ssc-detail-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.ssc-detail-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

.ssc-detail-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.ssc-cta {
    background: linear-gradient(135deg, #1a0000 0%, var(--surface-2) 50%, #1a0000 100%);
    border: 1px solid rgba(255, 26, 26, 0.35);
    border-top: 3px solid var(--accent);
    border-radius: 16px;
    padding: 36px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.ssc-cta-text h3 {
    font-size: 1.6rem;
    color: var(--text-main);
    margin: 10px 0 6px;
}

.ssc-cta-text h3 em {
    font-style: normal;
    color: var(--accent);
}

.ssc-cta-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.ssc-phone-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.ssc-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 12px 24px;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(255, 26, 26, 0.3);
}

.ssc-phone:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 26, 26, 0.4);
}

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

    .ssc-cta {
        flex-direction: column;
        padding: 28px 24px;
        text-align: center;
    }

    .ssc-phone-group {
        width: 100%;
    }

    .ssc-phone {
        justify-content: center;
    }
}

/* ── Phone Call Buttons (contact page) ────────────────────*/
.phone-btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.phone-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 26, 26, 0.08);
    border: 1px solid rgba(255, 26, 26, 0.25);
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 9px 16px;
    border-radius: 8px;
    transition: var(--transition);
    width: 100%;
    flex: 1;
    flex-wrap: wrap;
    word-break: break-word;
}

.wa-btn-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white;
    border-radius: 8px;
    padding: 0 16px;
    transition: var(--transition);
    flex-shrink: 0;
}

.wa-btn-inline:hover {
    background: #1eb954;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.wa-btn-inline svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.phone-btn svg {
    color: var(--accent);
    flex-shrink: 0;
}

.phone-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 26, 26, 0.3);
}

.phone-btn:hover svg {
    color: white;
}

.phone-role {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.7;
    padding-left: 8px;
    white-space: nowrap;
}

/* ── Kids / Juniors English Course Section ─────────────── */
.kids-section {
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.kids-header {
    text-align: center;
    margin-bottom: 40px;
}

.kids-level-badge {
    display: inline-block;
    background: #4CAF50;
    color: white;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.kids-header h2 {
    font-size: 2.4rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.kids-header h2 em {
    font-style: normal;
    color: var(--accent);
}

.kids-tagline {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.kids-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.kids-skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
}

.kids-skill-tag {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 8px 22px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.kids-skill-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

/* ── Course Detail Page ─────────────────────────────────── */
.cd-hero {
    background: linear-gradient(135deg, #0D0D0D 0%, #1a0000 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 60px 0 48px;
}

.cd-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 32px;
    transition: var(--transition);
}

.cd-back:hover {
    color: var(--accent);
}

.cd-hero-content {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.cd-hero-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cd-badge {
    display: inline-block;
    background: rgba(255, 26, 26, 0.12);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 26, 26, 0.25);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cd-hero h1 {
    font-size: 2.4rem;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.1;
}

.cd-tagline {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.cd-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cd-skill-tag {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.cd-body {
    background: var(--bg-light);
}

.cd-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.cd-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.cd-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.cd-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.cd-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    transition: var(--transition);
}

.cd-feature:hover {
    background: rgba(255, 26, 26, 0.05);
}

.cd-feature svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.cd-feature span {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.cd-info-card {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--accent);
    border-radius: 16px;
    padding: 28px;
    position: sticky;
    top: 100px;
}

.cd-info-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.cd-pills {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.cd-pill {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-size: 0.85rem;
}

.cd-pill-label {
    color: var(--text-muted);
    font-weight: 500;
}

.cd-pill-val {
    color: var(--text-main);
    font-weight: 700;
}

.cd-cta-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.cd-contact-link {
    display: block;
    text-align: center;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.cd-contact-link:hover {
    letter-spacing: 0.3px;
}

@media (max-width: 1024px) {
    .cd-layout {
        grid-template-columns: 1fr;
    }

    .cd-info-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .cd-hero h1 {
        font-size: 1.8rem;
    }

    .cd-features {
        grid-template-columns: 1fr;
    }

    .cd-hero-content {
        flex-direction: column;
        gap: 16px;
    }
}