/* =========================================================
   VANTAGE IMMIGRATION
   GLOBAL / COMMON WEBSITE CSS

   PURPOSE:
   - Reset
   - Typography
   - Common buttons
   - Sections
   - Stats
   - About
   - Services
   - Why Us
   - Countries
   - Process
   - Testimonials
   - Blogs
   - FAQ
   - Contact
   - Footer
   - Floating button
   - Common responsive rules

   HEADER CSS:
   frontend/css/header.css

   HERO CSS:
   frontend/css/homebanner.css
========================================================= */


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

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    margin: 0;

    background: #ffffff;

    color: #344054;

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

    font-size: 16px;

    line-height: 1.65;

    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

a {
    text-decoration: none;
}


/* =========================================================
   COMMON TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6,
.btn {
    font-family: "Manrope", sans-serif;
}

h2 {
    margin: 8px 0 18px;

    color: #101828;

    font-size: clamp(31px, 4vw, 45px);

    font-weight: 800;

    line-height: 1.12;

    letter-spacing: -1.5px;
}

h3 {
    color: #101828;
}


/* =========================================================
   COMMON WRAPPER
========================================================= */

.wrap {
    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;
}


/* =========================================================
   COMMON BUTTON
========================================================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 13px 19px;

    border: 1px solid transparent;

    border-radius: 7px;

    font-size: 13px;
    font-weight: 700;

    line-height: 1;

    text-decoration: none;

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.btn.red {
    background: #c8102e;

    color: #ffffff;

    box-shadow:
        0 9px 24px rgba(200, 16, 46, .16);
}

.btn.red:hover {
    background: #9e1028;

    color: #ffffff;

    transform: translateY(-2px);
}

.btn.white {
    background: #ffffff;

    color: #101828;
}

.btn.white:hover {
    background: #f8fafc;

    color: #101828;

    transform: translateY(-2px);
}

.btn.outline {
    border-color: rgba(255, 255, 255, .4);

    color: #ffffff;
}

.btn.outline:hover {
    background: #ffffff;

    color: #101828;
}


/* =========================================================
   FULL WIDTH
========================================================= */

.full {
    width: 100%;
}


/* =========================================================
   EYEBROW
========================================================= */

.eyebrow {
    color: #c8102e;

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.eyebrow.light {
    color: #ffb0bd;
}


/* =========================================================
   COMMON SUCCESS MESSAGE
========================================================= */

.success {
    display: none;

    padding: 12px;

    background: #ecfdf3;

    color: #027a48;

    border-radius: 7px;

    font-size: 13px;
}


/* =========================================================
   STATS
========================================================= */

.stats {
    border-bottom: 1px solid #eaecf0;
}

.statgrid {
    display: grid;

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

    padding: 25px 0;
}

.statgrid > div {
    text-align: center;

    border-right: 1px solid #eaecf0;
}

.statgrid > div:last-child {
    border-right: 0;
}

.statgrid b {
    display: block;

    color: #c8102e;

    font-family: "Manrope", sans-serif;

    font-size: 31px;

    font-weight: 800;
}

.statgrid span {
    color: #667085;

    font-size: 12px;
}


/* =========================================================
   COMMON SECTION
========================================================= */

.section {
    padding: 95px 0;
}

.gray {
    background: #f8fafc;
}

.dark {
    background: #101828;
}

.dark h2,
.dark h3 {
    color: #ffffff;
}


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

.split {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 85px;

    align-items: center;
}

.photo {
    position: relative;
}

.photo img {
    width: 100%;

    height: 500px;

    object-fit: cover;

    border-radius: 14px;
}

.photo > strong {
    position: absolute;

    right: -18px;
    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 16px 20px;

    background: #101828;

    color: #ffb7c0;

    border-radius: 10px;

    font-family: "Manrope", sans-serif;

    font-size: 30px;

    font-weight: 800;
}

.photo small {
    color: #ffffff;

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

    font-size: 12px;

    line-height: 1.3;
}

.split p {
    color: #667085;
}

.split ul {
    padding: 0;

    list-style: none;
}

.split li {
    position: relative;

    margin: 18px 0;

    padding-left: 38px;
}

.split li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    width: 27px;
    height: 27px;

    display: grid;
    place-items: center;

    background: #fff0f2;

    color: #c8102e;

    border-radius: 50%;

    font-weight: 800;
}

.split li b,
.split li small {
    display: block;
}

.split li b {
    color: #101828;

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    font-weight: 700;
}

.split li small {
    color: #667085;

    font-size: 12px;
}


/* =========================================================
   ABOUT SECTION - RESPONSIVE FIX
========================================================= */

#about {
    width: 100%;
    display: block;
    overflow: hidden;
}

/* Fade animation issue fix */
#about .fade {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}


/* =========================================================
   IMAGE
========================================================= */

#about .photo {
    width: 100%;
    position: relative;
    overflow: visible;
}

#about .photo img {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 14px;
}


/* =========================================================
   EXPERIENCE BOX
========================================================= */

#about .photo > strong {
    right: -18px;
    bottom: 25px;

    min-width: 145px;

    box-sizing: border-box;

    box-shadow: 0 15px 35px rgba(16, 24, 40, 0.20);

    transition: transform 0.25s ease,
                box-shadow 0.25s ease;
}

#about .photo:hover > strong {
    transform: translateY(-5px);

    box-shadow: 0 20px 40px rgba(16, 24, 40, 0.25);
}


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

