:root {
    --gold: #C9A96E;
    --gold-light: #E8D5B0;
    --gold-dark: #9A7A45;
    --navy: #0F1E2D;
    --navy-mid: #1A2E42;
    --navy-light: #243D55;
    --cream: #FAF8F4;
    --cream-dark: #F0EDE6;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #7A7A7A;
    --white: #FFFFFF;
    --border: rgba(201, 169, 110, 0.25);
    --shadow: 0 4px 30px rgba(15, 30, 45, 0.10);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.7;
}

/* ── PAGE SYSTEM ── */
.page {
    display: none;
    min-height: 100vh;
}

.page.active {
    display: block;
}

/* ── NAVBAR ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 30, 45, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text span:first-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.logo-text span:last-child {
    font-size: 9px;
    font-weight: 300;
    color: var(--gold-light);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 6px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 4px;
    transition: all 0.2s;
    cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    border-radius: 4px;
    font-weight: 500 !important;
    padding: 8px 16px !important;
}

.nav-cta:hover {
    background: var(--gold-dark) !important;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 72px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(26, 46, 66, 0.8) 0%, transparent 50%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg,
            rgba(201, 169, 110, 0.03) 0px, rgba(201, 169, 110, 0.03) 1px,
            transparent 1px, transparent 60px);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-left {}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 169, 110, 0.12);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 30px;
    padding: 6px 16px;
    margin-bottom: 28px;
}

.hero-tag span {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 62px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: 17px;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 32px;
    border-radius: 4px;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 12px;
    padding: 24px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.hero-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(201, 169, 110, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--gold);
}

.hero-card h4 {
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 12px;
    padding: 24px 28px;
    background: rgba(201, 169, 110, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.hero-stat {
    text-align: center;
}

.hero-stat .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.hero-stat .lbl {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ── SECTION UTILITIES ── */
section {
    padding: 100px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-full {
    padding: 100px 0;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-subtitle {
    color: var(--text-mid);
    font-size: 16px;
    font-weight: 300;
    max-width: 580px;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-subtitle {
    margin: 0 auto;
}

/* ── WHY CHOOSE ── */
.why-bg {
    background: var(--navy);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
}

.why-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 48px 36px;
    border: 1px solid rgba(201, 169, 110, 0.12);
    transition: all 0.3s;
}

.why-item:hover {
    background: rgba(201, 169, 110, 0.06);
    border-color: rgba(201, 169, 110, 0.3);
}

.why-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 300;
    color: rgba(201, 169, 110, 0.25);
    line-height: 1;
    margin-bottom: 20px;
}

.why-item h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
}

.why-item p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
}

.why-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 169, 110, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-item-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
}

/* ── COURSES PAGE ── */
.courses-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-mid);
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.course-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(15, 30, 45, 0.12);
    border-color: var(--gold);
}

.course-card-top {
    background: var(--navy);
    padding: 28px;
    position: relative;
}

.course-level-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 14px;
}

.level-foundation {
    background: rgba(59, 130, 246, 0.2);
    color: #93C5FD;
}

.level-intermediate {
    background: rgba(201, 169, 110, 0.2);
    color: var(--gold-light);
}

.level-advanced {
    background: rgba(239, 68, 68, 0.2);
    color: #FCA5A5;
}

.level-masterclass {
    background: rgba(139, 92, 246, 0.2);
    color: #C4B5FD;
}

.course-card-top h3 {
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
}

.course-card-body {
    padding: 24px 28px;
}

.course-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.course-meta span {
    color: var(--text-light);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.course-meta svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
}

.course-desc {
    color: var(--text-mid);
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.7;
}

.course-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--navy);
}

.course-price span {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 300;
}

