/* =========================================================
   AHUM ACADEMY
   PREMIUM WEBSITE THEME

   COLORS:
   Forest Green
   Gold
   Warm Ivory
   White
========================================================= */


/* =========================================================
   COLOR VARIABLES
========================================================= */

:root {

    --green-950: #02251a;

    --green-900: #033522;

    --green-800: #06452d;

    --green-700: #08613d;


    --gold-600: #b88a16;

    --gold: #d4af37;

    --gold-light: #f1d675;


    --ivory: #fbfaf5;

    --cream: #f5f1e5;


    --white: #ffffff;


    --text: #18251e;

    --muted: #68736c;


    --border: #e4dfd1;


    --container: 1180px;


    --shadow:
        0 20px 60px
        rgba(2, 37, 26, 0.10);
}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.7;

    -webkit-font-smoothing:
        antialiased;

}


img {

    display: block;

    max-width: 100%;

}


a {

    color: inherit;

    text-decoration: none;

}


button {

    font: inherit;

}


.container {

    width:
        min(
            var(--container),
            92%
        );

    margin-inline: auto;

}


/* =========================================================
   TOP CONTACT BAR
========================================================= */

.topbar {

    height: 42px;

    background:
        var(--green-950);

    color:
        rgba(255,255,255,.90);

    font-size: 12px;

}


.topbar-inner {

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.top-location,
.top-contact {

    display: flex;

    align-items: center;

    gap: 9px;

}


.top-icon {

    color:
        var(--gold-light);

    font-size: 10px;

}


.top-contact a {

    transition:
        color .2s ease;

}


.top-contact a:hover {

    color:
        var(--gold-light);

}


.divider {

    color:
        rgba(255,255,255,.35);

}


/* =========================================================
   MAIN HEADER
========================================================= */

.site-header {

    position: relative;

    z-index: 100;

    width: 100%;

    height: 96px;

    background:
        rgba(255,255,255,.98);

    border-bottom:
        1px solid
        rgba(3,53,34,.10);

    box-shadow:
        0 4px 18px
        rgba(2,37,26,.05);

}


.nav-inner {

    height: 96px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* =========================================================
   LOGO
========================================================= */

.site-logo {

    display: flex;

    align-items: center;

    flex-shrink: 0;

}


.site-logo img {

    width: 76px;

    height: 76px;

    object-fit: contain;

    border-radius: 50%;

}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.main-nav {

    display: flex;

    align-items: center;

    gap: 34px;

    margin-left: auto;

}


.main-nav a {

    position: relative;

    display: inline-flex;

    align-items: center;

    height: 96px;

    color:
        var(--green-900);

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;

    transition:
        color .2s ease;

}


.main-nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 25px;

    width: 0;

    height: 2px;

    background:
        var(--gold);

    transition:
        width .25s ease;

}


.main-nav a:hover {

    color:
        var(--gold-600);

}


.main-nav a:hover::after {

    width: 100%;

}


/* =========================================================
   HEADER BUTTON
========================================================= */

.header-btn {

    min-width: 142px;

    height: 46px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    padding: 0 20px;

    border-radius: 6px;

    background:
        var(--gold);

    color:
        var(--green-950);

    font-size: 12px;

    font-weight: 800;

    box-shadow:
        0 7px 20px
        rgba(184,138,22,.16);

    transition:
        transform .25s ease,
        background .25s ease;

}


.header-btn:hover {

    background:
        var(--gold-light);

    transform:
        translateY(-2px);

}


.header-btn span {

    font-size: 16px;

}


/* =========================================================
   MOBILE MENU
========================================================= */

.menu-toggle {

    display: none;

    width: 42px;

    height: 42px;

    border:
        1px solid
        var(--border);

    border-radius: 7px;

    background:
        var(--white);

    color:
        var(--green-900);

    cursor: pointer;

}


.mobile-nav {

    display: none;

}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    min-height: 730px;

    overflow: hidden;

    background:
        var(--green-900);

}


/* =========================================================
   HERO BACKGROUND
========================================================= */

.hero-background {

    position: absolute;

    inset: 0;

    background-image:
        url("images/hero-bg.png");

    background-size: cover;

    background-position:
        center center;

    background-repeat: no-repeat;

}