#about .split > div:last-child {
    width: 100%;
}

#about .split > div:last-child h2 {
    margin-top: 10px;
    margin-bottom: 20px;

    line-height: 1.15;
    letter-spacing: -1.2px;
}

#about .split > div:last-child > p {
    margin-bottom: 25px;

    font-size: 14px;
    line-height: 1.8;
}


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

#about .split ul {
    margin: 0;
}

#about .split li {
    margin: 0;
    padding: 16px 0 16px 42px;

    border-bottom: 1px solid #eaecf0;
}

#about .split li:first-child {
    padding-top: 8px;
}

#about .split li::before {
    top: 17px;

    width: 28px;
    height: 28px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

#about .split li:hover::before {
    background: #c8102e;
    color: #fff;

    transform: scale(1.08);
}

#about .split li b {
    margin-bottom: 4px;
    line-height: 1.4;
}

#about .split li small {
    line-height: 1.5;
}


/* =========================================================
   LINK
========================================================= */

#about .link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 25px;

    color: #c8102e;

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;

    text-decoration: none;

    transition: gap 0.25s ease;
}

#about .link:hover {
    gap: 14px;
}


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

@media (max-width: 950px) {

    #about .wrap {
        width: calc(100% - 50px);
    }

    #about .split {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    #about .photo {
        max-width: 700px;
        margin: 0 auto;
    }

    #about .photo img {
        height: 450px;
    }

    #about .split > div:last-child {
        max-width: 750px;
        margin: 0 auto;
    }

}


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

@media (max-width: 600px) {

    #about .wrap {
        width: calc(100% - 32px);
    }

    #about .split {
        gap: 40px;
    }

    #about .photo img {
        height: 350px;
        border-radius: 12px;
    }

    #about .photo > strong {
        right: 12px;
        bottom: 18px;

        min-width: 125px;

        padding: 13px 16px;

        font-size: 25px;
    }

    #about .photo small {
        font-size: 10px;
    }

    #about .split > div:last-child h2 {
        font-size: 32px;
        line-height: 1.15;
        letter-spacing: -0.8px;
    }

    #about .split > div:last-child > p {
        font-size: 13px;
        line-height: 1.75;
    }

    #about .split li {
        padding-left: 38px;
    }

    #about .split li::before {
        width: 26px;
        height: 26px;
    }

}


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

@media (max-width: 400px) {

    #about .photo img {
        height: 300px;
    }

    #about .photo > strong {
        right: 8px;
        bottom: 12px;

        min-width: 110px;

        padding: 11px 13px;

        font-size: 22px;
    }

    #about .photo small {
        font-size: 9px;
    }

    #about .split > div:last-child h2 {
        font-size: 29px;
    }

}



/* =========================================================
   COMMON LINK
========================================================= */

.link {
    color: #c8102e;

    font-family: "Manrope", sans-serif;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.heading {
    display: grid;

    grid-template-columns: 1.1fr .7fr;

    gap: 60px;

    align-items: end;

    margin-bottom: 42px;
}

.heading > p {
    color: #667085;
}


/* =========================================================
   SERVICES SECTION
========================================================= */

#services {
    background: #f7f8fa;
}

/* =========================================================
   SERVICES HEADING
========================================================= */

#services .heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 45px;
}

#services .heading > div {
    width: 100%;
}

#services .eyebrow {
    margin-bottom: 12px;
    color: #0d3aee;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

#services .heading h2 {
    margin: 0 auto 14px;
    max-width: 780px;
    color: #101828;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    text-align: center;
}

#services .heading > p {
    max-width: 650px;
    margin: 0 auto;
    color: #667085;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    line-height: 1.7;
    text-align: center;
}


/* =========================================================
   SERVICE CARDS
========================================================= */

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}


/* =========================================================
   SINGLE CARD
========================================================= */

.cards > div {
    min-height: 255px;
    padding: 24px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    background: #ffffff;
    border: 1px solid #eaecf0;
    border-radius: 12px;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.cards > div:hover {
    border-color: #0f1aec;
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(16, 24, 40, .07);
}


/* =========================================================
   CARD NUMBER
========================================================= */

.cards small {
    color: #270ae4;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .3px;
}


/* =========================================================
   ICON CIRCLE
========================================================= */

.cards i {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 18px 0 18px;

    background: #fff0f2;
    border-radius: 50%;

    color: #103bc8;

    font-size: 30px;
    font-weight: 500;
    font-style: normal;
    line-height: 1;

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


/* ICON HOVER */

.cards > div:hover i {
    background: #c8102e;
    color: #ffffff;
    transform: scale(1.08);
}


/* =========================================================
   CARD TITLE
========================================================= */

.cards h3 {
    margin: 0 0 9px;

    color: #101828;

    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.cards p {
    min-height: 0px;

    margin: 0 0 18px;

    color: #667085;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 1.65;
}


/* =========================================================
   LEARN MORE
========================================================= */

.cards a {
    margin-top: auto;

    color: #101828;

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;

    text-decoration: none;

    transition:
        color .2s ease,
        transform .2s ease;
}

.cards a:hover {
    color: #c8102e;
}






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

@media (max-width: 1024px) {

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    #services .heading h2 {
        font-size: 32px;
    }
}


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

@media (max-width: 600px) {

    #services .heading {
        margin-bottom: 32px;
    }

    #services .heading h2 {
        font-size: 27px;
        line-height: 1.2;
    }

    #services .heading > p {
        font-size: 12px;
        line-height: 1.6;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .cards > div {
        min-height: 240px;
        padding: 22px;
    }

    .cards i {
        width: 54px;
        height: 54px;
        font-size: 28px;
    }

    .cards h3 {
        font-size: 18px;
    }
}


