/* ============================================================
   DIXON DRIVING — Global Stylesheet
   Fonts: Syne (headings) + DM Sans (body)
   Edit this file to restyle the entire site at once.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ---- Variables ---- */
:root {
    --navy: #0d1b2a;
    --navy-mid: #0f2240;
    --blue: #1a56db;
    --blue-dark: #1044c0;
    --sky: #e8f0fe;
    --accent: #f97316;
    --accent-dark: #ea6800;
    --white: #ffffff;
    --offwhite: #f8fafd;
    --grey: #6b7280;
    --grey-light: #e5e9f0;
    --text: #1a202c;
    --text-muted: #374151;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(13,27,42,.09);
    --shadow-md: 0 8px 32px rgba(13,27,42,.13);
    --shadow-lg: 0 16px 56px rgba(13,27,42,.18);
    --transition: .22s cubic-bezier(.4,0,.2,1);
    --container: 1140px;
    --nav-h: 68px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img,
svg {
    display: block;
    max-width: 100%;
}

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

a:hover {
    color: var(--blue-dark);
}

/* ---- Typography ---- */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Syne', sans-serif;
    line-height: 1.14;
    letter-spacing: -.025em;
}

/* ---- Layout helpers ---- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-sm {
    padding: 48px 0;
}

/* ============================================================
   NAVIGATION  (loaded via _header.html)
   ============================================================ */
#site-nav {
    position: sticky;
    top: 0;
    z-index: 200;
    height: var(--nav-h);
    background: rgba(13,27,42,.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    gap: 8px;
}

/* Logo — SVG image wordmark */
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 1;
}

.nav-logo img {
    height: 34px;
    width: auto;
    display: block;
}

/* Link list */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2px;
    flex: 1;
    justify-content: center;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    display: block;
    padding: 8px 13px;
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,.8);
    font-size: .875rem;
    font-weight: 500;
    white-space: nowrap;
    transition: background var(--transition), color var(--transition);
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    background: rgba(255,255,255,.09);
    color: #fff;
}

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: 100%;

    /* flush — no gap between trigger and panel */
    left: 0;
    min-width: 248px;
    background: var(--navy);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: var(--radius);
    padding: 8px;
    padding-top: 14px;

    /* visual breathing room inside instead of outside */
    display: none;
    flex-direction: column;
    gap: 2px;
    box-shadow: var(--shadow-lg);
}

/* Invisible upward bridge so moving the mouse down doesn't break hover */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.nav-links > li:hover .nav-dropdown {
    display: flex;
}

.nav-dropdown a {
    display: block;
    padding: 9px 13px;
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,.75);
    font-size: .86rem;
    transition: background var(--transition), color var(--transition);
}

.nav-dropdown a:hover {
    background: rgba(255,255,255,.09);
    color: #fff;
}

/* Phone + CTA */
.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    color: rgba(255,255,255,.68);
    font-size: .82rem;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-phone svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.nav-book {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    background: var(--accent);
    color: #fff !important;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    flex-shrink: 0;
    transition: background var(--transition);
}

.nav-book:hover {
    background: var(--accent-dark);
    color: #fff !important;
}

/* Hamburger */
.nav-ham {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}

.nav-ham span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: .92rem;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    transition: all var(--transition);
    line-height: 1;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249,115,22,.32);
}

.btn-secondary {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.btn-secondary:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    color: #fff;
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.42);
}

.btn-ghost:hover {
    background: rgba(255,255,255,.1);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: #fff;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #1ebe57;
    border-color: #1ebe57;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37,211,102,.32);
}

.btn-whatsapp svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-sm {
    padding: 9px 18px;
    font-size: .84rem;
}

/* WhatsApp icon button in header */
.nav-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #25D366;
    color: #fff !important;
    border-radius: 50%;
    flex-shrink: 0;
    transition: background var(--transition), transform var(--transition);
}

.nav-whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-1px);
}

.nav-whatsapp svg {
    width: 19px;
    height: 19px;
}

/* WhatsApp link/button in mobile menu */
.mob-menu-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 10px 12px 0;
    padding: 14px;
    background: #25D366;
    color: #fff;
    border-radius: 10px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.mob-menu-whatsapp:hover {
    background: #1ebe57;
    color: #fff;
}

.mob-menu-whatsapp svg {
    width: 18px;
    height: 18px;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
    background: var(--offwhite);
    border-bottom: 1px solid var(--grey-light);
    padding: 11px 0;
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .8rem;
    color: var(--grey);
}

.breadcrumb-inner a {
    color: var(--blue);
}

