:root {
    --teal-dark: #0a3a47;
    --teal: #0f5c70;
    --teal-light: #e7f3f5;
    --red: #e8323d;
    --ink: #142226;
    --grey: #5f7479;
    --bg: #f6f9fa;
    --white: #ffffff;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(10, 58, 71, 0.10);
    /* --font: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif; */
    --font: 'Poppins', 'Segoe UI', sans-serif;
    /* --font: 'Montserrat', sans-serif; */
    /* --font: 'Outfit', sans-serif; */
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 30px 24px 0px 24px ;
    /* padding: 70px 24px 0px 24px; */
}

h1,
h2,
h3 {
    margin: 0 0 12px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

p {
    margin: 0 0 12px;
    color: var(--grey);
    line-height: 25px;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 23px;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.btn {
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 26px;
    border-radius: 999px;
    transition: transform .15s, box-shadow .15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 8px 20px rgba(232, 50, 61, .3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--teal-dark);
    color: var(--teal-dark);
}

/* ===== HEADER ===== */
.site-header {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, #0a0a0acf, #0b0b0b00) !important;
    /* box-shadow: 0 2px 14px rgba(10, 58, 71, .08); */
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 24px;
}

.brand-logo {
    height: 85px;
    object-fit: contain;
    filter: drop-shadow(3px 0px 10px rgba(255, 255, 255, 1))
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    position: relative;
}

.main-nav a:hover {
    color: var(--red);
}

.nav-enquire {
    padding: 10px 20px;
    font-size: 14px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

/* ===== BANNER ===== */
.banner {
    /* background-image: url("../imgs/banner.jpg");
    background: linear-gradient(135deg, var(--teal-dark), var(--teal) 70%); */
    background:
        linear-gradient(135deg, rgb(0 0 0 / 75%), rgb(15 16 16 / 55%)), url(../imgs/banner.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    padding: 80px 0 100px;
    overflow: hidden;
    position: relative;
}

.abt-banner {
    /* background-image: url("../imgs/banner.jpg");
    background: linear-gradient(135deg, var(--teal-dark), var(--teal) 70%); */
    background:
        linear-gradient(135deg, rgb(0 0 0 / 75%), rgb(15 16 16 / 55%)), url(../imgs/cont-banner.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    /* padding: 200px 0 100px; */
    overflow: hidden;
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.abt-banner-text {
    text-align: center;
}

.contact-banner {
    /* background-image: url("../imgs/banner.jpg");
    background: linear-gradient(135deg, var(--teal-dark), var(--teal) 70%); */
    background:
        linear-gradient(135deg, rgb(0 0 0 / 75%), rgb(15 16 16 / 55%)), url(../imgs/banner.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    padding: 80px 0 100px;
    overflow: hidden;
    position: relative;
    height: 50vh;
}

.lesson-banner {
    /* background-image: url("../imgs/banner.jpg");
    background: linear-gradient(135deg, var(--teal-dark), var(--teal) 70%); */
    background:
        linear-gradient(135deg, rgb(0 0 0 / 75%), rgb(15 16 16 / 55%)), url(../imgs/banner.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    padding: 80px 0 100px;
    overflow: hidden;
    position: relative;
}

.banner-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: center;
}

.banner-text .eyebrow {
    color: #ffd2d5;
}

.banner h1 {
    font-size: 44px;
    line-height: 1.12;
    color: #fff;
}

.banner-text p {
    color: #cfe3e7;
    font-size: 17px;
    max-width: 480px;
}

.banner-actions {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.banner .btn-outline {
    border-color: #fff;
    color: #fff;
}

.banner-art {
    position: relative;
    min-height: 280px;
}

.road-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(6px);
    border-radius: var(--radius);
    padding: 26px;
    max-width: 300px;
    margin-left: auto;
}

.road-line {
    height: 4px;
    width: 60px;
    background: var(--red);
    border-radius: 4px;
    margin-bottom: 14px;
}

.road-card-title {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.road-card-sub {
    color: #cfe3e7;
    margin: 0;
    font-size: 14px;
}

.cone {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 22px solid transparent;
    border-right: 22px solid transparent;
    border-bottom: 60px solid var(--red);
    opacity: .85;
}

.cone::after {
    content: '';
    position: absolute;
    left: -30px;
    bottom: -10px;
    width: 60px;
    height: 10px;
    background: var(--red);
    border-radius: 2px;
}

.cone-1 {
    top: -10px;
    left: 105px;
    transform: scale(.6) rotate(-8deg);
}

.cone-2 {
    bottom: 0;
    left: 0px;
    transform: scale(.45) rotate(6deg);
}

/* ===== ABOUT ===== */
.about {
    padding: 30px 0;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    font-size: 34px;
    color: var(--teal-dark);
}

.lead {
    font-size: 17px;
    color: var(--ink);
    max-width: 520px;
}

.about-feature {
    display: flex;
    gap: 16px;
    /* margin-top: 26px; */
    padding-top: 22px;
    border-top: 1px solid #e3eaec;
}

.feature-icon {
    width: 48px;
    height: 48px;
    flex: none;
    border-radius: 50%;
    background: var(--teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.about-feature h3 {
    font-size: 18px;
    color: var(--teal-dark);
}

.about-feature p {
    margin: 0;
    font-size: 16px;
}

.about-media {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.about-photo {
    grid-column: 1/3;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-photo img {
    height: 320px;
    width: 100%;
    object-fit: cover;
}

.about-stat-card {
    border-radius: var(--radius);
    padding: 22px;
}

.stat-light {
    background: var(--teal-light);
}

.stat-dark {
    background: var(--teal-dark);
    color: #fff;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    margin: 0;
    color: var(--teal-dark);
}

.stat-dark .stat-number {
    color: #fff;
}

.stat-number span {
    font-size: 20px;
}

.stat-label {
    font-weight: 700;
    margin: 2px 0 6px;
}

.stat-sub {
    font-size: 13px;
    margin: 0;
    color: var(--grey);
}

.stat-dark .stat-sub {
    color: #cfe3e7;
}

/* ===== SECTION HEAD ===== */
.section-head {
    text-align: center;
    /* max-width: 600px; */
    margin: 0 auto 50px;
}

.section-head h2 {
    font-size: 32px;
    color: var(--teal-dark);
}

/* ===== LESSONS ===== */
.lessons {
    padding: 10px 0;
    background: #fff;
}

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

.lesson-card {
    background: var(--bg);
    border: 1px solid #e4e4e4;
    border-radius: var(--radius);
    padding: 26px;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}

.lesson-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.lesson-card h3 {
    font-size: 19px;
    color: var(--teal-dark);
    min-height: 48px;
}

.lesson-card p {
    font-size: 15px;
    min-height: 64px;
}

.lesson-card-meta {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    color: var(--teal-dark);
    border-top: 1px solid #e1e8ea;
    padding-top: 14px;
    margin-top: auto;
}

.lesson-card-meta .dot {
    color: #b9c7c9;
}

.link-btn {
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--red);
    font-weight: 700;
    font-size: 14px;
    padding: 16px 0 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lesson-card-img {
    border-radius: 10px;
    overflow: hidden;
    height: 150px;
}

.lesson-card-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.lessons-view-more {
    margin-top: 24px;
    display: flex;
    justify-content: flex-end;
}

.lessons-view-more-link {
    padding: 8px 14px;
}

/* ===== PRICES ===== */
.prices {
    padding: 60px 0;
    background: var(--teal-light);
}

.price-table {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 780px;
    margin: 0 auto;
}

.price-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 18px 28px;
    align-items: center;
    border-bottom: 1px solid #eef2f3;
}

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

.price-row-head {
    background: var(--teal-dark);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .04em;
}

.price-row span:nth-child(3) {
    font-weight: 800;
    color: var(--red);
    text-align: right;
}

.price-row-head span:nth-child(3) {
    color: #fff;
}

.prices-cta {
    text-align: center;
    margin-top: 36px;
}

/* ===== GALLERY / CAROUSEL ===== */
.gallery {
    padding: 0 90px 70px;
    background: #fff;
}

.carousel-wrap {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.carousel-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: scrollLeft 60s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-track img {
    height: 220px;
    width: 300px;
    object-fit: cover;
    border-radius: 12px;
    flex: none;
    box-shadow: 0 6px 16px rgba(10, 58, 71, .12);
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 30, 36, .55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-overlay.open {
    display: flex;
}

.modal-box {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    max-width: 460px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
    scrollbar-width: none;
}

.modal-box h3 {
    color: var(--teal-dark);
    font-size: 22px;
}

.modal-sub {
    font-size: 14px;
    margin-bottom: 18px;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--grey);
    line-height: 1;
}

#enquiryForm label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 12px;
}

#enquiryForm input,
#enquiryForm select,
#enquiryForm textarea {
    width: 100%;
    margin-top: 6px;
    padding: 11px 12px;
    border-radius: 8px;
    border: 1px solid #d7e0e2;
    font-family: inherit;
    font-size: 14px;
    color: var(--ink);
    background: var(--bg);
}

#enquiryForm input:focus,
#enquiryForm select:focus,
#enquiryForm textarea:focus {
    outline: 2px solid var(--teal);
    outline-offset: 1px;
}

.modal-submit {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
}

.modal-success {
    display: none;
    background: var(--teal-light);
    color: var(--teal-dark);
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 16px;
}

.modal-success.show {
    display: block;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--teal-dark);
    color: #cfe3e7;
    padding: 60px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 40px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 14px;
    /* filter: brightness(0) invert(1); */
    opacity: .92;
}

.footer-brand p {
    color: #fff;
    font-size: 18px;
}

.site-footer h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 14px;
    font-weight: 800;
}

.footer-col p {
    margin: 0 0 10px;
    font-size: 14px;
    color: #fff;
}

.footer-col a:hover {
    color: var(--red);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    text-align: center;
    padding: 18px 0;
    font-size: 13px;
    color: #84a8ae;
}

.enquiry {
    width: auto;
    height: auto;
    position: fixed;
    z-index: 99;
    right: 0%;
    bottom: 50px;
    pointer-events: none;
}

.enquiry-btn {
    pointer-events: auto;
    margin: 0;
    font-size: 12px;
    /* padding: 14px 10px; */
    /* rotate: 90deg; */
}

/* ===== RESPONSIVE ===== */
@media (max-width:980px) {

    .banner-inner,
    .about-inner {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width:768px) {
    .main-nav {
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
        padding: 0 24px;
    }

    .main-nav.open {
        max-height: 420px;
        padding: 14px 24px 22px;
    }

    .main-nav a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #eef2f3;
    }

    .nav-enquire {
        margin-top: 14px;
        width: 100%;
        justify-content: center;
    }

    .hamburger {
        display: flex;
    }

    .banner h1 {
        font-size: 32px;
    }

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

    .price-row {
        grid-template-columns: 1.4fr 1fr 1fr;
        padding: 14px 18px;
        font-size: 14px;
    }

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







/* lessons css */
/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(10, 58, 71, .92) 0%, rgba(10, 58, 71, .78) 45%, rgba(10, 58, 71, .45) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.page-hero h1 {
    font-size: 38px;
    margin-bottom: 8px;
    color: #fff;
}

.breadcrumb {
    margin: 0;
    font-size: 14px;
    color: #cfe3e7;
    justify-content: center;
}

.breadcrumb a {
    color: #cfe3e7;
    margin: 0 4px;
}

.breadcrumb a:hover {
    color: var(--red);
}

.breadcrumb span {
    color: #fff;
    font-weight: 600;
}

/* ===== LESSON DETAIL LAYOUT ===== */
.lesson-detail {
    padding: 30px 0 40px;
    background: #fff;
}

.lesson-detail-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

/* SIDEBAR */
.lesson-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.sidebar-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.sidebar-card-head {
    background: var(--teal-dark);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 16px 20px;
}

.sidebar-list {
    display: flex;
    flex-direction: column;
    background: var(--bg);
}

.sidebar-list a {
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e9eff0;
    transition: background .15s, color .15s;
}

.sidebar-list a:last-child {
    border-bottom: none;
}

.sidebar-list a:hover,
.sidebar-list a.active {
    background: var(--teal-light);
    color: var(--teal-dark);
}

.sidebar-list a span {
    color: var(--red);
    font-weight: 700;
}

.sidebar-callout {
    background: var(--teal-light);
    padding: 24px;
}

.callout-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.callout-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--teal-dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex: none;
}

.callout-label {
    display: block;
    font-size: 12px;
    color: var(--grey);
    font-weight: 600;
}

.callout-number {
    font-weight: 800;
    color: var(--teal-dark);
    font-size: 16px;
}

.sidebar-callout h4 {
    font-size: 18px;
    color: var(--teal-dark);
    margin-bottom: 8px;
}

.sidebar-callout p {
    font-size: 15px;
    margin-bottom: 18px;
}

.btn-dark {
    background: var(--teal-dark);
    color: #fff;
}

.sidebar-price {
    background: var(--teal-dark);
    color: #fff;
    padding: 24px;
    text-align: center;
}

.price-tag-label {
    font-size: 13px;
    color: #bcd8dc;
    margin-bottom: 4px;
}

.price-tag-amount {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.price-tag-amount span {
    font-size: 14px;
    font-weight: 500;
    color: #bcd8dc;
}

.sidebar-price-btn {
    width: 100%;
    justify-content: center;
}

/* MAIN CONTENT */
.lesson-main-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 28px;
}

.lesson-main-img img {
    height: 340px;
    width: 100%;
    object-fit: cover;
}

.lesson-main p {
    font-size: 15px;
    color: var(--ink);
    max-width: 760px;
}

.lesson-main h2 {
    font-size: 26px;
    color: var(--teal-dark);
    margin-top: 36px;
}

.lesson-highlights {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
}

.lesson-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: var(--ink);
    font-weight: 500;
}

.lesson-highlights li span {
    color: var(--red);
    font-weight: 800;
    flex: none;
}

.lesson-cta-strip {
    margin-top: 48px;
    background: var(--teal-light);
    border-radius: var(--radius);
    padding: 30px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.lesson-cta-strip h3 {
    font-size: 19px;
    color: var(--teal-dark);
    margin-bottom: 4px;
}

.lesson-cta-strip p {
    margin: 0;
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width:900px) {
    .lesson-detail-grid {
        grid-template-columns: 1fr;
    }

    .lesson-sidebar {
        position: static;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .lesson-highlights {
        grid-template-columns: 1fr;
    }
}


/* about us css */

/* ===== PAGE HERO (shared pattern, scoped here too in case lesson-detail.css absent) ===== */
.page-hero {
    position: relative;
    height: 280px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(10, 58, 71, .92) 0%, rgba(10, 58, 71, .78) 45%, rgba(10, 58, 71, .45) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.page-hero h1 {
    font-size: 36px;
    margin-bottom: 8px;
    color: #fff;
}

.breadcrumb {
    margin: 0;
    font-size: 14px;
    color: #cfe3e7;
}

.breadcrumb a {
    color: #cfe3e7;
}

.breadcrumb a:hover {
    color: var(--red);
}

.breadcrumb span {
    color: #fff;
    font-weight: 600;
}

/* ===== TAGS + QUOTE STRIP under intro ===== */
.tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 50px;
}

.tag {
    border: 1px solid #dde7e9;
    border-radius: 999px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--teal-dark);
    background: #fff;
}

.wap-icons {
    width: 50px;
    cursor: pointer;
    pointer-events: auto;
}

.wap-icons:hover {
    box-shadow: var(--shadow);
}

.quote-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
    font-size: 14px;
    color: var(--grey);
}

.quote-strip-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--teal-dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.quote-strip a {
    color: var(--red);
    font-weight: 700;
}

/* ===== OUR APPROACH ===== */
.approach {
    padding: 10px 0;
    background: var(--bg);
}

.approach-inner {
    display: grid;
    grid-template-columns: 1.3fr .9fr;
    gap: 48px;
    align-items: start;
}

.approach-text h2 {
    font-size: 32px;
    color: var(--teal-dark);
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 22px;
}

.approach-box {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid #397c85;
}

.approach-box h4 {
    font-size: 17px;
    color: var(--teal-dark);
    margin: 12px 0 8px;
}

.approach-box p {
    font-size: 15px;
    margin: 0;
}

.approach-box-method {
    grid-column: 1/-1;
}

.approach-media {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    align-self: stretch;
}

.approach-media img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    min-height: 420px;
}

.check-list {
    list-style: none;
    margin: 16px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.check-list li {
    font-size: 15px;
    color: var(--ink);
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.check-list li span {
    color: #3da35d;
    font-weight: 800;
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
    padding: 10px 0 0;
    background: #fff;
}

.why-choose-inner {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.why-media {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.why-media img {
    height: 420px;
    width: 100%;
    object-fit: cover;
}

.rating-card {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: rgba(10, 30, 36, .85);
    color: #fff;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rating-score {
    font-size: 20px;
    font-weight: 800;
}

.rating-stars {
    color: #ffce31;
    font-size: 14px;
}

.rating-sub {
    font-size: 11px;
    color: #cfe3e7;
}

.why-text h2 {
    font-size: 32px;
    color: var(--teal-dark);
}

.why-feature-row {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 10px;
}

.why-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.why-feature h4 {
    font-size: 16px;
    color: var(--teal-dark);
    margin-bottom: 4px;
}

.why-feature p {
    font-size: 15px;
    margin: 0;
}

.why-cta-row {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.call-link {
    font-size: 15px;
    color: var(--ink);
    line-height: 1.4;
}

.call-link strong {
    color: var(--teal-dark);
    font-size: 15px;
}

.trust-strip {
    margin-top: 40px;
    background: var(--teal-light);
    padding: 22px 0;
    text-align: center;
}

.trust-strip p {
    margin: 0 0 4px;
    font-size: 14px;
    color: var(--ink);
}

.trust-strip a {
    color: var(--red);
    font-weight: 700;
}

.trust-rating {
    font-weight: 700;
    color: var(--teal-dark);
}

/* ===== FEATURES THAT BUILD CONFIDENCE ===== */
.features-confidence {
    padding: 60px 0 0;
    background: #fff;
}

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

.confidence-card {
    background: var(--bg);
    border: 1px solid #e6edee;
    border-radius: var(--radius);
    padding: 26px;
    display: flex;
    flex-direction: column;
}

.confidence-card h4 {
    font-size: 17px;
    color: var(--teal-dark);
    margin: 14px 0 6px;
}

.confidence-card p {
    font-size: 14px;
    margin: 0 0 6px;
}

.confidence-card-img {
    border-radius: 10px;
    overflow: hidden;
    height: 140px;
    margin-top: auto;
}

.confidence-card-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* ===== WHY CHOOSE MAT LIST ===== */
.why-mat {
    padding: 10px 0 40px;
    background: var(--bg);
}

.why-mat .why-choose-inner {
    align-items: flex-start;
}

.why-mat h6 {
    color: var(--teal-dark);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.why-mat ul {
    margin-bottom: 45px;
}

.why-mat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.why-mat-item {
    background: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--teal-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(10, 58, 71, .06);
}

.why-mat-item span {
    color: #3da35d;
    font-weight: 800;
}

/* ===== RESPONSIVE ===== */
@media (max-width:980px) {

    .approach-inner,
    .why-choose-inner {
        grid-template-columns: 1fr;
    }

    .approach-media img {
        min-height: 260px;
    }

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

    .why-mat-grid {
        grid-template-columns: 1fr;
    }
}

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

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

    .page-hero h1 {
        font-size: 28px;
    }
}

/* conatct us */
/* ===== CONTACT INFO CARDS ===== */
.contact-info {
    padding: 30px 0 0;
    background: #fff;
}

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

.contact-info-card {
    background: var(--bg);
    border: 1px solid #397c85;
    border-radius: var(--radius);
    padding: 26px;
}

.contact-info-card h4 {
    font-size: 16px;
    color: var(--teal-dark);
    margin-bottom: 10px;
}

.contact-info-card p {
    font-size: 16px;
    margin-bottom: 18px;
    min-height: 64px;
}

.contact-info-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--teal-dark);
    border-top: 1px solid #e1e8ea;
    padding-top: 14px;
    font-size: 15px;
}

.contact-info-link span {
    color: var(--red);
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
    padding: 10px 0 100px;
    background: #fff;
}

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

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 480px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    display: block;
}

.contact-form-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.contact-form-card h3 {
    font-size: 21px;
    color: var(--teal-dark);
    margin-bottom: 8px;
}

.contact-form-card>p {
    font-size: 14px;
    margin-bottom: 22px;
}

#contactForm .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

#contactForm label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 16px;
}

#contactForm label.full-width {
    grid-column: 1/-1;
}

#contactForm input,
#contactForm textarea,
#contactForm select {
    width: 100%;
    margin-top: 6px;
    padding: 11px 12px;
    border-radius: 8px;
    border: 1px solid #d7e0e2;
    font-family: inherit;
    font-size: 14px;
    color: var(--ink);
    background: #fff;
}

#contactForm input:focus,
#contactForm textarea:focus {
    outline: 2px solid var(--teal);
    outline-offset: 1px;
}

#contactForm button {
    margin-top: 4px;
}

#contactSuccess {
    display: none;
    margin-top: 16px;
}

#contactSuccess.show {
    display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width:900px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-map {
        min-height: 320px;
    }

    .contact-map iframe {
        min-height: 320px;
    }

    #contactForm .form-row {
        grid-template-columns: 1fr;
    }
}