/* =========================================================
   WHY US
========================================================= */

.why {
    display: grid;

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

    gap: 1px;

    border: 1px solid #344054;
}

.why > div {
    min-height: 220px;

    padding: 32px 25px;
}

.why b {
    color: #ff9eab;

    font-family: "Manrope", sans-serif;

    font-size: 11px;
}

.why p {
    color: #98a2b3;

    font-size: 13px;
}


/* =========================================================
   CENTER HEADING
========================================================= */

.center {
    max-width: 720px;

    margin: 0 auto 50px;

    text-align: center;
}

.center p {
    color: #667085;
}


/* =========================================================
   PROCESS STEPS
========================================================= */

.steps {
    position: relative;

    display: grid;

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

.steps::before {
    content: "";

    position: absolute;

    top: 24px;

    left: 8%;
    right: 8%;

    height: 1px;

    background: #d0d5dd;
}

.steps > div {
    position: relative;

    text-align: center;
}

.steps b {
    position: relative;

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin: auto auto 20px;

    background: #ffffff;

    color: #c8102e;

    border: 1px solid #c8102e;

    border-radius: 50%;

    font-family: "Manrope", sans-serif;

    font-size: 11px;
}

.steps h3 {
    margin: 0 0 5px;

    font-size: 16px;
}

.steps p {
    color: #667085;

    font-size: 11px;
}


/* =========================================================
   COUNTRIES
========================================================= */

.countries {
    display: grid;

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

    gap: 16px;
}

.countries a {
    position: relative;

    height: 295px;

    overflow: hidden;

    background: #101828;

    color: #ffffff;

    border-radius: 12px;
}

.countries img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.countries a:hover img {
    transform: scale(1.06);
}

.countries a::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(8, 14, 24, .93),
            transparent 65%
        );
}

.countries b,
.countries small,
.countries span {
    position: absolute;

    left: 22px;

    z-index: 1;
}

.countries b {
    bottom: 58px;

    font-family: "Manrope", sans-serif;

    font-size: 23px;
}

.countries small {
    bottom: 37px;

    color: #d0d5dd;

    font-size: 11px;
}

.countries span {
    bottom: 16px;

    color: #ffb7c0;

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 700;
}


/* =========================================================
   RED CTA
========================================================= */

.redcta {
    padding: 60px 0;

    background: #c8102e;

    color: #ffffff;
}

.redcta > .wrap {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.redcta h2 {
    margin: 8px 0;

    color: #ffffff;
}

.redcta p {
    margin: 0;

    color: #ffdce1;
}


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

.testimonials,
.blogs {
    display: grid;

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

    gap: 17px;
}

.testimonials > div {
    padding: 27px;

    border: 1px solid #eaecf0;

    border-radius: 12px;
}

.testimonials > div > strong {
    color: #c8102e;

    letter-spacing: 2px;
}

.testimonials p {
    min-height: 90px;

    font-size: 14px;
}

.testimonials b,
.testimonials small {
    display: block;
}

.testimonials b {
    font-family: "Manrope", sans-serif;

    font-size: 13px;
}

.testimonials small {
    color: #98a2b3;

    font-size: 11px;
}


/* =========================================================
   BLOGS
========================================================= */

.blogs article {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #eaecf0;

    border-radius: 12px;
}

.blogs img {
    width: 100%;
    height: 205px;

    object-fit: cover;
}

.blogs article div {
    padding: 20px;
}

.blogs small {
    color: #c8102e;

    font-family: "Manrope", sans-serif;

    font-size: 9px;

    font-weight: 700;
}

.blogs h3 {
    font-size: 18px;
}

.blogs p {
    color: #667085;

    font-size: 12px;
}

.blogs a {
    color: #101828;

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 700;
}


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

#faq {
    background: #f7f8fa;
}

#faq .faq {
    width: 100%;
    display: block;
}


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

#faq .faq-heading {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

#faq .faq-heading .eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #c8102e;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

#faq .faq-heading h2 {
    margin: 0 0 16px;
    color: #101828;
    font-family: "Manrope", sans-serif;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
}

#faq .faq-heading p {
    max-width: 780px;
    margin: 0 auto 25px;
    color: #667085;
    font-size: 14px;
    line-height: 1.8;
}


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

#faq .faq-list {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
}

#faq .faqitem {
    width: 100%;
    border-top: 1px solid #dfe3e8;
}

#faq .faqitem:last-child {
    border-bottom: 1px solid #dfe3e8;
}


/* QUESTION */

#faq .faqitem button {
    width: 100%;
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    padding: 20px 5px;

    background: transparent;
    border: 0;
    outline: none;

    color: #101828;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;

    text-align: left;
    cursor: pointer;

    transition: color 0.25s ease;
}


/* PLUS / CLOSE ICON */

#faq .faqitem button span {
    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff0f2;
    color: #c8102e;

    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


/* HOVER */

#faq .faqitem button:hover {
    color: #c8102e;
}

#faq .faqitem button:hover span {
    background: #c8102e;
    color: #ffffff;
}


/* ACTIVE */

