* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 95px;
    overflow-x: hidden;
}

section[id] {
    scroll-margin-top: 110px;
}

:root {
    --navy: #10213f;
    --green: #2f743f;
    --green-dark: #245b31;
    --soft-green: #f4f8f2;
    --yellow: #f2b93b;
    --pink: #efb7c7;
    --blue: #7ab8d9;
    --purple: #a48ad2;
    --cream: #fcfbf8;
    --text: #5b6678;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--cream);
    color: var(--navy);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
}

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

/* Header */

.site-header {
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 6px 0;
    border-bottom: 1px solid rgba(16,33,63,0.05);
}

.navbar {
    padding: 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.site-logo {
    height: 70px;
    width: auto;
    display: block;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: var(--navy);
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--green);
}

.navbar-toggler {
    border: none;
    padding: 6px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.book-btn {
    background: var(--green);
    color: white;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transition: transform 0.2s ease;
    border: none;
    cursor: pointer;
    max-width: 100%;
}

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

/* Hero */

.hero {
    padding: 70px 0 50px;
}

.eyebrow {
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 18px;
}

.center {
    text-align: center;
}

.hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -3px;
    margin-bottom: 24px;
}

.underline {
    width: 110px;
    height: 6px;
    background: #d9ead6;
    border-radius: 999px;
    margin-bottom: 28px;
}

.intro {
    font-size: 18px;
    line-height: 1.8;
    max-width: 580px;
    color: var(--text);
    margin-bottom: 36px;
}

.green-text {
    color: var(--green);
}

.yellow-text {
    color: var(--yellow);
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.green-btn {
    background: var(--green);
    color: white;
    padding: 18px 30px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s ease;
    border: none;
    cursor: pointer;
}

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

.plain-btn {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-img {
    max-height: 560px;
    object-fit: contain;
}

/* Features */

.feature-section {
    padding: 50px 0 90px;
}

.feature-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 42px;
}

.feature-heading h2 {
    font-size: clamp(32px, 5vw, 42px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -2px;
}

.feature {
    position: relative;
    overflow: visible;
    border-radius: 22px;
    padding: 30px 28px;
    min-height: 260px;
    background: #ffffff;
    border: 1px solid rgba(16,33,63,0.05);
    animation: featurePulseGlow 2.4s ease-in-out infinite;
    transition: transform .25s ease;
    text-align: center;
}

@keyframes featurePulseGlow {
    0%, 100% {
        box-shadow:
            0 12px 28px rgba(16,33,63,0.06),
            0 0 16px rgba(47,116,63,0.12);
        transform: scale(1);
    }

    50% {
        box-shadow:
            0 20px 42px rgba(16,33,63,0.12),
            0 0 55px rgba(47,116,63,0.35);
        transform: scale(1.018);
    }
}

.feature:hover {
    transform: translateY(-4px) scale(1.02);
}

.feature-icon {
    width: 62px;
    height: 58px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    font-size: 25px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    position: relative;
    box-shadow:
        0 8px 16px rgba(16,33,63,0.08),
        inset 0 -3px 0 rgba(16,33,63,0.06);
}

.feature-icon::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,0.65);
    top: 11px;
    left: 12px;
    transform: rotate(-18deg);
}

.feature-icon span {
    display: block;
    position: relative;
    z-index: 1;
    line-height: 1;
    transform: translateY(-1px);
}

.feature-icon.green {
    background: #dff1dc;
    color: #2f743f;
}

.feature-icon.yellow {
    background: #fff0c2;
    color: #a97600;
    font-size: 18px;
}

.feature-icon.blue {
    background: #dff0f8;
    color: #3e7f9f;
}

.feature-icon.pink {
    background: #fbe1ea;
    color: #b95b7a;
}

