:root {
    --text-color: #ffffff;
    --primary-color: #e30613;
    --primary-color-hover: #f40515;
    --secondary-color: #0f766e;
    --dark-color: #19151b;
    --light-color: #f7f9fc;
    --rare-color: #2563eb;
    --orange-color: #e75d1d;

    --surface-color: #ffffff;
    --border-color: #dbe2ea;
    --focus-ring: rgba(37, 99, 235, 0.12);

    --h1-size: 3.2rem;
    --h3-size: 2rem;
    --small-font-size: 1.4rem;
    --p-size: 1.8rem;

    --side-padding: 1.2rem;
    --block-padding: 6rem;
    --text-letter-spacing: 0.5px;
    --btn-letter-spacing: 0.6px;
    --max-width: 95%;

    --radius-sm: 1.2rem;
    --radius-md: 1.8rem;
    --radius-pill: 2.5rem;

    --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 12px 30px rgba(15, 23, 42, 0.12);

    --input-height: 5.2rem;
    --transition-default: 0.2s ease;

    --nunito: nunito, "Gill Sans", sans-serif;
    --montserrat: montserrat, "Gill Sans", sans-serif;
}

html {
    font-size: 10px;
}

* {
    box-sizing: border-box;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: var(--surface-color);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}



h1,
h3 {
    font-family: nunito, "Gill Sans", sans-serif;
    font-weight: 500;
    font-size: var(--h1-size);
    text-transform: capitalize;
    color: var(--dark-color);
}

h3 {
    font-weight: 300;
    font-size: var(--h3-size);
    letter-spacing: var(--text-letter-spacing);
}
p,
label,
li,
input,
select,
textarea,
strong,
span {
    font-family: montserrat, "Gill Sans", sans-serif;
    font-weight: 400;
    font-size: var(--p-size);
    letter-spacing: var(--text-letter-spacing);
    color: var(--dark-color);
}
li {
    font-weight: 300;
}

label {
    font-size: var(--small-font-size);
}

@media screen and (min-width: 530px) and (max-width: 890px) {
    :root {
        --max-width: 700px;
    }
}

@media screen and (min-width: 891px) {
    :root {
        --max-width: 1160px;
    }
}

/* ==================================== */
/*                BASIC                 */
/* ==================================== */
.primaty-text {
    color: var(--primary-color);
}
.center {
    margin-inline: auto;
}
.flex {
    display: flex;
}
.flex-column {
    flex-direction: column;
}
.align-center {
    align-items: center;
}
.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.justify-around {
    justify-content: space-around;
}
.flex-wrap {
    flex-wrap: wrap;
}
.grid {
    display: grid;
}
.layout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.6rem;
    margin-top: 5.6rem;
}
.items-center {
    align-items: center;
}
.text-center {
    text-align: center;
}
.w-full {
    width: 100%;
}
.w-0 {
    width: 0px;
}
.container {
    max-width: var(--max-width);
    margin-inline: auto;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.initial-hide {
    opacity: 1;
}
/* ==================================== */
/*                LAYOUT                */
/* ==================================== */
.section {
    padding-block: var(--block-padding);
    width: 100%;
    overflow: hidden;
}
.section__inner {
    width: 100%;
}
.section__header {
    margin-bottom: 2.4rem;
    max-width: 72rem;
    margin-inline: auto;
}
.section__header--animation {
    animation: bringHeaderContent 0.8s linear forwards;
}
@keyframes bringHeaderContent {
    0% {
        opacity: 0;
        transform: translateY(100%) scale(105%);
    }
    40% {
        opacity: 1;
        transform: translateY(100%) scale(105%);
    }
    65% {
        opacity: 1;
        transform: translateY(100%) scale(100%);
    }
    85% {
        opacity: 1;
        transform: translateY(100%) scale(100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0%) scale(100%);
    }
}
.section__header--center {
    text-align: center;
}
.section__eyebrow,
.eyebrow {
    font-size: var(--small-font-size);
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 0.8rem;
}
.section__title {
    margin: 0;
}
.section__text {
    margin: 0;
    max-width: 74rem;
    margin: 1.2rem auto 0;
}
/* ==================================== */
/*              COMPONENTS              */
/* ==================================== */
.btn {
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-size: 1.6rem;
    font-family: montserrat, "Gill Sans", sans-serif;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: var(--btn-letter-spacing);
    text-transform: capitalize;
    width: fit-content;
    transition:
        background-color var(--transition-default),
        color var(--transition-default),
        border-color var(--transition-default);
}
.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color);
}
.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}
.card {
    padding: 2.4rem;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition:
        transform var(--transition-default),
        box-shadow var(--transition-default);
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.nolift:hover {
    transform: translateY(0px);
}
.btn-primary:hover {
    background-color: var(--primary-color-hover);
}
.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
}
.card__slider {
    min-width: 100%;
}
.card__track {
    gap: 1.25rem;
    will-change: transform;
    scroll-snap-type: inline mandatory;
    overflow: auto;
    padding: 3rem 2rem;
    scroll-padding-inline-start: 2rem;
    scrollbar-width: none;
}
.sliderCard {
    flex: 0 0 90%;
    scroll-snap-align: center;
}
.sliderCard_inner {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    width: 100%;
}
.cardSlider__controls {
    display: none;
    justify-content: center;
    gap: 0.875rem;
    margin-top: 1.5rem;
}
/* ==================================== */
/*               animation               */
/* ==================================== */
.translate-100-down {
    transform: translateY(100%) scale(120%);
}
.translate-right-1100px {
    transform: translateX(450px);
}
/* ==================================== */
/*                Menu                  */
/* ==================================== */
.site-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.35s ease;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-header.header--hidden {
    transform: translateY(-100%);
}