#faq .faqitem.open button {
    color: #c8102e;
}

#faq .faqitem.open button span {
    background: #c8102e;
    color: #ffffff;
    transform: rotate(180deg);
}


/* ANSWER */

#faq .faqitem p {
    display: none;

    max-width: 900px;

    margin: 0;
    padding: 0 65px 22px 5px;

    color: #667085;
    font-size: 13px;
    line-height: 1.8;
}


/* OPEN ANSWER */

#faq .faqitem.open p {
    display: block;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 850px) {

    #faq .faq-heading {
        margin-bottom: 40px;
    }

    #faq .faq-heading h2 {
        font-size: 32px;
    }

    #faq .faq-heading p {
        font-size: 13px;
        line-height: 1.7;
    }

    #faq .faqitem button {
        min-height: 64px;
        padding: 17px 0;
        font-size: 14px;
    }

    #faq .faqitem button span {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
        font-size: 22px;
    }

    #faq .faqitem p {
        padding: 0 45px 20px 0;
        font-size: 12.5px;
    }
}


@media (max-width: 576px) {

    #faq .faq-heading {
        margin-bottom: 30px;
    }

    #faq .faq-heading .eyebrow {
        font-size: 11px;
        margin-bottom: 9px;
    }

    #faq .faq-heading h2 {
        font-size: 27px;
        line-height: 1.25;
        margin-bottom: 13px;
    }

    #faq .faq-heading p {
        font-size: 12px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    #faq .faqitem button {
        min-height: 60px;
        padding: 15px 0;
        gap: 15px;
        font-size: 13px;
        line-height: 1.45;
    }

    #faq .faqitem button span {
        flex-basis: 32px;
        width: 32px;
        height: 32px;
        font-size: 20px;
    }

    #faq .faqitem p {
        padding: 0 40px 18px 0;
        font-size: 12px;
        line-height: 1.7;
    }
}
/* =========================================================
   CONTACT SECTION
========================================================= */

.contact {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}


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

.contactgrid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 75px;
    align-items: center;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.contact-left {
    max-width: 520px;
}

.contact-left .eyebrow {
    display: inline-block;
    margin-bottom: 12px;

    color: #c8102e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-left h2 {
    margin: 0 0 17px;

    color: #101828;

    font-family: "Manrope", sans-serif;
    font-size: 38px;
    line-height: 1.18;
    font-weight: 800;
}

.contact-intro {
    max-width: 500px;

    margin: 0 0 30px;

    color: #667085;

    font-size: 14px;
    line-height: 1.8;
}


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

.contactinfo {
    display: flex;
    flex-direction: column;
    gap: 17px;
}


/* CONTACT ITEM */

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 13px 15px;

    background: #ffffff;

    border: 1px solid #eaecf0;
    border-radius: 10px;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-item:hover {
    transform: translateX(5px);

    border-color: #f1b7c1;

    box-shadow: 0 8px 22px rgba(16, 24, 40, 0.07);
}


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

.contact-icon {
    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff0f2;

    border-radius: 9px;

    color: #c8102e;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.contact-icon span {
    font-size: 21px;
    line-height: 1;
}

.contact-item:hover .contact-icon {
    background: #c8102e;
    color: #ffffff;
    transform: scale(1.05);
}


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

.contact-text {
    min-width: 0;
}

.contact-text small {
    display: block;

    margin-bottom: 3px;

    color: #98a2b3;

    font-size: 9px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-text b {
    display: block;

    color: #101828;

    font-family: "Manrope", sans-serif;

    font-size: 13px;
    line-height: 1.4;
    font-weight: 650;

    word-break: break-word;
}


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

.contactform {
    position: relative;

    padding: 32px;

    background: #f8fafc;

    border: 1px solid #eaecf0;

    border-radius: 16px;

    box-shadow:
        0 15px 45px rgba(16, 24, 40, 0.07);
}


/* TOP RED LINE */

.contactform::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 35px;
    right: 35px;

    height: 3px;

    background: #c8102e;

    border-radius: 0 0 5px 5px;
}


/* =========================================================
   FORM HEADING
========================================================= */

.form-heading {
    margin-bottom: 23px;
}

.form-heading h3 {
    margin: 0 0 6px;

    color: #101828;

    font-family: "Manrope", sans-serif;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 800;
}

.form-heading p {
    margin: 0;

    color: #667085;

    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   FORM TWO COLUMNS
========================================================= */

.contactform .two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}


/* =========================================================
   FORM FIELD
========================================================= */

.form-field {
    width: 100%;
}

.form-field label {
    display: block;

    margin: 0 0 6px;

    color: #344054;

    font-size: 11px;
    line-height: 1.3;
    font-weight: 600;
}


/* =========================================================
   INPUT / SELECT / TEXTAREA
========================================================= */