.course-card-footer {
    padding: 0 28px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-view-course {
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 10px 22px;
    border-radius: 4px;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-view-course:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ── COURSE DETAIL PAGE ── */
.course-detail-hero {
    background: var(--navy);
    padding: 140px 60px 80px;
}

.course-detail-hero .breadcrumb {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 24px;
    cursor: pointer;
}

.course-detail-hero .breadcrumb span {
    color: var(--gold);
}

.course-detail-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
    align-items: start;
}

.course-detail-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.course-detail-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.course-detail-meta span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.course-detail-meta svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

.course-detail-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    max-width: 600px;
}

.register-box {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.register-box .price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 4px;
}

.register-box .price-note {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 24px;
}

.register-box .location-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.loc-tab {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--border);
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    color: var(--text-mid);
    transition: all 0.2s;
    text-align: center;
}

.loc-tab.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.register-box select,
.register-box input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--cream);
    margin-bottom: 12px;
    outline: none;
}

.register-box select:focus,
.register-box input:focus {
    border-color: var(--gold);
}

.btn-register {
    width: 100%;
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}

.btn-register:hover {
    background: var(--gold-dark);
}

.register-includes {
    margin-top: 20px;
}

.register-includes p {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.register-includes svg {
    width: 14px;
    height: 14px;
    fill: #22C55E;
}

/* Course detail body */
.course-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
    align-items: start;
}

.course-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--cream-dark);
    margin-bottom: 40px;
}

.course-tab-btn {
    padding: 12px 24px;
    border: none;
    background: transparent;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}

.course-tab-btn.active {
    color: var(--navy);
    border-bottom-color: var(--gold);
}

.course-tab-content {
    display: none;
}

.course-tab-content.active {
    display: block;
}

.curriculum-section {
    margin-bottom: 28px;
}

.curriculum-section h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--cream-dark);
}

.curriculum-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--cream-dark);
}

.curriculum-item svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.curriculum-item span {
    font-size: 14px;
    color: var(--text-mid);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.overview-item {
    background: var(--cream-dark);
    border-radius: 10px;
    padding: 20px;
}

.overview-item .label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 6px;
}

.overview-item .value {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.prereq-list {
    list-style: none;
}

.prereq-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 14px;
    color: var(--text-mid);
}

.prereq-list li::before {
    content: '→';
    color: var(--gold);
    font-size: 14px;
    margin-top: 1px;
}

/* ── DATES PAGE ── */
.dates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.date-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: all 0.3s;
}

.date-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

.date-calendar {
    text-align: center;
    min-width: 64px;
}

.date-calendar .month {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.date-calendar .day {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 300;
    color: var(--navy);
    line-height: 1;
}

.date-calendar .year {
    font-size: 12px;
    color: var(--text-light);
}

.date-info h4 {
    font-size: 17px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 8px;
}

.date-info .date-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 8px;
}

.date-info .date-location svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
}

.date-info .date-spots {
    font-size: 13px;
    color: var(--text-mid);
}

.date-info .date-spots strong {
    color: #22C55E;
}

.btn-book {
    margin-top: 12px;
    background: transparent;
    border: 1px solid var(--navy);
    color: var(--navy);
    padding: 8px 18px;
    border-radius: 4px;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-book:hover {
    background: var(--navy);
    color: var(--white);
}

.dates-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    align-items: center;
}

.dates-filter label {
    font-size: 13px;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.dates-filter select {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    color: var(--text-dark);
    background: var(--white);
    outline: none;
    cursor: pointer;
}

/* ── MANUALS PAGE ── */
.manuals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.manual-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.manual-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.manual-cover {
    background: var(--navy);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.manual-cover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(201, 169, 110, 0.15));
}

.manual-cover-inner {
    text-align: center;
}

.manual-cover svg {
    width: 48px;
    height: 48px;
    fill: var(--gold);
    opacity: 0.8;
}

.manual-cover-lines {
    margin-top: 10px;
}

.manual-cover-lines div {
    height: 2px;
    background: rgba(201, 169, 110, 0.25);
    border-radius: 2px;
    margin: 4px auto;
}

.manual-cover-lines div:nth-child(1) {
    width: 80px;
}

