/* =========================================================
   GEMSTONE CONSULTANTS
   MAIN STYLESHEET
========================================================= */


/* =========================================================
   1. ROOT VARIABLES
========================================================= */

:root {
    --primary: #063b82;
    --primary-dark: #032b62;
    --primary-light: #1769c2;

    --blue-bg: #edf6ff;
    --blue-bg-dark: #dceeff;

    --text-dark: #082c5c;
    --text: #26384d;
    --text-light: #667085;

    --white: #ffffff;
    --border: #e2eaf3;

    --shadow: 0 8px 25px rgba(9, 54, 103, 0.08);
    --shadow-hover: 0 14px 35px rgba(9, 54, 103, 0.14);

    --radius: 12px;
    --container: 1200px;

    --heading-font: "Playfair Display", Georgia, serif;
    --body-font: "DM Sans", Arial, sans-serif;
}


/* =========================================================
   2. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}

body {
    font-family: var(--body-font);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}

ul {
    list-style: none;
}

.container {
    width: min(100% - 70px, var(--container));
    margin-inline: auto;
}


/* =========================================================
   3. HEADER / NAVBAR
========================================================= */

.site-header {
    width: 100%;
    height: 68px;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.navbar {
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    width: 80px;
    flex-shrink: 0;
}

.logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    margin-left: auto;
}

.nav-link {
    position: relative;
    font-size: 13px;
    font-weight: 600;
    color: #152e4b;
    padding: 24px 0;
    transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 11px;
    width: 34px;
    height: 2px;
    margin: auto;
    background: var(--primary);
    border-radius: 10px;
}

.header-contact-btn {
    background: var(--primary-dark);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 17px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.header-contact-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.header-contact-btn i {
    font-size: 10px;
}







/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 8px;
    background: var(--blue-bg);
    color: var(--primary);
    font-size: 20px;
}

.mobile-nav {
    display: none;
}


/* =========================================================
   4. HERO SECTION
========================================================= */

.hero-section {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    margin: 0;
}   
.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0 60px 100px;
}

.hero-content h1 {
    color: var(--text-dark);
    font-family: var(--heading-font);
    font-size: clamp(42px, 4vw, 59px);
    line-height: 0.99;
    font-weight: 600;
    letter-spacing: -1.8px;
}

.hero-content h1 span {
    color: #0c65c5;
}

.hero-subtitle {
    margin-top: 14px;
    color: #213b59;
    font-size: 14px;
    font-weight: 500;
}

.hero-subtitle span {
    color: #6b88a8;
    margin: 0 5px;
}

.primary-btn {
    margin-top: 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 38px;
    padding: 9px 17px;

    background: var(--primary-dark);
    color: var(--white);

    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;

    border: none;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.primary-btn:hover {
    background: var(--primary);

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(4, 51, 105, 0.2);
}

.primary-btn i {
    font-size: 10px;
}

.hero-visual {
    position: absolute ;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    width: 100% ;
    height: 100% ;

    z-index: 1;
}

.hero-visual img {
    width: 100% ;
    height: 100% ;

    max-height: none ;

    object-fit: cover;
    object-position: center;

    
    

    display: block;
}

/* Keep text above image */
.hero-content {
    position: relative;
    z-index: 3;
}


/* =========================================================
   5. COMMON SECTION HEADING
========================================================= */

.section-heading {
    margin-bottom: 24px;
}

.section-heading.centered {
    text-align: center;
}

.section-heading h2,
.destination-heading h2 {
    font-family: var(--heading-font);
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.1;
}

.section-heading h2 {
    font-size: 31px;
}

.section-heading p {
    margin-top: 5px;
    font-size: 13px;
    color: #314a66;
}

.heading-decoration {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 14px;
    margin-bottom: 3px;
}

.heading-decoration span {
    width: 65px;
    height: 1px;
    background: #7995b2;
}

.heading-decoration i {
    color: var(--primary);
    font-size: 15px;
}


/* =========================================================
   6. SERVICES
========================================================= */

.services-section {
    padding: 25px 0 30px;
}

.section-light {
    background: var(--blue-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.service-card {
    min-height: 146px;

    background: var(--white);

    border: 1px solid #edf1f6;
    border-radius: 9px;

    box-shadow: 0 5px 15px rgba(17, 52, 86, 0.05);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 18px 12px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #edf7ff;
    color: #0968c9;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;

    margin-bottom: 9px;
}

.service-card h3 {
    color: #092e5f;

    font-size: 15px;
    line-height: 1.2;

    font-weight: 700;
}

.service-card p {
    color: #5d6977;

    font-size: 11.5px;
    line-height: 1.45;

    margin-top: 7px;
}


/* =========================================================
   7. STUDY DESTINATIONS
   UK / CANADA / USA / EUROPE
========================================================= */

.destinations-section {
    background: var(--white);

    padding: 28px 0 36px;
}

.destination-heading {
    margin-bottom: 18px;
}

.destination-heading h2 {
    font-size: 32px;
}

.destination-heading p {
    color: #36485d;

    font-size: 13px;

    margin-top: 2px;
}

.destinations-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}




.destination-card {
    border: 1px solid #e2e7ed;

    border-radius: 11px;

    overflow: hidden;

    background: var(--white);

    box-shadow: 0 3px 10px rgba(17, 50, 83, 0.04);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.destination-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-hover);
}

.destination-image {
    width: 100%;
    height: 96px;

    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.04);
}