.breadcrumb-inner a:hover {
    text-decoration: underline;
}

.bc-sep {
    color: var(--grey-light);
}

/* ============================================================
   PAGE HERO  (inner pages)
   ============================================================ */
.page-hero {
    background: var(--navy);
    padding: 60px 0 54px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 80% at 85% 55%, rgba(26,86,219,.18), transparent);
    pointer-events: none;
}

.page-hero-inner {
    position: relative;
}

.page-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(249,115,22,.15);
    color: var(--accent);
    border: 1px solid rgba(249,115,22,.22);
    padding: 4px 13px;
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.page-hero h1 {
    font-size: clamp(1.85rem, 3.6vw, 2.8rem);
    color: #fff;
    margin-bottom: 12px;
}

.page-hero p {
    color: rgba(255,255,255,.65);
    font-size: 1rem;
    max-width: 580px;
    line-height: 1.7;
}

/* ============================================================
   HOME HERO
   ============================================================ */
.home-hero {
    background: var(--navy);
    padding: 96px 0 80px;
    position: relative;
    overflow: hidden;
}

.home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 68% 50%, rgba(26,86,219,.2), transparent);
    pointer-events: none;
}

.home-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
}

.home-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249,115,22,.15);
    color: var(--accent);
    border: 1px solid rgba(249,115,22,.22);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.home-hero h1 {
    font-size: clamp(2.1rem, 4.2vw, 3.25rem);
    color: #fff;
    margin-bottom: 18px;
}

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

.home-hero .lead {
    color: rgba(255,255,255,.72);
    font-size: 1.05rem;
    line-height: 1.72;
    max-width: 460px;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-stat .num {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.hero-stat .lbl {
    font-size: .74rem;
    color: rgba(255,255,255,.45);
    margin-top: 4px;
    letter-spacing: .02em;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
    background: var(--offwhite);
    border-top: 1px solid var(--grey-light);
    border-bottom: 1px solid var(--grey-light);
    padding: 18px 0;
}

.trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
}

.trust-item svg {
    width: 17px;
    height: 17px;
    color: var(--blue);
    flex-shrink: 0;
}

/* ============================================================
   SECTION LABEL / HEADING HELPERS
   ============================================================ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--sky);
    color: var(--blue);
    padding: 4px 13px;
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.65rem, 3vw, 2.4rem);
    color: var(--navy);
    margin-bottom: 12px;
}

.section-sub {
    color: var(--grey);
    max-width: 560px;
    line-height: 1.72;
    font-size: .95rem;
}

/* ============================================================
   CARDS — lesson & feature cards
   ============================================================ */
.card {
    background: var(--white);
    border: 1px solid var(--grey-light);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: rgba(26,86,219,.2);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--sky);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--blue);
}

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

.card h3 {
    font-size: 1.08rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.card p {
    color: var(--grey);
    font-size: .88rem;
    line-height: 1.68;
    flex: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 16px;
    color: var(--blue);
    font-size: .85rem;
    font-weight: 600;
}

.card-link:hover {
    color: var(--blue-dark);
}

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.review-card {
    background: var(--white);
    border: 1px solid var(--grey-light);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow);
}