/* =====================================================================
   MAT DRIVING SCHOOL — GLOBAL RESPONSIVE STYLESHEET
   Link this file LAST on every page (after style.css, about.css,
   lesson-detail.css, contact.css) so these rules win at each breakpoint.
   <link rel="stylesheet" href="responsive.css">
   ===================================================================== */

/* =====================================================================
   TABLET — 980px and below
   ===================================================================== */
@media (max-width: 980px) {

    .container {
        padding: 10 20px;
    }

    /* Header */
    .brand-logo {
        height: 64px;
    }

    /* Banner */
    .banner,
    .lesson-banner,
    .contact-banner {
        padding: 60px 0 70px;
    }

    .banner-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .banner h1 {
        font-size: 36px;
    }

    .road-card {
        margin-left: 0;
        max-width: 100%;
    }

    .abt-banner {
        height: auto;
        padding: 120px 0 70px;
    }

    /* About */
    .about-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-media {
        grid-template-columns: 1fr 1fr;
    }

    .about-photo img {
        height: 260px;
    }

    /* Lessons */
    .lesson-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Approach */
    .approach-inner,
    .why-choose-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .approach-media img {
        min-height: 260px;
    }

    .why-media img {
        height: 320px;
    }

    /* Confidence cards */
    .confidence-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Why MAT list */
    .why-mat-grid {
        grid-template-columns: 1fr;
    }

    /* Lesson detail page */
    .lesson-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .lesson-sidebar {
        position: static;
    }

    .lesson-highlights {
        grid-template-columns: 1fr;
    }

    /* Contact page */
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-map,
    .contact-map iframe {
        min-height: 320px;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

/* =====================================================================
   LARGE MOBILE / SMALL TABLET — 768px and below
   ===================================================================== */
@media (min-width:200px) and (max-width: 768px) {

    .container {
        padding: 0 18px;
    }

    body {
        font-size: 15px;
    }

    /* Header / nav */
    .header-inner {
        padding: 8px 18px;
    }

    .brand-logo {
        height: 52px;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
        padding: 0 20px;
        z-index: 999;
    }

    .main-nav.open {
        max-height: 460px;
        padding: 14px 20px 22px;
        overflow-y: auto;
    }

    .main-nav a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #eef2f3;
        font-size: 15px;
    }

    .nav-enquire {
        margin-top: 14px;
        width: 100%;
        justify-content: center;
    }

    .hamburger {
        display: flex;
    }

    /* Banner */
    .banner,
    .lesson-banner,
    .contact-banner {
        padding: 50px 0 60px;
    }

    .banner h1 {
        font-size: 30px;
        line-height: 1.2;
    }

    .banner-text p {
        font-size: 15px;
        max-width: 100%;
    }

    .banner-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .banner-actions .btn {
        justify-content: center;
        width: 100%;
    }

    .cone-1,
    .cone-2 {
        display: none;
    }

    .road-card-title {
        font-size: 22px;
    }

    /* Page hero (lesson detail / about / contact) */
    .page-hero {
        height: auto;
        min-height: 220px;
        padding: 40px 0;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .breadcrumb {
        font-size: 13px;
    }

    /* Section heads */
    .section-head {
        margin-bottom: 36px;
    }

    .section-head h2 {
        font-size: 26px;
    }

    .eyebrow {
        font-size: 13px;
    }

    /* About */
    .about {
        padding: 60px 0;
    }

    .about-text h2 {
        font-size: 26px;
    }

    .lead {
        font-size: 15.5px;
        max-width: 100%;
    }

    .about-media {
        grid-template-columns: 1fr;
    }

    .about-photo {
        grid-column: 1;
    }

    .about-photo img {
        height: 220px;
    }

    .about-stat-card {
        padding: 18px;
    }

    .tags-row {
        margin-top: 30px;
    }

    .quote-strip {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    /* Lessons */
    .lessons {
        padding: 60px 0;
    }

    .lesson-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .lesson-card h3 {
        min-height: auto;
    }

    .lesson-card p {
        min-height: auto;
    }

    .lesson-card-img {
        height: 180px;
    }

    /* Prices */
    .prices {
        padding: 60px 0;
    }

    .price-row {
        grid-template-columns: 1.4fr 1fr 1fr;
        padding: 14px 16px;
        font-size: 14px;
    }

    /* Gallery */
    .gallery {
        padding: 0px 0 50px;
    }

    .carousel-track img {
        height: 160px;
        width: 220px;
    }

    /* Approach */
    .approach {
        padding: 60px 0;
    }

    .approach-text h2 {
        font-size: 26px;
    }

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

    .approach-media img {
        min-height: 220px;
    }

    /* Why choose */
    .why-choose {
        padding: 60px 0 0;
    }

    .why-text h2 {
        font-size: 26px;
    }

    .why-media img {
        height: 260px;
    }

    .rating-card {
        left: 14px;
        bottom: 14px;
        padding: 10px 14px;
    }

    .why-cta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .trust-strip {
        padding: 18px 16px;
    }

    /* Confidence cards */
    .features-confidence {
        padding: 60px 0 0;
    }

    .confidence-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .confidence-card-img {
        height: 160px;
    }

    /* Why MAT list */
    .why-mat {
        padding: 60px 0 70px;
    }

    /* Lesson detail page */
    .lesson-detail {
        padding: 50px 0 70px;
    }

    .lesson-main-img img {
        height: 220px;
    }

    .lesson-main h2 {
        font-size: 22px;
    }

    .lesson-cta-strip {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 24px 20px;
    }

    .lesson-cta-strip .btn {
        justify-content: center;
    }

    /* Contact */
    .contact-info {
        padding: 50px 0 0;
    }

    .contact-info-card p {
        min-height: auto;
    }

    .contact-form-section {
        padding: 50px 0 70px;
    }

    .contact-form-card {
        padding: 24px;
    }

    #contactForm .form-row {
        grid-template-columns: 1fr;
    }

    /* Modal */
    .modal-box {
        padding: 24px;
    }

    .modal-box h3 {
        font-size: 19px;
    }

    /* Footer */
    .site-footer {
        padding: 40px 0 0;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 30px;
        text-align: left;
    }

    .footer-logo {
        height: 50px;
    }

    .footer-brand p {
        font-size: 15px;
    }

    /* Floating enquiry tab */
    .enquiry {
        bottom: 60px;
    }

    .enquiry-btn {
        font-size: 11px;
        padding: 10px 8px;
    }
}

/* =====================================================================
   SMALL MOBILE — 480px and below
   ===================================================================== */
@media (max-width: 480px) {

    .container {
        padding: 0 16px;
    }

    .brand-logo {
        height: 44px;
    }

    /* Header / nav */
    .header-inner {
        padding: 8px 18px;
    }

    .brand-logo {
        height: 52px;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
        padding: 0 20px;
        z-index: 999;
    }

    .main-nav.open {
        max-height: 460px;
        padding: 14px 20px 22px;
        overflow-y: auto;
    }

    .main-nav a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #eef2f3;
        font-size: 15px;
    }

    .nav-enquire {
        margin-top: 14px;
        width: 100%;
        justify-content: center;
    }

    .hamburger {
        display: flex;
    }

    .banner h1,
    .page-hero h1 {
        font-size: 24px;
    }

    .banner-text p {
        font-size: 14px;
    }

    .road-card {
        padding: 18px;
    }

    .road-card-title {
        font-size: 19px;
    }

    .section-head h2 {
        font-size: 22px;
    }

    .about-text h2,
    .approach-text h2,
    .why-text h2 {
        font-size: 22px;
    }

    .btn {
        padding: 11px 20px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .lesson-cta-strip .btn,
    .why-cta-row .btn,
    .prices-cta .btn,
    .approach-box-method .btn {
        width: auto;
    }

    /* Tags */
    .tag {
        font-size: 12px;
        padding: 7px 14px;
    }

    /* Price table */
    .price-row {
        grid-template-columns: 1.3fr 1fr 1fr;
        padding: 12px 14px;
        font-size: 13px;
    }

    .price-row-head {
        font-size: 11px;
    }

    /* Gallery carousel */
    .carousel-track img {
        height: 130px;
        width: 180px;
        border-radius: 8px;
    }

    /* Confidence / lesson cards */
    .lesson-card,
    .confidence-card,
    .approach-box,
    .contact-info-card {
        padding: 20px;
    }

    /* Why MAT items */
    .why-mat-item {
        padding: 14px 16px;
        font-size: 13.5px;
    }

    /* Modal form */
    .modal-box {
        padding: 20px;
        max-height: 92vh;
    }

    #enquiryForm label,
    #contactForm label {
        font-size: 12.5px;
    }

    #enquiryForm input,
    #enquiryForm select,
    #enquiryForm textarea,
    #contactForm input,
    #contactForm textarea {
        font-size: 13.5px;
        padding: 10px;
    }

    /* Footer */
    .footer-bottom {
        font-size: 12px;
        padding: 14px 0;
    }
}