.site-header__inner {
    min-height: 8rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.site-header__logo {
    width: 90px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -43%);
}

.site-header__logo,
.site-nav__link,
.menu-toggle {
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.desktop-nav {
    display: none;
}

.site-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.4rem;
}

.site-nav__item {
    display: flex;
    align-items: center;
}

.site-nav__link {
    position: relative;
    min-height: 8rem;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
}

.site-nav__link::after,
.mobile-menu__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2.2rem;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after,
.mobile-menu__link:hover::after,
.mobile-menu__link:focus-visible::after {
    transform: scaleX(1);
}

.site-nav__link.active::after,
.mobile-menu__link.active::after {
    transform: scaleX(1);
}

.menu-toggle {
    width: 4.8rem;
    height: 4.8rem;
    border: none;
    background: transparent;
    flex-direction: column;
    gap: 0.6rem;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}

.menu-toggle span {
    display: block;
    width: 2.6rem;
    height: 2px;
    background: currentColor;
    margin: 0 auto;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        background-color 0.3s ease;
}

.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
    z-index: 999;
}

.mobile-menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(34rem, 85vw);
    height: 100vh;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1001;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.mobile-menu.is-active {
    transform: translateX(0);
}

.mobile-menu__header {
    min-height: 6rem;
    margin-bottom: 2rem;
}

.mobile-menu__logo {
    width: 40px;
}

.mobile-menu__logo,
.mobile-menu__link,
.mobile-menu__close {
    color: var(--dark-color);
}

.mobile-menu__close {
    border: none;
    background: transparent;
    font-size: 3.2rem;
    cursor: pointer;
    line-height: 1;
    transform: translateY(-2px);
}

.mobile-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.mobile-menu__item {
    display: flex;
}

.mobile-menu__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.8rem 0;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 400;
}