.feature h3 {
    font-size: 23px;
    line-height: 1.2;
    margin-bottom: 14px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.feature p {
    color: var(--text);
    line-height: 1.75;
    font-size: 15.5px;
}

/* Subjects */

.subjects-section {
    padding: 10px 0 90px;
    text-align: center;
}

.subjects-section h2 {
    font-size: clamp(32px, 5vw, 42px);
    margin-bottom: 42px;
    font-weight: 800;
    letter-spacing: -2px;
}

.subject-card {
    background: white;
    border-radius: 22px;
    padding: 32px 24px;
    border: 1px solid rgba(16,33,63,0.05);
    box-shadow:
        0 0 0 1px rgba(47,116,63,0.03),
        0 10px 24px rgba(16,33,63,0.05),
        0 0 30px rgba(47,116,63,0.08);
    transition: transform .2s ease, box-shadow .2s ease;
    text-align: center;
}

.subject-card:hover {
    transform: translateY(-4px);
}

.paint {
    width: 88px;
    height: 66px;
    margin: 0 auto 22px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 16px rgba(16,33,63,0.08),
        inset 0 -3px 0 rgba(16,33,63,0.06);
    isolation: isolate;
    color: inherit;
}

.paint::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.35), transparent 18%),
        radial-gradient(circle at 70% 60%, rgba(255,255,255,0.22), transparent 20%),
        radial-gradient(circle at 40% 80%, rgba(0,0,0,0.06), transparent 16%);
    opacity: 0.75;
    pointer-events: none;
    z-index: 0;
}

.paint::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 7px;
    border-radius: 999px;
    background: rgba(255,255,255,0.65);
    top: 12px;
    left: 14px;
    transform: rotate(-18deg);
    z-index: 0;
}

.green-bg {
    background: #e7f3e6;
    color: #4f9b58;
}

.blue-bg {
    background: #e5f4fb;
    color: #4b95ba;
}

.purple-bg {
    background: #efe7fa;
    color: #8663c2;
}

.pink-bg {
    background: #fde8f0;
    color: #d27493;
}

.yellow-bg {
    background: #fff2cf;
    color: #c99812;
}

.subject-card h3 {
    font-size: 21px;
    margin-bottom: 12px;
    font-weight: 800;
}

.subject-card p {
    line-height: 1.7;
    color: var(--text);
    font-size: 15px;
}

/* Why */

.why-section {
    padding: 70px 0 100px;
    background: var(--cream);
}

.why-card {
    background: #ffffff;
    color: var(--navy);
    padding: 46px;
    border-radius: 30px;
    border: 1px solid rgba(47,116,63,.12);
    box-shadow:
        0 14px 34px rgba(16,33,63,.06),
        0 0 30px rgba(47,116,63,.08);
}

.why-card h2 {
    font-size: clamp(32px, 4vw, 40px);
    line-height: 1.08;
    margin-bottom: 22px;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.why-card h2 .green-heading {
    color: var(--green);
}

.yellow-scribble {
    width: 110px;
    height: 5px;
    background: var(--yellow);
    border-radius: 999px;
    margin-bottom: 28px;
}

.why-card ul {
    list-style: none;
    margin-bottom: 32px;
    padding-left: 0;
}

.why-card li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(16,33,63,.08);
    font-size: 17px;
    color: var(--text);
}

.why-card li::before {
    content: "✓";
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #edf6eb;
    color: var(--green);
    display: grid;
    place-items: center;
    font-weight: 900;
    flex: 0 0 auto;
}

.why-bottom-note {
    display: flex;
    gap: 14px;
    align-items: center;
    color: var(--text);
    line-height: 1.4;
}

.why-bottom-note span {
    font-size: 28px;
}

.why-bottom-note strong {
    color: var(--green);
}

.desk-card {
    min-height: 500px;
    margin: 0;
}

.desk-card img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    border-radius: 30px;
    display: block;
    box-shadow:
        0 14px 34px rgba(16,33,63,.08),
        0 0 30px rgba(47,116,63,.08);
}

.testimonial {
    background: white;
    border-radius: 30px;
    padding: 46px;
    border: 1px solid rgba(47,116,63,.12);
    box-shadow:
        0 14px 34px rgba(16,33,63,.06),
        0 0 30px rgba(47,116,63,.08);
}