/* =====================================================================
   EXTRA SMALL MOBILE — 360px and below (older/narrow phones)
   ===================================================================== */
@media (max-width: 360px) {

    /* Header / nav */
    .header-inner {
        padding: 8px 18px;
    }

    .brand-logo {
        height: 52px;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
        padding: 0 20px;
        z-index: 999;
    }

    .main-nav.open {
        max-height: 460px;
        padding: 14px 20px 22px;
        overflow-y: auto;
    }

    .main-nav a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #eef2f3;
        font-size: 15px;
    }

    .nav-enquire {
        margin-top: 14px;
        width: 100%;
        justify-content: center;
    }

    .hamburger {
        display: flex;
    }



    .banner h1,
    .page-hero h1 {
        font-size: 21px;
    }

    .section-head h2 {
        font-size: 20px;
    }

    .lesson-card-img,
    .confidence-card-img {
        height: 130px;
    }

    .carousel-track img {
        height: 110px;
        width: 150px;
    }
}

/* =====================================================================
   TOUCH / HOVER SAFETY
   On touch devices there's no real ":hover" — make sure interactive
   elements still look pressed/active rather than stuck mid-hover.
   ===================================================================== */
@media (hover: none) {

    .btn:hover,
    .lesson-card:hover {
        transform: none;
    }

    .btn:active {
        transform: scale(0.97);
    }
}