body.menu-open {
    overflow: hidden;
}
/* ==================================== */
/*                FOOTER                */
/* ==================================== */
.footer {
    padding-block: 5rem 2.4rem;
    padding-inline: var(--side-padding);
    background-color: #111827;
    color: rgba(255, 255, 255, 0.82);
}
.footer a {
    color: rgba(255, 255, 255, 0.82);
    transition: color var(--transition-default);
}
.footer a:hover {
    color: #ffffff;
}
.footer__top {
    grid-template-columns: 1fr;
    gap: 3.2rem;
    padding-bottom: 3.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__title,
.footer__heading {
    margin: 0 0 1.6rem;
    color: #ffffff;
}
.footer__text {
    margin: 0;
    max-width: 32rem;
    font-size: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
}
.footer__navList {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer__navList li + li {
    margin-top: 1rem;
}
.footer__navList a {
    font-size: 1.5rem;
    line-height: 1.6;
}
.footer__navList div {
    color: rgba(255, 255, 255, 0.82);
    transition: color var(--transition-default);
}
.footer__navList div:hover {
    color: white;
}
.footer__navList svg {
    width: 25px;
    height: 20px;
}
.footer__bottom {
    gap: 1.6rem;
    padding-top: 2.4rem;
}
.footer__copy {
    margin: 0;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.65);
}
.footer__bottomLinks {
    gap: 1.6rem;
}
.footer__bottomLinks a {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.72);
}
/*Whatsapp*/
/* =========================
   WhatsApp Floating Button
   ========================= */

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 52px;
    padding: 0 18px;

    border-radius: 999px;
    background: #25d366;
    color: #ffffff;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;

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

    /* hidden by default */
    transition:
        transform 0.35s ease,
        opacity 0.35s ease,
        box-shadow 0.25s ease;
}

/* hover effect */
.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

/* active click */
.whatsapp-float:active {
    transform: translateY(0);
}