.contactform input:not(
    [type="checkbox"]
),
.contactform select,
.contactform textarea {

    width: 100%;

    box-sizing: border-box;

    padding: 12px 13px;

    margin: 0 0 14px;

    background: #ffffff;

    color: #344054;

    border: 1px solid #d0d5dd;

    border-radius: 7px;

    outline: none;

    font-family: "Manrope", sans-serif;

    font-size: 12px;

    line-height: 1.4;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


/* PLACEHOLDER */

.contactform input::placeholder,
.contactform textarea::placeholder {
    color: #98a2b3;
}


/* FOCUS */

.contactform input:not(
    [type="checkbox"]
):focus,
.contactform select:focus,
.contactform textarea:focus {

    border-color: #c8102e;

    box-shadow:
        0 0 0 3px rgba(200, 16, 46, 0.08);
}


/* SELECT */

.contactform select {
    cursor: pointer;
    appearance: auto;
}


/* TEXTAREA */

.contactform textarea {
    min-height: 115px;

    resize: vertical;
}


/* =========================================================
   PRIVACY CHECKBOX
========================================================= */

.contactform .privacy-check {
    display: flex;
    align-items: center;
    gap: 7px;

    margin: 0 0 17px;

    color: #667085;

    font-size: 11px;
    line-height: 1.4;

    cursor: pointer;
}

.contactform .privacy-check input {
    width: 14px;
    height: 14px;

    margin: 0;

    accent-color: #c8102e;

    cursor: pointer;
}

.contactform .privacy-check span {
    display: inline-block;
}


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

.contactform .btn.full {
    width: 100%;

    min-height: 45px;

    border: 0;

    cursor: pointer;

    font-size: 13px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.contactform .btn.full:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(200, 16, 46, 0.20);
}


/* =========================================================
   SUCCESS MESSAGE
========================================================= */

.contactform .success {
    display: none;

    padding: 20px;

    background: #ffffff;

    border: 1px solid #d0d5dd;

    border-radius: 9px;

    color: #667085;

    font-size: 13px;
    line-height: 1.6;

    text-align: center;
}

.contactform .success strong {
    display: block;

    margin-bottom: 5px;

    color: #101828;

    font-size: 16px;
}


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

@media (max-width: 1000px) {

    .contactgrid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-left {
        max-width: 750px;
    }

    .contact-intro {
        max-width: 700px;
    }

    .contactinfo {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 13px;
    }

    .contactform {
        max-width: 750px;
        width: 100%;
        box-sizing: border-box;
    }

}


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

@media (max-width: 600px) {

    .contactgrid {
        gap: 30px;
    }

    .contact-left h2 {
        font-size: 29px;
        line-height: 1.25;
    }

    .contact-intro {
        font-size: 12.5px;
        line-height: 1.7;
        margin-bottom: 23px;
    }

    .contactinfo {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .contact-item {
        padding: 11px 12px;
    }

    .contact-icon {
        flex-basis: 40px;

        width: 40px;
        height: 40px;
    }

    .contact-icon span {
        font-size: 19px;
    }

    .contact-text b {
        font-size: 12px;
    }

    .contactform {
        padding: 22px 17px;

        border-radius: 12px;
    }

    .contactform::before {
        left: 20px;
        right: 20px;
    }

    .form-heading h3 {
        font-size: 18px;
    }

    .form-heading p {
        font-size: 11px;
    }

    .contactform .two {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contactform input:not(
        [type="checkbox"]
    ),
    .contactform select,
    .contactform textarea {
        font-size: 12px;
        padding: 11px 12px;
    }

}


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

@media (max-width: 380px) {

    .contact-left h2 {
        font-size: 26px;
    }

    .contactform {
        padding: 20px 14px;
    }

    .contact-item {
        gap: 11px;
    }

}



/* =========================================================
   FADE ANIMATION
========================================================= */

.fade {
    opacity: 0;

    transform: translateY(18px);

    transition: opacity .7s ease,
                transform .7s ease;
}

.fade.show {
    opacity: 1;

    transform: none;
}


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

@media (max-width: 1050px) {

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .why {
        grid-template-columns: repeat(2, 1fr);
    }

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

        gap: 28px;
    }

    .steps::before {
        display: none;
    }

}


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

@media (max-width: 850px) {

    .split,
    .contactgrid,
    .faq {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 70px 0;
    }

    .heading {
        grid-template-columns: 1fr;

        gap: 8px;
    }

    .countries {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials,
    .blogs {
        grid-template-columns: 1fr;
    }

    .foot {
        grid-template-columns: 1fr 1fr;
    }

    .redcta > .wrap {
        flex-direction: column;

        align-items: flex-start;
    }

}


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

@media (max-width: 560px) {

    .wrap {
        width: calc(100% - 28px);
    }

    .statgrid {
        grid-template-columns: 1fr 1fr;
    }

    .statgrid > div {
        margin: 8px;

        border: 0;
    }

    .cards,
    .countries,
    .why,
    .steps {
        grid-template-columns: 1fr;
    }

    .steps > div {
        padding-left: 62px;

        text-align: left;
    }

    .steps b {
        position: absolute;

        left: 0;

        margin: 0;
    }

    .photo img {
        height: 350px;
    }

    .photo > strong {
        right: 10px;
    }

    .foot {
        grid-template-columns: 1fr;
    }

    .bottom span {
        display: block;

        float: none;

        margin-top: 10px;
    }

}

/* =========================================================
   FINAL STABILITY / RESPONSIVE LAYER
   Keep this block at the end of this file.
   It intentionally contains only the rules needed to make
   the existing markup stable across desktop, tablet and mobile.
========================================================= */

:root {
    --brand: #c8102e;
    --brand-dark: #9e1028;
    --brand-soft: #fff0f2;
    --dark: #101828;
    --text: #344054;
    --muted: #667085;
    --muted-light: #98a2b3;
    --border: #eaecf0;
    --border-dark: #344054;
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --radius: 12px;
    --container: 1180px;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    min-width: 320px;
    overflow-wrap: break-word;
}

img,
svg,
video,
canvas {
    max-width: 100%;
}

button,
input,
select,
textarea {
    max-width: 100%;
}

.wrap,
.section .wrap {
    width: min(var(--container), calc(100% - 40px));
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
}

.section {
    width: 100%;
    padding: 95px 0;
    overflow: hidden;
}

.section h2,
.section h3,
.section p,
.section .eyebrow {
    max-width: 100%;
    overflow-wrap: anywhere;
}

.section h2 {
    margin-top: 0;
    color: var(--dark);
    font-family: "Manrope", sans-serif;
    font-size: clamp(28px, 3.2vw, 38px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -1px;
}

.section p {
    font-family: "DM Sans", sans-serif;
}

.section .eyebrow {
    display: block;
    margin: 0 0 12px;
    color: var(--brand);
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.dark h2,
.dark h3 {
    color: #fff;
}

/* ---------- safe animation ----------
   Content is visible by default. JS can still add .show
   when the existing IntersectionObserver is available.
--------------------------------------------- */
.fade {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity .7s ease, transform .7s ease;
}

.fade.show {
    opacity: 1;
    visibility: visible;
    transform: none;
}

/* ---------- generic grids ---------- */
.cards,
.why,
.steps,
.countries,
.testimonials,
.blogs,
.statgrid,
.split,
.contactgrid {
    min-width: 0;
}

.cards > div,
.why > div,
.steps > div,
.countries > a,
.testimonials > div,
.blogs > article,
.contactgrid > *,
.split > * {
    min-width: 0;
}

/* ---------- ABOUT ---------- */
#about {
    width: 100%;
}

#about .split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(40px, 6vw, 70px);
    align-items: center;
}

#about .photo {
    width: 100%;
    min-width: 0;
}

#about .photo img {
    width: 100%;
    height: 500px;
    min-height: 0;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
}

#about .split > div:last-child {
    width: 100%;
    min-width: 0;
}

