/* ── Body override ── */
body { background: #f8fffe; }

/* ── Hero ── */
.hero {
    background: linear-gradient(135deg, #0d3532 0%, #1a5c55 50%, #2d8078 80%, #3f9087 100%);
    padding: 120px 24px 70px;
    position: relative;
    overflow: hidden;
}

.hero-orb-1 { width: 360px; height: 360px; top: -80px; right: -60px; }
.hero-orb-2 { width: 200px; height: 200px; bottom: -50px; left: -30px; animation-delay: 3s; }

.arabic-deco {
    position: absolute;
    font-family: 'Amiri', serif;
    color: rgba(255, 255, 255, 0.07);
    font-weight: 700;
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.hero-num {
    font-size: 11px;
    font-weight: 700;
    color: #7dd3c9;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 14px;
}

.hero-tagline {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
    line-height: 1.6;
    max-width: 540px;
}

.hero-chips { display: flex; gap: 10px; flex-wrap: wrap; }

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.hero-chip svg { width: 13px; height: 13px; }

.chip-w {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ── Hero enrol card ── */
.hero-side { flex-shrink: 0; }

.enrol-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 28px;
    width: 260px;
    text-align: center;
}

.enrol-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    line-height: 1.5;
}

.enrol-btn {
    display: block;
    background: #fff;
    color: var(--brand-dark);
    padding: 13px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

.enrol-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25); }

.enrol-btn-outline {
    display: block;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 11px 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
}

.enrol-btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }

/* ── Content layout ── */
.content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

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

/* ── Content cards ── */
.content-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 2px 16px rgba(63, 144, 135, 0.07);
    border: 1px solid rgba(63, 144, 135, 0.07);
}

.content-card h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a2e2c;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-card h2 svg { width: 22px; height: 22px; color: var(--brand); flex-shrink: 0; }
.content-card p  { font-size: 15px; color: #5a7270; line-height: 1.8; }

/* ── Highlights ── */
.highlights-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: #374151;
    line-height: 1.5;
}

.hl-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.hl-check svg { width: 13px; height: 13px; color: var(--brand); }

/* ── Class types grid ── */
.class-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.ct-card {
    border-radius: 14px;
    border: 1px solid rgba(63, 144, 135, 0.12);
    padding: 20px 16px;
    text-align: center;
}

.ct-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.ct-icon svg { width: 22px; height: 22px; color: var(--brand); }
.ct-card h4  { font-size: 13px; font-weight: 700; color: #1a2e2c; margin-bottom: 4px; }
.ct-card p   { font-size: 11.5px; color: #7a9190; line-height: 1.5; }

/* ── Sidebar ── */
.content-sidebar { display: flex; flex-direction: column; gap: 20px; }

.side-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 2px 16px rgba(63, 144, 135, 0.07);
    border: 1px solid rgba(63, 144, 135, 0.07);
}

.side-card h3 { font-size: 15px; font-weight: 700; color: #1a2e2c; margin-bottom: 16px; }

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 13.5px;
}

.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-row span:first-child { color: #6b7280; }
.info-row span:last-child  { font-weight: 600; color: #1a2e2c; }

.enrol-side-btn {
    display: block;
    background: var(--brand);
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background .15s;
}

.enrol-side-btn:hover { background: var(--brand-dark); }

.enrol-side-btn-out {
    display: block;
    background: transparent;
    border: 2px solid var(--brand);
    color: var(--brand);
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .15s;
    margin-top: 10px;
}

.enrol-side-btn-out:hover { background: var(--brand); color: #fff; }

/* ── Other courses list ── */
.other-course-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
    text-decoration: none;
    color: #374151;
    font-size: 13.5px;
    font-weight: 500;
    transition: color .15s;
}

.other-course-link:last-child { border-bottom: none; padding-bottom: 0; }
.other-course-link:hover { color: var(--brand); }
.other-course-link svg { width: 15px; height: 15px; color: var(--brand); margin-left: auto; }

/* ── CTA override ── */
.cta-section {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-inner         { grid-template-columns: 1fr; }
    .hero-side          { display: none; }
    .content-wrap       { grid-template-columns: 1fr; }
    .class-types-grid   { grid-template-columns: 1fr 1fr; }
}

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