/* optional icon (if you add SVG inside) */
.whatsapp-float svg {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

/* ==================================== */
/*             RESPONSIVE               */
/* ==================================== */
@media (min-width: 680px) {
    /* basic */
    .translate-right-1100px {
        transform: translateX(750px);
    }
    .layout-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sliderCard {
        flex: 0 0 40%;
    }
    .desktop-nav {
        display: none;
    }
    .footer__top {
        grid-template-columns: repeat(2, 1fr);
    }
    .whatsapp-float svg {
        width: 25px;
        height: 25px;
        flex-shrink: 0;
    }
}
@media (min-width: 891px) {
    /* core layout and utilities */
    .layout-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .translate-right-1100px {
        transform: translateX(1400px);
    }
    .sliderCard {
        scroll-snap-align: none;

        flex: 0 0 calc((100% - 2rem) / 3);
    }
    .card__slider {
        min-width: 100%;
        overflow: hidden;
    }
    .card__track {
        scroll-snap-type: none;
        overflow: visible;
        padding: 3rem 4rem;
        scroll-padding-inline-start: 1rem;
        scrollbar-width: none;
    }
    .cardSlider__controls {
        display: flex;
    }
    /* header */
    .site-header__logo {
        width: 150px;
        position: static;
        transform: translate(0, 0);
    }
    .mobile-menu,
    .mobile-menu-overlay,
    .menu-toggle {
        display: none;
    }
    .desktop-nav {
        display: flex;
        margin-left: auto;
    }

    .footer__top {
        grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
        gap: 2.4rem;
    }
}

.media-loading {
    background-color: rgba(29, 28, 28, 0.683);
    animation: colorPulse 2.8s ease-in-out infinite;
}
.media-loading img {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}
/* stop when loaded */
.media-loading.is-loaded {
    animation: none;
    background-color: transparent;
}

.media-loading.is-loaded img {
    opacity: 1;
}

@keyframes colorPulse {
    0% {
        background-color: rgba(29, 28, 28, 0.683);
    }
    50% {
        background-color: rgba(29, 28, 28, 0.612);
    }
    100% {
        background-color: rgba(29, 28, 28, 0.683);
    }
}

.whyUs {
    padding-inline: var(--side-padding);
    background-color: var(--surface-color);
}
.whyCard {
    text-align: center;
}
.whyUs__svg {
    height: 60px;
    margin-inline: auto;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}
.whyUs__progressBar {
    width: 100%;
    height: 2%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    transition: width 1.6s ease;
}
.whyCard:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.whyCard__title {
    margin: 0 0 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0px;
    font-size: 2.5rem;
}

.whyCard__text {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.7;
}

/* ==================================== */
/*           SPECIAL SERVICES           */
/* ==================================== */

.services {
    overflow: hidden;
    background-color: var(--light-color);
}
.services .section__header,
.destinations .section__header {
    max-width: var(--max-width);
    padding-inline: 1rem;
}

.services .container,
.destinations .container {
    padding: 0px;
    margin: 0px;
    min-width: 100%;
}

.services__card-content {
    color: #fff;
}
.services__cardSvg {
    padding: 1rem;
    background-color: var(--light-color);
    width: fit-content;
    border-radius: 50%;
}
.services__mainHeading {
    font-size: 2.2rem;
}
.services__explanation {
    font-size: var(--small-font-size);
    margin-top: 1.5rem;
    margin-bottom: 3rem;
}
.services__subheading {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}
.services__whatWeDo {
    margin-bottom: 1rem;
}
.services__whatWeDo svg {
    transform: translateY(2px);
}
.services__whatWeDo p {
    margin: 0 0 0 1.5rem;
}
.services__link {
    font-family: nunito, "Gill Sans", sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    display: block;
    left: 0px;
}
.services__link:hover {
    color: red;
    cursor: pointer;
}
.cardSlider__btn {
    width: 3.25rem;
    height: 3.25rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 999px;
    background-color: #fff;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}
.cardSlider__btn:hover {
    transform: translateY(-2px);
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.servicesCard h3 {
    margin-left: 1.5rem;
}
.cardSlider__btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}
.services__grid {
    width: 90%;
    margin-inline: auto;
    max-width: var(--max-width);
}
.servicesCard:hover svg {
    fill: var(--primary-color);
    transform: scale(0.9);
}
.servicesCard:hover .servicesCard__progressbar {
    width: 100%;
}
.servicesCard__text {
    font-size: 14px;
}
.servicesCard__progressbar {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 0%;
    height: 3px;
    background-image: linear-gradient(
        to right,
        var(--primary-color),
        rgba(255, 0, 0, 0.154)
    );
    transition: width 0.4s ease;
    transform-origin: left;
}
.servicesCard .btn {
    width: 50%;
    margin-top: 2rem;
}
/* ==================================== */
/*                FORM                  */
/* ==================================== */
.contact-lead {
    position: relative;
    background:
        linear-gradient(rgba(9, 18, 36, 0.78), rgba(9, 18, 36, 0.84)),
        url("/assets/form.jpg") center / cover no-repeat;
    padding-inline: var(--side-padding);
}
.contact-lead__box {
    position: relative;
}
.contact-lead__content {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    backdrop-filter: blur(8px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
    padding: 24px;
}
.contact-lead__header {
    margin-bottom: 24px;
}
.contact-lead__label {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    margin: 0 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.contact-lead__title {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-color);
}
.contact-lead__desc {
    margin: 0;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.7;
}
.contact-lead__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.form-field {
    position: relative;
}
.form-field label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    font-size: 1.2rem;
    color: #111827;
    line-height: 1.5;
    outline: none;
    transition:
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        background-color 0.22s ease;
}
.form-field input,
.form-field select {
    height: 54px;
    padding: 0 16px;
}
.form-field textarea {
    min-height: 140px;
    padding: 14px 16px;
    resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #6b7280;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.14);
    background: #fff;
}
.form-field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 48px;
    background-image:
        linear-gradient(45deg, transparent 50%, #475569 50%),
        linear-gradient(135deg, #475569 50%, transparent 50%);
    background-position:
        calc(100% - 22px) calc(50% - 3px),
        calc(100% - 16px) calc(50% - 3px);
    background-size:
        6px 6px,
        6px 6px;
    background-repeat: no-repeat;
    cursor: pointer;
}
.form-field select::-ms-expand {
    display: none;
}
.form-field--full {
    grid-column: 1 / -1;
}
.contact-lead__footer {
    margin-top: 20px;
}
.contact-lead__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    padding: 0 22px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-color), #4338ca);

    cursor: pointer;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        opacity 0.22s ease;
}
.contact-lead__submit span {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.contact-lead__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(67, 56, 202, 0.28);
}
.contact-lead__submit:active {
    transform: translateY(0);
}
.contact-lead__note {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    line-height: 1.6;
}
.contact-lead__visual {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 2.4rem;
}
.contact-lead__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2.4rem;
}
.contact-lead__submit {
    position: relative;
    gap: 10px;
}