#about .split > div:last-child h2 {
    margin: 0 0 20px;
    font-size: clamp(30px, 3.2vw, 38px);
}

#about .split > div:last-child > p {
    margin: 0 0 25px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

#about .split li {
    min-width: 0;
}

/* ---------- SERVICES ---------- */
#services .heading {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    text-align: center;
}

#services .heading > div {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

#services .heading h2 {
    width: 100%;
    max-width: 780px;
    margin: 0 auto 14px;
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.2;
    text-align: center;
}

#services .heading > p {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
    text-align: center;
}

#services .cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

#services .cards > div {
    min-height: 255px;
    padding: 24px;
}

/* ---------- WHY ---------- */
#why .heading {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .7fr);
    gap: 50px;
    align-items: end;
    margin-bottom: 42px;
}

#why .heading > p {
    margin: 0;
    color: #98a2b3;
}

#why .why {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ---------- CENTER HEADINGS ---------- */
.center {
    width: 100%;
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.center h2 {
    margin: 0 0 15px;
    text-align: center;
}

.center p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--muted);
    text-align: center;
}

/* ---------- PROCESS ---------- */
.steps {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
}

/* ---------- COUNTRIES ---------- */
.countries {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.countries a {
    width: 100%;
    min-width: 0;
}

/* ---------- TESTIMONIALS / BLOGS ---------- */
.testimonials,
.blogs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ---------- CTA ---------- */
.redcta {
    width: 100%;
}

.redcta > .wrap {
    min-width: 0;
}

.redcta h2 {
    max-width: 760px;
    font-size: clamp(28px, 3.5vw, 42px);
}

.redcta p {
    overflow-wrap: anywhere;
}

/* ---------- FAQ ---------- */
#faq .faq {
    width: 100%;
    display: block;
}

#faq .faq-heading {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 45px;
    text-align: center;
}

#faq .faq-heading h2 {
    margin: 0 0 16px;
    font-size: clamp(28px, 3.2vw, 38px);
    text-align: center;
}

#faq .faq-heading > p {
    max-width: 700px;
    margin: 0 auto 25px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
    text-align: center;
}

#faq .faq-list {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
}

#faq .faqitem button {
    min-width: 0;
}

#faq .faqitem button span {
    flex: 0 0 38px;
}

/* ---------- CONTACT ---------- */
#contact .contactgrid {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(40px, 6vw, 70px);
    align-items: start;
}

#contact .contact-left,
#contact .contactform {
    min-width: 0;
    width: 100%;
}

#contact .contact-left h2 {
    margin: 0 0 18px;
    font-size: clamp(30px, 3.2vw, 38px);
    line-height: 1.18;
}

#contact .contact-intro {
    max-width: 550px;
    margin: 0 0 30px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.contactform {
    width: 100%;
}

.contactform .two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contactform input,
.contactform select,
.contactform textarea {
    min-width: 0;
    max-width: 100%;
}

.contactform .privacy-check {
    min-width: 0;
    align-items: flex-start;
}

.contactform .privacy-check input {
    flex: 0 0 auto;
}

/* ---------- FOOTER ---------- */
.foot {
    grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
}

.foot > * {
    min-width: 0;
}

/* ---------- HOVER ONLY ON REAL HOVER DEVICES ---------- */
@media (hover: hover) and (pointer: fine) {
    .cards > div:hover,
    .contact-item:hover,
    .float:hover,
    .btn:hover {
        will-change: transform;
    }
}