/* --------------------------------- */
/* =====================================================================
   MAT DRIVING SCHOOL — GLOBAL RESPONSIVE STYLESHEET
   Link this file LAST on every page, AFTER style.css / about.css /
   lesson-detail.css / contact.css, e.g.:

     <link rel="stylesheet" href="style.css">
     <link rel="stylesheet" href="responsive.css">

   If a page also has its own page-specific sheet (about.css, contact.css,
   lesson-detail.css) link those BEFORE responsive.css too.
   ===================================================================== */

/* =====================================================================
   HAMBURGER / MOBILE NAV — CORE BEHAVIOUR
   This is the one block that actually controls show/hide of the menu.
   Kept !important so link order can never accidentally break it.
   ===================================================================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
    }

    .main-nav {
        display: flex !important;
        /* flex, not none — height is what hides it */
        position: fixed !important;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        background: #fff;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0 !important;
        box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
        padding: 0 20px;
        z-index: 999;
    }

    .main-nav.open {
        max-height: 480px;
        padding: 14px 20px 22px;
        overflow-y: auto;
    }

    .main-nav a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #eef2f3;
        font-size: 15px;
        color: #000;
    }

    .nav-enquire {
        margin-top: 14px;
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }

    .main-nav {
        position: static !important;
        max-height: none !important;
        overflow: visible !important;
        flex-direction: row !important;
    }
}

