/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: #ffffff;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #ffffff;
    color: #1f2937;
    position: relative;
    isolation: isolate;
}


/* =========================================================
   WATERMARK
========================================================= */

body::before {
    content: "";

    position: fixed;
    inset: 0;

    width: 100vw;
    height: 100vh;

    background-image: url("images/logo.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80vw auto;

    opacity: 0.12;

    pointer-events: none;

    z-index: 0;
}

body>* {
    position: relative;
    z-index: 1;
}


/* =========================================================
   HEADER
========================================================= */

header {
    position: relative;

    background-color: #0f172a;

    padding: 10px 5%;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 4px 18px rgba(15, 23, 42, 0.16);

    z-index: 1000;

    overflow: visible;
}


/* =========================================================
   NAV
========================================================= */

.main-nav {
    position: relative;

    max-width: 1350px;

    height: 86px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr 260px 1fr;

    align-items: center;
}


/* =========================================================
   MENU BUTTON
========================================================= */

.menu-toggle {
    grid-column: 1;

    justify-self: start;

    position: relative;

    z-index: 30;

    width: 50px;
    height: 50px;

    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 6px;

    padding: 0 12px;

    background-color: #e11d2e;

    border: none;

    border-radius: 10px;

    cursor: pointer;

    box-shadow:
        0 5px 14px rgba(225, 29, 46, 0.24);

    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    background-color: #ffffff;

    border-radius: 10px;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.menu-toggle:hover {
    background-color: #c91829;

    transform:
        translateY(-2px);
}

.menu-toggle.active span:nth-child(1) {
    transform:
        translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform:
        translateY(-8px) rotate(-45deg);
}


/* =========================================================
   NAV LOGO
========================================================= */

.nav-logo {
    position: absolute;

    left: 50%;
    top: 4px;

    transform:
        translateX(-50%);

    width: 236px;
    height: 236px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background-color: #ffffff;

    border:
        6px solid #ffffff;

    border-radius: 50%;

    box-shadow:
        0 13px 35px rgba(0, 0, 0, 0.34);

    z-index: 20;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.nav-logo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    border-radius: 50%;
}

.nav-logo:hover {
    transform:
        translateX(-50%) scale(1.035);

    box-shadow:
        0 16px 42px rgba(0, 0, 0, 0.4);
}


/* =========================================================
   NAV QUOTE BUTTON
========================================================= */

.nav-button {
    grid-column: 3;

    justify-self: end;

    position: relative;

    z-index: 30;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    background-color: #315a9b;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    padding:
        14px 22px;

    border-radius: 9px;

    white-space: nowrap;

    box-shadow:
        0 5px 14px rgba(49, 90, 155, 0.24);

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.nav-button:hover {
    background-color: #264b86;

    transform:
        translateY(-2px);
}


/* =========================================================
   NAV MENU
========================================================= */

.nav-menu {
    position: absolute;

    top:
        calc(100% + 13px);

    left: 0;

    width: 255px;

    display: flex;

    flex-direction: column;

    gap: 6px;

    padding: 14px;

    background-color: #0f172a;

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: 14px;

    box-shadow:
        0 20px 45px rgba(15, 23, 42, 0.3);

    opacity: 0;

    visibility: hidden;

    transform:
        translateX(-30px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;

    z-index: 1001;
}

.nav-menu.active {
    opacity: 1;

    visibility: visible;

    transform:
        translateX(0);
}

.nav-menu a {
    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 650;

    padding:
        13px 15px;

    border-radius: 8px;

    transition:
        background-color 0.2s ease,
        padding-left 0.2s ease;
}

.nav-menu a:hover {
    background-color: #e11d2e;

    padding-left: 21px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 760px;

    padding:
        165px 5% 95px;

    display: grid;

    grid-template-columns:
        1.15fr 0.85fr;

    gap: 90px;

    align-items: center;

    max-width: 1400px;

    margin: 0 auto;
}

.hero-content {
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    background-color: #eef3fa;

    color: #315a9b;

    padding:
        8px 14px;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 25px;
}

.mini-l {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 26px;
    height: 26px;

    background-color: #ffffff;

    color: #e11d2e;

    border:
        2px solid #e11d2e;

    border-radius: 4px;

    font-weight: 800;
}

.hero-tagline {
    color: #315a9b;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 18px;
}

.hero h1 {
    color: #0f172a;

    font-size: 62px;

    line-height: 1.04;

    margin-bottom: 25px;
}

.hero h1 span {
    color: #315a9b;
}

.hero-description {
    max-width: 620px;

    color: #64748b;

    font-size: 19px;

    line-height: 1.7;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;

    gap: 15px;

    margin-bottom: 45px;
}

.primary-button,
.secondary-button {
    display: inline-block;

    padding:
        15px 24px;

    border-radius: 7px;

    text-decoration: none;

    font-weight: 700;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.primary-button {
    background-color: #315a9b;

    color: #ffffff;
}

.primary-button:hover {
    background-color: #264b86;

    transform:
        translateY(-2px);

    box-shadow:
        0 8px 20px rgba(49, 90, 155, 0.25);
}

.secondary-button {
    background-color: #ffffff;

    color: #0f172a;

    border:
        2px solid #0f172a;
}

.secondary-button:hover {
    background-color: #0f172a;

    color: #ffffff;

    transform:
        translateY(-2px);
}

.hero-trust {
    display: flex;

    gap: 45px;

    flex-wrap: wrap;
}

.hero-trust div {
    display: flex;

    flex-direction: column;
}

.hero-trust strong {
    color: #0f172a;

    font-size: 20px;
}

.hero-trust span {
    color: #64748b;

    font-size: 13px;

    margin-top: 3px;
}


/* =========================================================
   HERO CARD
========================================================= */

.hero-visual-card {
    position: relative;

    background:
        linear-gradient(145deg,
            #102647,
            #0f172a);

    border-radius: 22px;

    padding:
        60px 45px 40px;

    color: #ffffff;

    box-shadow:
        0 30px 70px rgba(15, 23, 42, 0.22);
}

.large-l-plate {
    position: absolute;

    top: -35px;
    right: 35px;

    width: 85px;
    height: 85px;

    background-color: #ffffff;

    border:
        5px solid #e11d2e;

    border-radius: 12px;

    display: flex;

    justify-content: center;
    align-items: center;

    transform:
        rotate(4deg);

    box-shadow:
        0 12px 30px rgba(15, 23, 42, 0.2);
}

.large-l-plate span {
    color: #e11d2e;

    font-size: 58px;

    font-weight: 800;
}

.card-label {
    color: #7ea4dd;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.hero-visual-card h2 {
    font-size: 34px;

    line-height: 1.2;

    margin-bottom: 18px;
}

.hero-card-description {
    color: #cbd5e1;

    line-height: 1.7;

    margin-bottom: 30px;
}

.hero-feature {
    display: flex;

    gap: 12px;

    align-items: center;

    padding:
        14px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.1);
}

.hero-feature span {
    color: #7ea4dd;

    font-weight: 800;
}

.hero-feature p {
    color: #ffffff;
}

.lesson-price-box {
    margin-top: 30px;

    background-color: #263856;

    border-radius: 12px;

    padding: 20px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;
}

.lesson-price-box div {
    display: flex;

    flex-direction: column;
}

.lesson-price-box small {
    color: #7ea4dd;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 4px;
}

.lesson-price-box strong {
    font-size: 19px;
}

.lesson-price-box>span {
    color: #ffffff;

    font-size: 30px;

    font-weight: 800;

    white-space: nowrap;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-tagline {
    color: #315a9b;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.section-heading {
    max-width: 720px;

    margin:
        0 auto 55px;

    text-align: center;
}

.section-heading h2 {
    color: #0f172a;

    font-size: 42px;

    margin-bottom: 18px;
}

.section-heading>p:last-child {
    color: #64748b;

    font-size: 18px;

    line-height: 1.7;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    padding:
        100px 5%;

    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 80px;

    align-items: center;
}

.about-image img {
    width: 100%;

    height: 520px;

    object-fit: cover;

    border-radius: 16px;

    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.14);
}

.about-content h2 {
    color: #0f172a;

    font-size: 42px;

    line-height: 1.15;

    margin-bottom: 25px;
}

.about-content>p {
    color: #64748b;

    font-size: 18px;

    line-height: 1.7;

    margin-bottom: 20px;
}

.about-points {
    margin:
        30px 0;
}

.about-point {
    display: flex;

    gap: 12px;

    align-items: center;

    margin-bottom: 14px;
}

.about-point span {
    color: #315a9b;

    font-weight: 800;
}

.about-point p {
    color: #334155;
}


/* =========================================================
   LESSONS
========================================================= */

.lessons {
    padding:
        100px 5%;

    background-color: #f5f7fb;
}

.lessons-grid {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.lesson-card {
    background-color: #ffffff;

    padding: 38px;

    border-radius: 14px;

    border:
        1px solid #e2e8f0;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.lesson-card:hover {
    transform:
        translateY(-5px);

    box-shadow:
        0 15px 35px rgba(15, 23, 42, 0.1);
}

.lesson-number {
    color: #315a9b;

    font-size: 14px;

    font-weight: 800;
}

.lesson-card h3 {
    color: #0f172a;

    font-size: 23px;

    margin:
        25px 0 15px;
}

.lesson-card p {
    color: #64748b;

    line-height: 1.7;
}


/* =========================================================
   PRICING
========================================================= */

.pricing {
    padding:
        100px 5%;

    background-color: #ffffff;
}

.pricing-grid {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}

.price-card {
    background-color: #102647;

    color: #ffffff;

    border-radius: 16px;

    padding: 38px;

    box-shadow:
        0 16px 35px rgba(15, 23, 42, 0.12);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.price-card:hover {
    transform:
        translateY(-5px);

    box-shadow:
        0 20px 42px rgba(15, 23, 42, 0.17);
}

.saturday-price {
    background-color: #18345f;
}

.bank-holiday-price {
    background-color: #263856;
}

.price-label {
    color: #7ea4dd;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.price-card h3 {
    font-size: 27px;

    margin-bottom: 30px;
}

.price-list {
    border-top:
        1px solid rgba(255, 255, 255, 0.12);
}

.price-list div {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding:
        17px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.1);
}

.price-list span {
    color: #e2e8f0;
}

.price-list strong {
    font-size: 18px;
}

.pricing-note {
    max-width: 850px;

    margin:
        30px auto 0;

    text-align: center;

    color: #64748b;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   REVIEWS
========================================================= */

.reviews {
    padding:
        100px 5%;

    background-color: #f5f7fb;

    overflow: hidden;
}

.review-carousel {
    max-width: 1000px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        60px 1fr 60px;

    gap: 25px;

    align-items: center;
}

.review-window {
    overflow: hidden;

    border-radius: 20px;
}

.review-track {
    display: flex;

    transition:
        transform 0.65s cubic-bezier(0.22,
            1,
            0.36,
            1);
}

.review-slide {
    min-width: 100%;

    background-color: #ffffff;

    border:
        1px solid #e2e8f0;

    border-radius: 20px;

    padding:
        55px 65px;

    text-align: center;

    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.08);
}

.review-stars {
    color: #315a9b;

    font-size: 25px;

    letter-spacing: 5px;

    margin-bottom: 28px;
}

.review-slide blockquote {
    color: #334155;

    font-size: 21px;

    line-height: 1.8;

    font-weight: 500;

    max-width: 760px;

    margin:
        0 auto 35px;
}

.review-person {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.review-person strong {
    color: #0f172a;

    font-size: 17px;
}

.review-person span {
    color: #64748b;

    font-size: 13px;
}

.review-arrow {
    width: 50px;
    height: 50px;

    border: none;

    border-radius: 50%;

    background-color: #102647;

    color: #ffffff;

    font-size: 23px;

    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(15, 23, 42, 0.16);

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.review-arrow:hover {
    background-color: #315a9b;

    transform:
        scale(1.08);
}

.review-dots {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 30px;
}

.review-dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background-color: #cbd5e1;

    cursor: pointer;

    transition:
        width 0.25s ease,
        background-color 0.25s ease;
}

.review-dot.active {
    width: 28px;

    border-radius: 20px;

    background-color: #315a9b;
}

.review-source {
    color: #94a3b8;

    font-size: 12px;

    text-align: center;

    margin-top: 20px;
}


/* =========================================================
   PASSES CAROUSEL
========================================================= */

.passes-gallery {
    padding:
        100px 5%;

    background-color: #ffffff;

    overflow: hidden;
}

.passes-carousel {
    max-width: 850px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        60px 1fr 60px;

    gap: 25px;

    align-items: center;
}

.passes-window {
    width: 100%;

    overflow: hidden;

    border-radius: 18px;
}

.passes-track {
    display: flex;

    width: 100%;

    transition:
        transform 0.65s cubic-bezier(0.22,
            1,
            0.36,
            1);
}

.pass-slide {
    min-width: 100%;
    width: 100%;

    padding: 4px;
}


/* =========================================================
   SQUARE PASS PHOTOS
========================================================= */

.pass-card {
    position: relative;

    overflow: hidden;

    width: 100%;

    aspect-ratio: 1 / 1;

    background-color: #ffffff;

    border-radius: 18px;

    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.12);
}

.pass-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.4s ease;
}

.pass-card:hover img {
    transform:
        scale(1.04);
}

.pass-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding:
        55px 25px 22px;

    background:
        linear-gradient(to top,
            rgba(15, 23, 42, 0.9),
            transparent);
}

.pass-overlay span {
    display: inline-block;

    background-color: #16a34a;

    color: #ffffff;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;

    padding:
        8px 14px;

    border-radius: 30px;

    transition:
        background-color 0.2s ease;
}

.pass-card:hover .pass-overlay span {
    background-color: #15803d;
}


/* =========================================================
   PASS CAROUSEL ARROWS
========================================================= */

.passes-arrow {
    width: 50px;
    height: 50px;

    border: none;

    border-radius: 50%;

    background-color: #102647;

    color: #ffffff;

    font-size: 23px;

    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(15, 23, 42, 0.16);

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.passes-arrow:hover {
    background-color: #315a9b;

    transform:
        scale(1.08);
}


/* =========================================================
   PASS CAROUSEL DOTS
========================================================= */

.passes-dots {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 28px;
}

.passes-dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background-color: #cbd5e1;

    cursor: pointer;

    transition:
        width 0.25s ease,
        background-color 0.25s ease,
        border-radius 0.25s ease;
}

.passes-dot.active {
    width: 28px;

    border-radius: 20px;

    background-color: #315a9b;
}


/* =========================================================
   AREAS
========================================================= */

.areas {
    padding:
        100px 5%;

    background-color: #ffffff;
}

.areas-wrapper {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.2fr 0.8fr;

    gap: 70px;

    align-items: center;
}

.areas-content h2 {
    color: #0f172a;

    font-size: 42px;

    line-height: 1.2;

    margin-bottom: 20px;
}

.areas-content>p {
    color: #64748b;

    font-size: 18px;

    line-height: 1.7;

    margin-bottom: 30px;
}

.area-list {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 35px;
}

.area-list span {
    background-color: #f5f7fb;

    color: #315a9b;

    font-weight: 700;

    padding:
        10px 16px;

    border-radius: 30px;

    border:
        1px solid #dbe4ef;
}

.areas-map-card {
    overflow: hidden;

    background-color: #ffffff;

    border:
        1px solid #dbe4ef;

    border-radius: 18px;

    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.12);
}

.areas-map-card iframe {
    width: 100%;

    height: 340px;

    display: block;

    border: 0;
}

.areas-map-caption {
    background-color: #102647;

    color: #ffffff;

    padding:
        22px 24px;
}

.areas-map-caption h3 {
    font-size: 24px;

    margin-bottom: 10px;
}

.areas-map-caption p {
    color: #cbd5e1;

    line-height: 1.6;
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    padding:
        100px 5%;

    background-color: #f5f7fb;
}

.contact-wrapper {
    max-width: 1350px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        0.75fr 1.25fr;

    gap: 65px;

    align-items: start;
}

.contact-intro {
    position: sticky;

    top: 35px;
}

.contact-intro h2 {
    color: #0f172a;

    font-size: 42px;

    line-height: 1.2;

    margin-bottom: 20px;
}

.contact-intro>p:not(.section-tagline) {
    color: #64748b;

    font-size: 18px;

    line-height: 1.7;

    margin-bottom: 30px;
}

.contact-points {
    background-color: #ffffff;

    border:
        1px solid #e2e8f0;

    border-radius: 12px;

    padding: 25px;

    margin-bottom: 20px;
}

.contact-points p {
    color: #475569;

    line-height: 1.5;

    margin-bottom: 12px;
}

.contact-points p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   CONTACT SOCIALS
========================================================= */

.contact-socials {
    margin-top: 20px;
}

.contact-socials-title {
    color: #0f172a;

    font-size: 14px;

    font-weight: 800;

    margin-bottom: 12px;
}

.social-buttons {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;
}

.social-button {
    min-height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding:
        12px 10px;

    border-radius: 9px;

    text-decoration: none;

    color: #ffffff;

    font-size: 13px;

    font-weight: 800;

    box-shadow:
        0 7px 18px rgba(15, 23, 42, 0.1);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.social-button:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 10px 22px rgba(15, 23, 42, 0.16);
}

.whatsapp-social {
    background-color: #16a34a;
}

.whatsapp-social:hover {
    background-color: #15803d;
}

.facebook-social {
    background-color: #1877f2;
}

.facebook-social:hover {
    background-color: #1264d6;
}

.instagram-social {
    background:
        linear-gradient(135deg,
            #833ab4,
            #fd1d1d,
            #fcb045);
}

.instagram-social:hover {
    filter:
        brightness(0.92);
}

.social-icon {
    width: 22px;
    height: 22px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    font-size: 16px;

    font-weight: 800;
}

.facebook-icon {
    font-size: 20px;
}

.instagram-icon {
    font-size: 21px;
}


/* =========================================================
   FORM
========================================================= */

.lesson-form {
    background-color: #ffffff;

    border:
        1px solid #e2e8f0;

    border-radius: 18px;

    padding: 34px;

    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.07);
}

.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;
}

.form-group {
    display: flex;

    flex-direction: column;

    margin-bottom: 18px;
}

.form-group label,
.availability-title {
    color: #0f172a;

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding:
        12px 14px;

    border:
        1px solid #cbd5e1;

    border-radius: 7px;

    background-color: #ffffff;

    font-family: inherit;

    font-size: 15px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group textarea {
    resize: vertical;

    min-height: 95px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;

    border-color: #315a9b;

    box-shadow:
        0 0 0 3px rgba(49, 90, 155, 0.12);
}

.availability-help {
    color: #64748b;

    font-size: 13px;

    line-height: 1.5;

    margin-bottom: 10px;
}

.availability-notice {
    color: #475569;

    background-color: #eef3fa;

    border:
        1px solid #dbe4ef;

    border-radius: 9px;

    padding:
        12px 14px;

    font-size: 12px;

    line-height: 1.55;

    margin-bottom: 16px;
}

.day-tabs {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 7px;

    padding: 6px;

    margin-bottom: 14px;

    background-color: #f1f5f9;

    border-radius: 11px;
}

.day-tab {
    border: none;

    background-color: transparent;

    color: #64748b;

    padding:
        10px 6px;

    border-radius: 7px;

    font-family: inherit;

    font-weight: 700;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.day-tab:hover {
    background-color: #ffffff;

    color: #315a9b;
}

.day-tab.active {
    background-color: #315a9b;

    color: #ffffff;
}

.day-panel {
    display: none;

    background-color: #f8fafc;

    border:
        1px solid #e2e8f0;

    border-radius: 12px;

    padding: 18px;
}

.day-panel.active {
    display: block;
}

.day-panel h4 {
    color: #0f172a;

    margin-bottom: 6px;
}

.day-panel>p {
    color: #64748b;

    font-size: 12px;

    margin-bottom: 14px;
}

.time-slots {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 8px;
}

.time-slot {
    position: relative;

    cursor: pointer;
}

.time-slot input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.time-slot span {
    display: block;

    background-color: #ffffff;

    border:
        1px solid #dbe4ef;

    border-radius: 7px;

    padding:
        10px 5px;

    text-align: center;

    color: #475569;

    font-size: 12px;

    font-weight: 600;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.time-slot:hover span {
    border-color: #315a9b;

    color: #315a9b;

    transform:
        translateY(-1px);
}

.time-slot input:checked+span {
    background-color: #315a9b;

    color: #ffffff;

    border-color: #315a9b;
}

.availability-summary {
    margin-top: 14px;

    padding:
        12px 14px;

    background-color: #eef3fa;

    border-radius: 8px;

    color: #475569;

    font-size: 12px;

    line-height: 1.5;
}

.availability-summary strong {
    color: #315a9b;
}

.form-button {
    width: 100%;

    border: none;

    background-color: #315a9b;

    color: #ffffff;

    padding:
        15px 20px;

    border-radius: 8px;

    font-family: inherit;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.form-button:hover {
    background-color: #264b86;

    transform:
        translateY(-2px);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background-color: #0f172a;

    color: #ffffff;

    padding:
        70px 5% 25px;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.4fr 0.65fr 0.9fr;

    gap: 70px;
}

.footer-brand {
    display: flex;

    align-items: center;

    gap: 22px;
}

.footer-brand img {
    width: 96px;
    height: 96px;

    flex-shrink: 0;

    object-fit: cover;

    background-color: #ffffff;

    border:
        4px solid #ffffff;

    border-radius: 50%;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.25);
}

.footer-brand h3 {
    color: #ffffff;

    font-size: 21px;

    margin-bottom: 10px;
}

.footer-brand p {
    max-width: 370px;

    color: #94a3b8;

    font-size: 14px;

    line-height: 1.7;
}

.footer-links,
.footer-contact {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
}

.footer-links h4,
.footer-contact h4 {
    color: #ffffff;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.4px;

    text-transform: uppercase;

    margin-bottom: 8px;
}

.footer-links a,
.footer-contact a {
    color: #cbd5e1;

    text-decoration: none;

    font-size: 14px;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #7ea4dd;

    transform:
        translateX(3px);
}

.footer-contact p {
    color: #94a3b8;

    font-size: 13px;

    line-height: 1.5;
}

.footer-bottom {
    max-width: 1250px;

    margin:
        50px auto 0;

    padding-top: 24px;

    border-top:
        1px solid rgba(255, 255, 255, 0.1);

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 25px;
}

.footer-bottom p {
    color: #64748b;

    font-size: 12px;
}

.website-credit strong {
    color: #94a3b8;
}


/* =========================================================
   ANIMATIONS
========================================================= */

.nav-logo-animate {
    opacity: 0;

    transform:
        translateX(-50%) scale(0.82);

    transition:
        opacity 0.65s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-logo-animate.animation-active {
    opacity: 1;

    transform:
        translateX(-50%) scale(1);
}

.menu-animate {
    opacity: 0;

    transform:
        translateX(-70px);

    transition:
        opacity 0.6s ease,
        transform 0.7s ease;
}

.menu-animate.animation-active {
    opacity: 1;

    transform:
        translateX(0);
}

.quote-animate {
    opacity: 0;

    transform:
        translateX(70px);

    transition:
        opacity 0.6s ease,
        transform 0.7s ease;
}

.quote-animate.animation-active {
    opacity: 1;

    transform:
        translateX(0);
}

.hero-content-animate {
    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.hero-content-animate.animation-active {
    opacity: 1;

    transform:
        translateY(0);
}

.hero-card-animate {
    opacity: 0;

    transform:
        translateX(55px);

    transition:
        opacity 0.85s ease,
        transform 0.85s ease;
}

.hero-card-animate.animation-active {
    opacity: 1;

    transform:
        translateX(0);
}

.scroll-reveal {
    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.scroll-reveal.revealed {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    body::before {
        background-size:
            95vw auto;

        opacity: 0.10;
    }

    .main-nav {
        grid-template-columns:
            1fr 220px 1fr;
    }

    .nav-logo {
        width: 200px;
        height: 200px;
    }

    .hero {
        grid-template-columns:
            1fr;

        gap: 70px;

        padding:
            150px 5% 80px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-visual-card {
        max-width: 600px;

        width: 100%;

        margin: 0 auto;
    }

    .about {
        grid-template-columns:
            1fr;

        gap: 45px;
    }

    .about-image img {
        height: 450px;
    }

    .lessons-grid,
    .pricing-grid {
        grid-template-columns:
            1fr;
    }

    .pricing-grid {
        max-width: 700px;
    }

    .review-carousel {
        grid-template-columns:
            50px 1fr 50px;
    }

    .passes-carousel {
        max-width: 700px;

        grid-template-columns:
            50px 1fr 50px;
    }

    .areas-wrapper,
    .contact-wrapper {
        grid-template-columns:
            1fr;

        gap: 40px;
    }

    .contact-intro {
        position: static;
    }

    .footer-inner {
        grid-template-columns:
            1fr 1fr;

        gap: 45px;
    }

    .footer-brand {
        grid-column:
            1 / -1;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    body::before {
        background-size:
            115vw auto;

        opacity: 0.08;
    }

    header {
        padding:
            8px 4%;
    }

    .main-nav {
        height: 72px;

        grid-template-columns:
            1fr 155px 1fr;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
    }

    .nav-logo {
        width: 145px;
        height: 145px;

        border-width: 5px;
    }

    .nav-button {
        font-size: 12px;

        padding:
            11px 13px;
    }

    .hero {
        min-height: auto;

        padding:
            115px 5% 60px;
    }

    .hero h1 {
        font-size: 39px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction:
            column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;

        text-align: center;
    }

    .hero-trust {
        gap: 25px;
    }

    .hero-visual-card {
        padding:
            55px 28px 30px;
    }

    .section-heading h2,
    .about-content h2,
    .areas-content h2,
    .contact-intro h2 {
        font-size: 30px;
    }

    .about-image img {
        height: 360px;
    }


    /* REVIEW CAROUSEL */

    .review-carousel {
        display: block;

        position: relative;
    }

    .review-slide {
        padding:
            42px 28px;
    }

    .review-slide blockquote {
        font-size: 17px;
    }

    .review-arrow {
        position: absolute;

        top: 50%;

        transform:
            translateY(-50%);

        z-index: 10;

        width: 42px;
        height: 42px;
    }

    .review-arrow-left {
        left: -10px;
    }

    .review-arrow-right {
        right: -10px;
    }


    /* PASSES CAROUSEL */

    .passes-carousel {
        display: block;

        position: relative;

        max-width: 520px;
    }

    .passes-window {
        width: 100%;
    }

    .passes-arrow {
        position: absolute;

        top: 50%;

        transform:
            translateY(-50%);

        z-index: 20;

        width: 42px;
        height: 42px;
    }

    .passes-arrow-left {
        left: -10px;
    }

    .passes-arrow-right {
        right: -10px;
    }


    /* SOCIALS */

    .social-buttons {
        grid-template-columns:
            1fr;
    }


    /* FORM */

    .form-row {
        grid-template-columns:
            1fr;

        gap: 0;
    }

    .day-tabs {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .time-slots {
        grid-template-columns:
            repeat(2, 1fr);
    }


    /* MAP */

    .areas-map-card iframe {
        height: 280px;
    }


    /* FOOTER */

    .footer-inner {
        grid-template-columns:
            1fr;

        gap: 35px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction:
            column;

        align-items: flex-start;

        gap: 10px;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 450px) {

    .main-nav {
        height: 66px;

        grid-template-columns:
            1fr 126px 1fr;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .nav-logo {
        width: 116px;
        height: 116px;

        top: 6px;

        border-width: 4px;
    }

    .nav-button {
        font-size: 10px;

        padding: 9px;
    }

    .hero {
        padding-top: 92px;
    }

    .review-slide {
        padding:
            38px 24px;
    }

    .review-stars {
        font-size: 20px;
    }

    .review-slide blockquote {
        font-size: 16px;
    }

    .passes-carousel {
        max-width: 100%;
    }

    .pass-overlay {
        padding:
            45px 18px 16px;
    }

    .footer-brand {
        flex-direction:
            column;

        align-items: flex-start;
    }

    .footer-brand img {
        width: 82px;
        height: 82px;
    }

    .time-slots {
        grid-template-columns:
            1fr 1fr;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration:
            0.01ms !important;

        transition-duration:
            0.01ms !important;

        scroll-behavior:
            auto !important;
    }

    .scroll-reveal,
    .hero-content-animate,
    .hero-card-animate,
    .menu-animate,
    .quote-animate {
        opacity:
            1 !important;

        transform:
            none !important;
    }

    .nav-logo-animate {
        opacity:
            1 !important;

        transform:
            translateX(-50%) scale(1) !important;
    }

}