.review-slider {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.quote {
    font-size: 78px;
    color: var(--green);
    line-height: .8;
    margin-bottom: 14px;
}

.review-label {
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 18px;
}

.review {
    position: absolute;
    left: 46px;
    right: 46px;
    top: 155px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .7s ease, transform .7s ease;
    pointer-events: none;
}

.review.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.review p {
    line-height: 1.9;
    margin-bottom: 22px;
    color: var(--text);
    font-size: 17px;
}

.stars {
    color: var(--yellow);
    font-size: 26px;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.review strong {
    display: inline-block;
    font-size: 20px;
    margin-right: 8px;
    color: var(--navy);
}

.review span {
    color: var(--text);
    font-size: 16px;
}

.dots {
    position: absolute;
    bottom: 34px;
    left: 46px;
    right: 46px;
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.dots i {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #d6dce5;
    display: block;
    cursor: pointer;
}

.dots .active-dot {
    background: var(--green);
}

/* Areas */

.areas-section {
    padding: 20px 0 70px;
    text-align: center;
}

.areas-section h2 {
    font-size: clamp(32px, 5vw, 42px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 22px;
}

/* CTA */

.cta-section {
    padding: 90px 0 70px;
}

.cta-image-bg {
    min-height: 750px;
    border-radius: 38px;
    overflow: hidden;
    position: relative;
    background-image: url("../images/cta-bg.a0ffcc5bc258.webp");
    background-size: cover;
    background-position: center;
    box-shadow: 0 25px 70px rgba(0,0,0,.16);
}

.cta-image-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(16,33,63,.72),
        rgba(16,33,63,.38),
        rgba(16,33,63,.08)
    );
    z-index: 1;
}

.cta-overlay-content {
    position: absolute;
    left: 72px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 650px;
    color: #fff;
    z-index: 2;
}

.cta-kicker {
    color: var(--yellow);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .9rem;
    margin-bottom: 20px;
}

.cta-overlay-content h2 {
    color: #fff;
    font-size: clamp(2.6rem, 5vw, 5rem);
    line-height: .95;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.cta-yellow-line {
    width: 110px;
    height: 6px;
    background: var(--yellow);
    border-radius: 999px;
    margin-bottom: 28px;
}

.cta-overlay-content p {
    font-size: 1.18rem;
    line-height: 1.8;
    margin-bottom: 36px;
    color: rgba(255,255,255,.95);
    max-width: 610px;
}

.cta-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--yellow);
    color: var(--navy);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.08rem;
    padding: 22px 34px;
    border-radius: 22px;
    box-shadow: 0 14px 30px rgba(0,0,0,.18);
    transition: .25s ease;
    border: none;
    cursor: pointer;
}

.cta-main-btn:hover {
    background: #ffd85e;
    color: var(--navy);
    transform: translateY(-3px);
}

.cta-checks {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    color: #fff;
    font-weight: 700;
}

/* Footer */

.footer {
    background: white;
    padding: 60px 0;
    border-top: 1px solid rgba(16,33,63,0.05);
}

.footer h4 {
    margin-bottom: 18px;
    font-weight: 800;
}

.footer p,
.footer a {
    line-height: 1.8;
    color: var(--text);
    font-size: 15px;
}

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

.footer-brand {
    display: inline-block;
    line-height: 0;
    margin-top: -28px;
    margin-bottom: -10px;
    padding: 0;
}

.footer-logo {
    height: 160px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer .col-lg-4 p {
    margin-top: 0;
}

.footer-badge {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px dashed #bfdcc0;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--green);
    line-height: 1.6;
    font-weight: 600;
    font-size: 15px;
}

.copyright {
    background: var(--navy);
    color: white;
    padding: 14px 0;
    font-size: 13px;
}

.copy-grid {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

/* Booking Modal */

.modern-booking-modal {
    max-width: 620px;
}

.booking-modal-content {
    border: none;
    border-radius: 34px;
    overflow: hidden;
    background: #fffdf8;
    box-shadow:
        0 35px 100px rgba(16,33,63,.38),
        0 0 0 1px rgba(255,255,255,.5);
}

.booking-modal-header {
    position: relative;
    border: none;
    padding: 34px 36px 28px;
    color: white;
    background:
        radial-gradient(circle at 15% 15%, rgba(242,185,59,.45), transparent 22%),
        linear-gradient(135deg, #3f8f50 0%, #2f743f 100%);
}

.booking-modal-header::after {
    content: "";
    position: absolute;
    left: 36px;
    bottom: 0;
    width: 96px;
    height: 6px;
    border-radius: 999px;
    background: var(--yellow);
}

.booking-title-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 0;
}

.booking-title-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.booking-title-icon.logo-icon {
    width: 120px;
    height: 70px;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    overflow: hidden;
}

.booking-title-icon.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transform: scale(1.9);
    transform-origin: center;
}

.booking-modal-header h5 {
    font-size: 30px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1px;
    margin: 0;
}

.booking-modal-header small {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    color: rgba(255,255,255,.78);
    font-weight: 600;
}

.booking-modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: .9;
    transform: scale(1.1);
    flex: 0 0 auto;
}

.booking-modal-body {
    padding: 34px 36px 36px;
    background:
        radial-gradient(circle at top right, rgba(242,185,59,.14), transparent 24%),
        linear-gradient(180deg, #fffaf0 0%, #ffffff 38%);
}

.booking-intro {
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.booking-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.booking-benefits span {
    background: #edf6eb;
    color: var(--green);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 800;
}

.booking-field {
    position: relative;
    margin-bottom: 14px;
}

.booking-field .field-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--green);
    font-size: 18px;
    z-index: 2;
}

.booking-field.textarea-field .field-icon {
    top: 24px;
    transform: none;
}

.booking-modal-body .form-control {
    border-radius: 20px;
    padding: 17px 18px 17px 50px;
    border: 1px solid rgba(16,33,63,.12);
    background: rgba(255,255,255,.82);
    font-size: 16px;
    color: var(--navy);
    box-shadow: 0 8px 20px rgba(16,33,63,.035);
}

.booking-modal-body textarea.form-control {
    min-height: 140px;
    resize: vertical;
    padding-top: 18px;
}

.booking-modal-body .form-control:focus {
    border-color: var(--green);
    background: white;
    box-shadow:
        0 0 0 4px rgba(47,116,63,.11),
        0 12px 26px rgba(16,33,63,.07);
}

.modal-submit-btn {
    margin-top: 8px;
    background: linear-gradient(135deg, #f2b93b 0%, #ffd85e 100%);
    color: var(--navy);
    border: none;
    padding: 19px 28px;
    border-radius: 999px;
    font-weight: 900;
    width: 100%;
    box-shadow: 0 16px 34px rgba(242,185,59,.36);
    transition: .22s ease;
    cursor: pointer;
}

.modal-submit-btn:hover {
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(242,185,59,.45);
}

.booking-privacy {
    text-align: center;
    margin: 14px 0 0;
    color: var(--text);
    font-size: 12.5px;
}

/* Animations */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */

@media(max-width:1200px) {
    .why-card,
    .testimonial {
        padding: 36px 30px;
    }

    .review {
        left: 30px;
        right: 30px;
    }

    .dots {
        left: 30px;
        right: 30px;
    }
}

@media(max-width:1100px) {
    .desk-card {
        min-height: 360px;
    }
}

@media(max-width:991px) {
    html {
        scroll-padding-top: 88px;
    }

    section[id] {
        scroll-margin-top: 88px;
    }

    .navbar-collapse {
        padding: 18px 0 16px;
    }

    .navbar-nav {
        gap: 6px;
        align-items: flex-start !important;
    }

    .navbar-nav .nav-link {
        padding: 10px 0;
    }

    .book-btn {
        width: 100%;
        max-width: 320px;
    }

    .hero {
        padding: 54px 0 44px;
        text-align: center;
    }

    .hero .underline {
        margin-left: auto;
        margin-right: auto;
    }

    .intro {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-img {
        max-height: 430px;
    }

    .why-section {
        padding: 50px 0 80px;
    }

    .desk-card {
        min-height: 420px;
    }

    .review-slider {
        min-height: 430px;
    }

    .review {
        top: 140px;
    }

    .areas-section {
        padding: 10px 0 58px;
    }

    .cta-image-bg {
        min-height: 650px;
    }

    .cta-overlay-content {
        left: 46px;
        right: 46px;
        max-width: 560px;
    }

    .footer-brand {
        margin-top: 0;
        margin-bottom: 0;
    }
}

@media(max-width:768px) {
    html {
        scroll-padding-top: 82px;
    }

    section[id] {
        scroll-margin-top: 82px;
    }

    .site-logo {
        height: 55px;
    }

    .feature-section,
    .subjects-section {
        padding-bottom: 70px;
    }

    .feature {
        min-height: auto;
        animation: none;
    }

    .footer-logo {
        height: 130px;
    }

    .footer-brand {
        margin-top: -8px;
        margin-bottom: -2px;
    }

    .modern-booking-modal {
        margin: 14px;
    }

    .booking-modal-header {
        padding: 24px 20px 24px;
        align-items: flex-start;
    }

    .booking-modal-header::after {
        left: 24px;
    }

    .booking-title-wrap {
        gap: 12px;
        padding-right: 4px;
    }

    .booking-title-icon.logo-icon {
        width: 84px;
        height: 50px;
    }

    .booking-title-icon.logo-icon img {
        transform: scale(1.85);
    }

    .booking-modal-header h5 {
        font-size: 23px;
    }

    .booking-modal-header small {
        font-size: 13px;
    }

    .booking-modal-body {
        padding: 26px 22px 24px;
    }

    .booking-benefits span {
        font-size: 12px;
    }
}

@media(max-width:700px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .site-header {
        padding: 6px 0;
    }

    .site-logo {
        height: 46px;
    }

    .hero {
        padding: 42px 0 36px;
    }

    .hero h1 {
        font-size: clamp(39px, 12vw, 52px);
        letter-spacing: -2px;
    }

    .intro {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 28px;
    }

    .hero-buttons {
        width: 100%;
    }

    .green-btn,
    .plain-btn {
        width: 100%;
        min-height: 54px;
        text-align: center;
    }

    .hero-img {
        max-height: 360px;
    }

    .eyebrow {
        letter-spacing: 2px;
        font-size: 11px;
    }

    .feature-heading h2,
    .subjects-section h2,
    .why-card h2,
    .areas-section h2 {
        font-size: 32px;
        letter-spacing: -1.3px;
    }

    .feature-section {
        padding: 38px 0 64px;
    }

    .subjects-section {
        padding: 0 0 64px;
    }

    .subject-card,
    .feature {
        padding: 28px 22px;
    }

    .why-section {
        padding: 48px 0 68px;
    }

    .why-card {
        padding: 32px 24px;
        border-radius: 24px;
    }

    .why-card li {
        font-size: 15.5px;
    }

    .why-bottom-note {
        align-items: flex-start;
    }

    .desk-card {
        height: 280px;
        min-height: 280px;
    }

    .desk-card img {
        min-height: 280px;
        border-radius: 24px;
    }

    .testimonial {
        padding: 32px 24px;
        border-radius: 24px;
    }

    .review-slider {
        min-height: 500px;
    }

    .quote {
        font-size: 64px;
    }

    .review {
        left: 24px;
        right: 24px;
        top: 130px;
    }

    .review p {
        font-size: 15.5px;
        line-height: 1.75;
    }

    .review strong {
        font-size: 18px;
    }

    .review span {
        display: block;
        margin-top: 4px;
        font-size: 14px;
    }

    .stars {
        font-size: 22px;
    }

    .dots {
        left: 24px;
        right: 24px;
        bottom: 24px;
    }

    .areas-section {
        padding: 0 0 46px;
    }

    .cta-section {
        padding: 56px 0;
    }

    .cta-image-bg {
        min-height: 680px;
        border-radius: 26px;
        background-position: 64% center;
    }

    .cta-image-bg::before {
        background: rgba(16,33,63,.66);
    }

    .cta-overlay-content {
        left: 24px;
        right: 24px;
        top: 50%;
        max-width: none;
    }

    .cta-overlay-content h2 {
        font-size: clamp(2.3rem, 11vw, 3rem);
        letter-spacing: -1px;
        line-height: 1;
    }

    .cta-overlay-content p {
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 28px;
    }

    .cta-main-btn {
        width: 100%;
        text-align: center;
        padding: 18px 20px;
        font-size: 1rem;
    }

    .cta-checks {
        flex-direction: column;
        gap: 12px;
        margin-top: 28px;
    }

    .footer {
        padding: 44px 0;
        text-align: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-badge {
        margin: 8px auto 0;
    }

    .copy-grid {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media(max-width:480px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .green-btn,
    .plain-btn,
    .book-btn {
        font-size: 14px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .feature-heading {
        margin-bottom: 30px;
    }

    .feature-heading h2,
    .subjects-section h2,
    .why-card h2,
    .areas-section h2 {
        font-size: 29px;
    }

    .paint {
        width: 78px;
        height: 60px;
    }

    .why-card {
        padding: 28px 20px;
    }

    .review-slider {
        min-height: 540px;
    }

    .booking-modal-header {
        padding: 22px 16px;
    }

    .booking-title-icon.logo-icon {
        width: 68px;
        height: 44px;
    }

    .booking-modal-header h5 {
        font-size: 20px;
    }

    .booking-modal-header small {
        font-size: 12px;
    }

    .booking-modal-body {
        padding: 22px 16px;
    }

    .booking-modal-body .form-control {
        font-size: 15px;
        padding: 15px 16px 15px 46px;
    }

    .modal-submit-btn {
        padding: 17px 20px;
    }

    .cta-image-bg {
        min-height: 640px;
    }

    .cta-overlay-content {
        left: 20px;
        right: 20px;
    }

    .cta-overlay-content h2 {
        font-size: 2.15rem;
    }
}

@media(max-width:380px) {
    .hero h1 {
        font-size: 36px;
    }

    .review-slider {
        min-height: 585px;
    }

    .cta-image-bg {
        min-height: 680px;
    }

    .booking-title-icon.logo-icon {
        display: none;
    }
}

@media(prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}