/* =====================================================================
   TABLET — 980px and below
   ===================================================================== */
@media (max-width: 980px) {

    .container {
        padding: 0 20px;
    }

    .brand-logo {
        height: 64px;
    }

    .banner,
    .lesson-banner,
    .contact-banner {
        padding: 60px 0 70px;
    }

    .banner-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .banner h1 {
        font-size: 36px;
    }

    .road-card {
        margin-left: 0;
        max-width: 100%;
    }

    .abt-banner {
        height: auto;
        padding: 120px 0 70px;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-media {
        grid-template-columns: 1fr 1fr;
    }

    .about-photo img {
        height: 260px;
    }

    .lesson-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .approach-inner,
    .why-choose-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .approach-media img {
        min-height: 260px;
    }

    .why-media img {
        height: 320px;
    }

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

    .why-mat-grid {
        grid-template-columns: 1fr;
    }

    .lesson-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .lesson-sidebar {
        position: static;
    }

    .lesson-highlights {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-map,
    .contact-map iframe {
        min-height: 320px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

/* =====================================================================
   LARGE MOBILE / SMALL TABLET — 768px and below
   ===================================================================== */
@media (max-width: 768px) {

    .container {
        padding: 0 18px;
    }

    body {
        font-size: 15px;
    }

    .header-inner {
        padding: 8px 18px;
    }

    .brand-logo {
        height: 52px;
    }

    .banner,
    .lesson-banner,
    .contact-banner {
        padding: 70px 0 60px;
    }

    .banner h1 {
        font-size: 30px;
        line-height: 1.2;
    }

    .banner-text p {
        font-size: 15px;
        max-width: 100%;
    }

    .banner-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .banner-actions .btn {
        justify-content: center;
        width: 100%;
    }

    .cone-1,
    .cone-2 {
        display: none;
    }

    .road-card-title {
        font-size: 22px;
    }

    .page-hero {
        height: auto;
        min-height: 220px;
        padding: 40px 0;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .breadcrumb {
        font-size: 13px;
    }

    .section-head {
        margin-bottom: 36px;
    }

    .section-head h2 {
        font-size: 26px;
    }

    .eyebrow {
        font-size: 13px;
    }

    .about {
        padding: 60px 0;
    }

    .about-text h2 {
        font-size: 26px;
    }

    .lead {
        font-size: 15.5px;
        max-width: 100%;
    }

    .about-media {
        grid-template-columns: 1fr;
    }

    .about-photo {
        grid-column: 1;
    }

    .about-photo img {
        height: 220px;
    }

    .about-stat-card {
        padding: 18px;
    }

    .tags-row {
        margin-top: 30px;
    }

    .quote-strip {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .lessons {
        padding: 30px 0;
    }

    .lesson-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .lesson-card h3 {
        min-height: auto;
    }

    .lesson-card p {
        min-height: auto;
    }

    .lesson-card-img {
        height: 180px;
    }

    .prices {
        padding: 60px 0;
    }

    .price-row {
        grid-template-columns: 1.4fr 1fr 1fr;
        padding: 14px 16px;
        font-size: 14px;
    }

    .gallery {
        padding: 0px 0 30px 0;
    }

    .carousel-track img {
        height: 160px;
        width: 220px;
    }

    .approach {
        padding: 30px 0;
    }

    .approach-text h2 {
        font-size: 26px;
    }

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

    .approach-media img {
        min-height: 220px;
    }

    .why-choose {
        padding: 30px 0 0;
    }

    .why-text h2 {
        font-size: 26px;
    }

    .why-media img {
        height: 260px;
    }

    .rating-card {
        left: 14px;
        bottom: 14px;
        padding: 10px 14px;
    }

    .why-cta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .trust-strip {
        padding: 18px 16px;
    }

    .features-confidence {
        padding: 60px 0 0;
    }

    .confidence-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .confidence-card-img {
        height: 160px;
    }

    .why-mat {
        padding: 60px 0 70px;
    }

    .lesson-detail {
        padding: 50px 0 70px;
    }

    .lesson-main-img img {
        height: 220px;
    }

    .lesson-main h2 {
        font-size: 22px;
    }

    .lesson-cta-strip {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 24px 20px;
    }

    .lesson-cta-strip .btn {
        justify-content: center;
    }

    .contact-info {
        padding: 50px 0 0;
    }

    .contact-info-card p {
        min-height: auto;
    }

    .contact-form-section {
        padding: 50px 0 70px;
    }

    .contact-form-card {
        padding: 24px;
    }

    #contactForm .form-row {
        grid-template-columns: 1fr;
    }

    .modal-box {
        padding: 24px;
    }

    .modal-box h3 {
        font-size: 19px;
    }

    .site-footer {
        padding: 40px 0 0;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 30px;
        text-align: left;
    }

    .footer-logo {
        height: 50px;
    }

    .footer-brand p {
        font-size: 15px;
    }

    .enquiry {
        bottom: 60px;
    }

    .enquiry-btn {
        font-size: 11px;
        padding: 10px 8px;
    }
}

/* =====================================================================
   SMALL MOBILE — 480px and below
   ===================================================================== */
@media (max-width: 480px) {

    .container {
        padding: 0 16px;
    }

    .header-inner {
        padding: 8px 16px;
    }

    .brand-logo {
        height: 46px;
    }

    .banner h1,
    .page-hero h1 {
        font-size: 24px;
    }

    .banner-text p {
        font-size: 14px;
    }

    .road-card {
        padding: 18px;
    }

    .road-card-title {
        font-size: 19px;
    }

    .section-head h2 {
        font-size: 22px;
    }

    .about-text h2,
    .approach-text h2,
    .why-text h2 {
        font-size: 22px;
    }

    .btn {
        padding: 11px 20px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .lesson-cta-strip .btn,
    .why-cta-row .btn,
    .prices-cta .btn,
    .approach-box-method .btn {
        width: auto;
    }

    .tag {
        font-size: 12px;
        padding: 7px 14px;
    }

    .price-row {
        grid-template-columns: 1.3fr 1fr 1fr;
        padding: 12px 14px;
        font-size: 13px;
    }

    .price-row-head {
        font-size: 11px;
    }

    .carousel-track img {
        height: 130px;
        width: 180px;
        border-radius: 8px;
    }

    .lesson-card,
    .confidence-card,
    .approach-box,
    .contact-info-card {
        padding: 20px;
    }

    .why-mat-item {
        padding: 14px 16px;
        font-size: 13.5px;
    }

    .modal-box {
        padding: 20px;
        max-height: 92vh;
    }

    #enquiryForm label,
    #contactForm label {
        font-size: 12.5px;
    }

    #enquiryForm input,
    #enquiryForm select,
    #enquiryForm textarea,
    #contactForm input,
    #contactForm textarea {
        font-size: 13.5px;
        padding: 10px;
    }

    .footer-bottom {
        font-size: 12px;
        padding: 14px 0;
    }
}

/* =====================================================================
   EXTRA SMALL MOBILE — 360px and below
   ===================================================================== */
@media (max-width: 360px) {

    .banner h1,
    .page-hero h1 {
        font-size: 21px;
    }

    .section-head h2 {
        font-size: 20px;
    }

    .lesson-card-img,
    .confidence-card-img {
        height: 130px;
    }

    .carousel-track img {
        height: 125px;
        width: 180px;
    }
}

/* =====================================================================
   TOUCH / HOVER SAFETY
   ===================================================================== */
@media (hover: none) {

    .btn:hover,
    .lesson-card:hover {
        transform: none;
    }

    .btn:active {
        transform: scale(0.97);
    }
}