/* =========================================================
   HERO DARK OVERLAY
========================================================= */

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(2,37,26,.94) 0%,
            rgba(2,53,34,.80) 28%,
            rgba(2,53,34,.50) 52%,
            rgba(2,53,34,.20) 78%,
            rgba(2,53,34,.08) 100%
        );

}


/* =========================================================
   HERO BOTTOM GRADIENT
========================================================= */

.hero::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    height: 190px;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(2,37,26,.70),
            transparent
        );

}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {

    position: relative;

    z-index: 5;

    min-height: 730px;

    display: flex;

    align-items: center;

    padding-top: 45px;

    padding-bottom: 155px;

}


.hero-copy {

    width: 650px;

    max-width: 62%;

}


.eyebrow {

    display: flex;

    align-items: center;

    gap: 10px;

    color:
        var(--gold-light);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.eyebrow span {

    width: 38px;

    height: 1px;

    background:
        var(--gold);

}


.hero h1 {

    margin-top: 18px;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    color:
        var(--white);

    font-size:
        clamp(50px, 6vw, 78px);

    line-height: 1.02;

    font-weight: 600;

    letter-spacing: -1.8px;

}


.hero h1 em {

    color:
        var(--gold-light);

    font-style: normal;

}


.hero-copy > p {

    max-width: 600px;

    margin-top: 21px;

    color:
        rgba(255,255,255,.88);

    font-size: 16px;

    line-height: 1.65;

}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-actions {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 29px;

    flex-wrap: wrap;

}


.btn {

    min-height: 48px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    padding: 0 21px;

    border-radius: 6px;

    font-size: 13px;

    font-weight: 800;

    transition: .25s ease;

}


.btn-gold {

    background:
        var(--gold);

    color:
        var(--green-950);

    box-shadow:
        0 9px 24px
        rgba(0,0,0,.14);

}


.btn-gold:hover {

    background:
        var(--gold-light);

    transform:
        translateY(-2px);

}


.btn-outline {

    border:
        1px solid
        rgba(255,255,255,.62);

    background:
        rgba(255,255,255,.04);

    color:
        var(--white);

}


.btn-outline:hover {

    border-color:
        var(--gold-light);

    color:
        var(--gold-light);

    background:
        rgba(255,255,255,.08);

}


/* =========================================================
   HERO INFORMATION BAR
========================================================= */

.hero-info-wrap {

    position: absolute;

    z-index: 10;

    left: 50%;

    bottom: 24px;

    transform:
        translateX(-50%);

}


.hero-info {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    width: 100%;

    overflow: hidden;

    border:
        1px solid
        rgba(212,175,55,.70);

    border-radius: 12px;

    background:
        rgba(2,43,28,.91);

    backdrop-filter:
        blur(12px);

    box-shadow:
        0 16px 40px
        rgba(0,0,0,.20);

}


.hero-info-item {

    min-height: 78px;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 12px 15px;

    border-right:
        1px solid
        rgba(255,255,255,.12);

}


.hero-info-item:last-child {

    border-right: 0;

}


.info-icon {

    width: 40px;

    height: 40px;

    flex: 0 0 40px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(212,175,55,.70);

    border-radius: 50%;

    color:
        var(--gold-light);

    font-size: 11px;

    font-weight: 900;

}


.hero-info-item strong {

    display: block;

    color: #fff;

    font-size: 11px;

    line-height: 1.3;

}


.hero-info-item span {

    display: block;

    margin-top: 3px;

    color:
        rgba(255,255,255,.60);

    font-size: 10px;

    line-height: 1.3;

}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {

    padding: 95px 0;

}


.section-heading {

    max-width: 730px;

    margin:
        0 auto 50px;

    text-align: center;

}


.section-kicker {

    color:
        var(--gold-600);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.section-heading h2 {

    margin-top: 10px;

    color:
        var(--green-900);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 43px;

    line-height: 1.15;

}


.section-heading h2 em,
.about-content h2 em,
.faq-intro h2 em,
.contact-main h2 em {

    color:
        var(--gold-600);

    font-style: normal;

}


.section-heading p {

    margin-top: 14px;

    color:
        var(--muted);

    font-size: 15px;

}


.section-heading.light h2 {

    color:
        #fff;

}


.section-heading.light p {

    color:
        rgba(255,255,255,.68);

}


/* =========================================================
   COURSES
========================================================= */

.courses {

    background:
        var(--ivory);

}


.course-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

}


.course-card {

    position: relative;

    padding: 32px;

    overflow: hidden;

    border:
        1px solid
        var(--border);

    border-radius: 18px;

    background:
        #fff;

    box-shadow:
        0 8px 30px
        rgba(2,37,26,.04);

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.course-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        var(--shadow);

}


.course-card.featured {

    border-color:
        rgba(212,175,55,.50);

}


.course-number {

    position: absolute;

    top: 18px;

    right: 22px;

    color:
        rgba(6,69,45,.10);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 44px;

    font-weight: 700;

}


.course-icon {

    width: 58px;

    height: 58px;

    display: grid;

    place-items: center;

    border-radius: 15px;

    background:
        var(--green-900);

    color:
        var(--gold-light);

    font-size: 20px;

    font-weight: 800;

}


.course-card h3 {

    margin-top: 21px;

    color:
        var(--green-900);

    font-size: 21px;

}


.course-card p {

    margin-top: 9px;

    color:
        var(--muted);

    font-size: 14px;

}


.course-card > a {

    display: inline-block;

    margin-top: 20px;

    color:
        var(--green-800);

    font-size: 13px;

    font-weight: 800;

}


/* =========================================================
   ABOUT
========================================================= */

.about {

    background:
        #fff;

}


.about-grid {

    display: grid;

    grid-template-columns:
        .85fr 1.15fr;

    gap: 75px;

    align-items: center;

}


.about-visual {

    position: relative;

    min-height: 470px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 38px;

    overflow: hidden;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            var(--green-900),
            var(--green-950)
        );

    color:
        #fff;

}