.manual-cover-lines div:nth-child(2) {
    width: 60px;
}

.manual-cover-lines div:nth-child(3) {
    width: 70px;
}

.manual-body {
    padding: 24px;
}

.manual-body h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 8px;
}

.manual-body p {
    font-size: 13px;
    color: var(--text-mid);
    font-weight: 300;
    margin-bottom: 16px;
    line-height: 1.7;
}

.manual-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.manual-tag {
    background: var(--cream-dark);
    color: var(--text-light);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

.btn-download {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--cream);
    border: 1px solid var(--border);
    color: var(--navy);
    padding: 10px 18px;
    border-radius: 6px;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    justify-content: center;
}

.btn-download:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-download svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* ── FAQ PAGE ── */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--cream-dark);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    gap: 20px;
}

.faq-q h4 {
    font-size: 17px;
    font-weight: 400;
    color: var(--navy);
    flex: 1;
}

.faq-toggle {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.faq-toggle svg {
    width: 14px;
    height: 14px;
    fill: var(--navy);
    transition: transform 0.3s;
}

.faq-item.open .faq-toggle {
    background: var(--gold);
}

.faq-item.open .faq-toggle svg {
    fill: var(--white);
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-a p {
    color: var(--text-mid);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    padding-bottom: 24px;
}

.faq-item.open .faq-a {
    max-height: 300px;
}

.faq-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

/* ── BLOG PAGE ── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.blog-img {
    height: 200px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-img-pattern {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(60deg, rgba(201, 169, 110, 0.05) 0, rgba(201, 169, 110, 0.05) 1px, transparent 0, transparent 50%);
    background-size: 20px 20px;
}

.blog-img-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-cat {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--navy);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.blog-body {
    padding: 24px;
}

.blog-date {
    color: var(--text-light);
    font-size: 12px;
    margin-bottom: 10px;
}

.blog-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-body p {
    font-size: 14px;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-read-more {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-read-more svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
    transition: transform 0.2s;
}

.blog-card:hover .blog-read-more svg {
    transform: translateX(4px);
}

/* ── GALLERY PAGE ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    aspect-ratio: 1;
    background: var(--navy-mid);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item:nth-child(3n+1) {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.gallery-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.gallery-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(201, 169, 110, 0.05) 0, rgba(201, 169, 110, 0.05) 1px, transparent 0, transparent 16px);
}

.gallery-img-placeholder svg {
    width: 40px;
    height: 40px;
    fill: rgba(201, 169, 110, 0.3);
    position: relative;
    z-index: 1;
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 30, 45, 0.7);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    color: var(--white);
    font-size: 13px;
}

/* ── ABOUT PAGE ── */
.about-hero {
    background: var(--navy);
    padding: 160px 60px 100px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-visual {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 420px;
    background: var(--navy-mid);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.about-img-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(201, 169, 110, 0.04) 0, rgba(201, 169, 110, 0.04) 1px, transparent 0, transparent 24px);
    border-radius: 16px;
}

.about-img-main svg {
    width: 80px;
    height: 80px;
    fill: rgba(201, 169, 110, 0.25);
    position: relative;
    z-index: 1;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 12px;
    padding: 16px 24px;
    text-align: center;
}

.about-badge .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
}

.about-badge .txt {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-text {
    color: var(--white);
}

.about-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.1;
}

.about-text h1 em {
    font-style: italic;
    color: var(--gold);
}

.about-text p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.8;
}

.team-section {
    background: var(--cream-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.team-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    text-align: center;
}

.team-avatar {
    height: 220px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar .initials {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--gold);
}

.team-body {
    padding: 24px;
}

.team-body h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 4px;
}

.team-body .role {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.team-body p {
    font-size: 13px;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.7;
}

.cert-section {}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.cert-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
}

.cert-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, #FAF8F4, #F5F0E8);
}

.cert-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 6px;
}