.review-stars {
    color: #f59e0b;
    font-size: .95rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.review-text {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.72;
    font-style: italic;
    margin-bottom: 14px;
}

.review-author {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    color: var(--navy);
}

.review-badge {
    font-size: .74rem;
    color: var(--grey);
    margin-top: 3px;
}

/* ============================================================
   AREA TAGS
   ============================================================ */
.area-tag {
    background: var(--sky);
    color: var(--blue);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: .82rem;
    font-weight: 600;
    border: 1px solid rgba(26,86,219,.14);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
    border-bottom: 1px solid var(--grey-light);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: .97rem;
    color: var(--navy);
    user-select: none;
}

.faq-q svg {
    width: 20px;
    height: 20px;
    color: var(--blue);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.open .faq-q svg {
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 0 18px;
    color: var(--grey);
    font-size: .92rem;
    line-height: 1.72;
    display: none;
}

.faq-item.open .faq-a {
    display: block;
}

/* ============================================================
   INFO / HIGHLIGHT BOXES
   ============================================================ */
.info-box {
    background: var(--sky);
    border-left: 4px solid var(--blue);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 18px 22px;
    margin: 24px 0;
}

.info-box h4 {
    font-family: 'Syne', sans-serif;
    color: var(--navy);
    margin-bottom: 5px;
    font-size: .97rem;
}

.info-box p {
    color: var(--text-muted);
    font-size: .9rem;
    margin: 0;
    line-height: 1.65;
}

.accent-box {
    background: rgba(249,115,22,.06);
    border: 1px solid rgba(249,115,22,.2);
    border-radius: var(--radius);
    padding: 22px 24px;
    margin: 24px 0;
}

.accent-box h4 {
    font-family: 'Syne', sans-serif;
    color: var(--navy);
    margin-bottom: 6px;
    font-size: .97rem;
}

.accent-box p {
    color: var(--text-muted);
    font-size: .9rem;
    margin: 0;
    line-height: 1.65;
}

/* ============================================================
   CONTENT PAGE LAYOUT (prose + sidebar)
   ============================================================ */
.content-wrap {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 52px;
    align-items: start;
}

/* Prose styles */
.prose h2 {
    font-size: 1.5rem;
    color: var(--navy);
    margin: 30px 0 10px;
}

.prose h3 {
    font-size: 1.15rem;
    color: var(--navy);
    margin: 22px 0 8px;
}

.prose p {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 14px;
    font-size: .95rem;
}

.prose ul,
.prose ol {
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 16px;
}

.prose ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    font-size: .93rem;
    line-height: 1.65;
}

.prose ul li::before {
    content: '✓';
    color: var(--blue);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.prose ol {
    counter-reset: prose-counter;
}

.prose ol li {
    counter-increment: prose-counter;
}

.prose ol li::before {
    content: counter(prose-counter);
    background: var(--blue);
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: .78rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

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

.sidebar-card {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 28px;
    color: #fff;
}

.sidebar-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #fff;
}

.sidebar-card p {
    font-size: .87rem;
    color: rgba(255,255,255,.68);
    margin-bottom: 16px;
    line-height: 1.65;
}

.sidebar-card .tel {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
}

.sidebar-card .tel svg {
    width: 16px;
    height: 16px;
}

.sidebar-links {
    background: var(--offwhite);
    border: 1px solid var(--grey-light);
    border-radius: var(--radius);
    padding: 22px;
}

.sidebar-links h4 {
    font-family: 'Syne', sans-serif;
    font-size: .74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--grey);
    margin-bottom: 12px;
}

.sidebar-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sidebar-links a {
    display: block;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: .87rem;
    transition: background var(--transition), color var(--transition);
}

.sidebar-links a:hover,
.sidebar-links a.active {
    background: var(--sky);
    color: var(--blue);
    font-weight: 600;
}

/* ============================================================
   PRICE TABLE
   ============================================================ */
.price-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.price-table thead th {
    background: var(--navy);
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    padding: 14px 20px;
    text-align: left;
    letter-spacing: .02em;
}

.price-table tbody td {
    padding: 13px 20px;
    border-bottom: 1px solid var(--grey-light);
    font-size: .92rem;
    color: var(--text-muted);
}

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

.price-table tbody tr:hover td {
    background: var(--offwhite);
}

.price-table .highlight td {
    background: var(--sky);
    font-weight: 500;
}

.price-call {
    color: var(--blue);
    font-weight: 600;
    font-family: 'Syne', sans-serif;
}

/* ============================================================
   STEPS  (numbered process)
   ============================================================ */
.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--grey-light);
}

.step:last-child {
    border-bottom: none;
}

.step-num {
    width: 36px;
    height: 36px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: .88rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.step-body h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 5px;
}

.step-body p {
    color: var(--grey);
    font-size: .9rem;
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 700px at 50% 60%, rgba(26,86,219,.14), transparent);
    pointer-events: none;
}

.cta-banner-inner {
    position: relative;
}

.cta-banner h2 {
    color: #fff;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin-bottom: 12px;
}

.cta-banner p {
    color: rgba(255,255,255,.62);
    max-width: 500px;
    margin: 0 auto 30px;
    font-size: .97rem;
    line-height: 1.7;
}

.cta-btn-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-footer-links {
    margin-top: 22px;
    font-size: .8rem;
    color: rgba(255,255,255,.38);
}

.cta-footer-links a {
    color: rgba(255,255,255,.52);
}

.cta-footer-links a:hover {
    color: rgba(255,255,255,.8);
}

/* ============================================================
   GRID UTILITIES
   ============================================================ */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ============================================================
   FOOTER  (loaded via _footer.html)
   ============================================================ */
#site-footer {
    background: #060f1a;
    color: rgba(255,255,255,.58);
    padding: 56px 0 22px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: block;
    margin-bottom: 14px;
    line-height: 1;
}

.footer-logo img {
    height: 28px;
    width: auto;
    display: block;
}