.about-visual::before {

    content: "";

    position: absolute;

    width: 330px;

    height: 330px;

    right: -90px;

    top: -100px;

    border-radius: 50%;

    border:
        1px solid
        rgba(212,175,55,.35);

}


.about-visual::after {

    content: "A";

    position: absolute;

    right: -20px;

    bottom: -95px;

    color:
        rgba(255,255,255,.035);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 330px;

    line-height: 1;

}


.about-badge {

    position: relative;

    z-index: 2;

    color:
        var(--gold-light);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.about-quote {

    position: relative;

    z-index: 2;

}


.about-quote span {

    color:
        var(--gold);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 80px;

    line-height: .5;

}


.about-quote p {

    max-width: 330px;

    margin-top: 15px;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 35px;

    line-height: 1.15;

}


.about-bottom {

    position: relative;

    z-index: 2;

    color:
        rgba(255,255,255,.55);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.about-content h2 {

    margin-top: 10px;

    color:
        var(--green-900);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 45px;

    line-height: 1.1;

}


.about-content > p {

    max-width: 650px;

    margin-top: 18px;

    color:
        var(--muted);

    font-size: 15px;

}


.about-points {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;

    margin-top: 28px;

}


.about-points div {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px 14px;

    border:
        1px solid
        var(--border);

    border-radius: 10px;

    color:
        var(--green-900);

    font-size: 13px;

    font-weight: 600;

}


.about-points span {

    color:
        var(--gold-600);

    font-weight: 900;

}


/* =========================================================
   OUR APPROACH
========================================================= */

.approach {

    background:
        linear-gradient(
            135deg,
            var(--green-950),
            var(--green-800)
        );

    color:
        #fff;

}


.journey-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 0;

}


.journey-card {

    position: relative;

    padding: 20px 28px;

    text-align: center;

}


.journey-card:not(:last-child)::after {

    content: "";

    position: absolute;

    top: 40px;

    right: 0;

    width: 50%;

    height: 1px;

    background:
        rgba(212,175,55,.45);

}


.journey-card:not(:first-child)::before {

    content: "";

    position: absolute;

    top: 40px;

    left: 0;

    width: 50%;

    height: 1px;

    background:
        rgba(212,175,55,.45);

}


.journey-number {

    position: relative;

    z-index: 2;

    width: 58px;

    height: 58px;

    margin-inline: auto;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        var(--gold);

    color:
        var(--green-950);

    font-size: 13px;

    font-weight: 900;

}


.journey-card h3 {

    margin-top: 20px;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 24px;

}


.journey-card p {

    margin-top: 7px;

    color:
        rgba(255,255,255,.64);

    font-size: 13px;

}


/* =========================================================
   STUDENT SUPPORT
========================================================= */

.support {

    background:
        var(--cream);

}


.support-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 17px;

}