.cert-card .cert-badge {
    display: inline-block;
    background: var(--navy);
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.cert-card.featured .cert-badge {
    background: var(--gold);
    color: var(--navy);
}

.cert-card ul {
    list-style: none;
}

.cert-card ul li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 14px;
    color: var(--text-mid);
}

.cert-card ul li svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── CONTACT PAGE ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-mid);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--cream-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--gold);
}

.contact-detail h5 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-detail p {
    color: var(--text-dark);
    font-size: 15px;
    margin: 0;
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
}

.contact-form h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--cream);
    outline: none;
    transition: border 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.maps-section {
    margin-top: 60px;
}

.maps-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 32px;
}

.maps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.map-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.map-visual {
    height: 300px;
    position: relative;
    overflow: hidden;
    background: #e8e4df;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    color: var(--white);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.map-label h5 {
    font-size: 15px;
    font-weight: 500;
}

.map-label span {
    color: var(--gold);
    font-size: 12px;
}

/* ── PAGE HERO (generic) ── */
.page-hero {
    background: var(--navy);
    padding: 140px 60px 80px;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    font-weight: 300;
    max-width: 580px;
    margin: 0 auto;
}

.page-hero .gold-line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 20px auto 0;
}

/* ── FOOTER ── */
footer {
    background: var(--navy);
    border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 60px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    margin-top: 16px;
    max-width: 280px;
}

footer h5 {
    color: var(--white);
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
}

footer ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
}

.footer-bottom p a {
    color: var(--gold);
    text-decoration: none;
}

/* ── REGISTRATION MODAL ── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 30, 45, 0.85);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    overflow: hidden;
}

.modal-header {
    background: var(--navy);
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--white);
}

.modal-body {
    padding: 32px;
}

.modal-success {
    text-align: center;
    padding: 48px 32px;
}

.modal-success svg {
    width: 56px;
    height: 56px;
    fill: #22C55E;
    margin-bottom: 20px;
}

.modal-success h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 12px;
}

.modal-success p {
    color: var(--text-mid);
    font-size: 15px;
}

/* ── DIVIDER ── */
.gold-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 16px 0;
}

.gold-divider.center {
    margin: 16px auto;
}

/* ── CERTIFICATION COMPARISON TABLE ── */
.cert-comparison {
    width: 100%;
    border-collapse: collapse;
    margin-top: 32px;
}

.cert-comparison th {
    background: var(--navy);
    color: var(--white);
    padding: 14px 20px;
    text-align: left;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.cert-comparison th:first-child {
    border-radius: 8px 0 0 0;
}

.cert-comparison th:last-child {
    border-radius: 0 8px 0 0;
}

.cert-comparison td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 14px;
    color: var(--text-mid);
    vertical-align: top;
}

.cert-comparison tr:hover td {
    background: var(--cream);
}

.cert-check {
    color: #22C55E;
    font-size: 18px;
}

.cert-cross {
    color: #EF4444;
    font-size: 18px;
}

/* ── NOTICE BANNER ── */
.locations-banner {
    background: var(--gold);
    padding: 12px 60px;
    display: flex;
    justify-content: center;
    gap: 60px;
}

.locations-banner span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
}

.locations-banner svg {
    width: 14px;
    height: 14px;
    fill: var(--navy);
}

/* Highlight strip */
.highlight-strip {
    background: var(--cream-dark);
    padding: 60px;
}

.highlight-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.hs-item .hs-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 1px solid var(--border);
}

.hs-item .hs-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
}

.hs-item h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 6px;
}

.hs-item p {
    font-size: 13px;
    color: var(--text-mid);
    font-weight: 300;
}

/* SVG Maps */
.canada-map svg,
.uk-map svg {
    width: 100%;
    height: 100%;
}

.map-circle-overlay {
    position: absolute;
    border-radius: 50%;
    border: 3px solid #EF4444;
    animation: pulse-ring 2s ease infinite;
    pointer-events: none;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.curriculum-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.curr-section {
    display: flex;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--cream-dark);
}