/* =========================================================
   1200px - LARGE TABLET / SMALL LAPTOP
========================================================= */
@media (max-width: 1200px) {
    .wrap,
    .section .wrap {
        width: min(1100px, calc(100% - 48px));
    }

    #about .split {
        gap: 50px;
    }

    #services .cards {
        gap: 14px;
    }

    .contactgrid {
        gap: 50px;
    }
}

/* =========================================================
   1024px - TABLET
========================================================= */
@media (max-width: 1024px) {
    .section {
        padding: 78px 0;
    }

    .statgrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 20px;
    }

    .statgrid > div:nth-child(2) {
        border-right: 0;
    }

    #services .cards,
    .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #why .heading,
    .heading {
        grid-template-columns: 1fr;
        gap: 12px;
        align-items: start;
    }

    .why {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 35px 20px;
    }

    .steps::before {
        display: none;
    }

    .countries {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonials,
    .blogs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .foot {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #about .photo img {
        height: 450px;
    }

    #contact .contactgrid,
    .contactgrid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    #contact .contact-left {
        max-width: 760px;
    }

    #contact .contactform {
        max-width: 760px;
    }

    .redcta > .wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================================
   768px - TABLET / MOBILE
========================================================= */
@media (max-width: 768px) {
    .wrap,
    .section .wrap {
        width: calc(100% - 32px);
    }

    .section {
        padding: 68px 0;
    }

    .section h2 {
        font-size: clamp(27px, 6vw, 32px);
        letter-spacing: -.7px;
    }

    .eyebrow {
        letter-spacing: 1.5px;
    }

    .statgrid {
        padding: 20px 0;
    }

    .statgrid b {
        font-size: 27px;
    }

    .statgrid span {
        font-size: 11px;
    }

    #about .split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    #about .photo {
        max-width: 700px;
        margin: 0 auto;
    }

    #about .photo img {
        height: 390px;
    }

    #about .split > div:last-child {
        max-width: 760px;
        margin: 0 auto;
    }

    #services .heading {
        margin-bottom: 34px;
    }

    #services .heading h2 {
        font-size: clamp(27px, 6vw, 32px);
    }

    #services .heading > p,
    .center p,
    #about .split > div:last-child > p,
    #contact .contact-intro {
        font-size: 13px;
        line-height: 1.75;
    }

    .why {
        grid-template-columns: 1fr 1fr;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
        gap: 28px 18px;
    }

    .steps > div {
        text-align: center;
    }

    .countries {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials,
    .blogs {
        grid-template-columns: 1fr 1fr;
    }

    #faq .faq-heading h2 {
        font-size: clamp(27px, 6vw, 32px);
    }

    #faq .faq-heading > p {
        font-size: 13px;
        line-height: 1.75;
    }

    #contact .contactgrid {
        gap: 32px;
    }

    .contactinfo {
        grid-template-columns: 1fr 1fr;
    }

    .contactform .two {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contactform {
        padding: 25px 20px;
    }

    .foot {
        grid-template-columns: 1fr 1fr;
        gap: 35px 25px;
    }
}