.support-card {

    padding: 28px;

    border:
        1px solid
        var(--border);

    border-radius: 17px;

    background:
        #fff;

    transition:
        .3s ease;

}


.support-card:hover {

    transform:
        translateY(-5px);

    box-shadow:
        var(--shadow);

}


.support-icon {

    width: 48px;

    height: 48px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background:
        var(--green-900);

    font-size: 21px;

}


.support-card h3 {

    margin-top: 18px;

    color:
        var(--green-900);

    font-size: 18px;

}


.support-card p {

    margin-top: 8px;

    color:
        var(--muted);

    font-size: 13px;

}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials {

    background:
        #fff;

}


.review-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.review-card {

    padding: 30px;

    border:
        1px solid
        var(--border);

    border-radius: 17px;

    background:
        var(--ivory);

}


.stars {

    color:
        var(--gold-600);

    letter-spacing: 3px;

    font-size: 13px;

}


.review-card p {

    margin-top: 17px;

    color:
        #4e5b53;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 17px;

    line-height: 1.55;

}


.review-card strong {

    display: block;

    margin-top: 18px;

    color:
        var(--green-900);

    font-size: 12px;

}


/* =========================================================
   FAQ
========================================================= */

.faq-section {

    background:
        var(--ivory);

}


.faq-layout {

    display: grid;

    grid-template-columns:
        .75fr 1.25fr;

    gap: 80px;

    align-items: start;

}


.faq-intro {

    position: sticky;

    top: 25px;

}


.faq-intro h2 {

    margin-top: 10px;

    color:
        var(--green-900);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 43px;

    line-height: 1.12;

}


.faq-intro p {

    margin: 16px 0 25px;

    color:
        var(--muted);

    font-size: 14px;

}


.faq-list details {

    padding: 21px 0;

    border-bottom:
        1px solid
        var(--border);

}


.faq-list summary {

    position: relative;

    padding-right: 35px;

    cursor: pointer;

    list-style: none;

    color:
        var(--green-900);

    font-size: 15px;

    font-weight: 800;

}


.faq-list summary::-webkit-details-marker {

    display: none;

}


.faq-list summary::after {

    content: "+";

    position: absolute;

    right: 0;

    top: -4px;

    color:
        var(--gold-600);

    font-size: 24px;

    font-weight: 400;

}


.faq-list details[open]
summary::after {

    content: "−";

}


.faq-list details p {

    max-width: 650px;

    padding-top: 12px;

    color:
        var(--muted);

    font-size: 14px;

}


/* =========================================================
   CONTACT
========================================================= */

.contact {

    background:
        #fff;

}


.contact-grid {

    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    gap: 65px;

    align-items: center;

}


.contact-main h2 {

    margin-top: 10px;

    color:
        var(--green-900);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 47px;

    line-height: 1.08;

}


.contact-main > p {

    max-width: 610px;

    margin-top: 16px;

    color:
        var(--muted);

    font-size: 15px;

}


.contact-details {

    margin-top: 32px;

}


.contact-detail {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding: 16px 0;

    border-bottom:
        1px solid
        var(--border);

}


.contact-detail-icon {

    width: 43px;

    height: 43px;

    flex: 0 0 43px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background:
        var(--cream);

}


.contact-detail strong {

    display: block;

    color:
        var(--green-900);

    font-size: 13px;

}


.contact-detail span {

    display: block;

    margin-top: 3px;

    color:
        var(--muted);

    font-size: 13px;

}