.contact-lead__submit[disabled] {
    cursor: not-allowed;
    opacity: 0.9;
}

.contact-lead__submit.is-loading {
    pointer-events: none;
}

.contact-lead__submit.is-loading .btn-text {
    opacity: 0.9;
}

.contact-lead__submit.is-loading::after {
    content: "";
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: contact-btn-spin 0.7s linear infinite;
    display: inline-block;
}

@keyframes contact-btn-spin {
    to {
        transform: rotate(360deg);
    }
}
/* ==================================== */
/*           DESTINATIONS               */
/* ==================================== */
.destinations {
    background-color: var(--light-color);
}
/* card base */
.destinations__card {
    aspect-ratio: 9 / 13;
    min-height: 0;
    padding: 0;
    isolation: isolate;
    border-radius: calc(var(--radius-md) + 0.2rem);
    background-color: var(--surface-color);
}
/* keep your image full cover */
.background_image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.background_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform var(--transition-default);
}
/* dark readable overlay */
.destinations__overlay {
    opacity: 0;
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(10, 18, 28, 0.08) 0%,
        rgba(10, 18, 28, 0.18) 24%,
        rgba(10, 18, 28, 0.35) 48%,
        rgba(10, 18, 28, 0.78) 76%,
        rgba(10, 18, 28, 0.96) 100%
    );
}
.destinations__card:hover .destinations__overlay,
.destinations__card:hover .destinations__top {
    opacity: 1;
}
/* subtle accent glow */
.destinations__card::after {
    content: "";
    position: absolute;
    inset: auto -20% -30% -20%;
    height: 50%;
    z-index: 1;
    background: radial-gradient(
        circle,
        color-mix(in srgb, var(--primary-color) 28%, transparent) 0%,
        transparent 70%
    );
    pointer-events: none;
    transition:
        transform var(--transition-default),
        opacity var(--transition-default);
    opacity: 0.85;
}
/* content */
.destinations__card-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.4rem;
}
.destinations__top {
    margin-bottom: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.destinations__tag {
    display: inline-flex;
    align-items: center;
    min-height: 3rem;
    padding: 0.55rem 1rem;
    margin-bottom: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    /*background: rgba(255, 255, 255, 0.08);*/
    background-color: #e75d1d;
    backdrop-filter: blur(14px);
    color: white;
    font-size: 1.6rem;
    font-family: var(--nunito);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: capitalize;
}
.destinations__title {
    margin: 0 0 0.5rem;
    color: #fff;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.1;
}
.destinations__subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.35rem;
    line-height: 1.55;
    max-width: 32ch;
}
/* stats panel */
.destinations__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: calc(var(--radius-md) - 0.2rem);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.22);
}
.destinations__stat {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    min-width: 0;
}
.destinations__stat-icon {
    flex-shrink: 0;
    width: 3.6rem;
    height: 3.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.destinations__stat-icon svg {
    width: 1.9rem;
    height: 1.9rem;
    display: block;
    fill: var(--primary-color);
}
.destinations__stat-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-family: var(--montserrat);
    font-weight: 400;
}
.destinations__stat-text strong {
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.2;
    font-weight: 700;
}
.destinations__stat-text span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.1rem;
    line-height: 1.35;
}
.destinations__cta {
    display: block;
    margin-top: 4rem;
}
/* hover only on hover-capable devices */
@media (hover: hover) and (pointer: fine) {
    .destinations__card {
        transition:
            transform var(--transition-default),
            box-shadow var(--transition-default),
            border-color var(--transition-default);
    }

    .destinations__card:hover {
        transform: translateY(-10px);
        box-shadow:
            0 1.6rem 4rem rgba(0, 0, 0, 0.22),
            0 0 0 1px color-mix(in srgb, var(--primary-color) 35%, transparent);
        border-color: color-mix(
            in srgb,
            var(--primary-color) 40%,
            var(--border-color)
        );
    }
    .destinations__card:hover .background_image img {
        transform: scale(1.07);
    }
    .destinations__card:hover .destinations__overlay {
        background: linear-gradient(
            180deg,
            rgba(10, 18, 28, 0.04) 0%,
            rgba(10, 18, 28, 0.14) 24%,
            rgba(10, 18, 28, 0.3) 48%,
            rgba(10, 18, 28, 0.74) 76%,
            rgba(10, 18, 28, 0.95) 100%
        );
    }
    .destinations__card:hover::after {
        transform: translateY(-1rem) scale(1.08);
        opacity: 1;
    }
    .destinations__card:hover .destinations__stats {
        border-color: rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.11);
    }
    .destinations__card:hover .destinations__stat-icon {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.16);
        transition:
            transform var(--transition-default),
            background var(--transition-default);
    }
}
/* accessibility */
@media (prefers-reduced-motion: reduce) {
    .destinations__card,
    .background_image img,
    .destinations__card::after,
    .destinations__overlay,
    .destinations__stat-icon {
        transition: none;
    }
}
/* ==================================== */
/*            UNIVERSITIES              */
/* ==================================== */
.universities {
    padding-inline: var(--side-padding);
}
.universities .container {
    overflow: hidden;
    /* min-width: 90%; */
    width: 90%;
    max-width: calc(var(--max-width) + 30px);
}
.universityCard {
    padding-top: 138px !important;
}
.universityCard__coverImage {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 130px;
    overflow: hidden;
}
.universityCard__coverImage img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.universityCard__logo {
    width: 60px;
    height: 60px;
    position: absolute;
    border: 1px solid white;
    top: 95px;
    border-radius: 50%;
    background-color: rgb(38, 38, 93);
    overflow: hidden;
    right: 10px;
}