/* =========================================================
   576px - MOBILE
========================================================= */
@media (max-width: 576px) {
    .wrap,
    .section .wrap {
        width: calc(100% - 28px);
    }

    .section {
        padding: 58px 0;
    }

    .statgrid {
        grid-template-columns: 1fr 1fr;
        padding: 17px 0;
    }

    .statgrid > div {
        margin: 4px;
        border: 0;
    }

    .statgrid b {
        font-size: 24px;
    }

    .statgrid span {
        display: block;
        font-size: 10px;
        line-height: 1.45;
    }

    #about .split {
        gap: 34px;
    }

    #about .photo img {
        height: 330px;
        border-radius: 12px;
    }

    #about .photo > strong {
        right: 10px;
        bottom: 14px;
        min-width: 120px;
        padding: 12px 14px;
        font-size: 23px;
    }

    #about .photo small {
        font-size: 10px;
    }

    #about .split > div:last-child h2,
    #contact .contact-left h2 {
        font-size: 29px;
    }

    #about .split li {
        padding-left: 38px;
    }

    #services .heading {
        margin-bottom: 30px;
    }

    #services .heading h2,
    #faq .faq-heading h2 {
        font-size: 28px;
    }

    #services .cards,
    .cards,
    .why,
    .steps,
    .countries,
    .testimonials,
    .blogs {
        grid-template-columns: 1fr;
    }

    #services .cards {
        gap: 13px;
    }

    #services .cards > div,
    .cards > div {
        min-height: 0;
        padding: 21px;
    }

    #services .cards i,
    .cards i {
        width: 54px;
        height: 54px;
        margin: 16px 0;
        font-size: 27px;
    }

    #services .cards h3,
    .cards h3 {
        font-size: 18px;
    }

    #services .cards p,
    .cards p {
        min-height: 0;
        font-size: 12px;
    }

    .why > div {
        min-height: 0;
        padding: 24px 20px;
    }

    .steps {
        gap: 20px;
    }

    .steps > div {
        padding-left: 62px;
        text-align: left;
    }

    .steps b {
        position: absolute;
        left: 0;
        margin: 0;
    }

    .countries a {
        height: 270px;
    }

    .testimonials,
    .blogs {
        gap: 14px;
    }

    .testimonials > div {
        padding: 22px;
    }

    .testimonials p {
        min-height: 0;
        font-size: 13px;
    }

    .blogs img {
        height: 190px;
    }

    .blogs article div {
        padding: 18px;
    }

    #faq .faq-heading {
        margin-bottom: 30px;
    }

    #faq .faq-heading > p {
        font-size: 12px;
    }

    #faq .faqitem button {
        min-height: 60px;
        padding: 15px 0;
        gap: 14px;
        font-size: 13px;
    }

    #faq .faqitem button span {
        flex-basis: 32px;
        width: 32px;
        height: 32px;
        font-size: 20px;
    }

    #faq .faqitem p {
        padding: 0 40px 18px 0;
        font-size: 12px;
        line-height: 1.7;
    }

    .contactinfo {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-item {
        padding: 11px 12px;
    }

    .contact-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    .contact-icon span {
        font-size: 19px;
    }

    .contact-text b {
        font-size: 12px;
    }

    .contactform {
        padding: 22px 16px;
        border-radius: 12px;
    }

    .contactform::before {
        left: 18px;
        right: 18px;
    }

    .form-heading h3 {
        font-size: 18px;
    }

    .form-heading p {
        font-size: 11px;
    }

    .contactform input:not([type="checkbox"]),
    .contactform select,
    .contactform textarea {
        font-size: 12px;
        padding: 11px 12px;
    }

    .redcta {
        padding: 48px 0;
    }

    .redcta > .wrap {
        gap: 25px;
    }

    .redcta h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .redcta p {
        font-size: 12px;
    }

    .foot {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .bottom span {
        display: block;
        float: none;
        margin-top: 8px;
    }

    .float {
        right: 14px;
        bottom: 14px;
        width: 48px;
        height: 48px;
        font-size: 21px;
    }
}

/* =========================================================
   400px - SMALL PHONES
========================================================= */
@media (max-width: 400px) {
    .wrap,
    .section .wrap {
        width: calc(100% - 24px);
    }

    .section {
        padding: 52px 0;
    }

    .section h2,
    #about .split > div:last-child h2,
    #contact .contact-left h2,
    #services .heading h2,
    #faq .faq-heading h2 {
        font-size: 26px;
        line-height: 1.2;
    }

    .statgrid b {
        font-size: 22px;
    }

    #about .photo img {
        height: 285px;
    }

    #about .photo > strong {
        right: 7px;
        bottom: 10px;
        min-width: 105px;
        padding: 10px 11px;
        font-size: 20px;
        gap: 7px;
    }

    #about .photo small {
        font-size: 9px;
    }

    .why > div {
        padding: 21px 17px;
    }

    .steps > div {
        padding-left: 55px;
    }

    .steps b {
        width: 43px;
        height: 43px;
    }

    .countries a {
        height: 250px;
    }

    .countries b {
        left: 17px;
        font-size: 20px;
    }

    .countries small,
    .countries span {
        left: 17px;
    }

    .contactform {
        padding: 20px 13px;
    }

    .contact-item {
        gap: 10px;
    }

    .btn {
        max-width: 100%;
    }
}

/* =========================================================
   REDUCE MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .fade,
    .fade.show {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
}










/* ================= TRAVEL BLUE THEME ================= */
:root {
    --travel-blue: #0756a5;
    --travel-blue-dark: #063b78;
    --travel-blue-deep: #032b57;
    --travel-orange: #f59e0b;
    --travel-light: #eef6ff;
}

/* Main travel accent */
.immigration-hero .hero-tag,
.section .eyebrow,
.center .eyebrow,
.contact .eyebrow {
    color: var(--travel-orange) !important;
}

.immigration-hero h1 span,
.section h2 span {
    color: var(--travel-blue) !important;
}

/* Buttons / links */
.hero-btn.primary,
.form-submit,
.btn.red {
    background: var(--travel-blue) !important;
    border-color: var(--travel-blue) !important;
}

.hero-btn.primary:hover,
.form-submit:hover,
.btn.red:hover {
    background: var(--travel-blue-dark) !important;
    border-color: var(--travel-blue-dark) !important;
}

.hero-btn.secondary {
    border-color: #fff !important;
}

.link,
.contact a,
.section a {
    color: orange;
}

.link:hover,
.contact a:hover,
.section a:hover {
    color: var(--travel-orange);
}

/* Number / icons / highlights */
.stats b,
.why b,
.steps b,
.testimonials strong {
    color: var(--travel-blue) !important;
}

.stats div:hover b,
.why div:hover b,
.steps div:hover b {
    color: var(--travel-orange) !important;
}

/* Dark sections and CTA */
.section.dark {
    background: var(--travel-blue-deep) !important;
}

.redcta {
    background: linear-gradient(135deg, var(--travel-blue-deep), var(--travel-blue)) !important;
}

.redcta .eyebrow {
    color: #ffd166 !important;
}

/* Cards and form focus */
.contactform,
.hero-form {
    border-color: rgba(7, 86, 165, .18) !important;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.contactform input:focus,
.contactform select:focus,
.contactform textarea:focus {
    border-color: var(--travel-blue) !important;
    box-shadow: 0 0 0 3px rgba(7, 86, 165, .10) !important;
}

/* Keep service/blog structure exactly as existing; only recolor their existing UI */
#services .eyebrow,
.blogs + * .eyebrow {
    color: var(--travel-orange) !important;
}

/* Mobile */
@media (max-width: 768px) {
    .immigration-hero h1 span {
        color: var(--travel-orange) !important;
    }
}