.contact-detail a:hover {

    color:
        var(--gold-600);

}


/* =========================================================
   CONTACT CARD
========================================================= */

.contact-card {

    padding: 42px;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            var(--green-900),
            var(--green-950)
        );

    color:
        #fff;

    box-shadow:
        0 25px 70px
        rgba(2,37,26,.18);

}


.mini-label {

    color:
        var(--gold-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.contact-card h3 {

    margin-top: 15px;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 34px;

    line-height: 1.15;

}


.contact-card-top p {

    margin-top: 12px;

    color:
        rgba(255,255,255,.68);

    font-size: 14px;

}


.contact-buttons {

    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-top: 27px;

}


.contact-buttons .btn {

    width: 100%;

}


.whatsapp-btn {

    min-height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.25);

    border-radius: 6px;

    color:
        #fff;

    font-size: 13px;

    font-weight: 800;

}


.whatsapp-btn:hover {

    border-color:
        var(--gold-light);

    color:
        var(--gold-light);

}


.contact-note {

    margin-top: 25px;

    color:
        rgba(255,255,255,.48);

    font-size: 11px;

    line-height: 1.6;

}


/* =========================================================
   FOOTER
========================================================= */

footer {

    padding:
        60px 0 25px;

    background:
        var(--green-950);

    color:
        #fff;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.4fr .6fr .9fr;

    gap: 50px;

}


.footer-brand {

    display: flex;

    align-items: flex-start;

    gap: 15px;

}


.footer-brand img {

    width: 64px;

    height: 64px;

    flex: 0 0 64px;

    border-radius: 50%;

    object-fit: contain;

}


.footer-brand h3 {

    font-size: 18px;

    letter-spacing: 1px;

}


.footer-brand p {

    max-width: 400px;

    margin-top: 7px;

    color:
        rgba(255,255,255,.55);

    font-size: 13px;

}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 8px;

}