.curr-section:last-child {
    border-bottom: none;
}

.curr-num {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
    margin-top: 2px;
}

.curr-body h5 {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.curr-body ul {
    padding-left: 16px;
    margin: 0;
}

.curr-body ul li {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.7;
}


/* ── CURRENCY SWITCHER ── */
.currency-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 6px;
    padding: 4px;
}

.currency-btn {
    padding: 5px 9px;
    border: none;
    border-radius: 4px;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s;
}

.currency-btn.active {
    background: var(--gold);
    color: var(--navy);
}

.currency-btn:hover:not(.active) {
    color: var(--gold);
}

.tax-note {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 400;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    nav {
        padding: 0 16px;
        height: 60px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        gap: 40px;
    }

    .hero-left h1 {
        font-size: 38px;
    }

    .hero-btns {
        flex-wrap: wrap;
    }

    section {
        padding: 48px 20px !important;
    }

    .section-inner {
        padding: 0 20px !important;
    }

    .courses-grid {
        grid-template-columns: 1fr !important;
    }

    .dates-grid {
        grid-template-columns: 1fr !important;
    }

    .manuals-grid {
        grid-template-columns: 1fr !important;
    }

    .blog-grid {
        grid-template-columns: 1fr !important;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .why-grid {
        grid-template-columns: 1fr !important;
    }

    .team-grid {
        grid-template-columns: 1fr !important;
    }

    .cert-grid {
        grid-template-columns: 1fr !important;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
    }

    .maps-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr !important;
        gap: 32px !important;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .course-detail-grid {
        grid-template-columns: 1fr !important;
    }

    .course-detail-hero {
        padding: 40px 0 !important;
    }

    .course-detail-hero>div {
        padding: 0 20px !important;
    }

    .cert-comparison {
        font-size: 12px;
    }

    .highlight-strip-inner {
        grid-template-columns: 1fr 1fr !important;
    }

    .about-grid {
        grid-template-columns: 1fr !important;
    }

    .page-hero {
        padding: 80px 20px 48px !important;
    }

    .about-hero {
        padding: 80px 20px 48px !important;
    }
}

@media (max-width: 600px) {
    .hero-left h1 {
        font-size: 30px;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr !important;
    }

    .highlight-strip-inner {
        grid-template-columns: 1fr !important;
    }

    .footer-main {
        grid-template-columns: 1fr !important;
    }

    .course-detail-title {
        font-size: 30px !important;
    }

    nav {
        height: 56px;
    }

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    .modal {
        width: 95vw;
        max-height: 90vh;
        overflow-y: auto;
    }

    .maps-section .maps-grid>div {
        width: 100%;
    }
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
    display: block;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: rgba(15, 30, 45, 0.98);
    z-index: 999;
    padding: 16px;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--gold);
    background: rgba(201, 169, 110, 0.08);
}

.mobile-menu-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    font-weight: 600 !important;
    text-align: center;
    margin-top: 8px;
    border-radius: 6px;
}

/* Salary section responsive */
@media (max-width: 900px) {
    .salary-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Course image */
.course-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.course-card-img-wrap {
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    height: 160px;
    background: var(--navy-mid);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Header ── */
.checkout-header {
    background: var(--navy);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.logo-text span:first-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
    display: block;
    line-height: 1.1;
}

.logo-text span:last-child {
    font-size: 8px;
    font-weight: 300;
    color: var(--gol d-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.secure-badge svg {
    width: 14px;
    height: 14px;
    fill: var(--green);
}

/* ── Main Layout ── */
.checkout-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

/* ── Form Section ── */
.form-section h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-section .subtitle {
    color: var(--text-mid);
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 32px;
}

.error-list {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 24px;
    color: var(--red);
    font-size: 14px;
    line-height: 1.8;
}

.error-list strong {
    display: block;
    margin-bottom: 4px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    outline: none;
    transition: border 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: var(--red);
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}

.btn-submit:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.stripe-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 11px;
    color: var(--text-light);
}

.stripe-notice svg {
    width: 44px;
}

/* ── Sidebar ── */
.order-summary {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    position: sticky;
    top: 24px;
}

.order-summary h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--cream-dark);
}

.order-course-name {
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.4;
}

.order-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 4px;
}