.footer-desc {
    font-size: .86rem;
    line-height: 1.72;
    max-width: 270px;
}

.footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-size: .73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #fff;
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    color: rgba(255,255,255,.52);
    font-size: .86rem;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: #fff;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,.08);
    margin-bottom: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .78rem;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom a {
    color: rgba(255,255,255,.45);
}

.footer-bottom a:hover {
    color: rgba(255,255,255,.8);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: start;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    border: 1px solid var(--grey-light);
    border-radius: var(--radius);
    margin-bottom: 16px;
    transition: box-shadow var(--transition);
}

.contact-method:hover {
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--sky);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-method h3 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.contact-method a,
.contact-method p {
    color: var(--grey);
    font-size: .9rem;
}

.contact-method a:hover {
    color: var(--blue);
}

/* ============================================================
   GIFT VOUCHER  PAGE
   ============================================================ */
.voucher-visual {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: var(--radius);
    padding: 36px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.voucher-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 300px at 80% 30%, rgba(249,115,22,.2), transparent);
    pointer-events: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
    .home-hero-grid,
    .content-wrap,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

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

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

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

@media (max-width: 640px) {
    /* Hide desktop-only nav elements */
    .nav-links,
    .nav-phone,
    .nav-book {
        display: none;
    }

    .nav-ham {
        display: flex;
    }

    /* Keep WhatsApp icon visible on mobile so users can tap straight in */
    .nav-whatsapp {
        width: 36px;
        height: 36px;
    }

    .nav-whatsapp svg {
        width: 18px;
        height: 18px;
    }

    /* Hero — hide illustration, let text go full width */
    .hero-visual {
        display: none !important;
    }

    .home-hero-grid {
        grid-template-columns: 1fr !important;
    }

    /* Page-level fixes */
    .home-hero {
        padding: 60px 0 50px;
    }

    .section {
        padding: 56px 0;
    }

    .trust-inner {
        gap: 16px 24px;
    }

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

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        padding: 52px 0;
    }
}

/* ── Mobile menu overlay — appended to <body> by JS so it escapes sticky nav ── */
#mob-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    flex-direction: column;
    background: var(--navy);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

#mob-menu.open {
    display: flex;
}

/* Header row inside overlay */
.mob-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: var(--nav-h);
    border-bottom: 1px solid rgba(255,255,255,.08);
    flex-shrink: 0;
}

.mob-menu-header img {
    height: 30px;
    width: auto;
}

.mob-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.08);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
}

.mob-close svg {
    width: 20px;
    height: 20px;
}

/* Link list */
.mob-menu-links {
    list-style: none;
    padding: 12px 12px 40px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.mob-menu-links > li > a {
    display: block;
    padding: 14px 16px;
    border-radius: 8px;
    color: rgba(255,255,255,.85);
    font-size: 1.05rem;
    font-weight: 500;
    transition: background .15s;
}

.mob-menu-links > li > a:hover {
    background: rgba(255,255,255,.08);
    color: #fff;
}

/* Lessons accordion toggle */
.mob-lessons-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 8px;
    color: rgba(255,255,255,.85);
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    transition: background .15s;
}

.mob-lessons-toggle:hover {
    background: rgba(255,255,255,.08);
    color: #fff;
}

.mob-lessons-toggle svg {
    width: 18px;
    height: 18px;
    transition: transform .2s;
    flex-shrink: 0;
    color: rgba(255,255,255,.5);
}

.mob-lessons-toggle.open {
    background: rgba(255,255,255,.08);
    color: #fff;
}

.mob-lessons-toggle.open svg {
    transform: rotate(180deg);
}

/* Lessons sub-list */
.mob-sub-links {
    display: none;
    flex-direction: column;
    gap: 1px;
    margin: 2px 8px 4px;
    padding: 4px;
    background: rgba(255,255,255,.04);
    border-radius: 8px;
}

.mob-sub-links.open {
    display: flex;
}

.mob-sub-links a {
    display: block;
    padding: 11px 14px;
    border-radius: 6px;
    color: rgba(255,255,255,.72);
    font-size: .95rem;
    transition: background .15s;
}

.mob-sub-links a:hover {
    background: rgba(255,255,255,.08);
    color: #fff;
}

/* Call button at bottom */
.mob-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 12px 0;
    padding: 14px;
    background: var(--accent);
    color: #fff;
    border-radius: 10px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.mob-menu-cta:hover {
    background: var(--accent-dark);
    color: #fff;
}

.btn2-whatsapp {
    margin-top: 15px;
}

.btn2-whatsapp a {
    width: 100%;
}