.footer-column h4 {

    margin-bottom: 6px;

    color:
        var(--gold-light);

    font-size: 12px;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.footer-column a,
.footer-column span {

    color:
        rgba(255,255,255,.62);

    font-size: 13px;

}


.footer-column a:hover {

    color:
        var(--gold-light);

}


.footer-bottom {

    margin-top: 45px;

    padding-top: 20px;

    border-top:
        1px solid
        rgba(255,255,255,.10);

    color:
        rgba(255,255,255,.35);

    font-size: 11px;

}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {

    position: fixed;

    right: 22px;

    bottom: 22px;

    z-index: 500;

    width: 56px;

    height: 56px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        #25d366;

    color:
        #fff;

    font-size: 24px;

    box-shadow:
        0 12px 30px
        rgba(0,0,0,.20);

    transition:
        transform .25s ease;

}


.floating-whatsapp:hover {

    transform:
        translateY(-4px);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .main-nav {

        gap: 20px;

    }


    .main-nav a {

        font-size: 12px;

    }


    .site-logo img {

        width: 68px;

        height: 68px;

    }


    .hero-copy {

        max-width: 68%;

    }


    .hero-info-item {

        padding-inline: 10px;

    }


    .info-icon {

        width: 35px;

        height: 35px;

        flex-basis: 35px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 820px) {


    /* TOP BAR */

    .topbar {

        height: auto;

        padding: 8px 0;

    }


    .topbar-inner {

        height: auto;

        flex-direction: column;

        gap: 3px;

        text-align: center;

    }


    .top-contact {

        flex-wrap: wrap;

        justify-content: center;

    }



    /* HEADER */

    .site-header {

        height: 76px;

    }


    .nav-inner {

        height: 76px;

    }


    .site-logo img {

        width: 58px;

        height: 58px;

    }


    .main-nav,
    .header-btn {

        display: none;

    }


    .menu-toggle {

        display: grid;

        place-items: center;

    }


    /* MOBILE NAV */

    .mobile-nav {

        position: absolute;

        top: 76px;

        left: 0;

        width: 100%;

        display: flex;

        flex-direction: column;

        padding:
            10px 4% 18px;

        background:
            #fff;

        border-bottom:
            1px solid
            var(--border);

        box-shadow:
            0 15px 30px
            rgba(0,0,0,.08);

        transform:
            translateY(-15px);

        opacity: 0;

        visibility: hidden;

        transition:
            .25s ease;

    }


    .mobile-nav.active {

        transform:
            translateY(0);

        opacity: 1;

        visibility: visible;

    }


    .mobile-nav > a {

        padding: 12px 0;

        border-bottom:
            1px solid #eee;

        color:
            var(--green-900);

        font-size: 14px;

        font-weight: 700;

    }


    .mobile-nav .mobile-enquire {

        margin-top: 10px;

        padding: 13px;

        border: 0;

        border-radius: 6px;

        background:
            var(--gold);

        color:
            var(--green-950);

        text-align: center;

    }



    /* HERO */

    .hero {

        min-height: 850px;

    }


    .hero-background {

        background-position:
            65% center;

    }


    .hero-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(2,37,26,.88),
                rgba(2,53,34,.55)
            );

    }


    .hero-content {

        min-height: 850px;

        align-items: flex-start;

        padding-top: 105px;

        padding-bottom: 255px;

    }


    .hero-copy {

        width: 100%;

        max-width: 100%;

    }


    .hero h1 {

        font-size:
            clamp(43px, 10vw, 60px);

    }


    .hero-copy > p {

        font-size: 14px;

    }



    /* HERO INFO */

    .hero-info {

        grid-template-columns:
            1fr 1fr;

    }


    .hero-info-item {

        min-height: 65px;

        border-bottom:
            1px solid
            rgba(255,255,255,.12);

    }


    .hero-info-item:nth-child(2),
    .hero-info-item:nth-child(4) {

        border-right: 0;

    }


    .hero-info-item:last-child {

        grid-column:
            1 / -1;

        border-right: 0;

    }



    /* OTHER SECTIONS */

    .course-grid,
    .review-grid,
    .support-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .about-grid,
    .contact-grid,
    .faq-layout {

        grid-template-columns:
            1fr;

        gap: 45px;

    }


    .faq-intro {

        position: static;

    }


    .journey-grid {

        grid-template-columns:
            1fr 1fr;

        gap: 25px;

    }


    .journey-card::before,
    .journey-card::after {

        display: none;

    }


    .footer-grid {

        grid-template-columns:
            1fr 1fr;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 560px) {


    .top-location {

        font-size: 10px;

    }


    .top-contact {

        font-size: 10px;

    }


    .section {

        padding:
            70px 0;

    }


    .section-heading {

        margin-bottom:
            35px;

    }


    .section-heading h2 {

        font-size: 35px;

    }


    /* HERO */

    .hero {

        min-height: 900px;

    }


    .hero-content {

        min-height: 900px;

        padding-top: 92px;

        padding-bottom: 270px;

    }


    .hero h1 {

        font-size: 42px;

        letter-spacing: -.8px;

    }


    .hero-actions {

        flex-direction: column;

        align-items: stretch;

    }


    .hero-actions .btn {

        width: 100%;

    }


    /* INFO BAR */

    .hero-info {

        grid-template-columns:
            1fr 1fr;

    }


    .hero-info-item {

        padding: 8px;

        gap: 7px;

    }


    .info-icon {

        width: 31px;

        height: 31px;

        flex-basis: 31px;

        font-size: 9px;

    }


    .hero-info-item strong {

        font-size: 9px;

    }


    .hero-info-item span {

        font-size: 8px;

    }


    /* SECTIONS */

    .course-grid,
    .review-grid,
    .support-grid,
    .about-points,
    .journey-grid {

        grid-template-columns:
            1fr;

    }


    .about-visual {

        min-height: 380px;

        padding: 28px;

    }


    .about-quote p {

        font-size: 29px;

    }


    .about-content h2,
    .contact-main h2,
    .faq-intro h2 {

        font-size: 37px;

    }


    .contact-card {

        padding:
            30px 24px;

    }


    .contact-card h3 {

        font-size: 29px;

    }


    .footer-grid {

        grid-template-columns:
            1fr;

    }


    .floating-whatsapp {

        width: 52px;

        height: 52px;

        right: 16px;

        bottom: 16px;

    }

}