.destination-content {
    padding: 10px 14px 13px;
}

.destination-content h3 {
    color: #083467;

    font-size: 14px;
    font-weight: 700;

    display: flex;
    align-items: center;

    gap: 7px;
}

.country-flag {
    font-size: 17px;
}

.destination-content ul {
    margin-top: 6px;
}

.destination-content li {
    position: relative;

    padding-left: 11px;

    margin-bottom: 2px;

    color: #4f6072;

    font-size: 10.5px;

    line-height: 1.4;
}

.destination-content li::before {
    content: "•";

    position: absolute;

    left: 0;

    color: var(--primary);
}

.destination-content p {
    color: #40556c;

    font-size: 11px;
    line-height: 1.45;

    margin-top: 8px;

    min-height: 47px;
}

.learn-more-btn {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    background: #eaf4ff;

    color: #083c79;

    font-size: 10.5px;

    font-weight: 700;

    padding: 6px 10px;

    border-radius: 5px;

    margin-top: 7px;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.learn-more-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.learn-more-btn i {
    font-size: 8px;
}


/* =========================================================
   8. LOAN SUPPORT
========================================================= */

.loan-section {
    padding: 0 0 30px;
}

.loan-container {
    min-height: 153px;

    background:
        linear-gradient(
            100deg,
            #edf7ff 0%,
            #d9edff 100%
        );

    border-radius: 10px;

    display: grid;

    grid-template-columns: 1.25fr 0.8fr 1.25fr;

    align-items: center;

    padding: 20px 42px;
}

.loan-intro {
    display: flex;
    align-items: center;

    gap: 20px;

    padding-right: 25px;

    border-right: 1px solid #bcd2e6;
}

.loan-icon {
    flex-shrink: 0;

    width: 78px;
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #086bcf;

    font-size: 50px;
}

.loan-intro h2 {
    color: #083667;

    font-family: var(--heading-font);

    font-size: 23px;

    line-height: 1.15;
}

.loan-intro p {
    color: #5a6d80;

    font-size: 11px;

    margin-top: 6px;
}

.loan-types {
    padding: 0 25px;

    display: flex;

    flex-direction: column;

    gap: 14px;
}

.loan-type {
    display: flex;
    align-items: center;

    gap: 8px;

    background: rgba(255, 255, 255, 0.35);

    border-radius: 8px;

    padding: 7px 10px;

    color: #123e70;

    font-size: 11px;

    font-weight: 600;
}

.loan-type-icon {
    width: 25px;
    height: 25px;

    border-radius: 6px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #dceeff;

    color: #0b559f;

    font-size: 10px;
}

.loan-benefits {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    padding-left: 20px;
}

.loan-benefits ul {
    list-style: none;
}

.loan-benefits li {
    position: relative;

    padding-left: 12px;

    color: #273f58;

    font-size: 10.5px;

    line-height: 1.5;
}

.loan-benefits li::before {
    content: "•";

    position: absolute;

    left: 0;

    color: #123f72;
}


/* =========================================================
   9. CTA SECTION
========================================================= */

.cta-section {
    padding: 0 0 29px;
}

.cta-container {
    min-height: 99px;

    border-radius: 12px;

    background:
        linear-gradient(
            100deg,
            #06386f,
            #034c91 70%,
            #07386f
        );

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 20px 36px;

    position: relative;

    overflow: hidden;
}

.cta-container::after {
    content: "";

    position: absolute;

    width: 380px;
    height: 180px;

    right: -80px;
    bottom: -100px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 0 0 30px rgba(255, 255, 255, 0.02),
        0 0 0 60px rgba(255, 255, 255, 0.015);
}

.cta-content {
    position: relative;

    z-index: 2;
}

.cta-content h2 {
    color: var(--white);

    font-family: var(--heading-font);

    font-size: 25px;

    line-height: 1.2;
}

.cta-content p {
    color: #e1ecf8;

    font-size: 12px;

    margin-top: 3px;
}

.cta-btn {
    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 12px 16px;

    border-radius: 7px;

    background: var(--white);

    color: #0a386c;

    font-size: 11px;

    font-weight: 700;

    white-space: nowrap;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.cta-btn i {
    font-size: 11px;
}


/* =========================================================
   10. ABOUT SECTION
========================================================= */

.about-section {
    padding: 65px 0;

    background: #f7fbff;
}

.about-content {
    max-width: 750px;

    margin: auto;

    text-align: center;
}

.about-content h2 {
    font-family: var(--heading-font);

    color: var(--text-dark);

    font-size: 31px;
}

.about-content p {
    margin-top: 14px;

    color: #536579;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   11. FOOTER
========================================================= */

.site-footer {
    background: #032e67;

    color: var(--white);
}

.footer-grid {
    min-height: 195px;

    display: grid;

    grid-template-columns:
        1.1fr
        1.45fr
        1.3fr
        1.1fr;

    align-items: center;

    gap: 30px;

    padding: 28px 0 23px;
}

.footer-brand {
    display: flex;

    align-items: center;

    justify-content: center;
}



.footer-logo {
    width: 145px;

    
}

.footer-logo img {
    width: 100%;


}

.footer-column {
    min-height: 120px;

    padding-left: 25px;

    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-column h3 {
    color: var(--white);

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 10px;
}

.footer-column ul {
    display: flex;

    flex-direction: column;

    gap: 6px;
}

.footer-column li {
    color: #d9e6f4;

    font-size: 10.5px;

    display: flex;

    align-items: flex-start;

    gap: 9px;

    line-height: 1.45;
}

.footer-column li i {
    width: 13px;

    margin-top: 3px;

    color: #d9e8fa;
}

.footer-column a {
    transition: color 0.25s ease;
}

.footer-column a:hover {
    color: #9ecbff;
}

.social-links {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 14px;
}

.social-links a {
    width: 27px;
    height: 27px;

    border: 1px solid rgba(255, 255, 255, 0.7);

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 11px;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.social-links a:hover {
    background: var(--white);

    color: var(--primary);

    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom .container {
    min-height: 36px;

    display: flex;

    justify-content: center;

    align-items: center;
}

.footer-bottom p {
    color: #c5d6e9;

    font-size: 9.5px;

    text-align: center;
}


















/* =========================================================
   12. LARGE TABLETS
========================================================= */

@media (max-width: 1100px) {

    .container {
        width: min(100% - 50px, var(--container));
    }

    .desktop-nav {
        gap: 22px;
    }

    .nav-link {
        font-size: 12px;
    }

    .hero-container {
        grid-template-columns: 48% 52%;
    }

    .hero-content h1 {
        font-size: clamp(38px, 4.4vw, 52px);
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .loan-container {
        padding: 20px 25px;

        grid-template-columns:
            1.15fr
            0.8fr
            1.15fr;
    }

    .loan-intro {
        gap: 10px;
    }

    .loan-types {
        padding: 0 15px;
    }

    .loan-benefits {
        padding-left: 10px;
        gap: 10px;
    }
}


/* =========================================================
   13. TABLET
========================================================= */

@media (max-width: 900px) {

    .site-header,
    .navbar {
        height: 65px;
    }

    .desktop-nav,
    .header-contact-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav {
        position: absolute;

        top: 65px;
        left: 0;

        width: 100%;

        background: var(--white);

        padding: 10px 25px 18px;

        border-top: 1px solid #edf1f5;

        box-shadow:
            0 12px 25px rgba(0, 0, 0, 0.08);

        display: flex;

        flex-direction: column;

        gap: 2px;

        opacity: 0;

        visibility: hidden;

        transform: translateY(-10px);

        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;

        z-index: 1000;
    }

    .mobile-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-nav-link {
        padding: 12px 5px;

        border-bottom: 1px solid #edf1f5;

        color: #173657;

        font-size: 14px;

        font-weight: 600;
    }

    .mobile-nav-contact {
        display: inline-flex;

        align-items: center;
        justify-content: center;

        gap: 8px;

        margin-top: 10px;

        padding: 11px;

        border-radius: 6px;

        background: var(--primary-dark);

        color: var(--white);

        font-size: 13px;

        font-weight: 600;
    }


    /* HERO - TABLET */

    .hero-section,
    .hero-container {
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 55px 0 35px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: clamp(40px, 7vw, 58px);
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-visual {
        height: 280px;
    }

    .hero-visual img {
        width: 100%;
        height: 100%;

        max-height: 280px;

        object-fit: cover;
        object-position: center;
    }


    /* SERVICES */

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* DESTINATIONS */

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .destination-image {
        height: 110px;
    }


    /* LOAN */

    .loan-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .loan-intro {
        border-right: none;

        border-bottom: 1px solid #bdd2e7;

        padding: 0 0 15px;

        grid-column: 1 / -1;
    }

    .loan-types {
        padding: 0;
    }

    .loan-benefits {
        padding: 0;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 0;
    }

    .footer-brand {
        justify-content: flex-start;
    }

    .footer-column:nth-child(3),
    .footer-column:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.15);

        padding-top: 20px;
    }
}


/* =========================================================
   14. MOBILE
========================================================= */

@media (max-width: 600px) {

    .container {
        width: min(100% - 30px, var(--container));
    }


    /* =========================
       MOBILE HEADER
    ========================= */

    .site-header,
    .navbar {
        height: 62px;
    }

    .logo {
        width: 135px;
        height: 55px;

        display: flex;
        align-items: center;
    }

    .logo img {
        width: 100%;
        height: 100%;

        max-height: 55px;

        object-fit: contain;
        object-position: left center;
    }

    .mobile-nav {
        top: 62px;
        padding-inline: 15px;
    }


    /* =========================
       MOBILE HERO
    ========================= */

    .hero-section {
        position: relative;

        /* Force hero to use the complete mobile screen width */
        width: 100%;
        max-width: 100%;

        min-height: 460px;

        overflow: hidden;
    }

    .hero-container {
        position: relative;

        /* IMPORTANT: override the .container mobile width */
        width: 100% !important;
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;

        min-height: 460px;

        display: flex;

        align-items: center;
        justify-content: center;

        text-align: center;
    }


    /* HERO BACKGROUND IMAGE */

    .hero-visual {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

        z-index: 1;

        overflow: hidden;
    }

    .hero-visual img {
        position: absolute;
        inset: 0;

        width: 100%;
        height: 100%;

        max-width: none;
        max-height: none;

        display: block;

        object-fit: cover;

        object-position: center;

        /* Blur the image while keeping all edges covered */
        filter: blur(5px);

        /* Extra scale prevents blank/white edges caused by blur */
        transform: scale(1.08);
    }


    /* HERO OVERLAY */

    .hero-visual::after {
        content: "";

        position: absolute;

        inset: 0;

        background:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.72),
                rgba(230, 240, 248, 0.60)
            );

        z-index: 2;
    }


    /* HERO CONTENT */

    .hero-content {
        position: relative;

        z-index: 5;

        width: 100%;

        padding: 50px 15px 40px;

        text-align: center;
    }

    .hero-content h1 {
        font-size: clamp(36px, 10vw, 46px);

        line-height: 1.08;

        letter-spacing: -1px;

        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 11px;

        line-height: 1.6;

        max-width: 300px;

        margin-inline: auto;

        margin-bottom: 22px;
    }

    .hero-subtitle span {
        margin: 0 2px;
    }

    .primary-btn {
        min-height: 42px;

        padding: 11px 18px;

        font-size: 11px;

        position: relative;

        z-index: 6;
    }


    /* =========================
       COMMON HEADINGS
    ========================= */

    .section-heading h2,
    .destination-heading h2 {
        font-size: 27px;
    }

    .section-heading p,
    .destination-heading p {
        font-size: 11px;
    }

    .heading-decoration span {
        width: 40px;
    }


    /* =========================
       SERVICES
    ========================= */

    .services-section {
        padding: 30px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-card {
        min-height: 145px;
    }


    /* =========================
       DESTINATIONS
    ========================= */

    .destinations-section {
        padding: 30px 0;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .destination-image {
        height: 150px;
    }

    .destination-content {
        padding: 13px 15px 15px;
    }

    .destination-content h3 {
        font-size: 15px;
    }

    .destination-content li,
    .destination-content p {
        font-size: 11px;
    }

    .learn-more-btn {
        font-size: 10px;
    }


    /* =========================
       LOAN
    ========================= */

    .loan-section {
        padding-bottom: 25px;
    }

    .loan-container {
        grid-template-columns: 1fr;

        padding: 22px 20px;

        gap: 20px;
    }

    .loan-intro {
        grid-column: auto;

        flex-direction: column;

        text-align: center;

        gap: 4px;

        padding-bottom: 18px;
    }

    .loan-icon {
        width: 55px;
        height: 55px;

        font-size: 37px;
    }

    .loan-intro h2 {
        font-size: 21px;
    }

    .loan-types {
        padding: 0;
    }

    .loan-benefits {
        grid-template-columns: 1fr;
        gap: 4px;
    }


    /* =========================
       CTA
    ========================= */

    .cta-section {
        padding-bottom: 25px;
    }

    .cta-container {
        min-height: auto;

        flex-direction: column;

        align-items: flex-start;

        padding: 24px 20px;

        gap: 18px;
    }

    .cta-content h2 {
        font-size: 23px;
    }

    .cta-content p {
        font-size: 11px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }


    /* =========================
       ABOUT
    ========================= */

    .about-section {
        padding: 45px 0;
    }

    .about-content h2 {
        font-size: 27px;
    }

    .about-content p {
        font-size: 12px;
    }


    /* =========================
       FOOTER
    ========================= */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 0;

        padding: 35px 0 20px;
    }

    .footer-brand {
        justify-content: center;

        padding-bottom: 25px;
    }

    .footer-column {
        min-height: auto;

        padding: 20px 0 0;

        border-left: none;

        border-top:
            1px solid rgba(255, 255, 255, 0.15);
    }

    .footer-column:nth-child(3),
    .footer-column:nth-child(4) {
        border-top:
            1px solid rgba(255, 255, 255, 0.15);

        padding-top: 20px;
    }

    .social-column {
        padding-bottom: 10px;
    }

    .footer-bottom .container {
        min-height: 42px;
    }

    .footer-bottom p {
        font-size: 8.5px;
    }
}


/* =========================================================
   15. SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .container {
        width: min(100% - 24px, var(--container));
    }


    /* SMALLER LOGO */

    .logo {
        width: 120px;
        height: 50px;
    }

    .logo img {
        max-height: 50px;
    }


    /* SMALL MOBILE HERO */

    .hero-section {
        min-height: 420px;
    }

    .hero-container {
        min-height: 420px;
    }

    .hero-content {
        padding: 40px 12px 35px;
    }

    .hero-content h1 {
        font-size: 34px;

        line-height: 1.08;
    }

    .hero-subtitle {
        font-size: 10px;

        max-width: 270px;
    }

    .primary-btn {
        min-height: 40px;

        padding: 10px 15px;

        font-size: 10px;
    }


    /* COMMON */

    .section-heading h2,
    .destination-heading h2 {
        font-size: 24px;
    }

    .cta-content h2 {
        font-size: 21px;
    }
}

/* =========================================================
   16. ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;

        animation-duration: 0.01ms !important;
    }
}