.universityCard__title {
    margin: 0 0 0.8rem;
    color: var(--dark-color);
    color: var(--primary-color);
}

.universityCard__meta {
    margin: 0 0 1.2rem;
    font-size: 1.4rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.universityCard__text {
    margin: 0 0 1.8rem;
    font-size: 1.5rem;
    line-height: 1.7;
}

.universityCard__link {
    display: inline-flex;
    align-items: center;
    font-family: nunito, "Gill Sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--rare-color);
}

.universityCard--cta {
    padding-top: 2.4rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
/* ==================================== */
/*            SCHOLARSHIPS              */
/* ==================================== */
.scholarships {
    padding-inline: var(--side-padding);
    background-color: var(--light-color);
}

.scholarships__box {
    padding: 2.4rem;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.scholarships__title {
    margin-bottom: 1.6rem;
}

.scholarships__text {
    margin-bottom: 2.4rem;
}

.scholarships__list {
    grid-template-columns: 1fr;
    gap: 1.6rem;
}

.scholarshipPoint {
    padding: 1.8rem;
    background-color: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
}

.scholarshipPoint__title {
    margin: 0 0 0.8rem;
    color: var(--dark-color);
}

.scholarshipPoint__text {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.7;
}

.scholarships__actions {
    gap: 1.2rem;
    margin-top: 2.4rem;
}

.scholarships__actions .btn {
    width: 100%;
}
/* ==================================== */
/*              PROGRAMS                */
/* ==================================== */
.programs {
    padding-inline: var(--side-padding);
}
.programCard:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background-color: var(--primary-color);
}

.programCard:hover .programCard__title,
.programCard:hover .programCard__text {
    color: var(--text-color);
}
.programCard__title {
    margin: 0 0 1.2rem;
}

.programCard__text {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.7;
}

/* ==================================== */
/*            TESTIMONIALS              */
/* ==================================== */
.testimonials {
    padding-inline: var(--side-padding);
    background-color: var(--light-color);
}
.testimonialCard img {
    width: 30%;
    margin-top: 12px;
}
.testimonialCard__text {
    margin: 0 0 2rem;
    font-size: 1.6rem;
    line-height: 1.8;
}
.testimonialCard__name {
    margin: 0 0 0.4rem;
    color: var(--dark-color);
}
.testimonialCard__detail {
    margin: 0;
    font-size: 1.4rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ==================================== */
/*               PROCESS                */
/* ==================================== */
.process {
    padding-inline: var(--side-padding);
}

.process__bacgrounds {
    position: absolute;
    height: 100%;
    width: 50%;
    top: 0px;
    left: 50%;
    z-index: 1;
    opacity: 0.4;
    /* background-color: green; */
}
.process__bacgrounds img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}
.process__content {
    position: relative;
    z-index: 100;
}
.processCard__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 4.4rem;
    min-height: 4.4rem;
    margin-bottom: 1.6rem;
    border-radius: 50%;
    background-color: rgba(227, 6, 19, 0.08);
    color: var(--primary-color);
    font-family: nunito, "Gill Sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
}

.processCard__title {
    margin: 0 0 1.2rem;
}

.processCard__text {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.7;
}
.testimonialCard h3,
.programCard h3,
h3.processCard__title {
    color: var(--orange-color);
}
.section__title {
    color: var(--orange-color);
}
.services__mainHeading,
.servicesCard__title {
    color: var(--orange-color);
}

/* ==================================== */
/*             RESPONSIVE               */
/* ==================================== */
@media (min-width: 680px) {
    /* basic */
    .services .container {
        max-width: 90%;
    }
    .destinations__card-inner {
        padding: 1.8rem;
    }
    .destinations__stats {
        gap: 1rem;
        padding: 1.2rem;
    }
    .destinations__stat-icon {
        width: 4rem;
        height: 4rem;
    }
    .destinations__stat-icon svg {
        width: 2rem;
        height: 2rem;
    }
    .universities .container {
        padding: 3rem;
    }
    .scholarships__list {
        grid-template-columns: repeat(2, 1fr);
    }
    .scholarshipPoint:last-child {
        grid-column: 1 / -1;
    }
}
@media (min-width: 891px) {
    .services .container,
    .destinations .container {
        max-width: var(--max-width);
        margin-inline: auto;
        min-width: auto;
    }
    .services__grid {
        width: 100%;
        max-width: var(--max-width);
        padding-inline: var(--side-padding);
    }
    .contact-lead {
        background: white;
    }
    .contact-lead__box {
        display: grid;
        grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
        align-items: stretch;
        overflow: hidden;
        border-radius: 30px;
        background: #fff;
        box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
    }
    .contact-lead__content {
        background: linear-gradient(135deg, #0f172a 0%, #18263e 100%);
        border: 0;
        border-radius: 0;
        box-shadow: none;
        padding: 42px;
    }
    .contact-lead__visual {
        display: block;
        position: static;
        z-index: 100;
        min-height: 100%;
        background: #e5e7eb;
        border-radius: 0px;
    }
    .contact-lead__visual img {
        object-fit: cover;
        min-width: 100%;
        border-radius: 0px;
    }
    .contact-lead__title {
        font-size: 42px;
        max-width: 760px;
    }
    .contact-lead__desc {
        max-width: 640px;
    }
    .contact-lead__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
    .destinations__card-inner {
        padding: 2rem;
    }

    .destinations__title {
        font-size: 2.8rem;
    }
    .destinations__subtitle {
        font-size: 1.4rem;
    }
    .universityCard--cta {
        padding-top: 138px;
    }
    .universities__grid,
    .scholarships__box {
        padding: 3.2rem;
    }
    .scholarships__list {
        grid-template-columns: repeat(3, 1fr);
    }
    .scholarshipPoint:last-child {
        grid-column: auto;
    }
    .scholarships__actions .btn {
        width: auto;
    }
    .ctaSection__box {
        padding: 3.6rem 3.2rem;
    }
    .ctaSection__actions .btn {
        width: auto;
    }
}