.order-tax-note {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.order-detail {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid var(--cream-dark);
}

.order-detail span:first-child {
    color: var(--text-light);
}

.order-detail span:last-child {
    font-weight: 500;
    color: var(--text-dark);
}

.order-total {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    padding-top: 12px;
    font-weight: 600;
    color: var(--navy);
}

.includes-list {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--cream-dark);
}

.includes-list p {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.includes-list svg {
    width: 14px;
    height: 14px;
    fill: var(--green);
}

/* ── Not Found ── */
.not-found {
    text-align: center;
    padding: 80px 24px;
}

.not-found h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 16px;
}

.not-found p {
    color: var(--text-mid);
    margin-bottom: 24px;
}

.not-found .btn-back {
    display: inline-block;
    padding: 12px 24px;
    background: var(--navy);
    color: var(--white);
    border-radius: 6px;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.not-found .btn-back:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .checkout-container {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .checkout-header {
        padding: 16px 20px;
    }

    .order-summary {
        position: static;
    }
}

.result-header {
    background: var(--navy);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.logo-text span:first-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
    display: block;
    line-height: 1.1;
}

.logo-text span:last-child {
    font-size: 8px;
    font-weight: 300;
    color: var(--gol d-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
}

/* ── Result Card ── */
.result-container {
    max-width: 640px;
    margin: 60px auto;
    padding: 0 24px;
}

.result-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 4px 30px rgba(15, 30, 45, 0.08);
}

.result-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.result-icon svg {
    width: 36px;
    height: 36px;
}

.result-paid .result-icon {
    background: #ECFDF5;
}

.result-paid .result-icon svg {
    fill: var(--green);
}

.result-pending .result-icon {
    background: #FFFBEB;
}

.result-pending .result-icon svg {
    fill: var(--amber);
}

.result-error .result-icon {
    background: #FEF2F2;
}

.result-error .result-icon svg {
    fill: var(--red);
}

.result-card h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 8px;
}

.result-card .subtitle {
    color: var(--text-mid);
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 28px;
}

.result-details {
    background: var(--cream);
    border-radius: 12px;
    padding: 24px;
    text-align: left;
    margin-bottom: 24px;
}

.result-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 14px;
}

.result-detail-row:last-child {
    border-bottom: none;
}

.result-detail-row span:first-child {
    color: var(--text-light);
}

.result-detail-row span:last-child {
    font-weight: 500;
    color: var(--text-dark);
}

.result-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 4px;
}

.result-amount-paid {
    color: var(--green);
}

.result-amount-pending {
    color: var(--amber);
}

.result-amount-error {
    color: var(--red);
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    margin: 4px;
}

.btn-primary:hover {
    background: var(--gold-dark);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    margin: 4px;
}

.btn-secondary:hover {
    background: var(--navy-mid);
}

.next-steps {
    background: var(--cream-dark);
    border-radius: 12px;
    padding: 24px;
    text-align: left;
    margin-top: 24px;
}

.next-steps h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 12px;
}

.next-steps ol {
    padding-left: 20px;
}

.next-steps ol li {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-info {
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-info a {
    color: var(--gold);
    text-decoration: none;
}

.verification-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #F0FDF4;
    color: #166534;
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid #BBF7D0;
    margin-bottom: 16px;
}

.verification-badge svg {
    width: 14px;
    height: 14px;
    fill: #166534;
}

@media (max-width: 600px) {
    .result-card {
        padding: 32px 24px;
    }

    .result-header {
        padding: 16px 20px;
    }

    .result-container {
        margin: 32px auto;
    }
}