/* =====================================================
   TRIVEEXA NAVBAR
===================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;
    z-index: 9999;

    background: rgba(7, 17, 31, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.nav-container {
    width: 92%;
    max-width: 1450px;
    height: 100%;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


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

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1;
    min-width: 150px;
}

.logo span {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
}

.logo small {
    margin-top: 5px;
    font-size: 8px;
    letter-spacing: 4px;
    color: #58d6c5;
}


/* =====================================================
   NAV MENU
===================================================== */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
}


.nav-link,
.dropdown-toggle {
    position: relative;

    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;

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

    padding: 12px 15px;

    transition: 0.3s ease;
}


.nav-link:hover,
.dropdown-toggle:hover {
    color: #ffffff;
}


/* ACTIVE */

.nav-link.active {
    color: #ffffff;
}

.nav-link.active::after {
    content: "";

    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 3px;

    height: 2px;

    background: #58d6c5;
}


/* =====================================================
   DROPDOWN
===================================================== */

.nav-dropdown {
    position: relative;
    height: 100%;

    display: flex;
    align-items: center;
}


.dropdown-toggle {
    background: transparent;
    border: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    gap: 8px;

    font-family: inherit;
}


.dropdown-toggle i {
    font-size: 9px;
    transition: transform 0.3s ease;
}


/* ROTATE ARROW */

.nav-dropdown:hover .dropdown-toggle i,
.nav-dropdown.open .dropdown-toggle i {
    transform: rotate(180deg);
}


/* =====================================================
   DROPDOWN MENU
===================================================== */

.dropdown-menu {
    position: absolute;

    top: 72px;
    left: 50%;

    transform: translateX(-50%) translateY(10px);

    width: 350px;

    padding: 10px;

    background: rgba(7, 17, 31, 0.98);

    border: 1px solid rgba(255, 255, 255, 0.10);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.45);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}


/* DESKTOP HOVER */

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translateX(-50%) translateY(0);
}


/* =====================================================
   DROPDOWN ITEMS
===================================================== */

.dropdown-menu a {
    display: flex;
    align-items: center;

    gap: 13px;

    padding: 13px 12px;

    text-decoration: none;

    border-radius: 7px;

    transition: 0.25s ease;
}


.dropdown-menu a:hover {
    background: rgba(88, 214, 197, 0.09);

    transform: translateX(3px);
}


/* ICON */

.menu-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

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

    border: 1px solid rgba(88, 214, 197, 0.25);

    color: #58d6c5;

    background: rgba(88, 214, 197, 0.05);

    border-radius: 6px;
}


.menu-icon i {
    font-size: 14px;
}


/* TEXT */

.dropdown-menu strong {
    display: block;

    color: #ffffff;

    font-size: 12px;
    font-weight: 600;

    margin-bottom: 3px;
}


.dropdown-menu small {
    display: block;

    color: rgba(255, 255, 255, 0.45);

    font-size: 10px;
}


/* =====================================================
   EMI MENU
===================================================== */

.emi-menu {
    width: 350px;
}


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

.nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 11px 19px;

    background: #58d6c5;

    color: #07111f;

    text-decoration: none;

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

    transition: 0.3s ease;
}


.nav-btn:hover {
    background: #ffffff;

    transform: translateY(-2px);
}


.nav-btn i {
    font-size: 10px;
}


/* MOBILE APPLY */

.mobile-apply {
    display: none !important;
}


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

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 9px;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.20);

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 5px;
}


.menu-toggle span {
    display: block;

    width: 21px;
    height: 2px;

    background: #ffffff;

    transition: 0.3s ease;
}


/* X ANIMATION */

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

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

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


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

@media (max-width: 1000px) {

    .nav-container {
        width: 94%;
    }

    .nav-menu {
        gap: 2px;
    }

    .nav-link,
    .dropdown-toggle {
        padding: 10px 9px;
        font-size: 12px;
    }

    .nav-btn {
        padding: 10px 14px;
    }
}


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

@media (max-width: 850px) {

    .navbar {
        height: 72px;
    }


    .nav-container {
        width: 92%;
    }


    /* HIDE DESKTOP APPLY */

    .nav-btn {
        display: none;
    }


    /* SHOW MENU BUTTON */

    .menu-toggle {
        display: flex;
    }


    /* MOBILE NAV */

    .nav-menu {

        position: absolute;

        top: 82px;
        left: 4%;
        right: 4%;

        height: auto;

        padding: 12px;

        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 0;

        background: rgba(7, 17, 31, 0.98);

        border: 1px solid rgba(255, 255, 255, 0.10);

        box-shadow:
            0 25px 60px rgba(0, 0, 0, 0.45);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-15px);

        transition:
            opacity 0.3s ease,
            transform 0.3s ease,
            visibility 0.3s ease;
    }


    .nav-menu.show {

        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }


    /* LINKS */

    .nav-link {

        display: block;

        padding: 15px 12px;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.07);
    }


    .nav-link.active::after {
        display: none;
    }


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

    .nav-dropdown {

        display: block;

        height: auto;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.07);
    }


    .dropdown-toggle {

        width: 100%;

        padding: 15px 12px;

        justify-content: space-between;

        color: rgba(255, 255, 255, 0.75);
    }


    .dropdown-menu {

        position: static;

        width: 100%;

        padding: 0;

        transform: none !important;

        background: rgba(255, 255, 255, 0.025);

        border: none;

        box-shadow: none;

        display: none;

        opacity: 1;

        visibility: visible;
    }


    .nav-dropdown.open .dropdown-menu {

        display: block;
    }


    .dropdown-menu a {

        padding: 11px 10px;

        border-top:
            1px solid rgba(255, 255, 255, 0.05);
    }


    .dropdown-menu a:hover {

        transform: none;

        background: rgba(88, 214, 197, 0.07);
    }


    .menu-icon {

        width: 34px;
        height: 34px;
    }


    .dropdown-menu strong {

        font-size: 11px;
    }


    .dropdown-menu small {

        font-size: 9px;
    }


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

    .mobile-apply {

        display: flex !important;

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

        margin-top: 12px;

        padding: 13px !important;

        background: #58d6c5;

        color: #07111f !important;

        font-weight: 700;

        border: none !important;

        text-align: center;
    }
}


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

@media (max-width: 500px) {

    .logo span {
        font-size: 19px;
    }

    .logo small {
        font-size: 7px;
        letter-spacing: 3px;
    }


    .nav-menu {

        top: 68px;

        left: 3%;
        right: 3%;

        max-height: calc(100vh - 85px);

        overflow-y: auto;
    }


    .menu-toggle {

        width: 40px;
        height: 40px;
    }


    .dropdown-menu a {

        padding: 10px 7px;
    }
}


/* =====================================================
   TRIVEEXA CONTACT PAGE
===================================================== */

:root {
    --dark: #07111f;
    --dark-2: #0b1727;
    --dark-3: #101e30;

    --accent: #d9a441;
    --accent-dark: #f0c66d;

    --white: #ffffff;
    --text: rgba(255, 255, 255, 0.72);
    --muted: rgba(255, 255, 255, 0.45);

    --border: rgba(255, 255, 255, 0.09);
}


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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--dark);
    color: var(--white);
}


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

.contact-hero {

    min-height: 58vh;

    display: flex;
    align-items: flex-end;

    padding: 150px 7% 80px;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(circle at 75% 30%,
            rgba(217, 164, 65, 0.13),
            transparent 30%),
        linear-gradient(135deg,
            #07111f,
            #0b1727);
}


/* decorative circle */

.contact-hero::before {

    content: "";

    position: absolute;

    width: 480px;
    height: 480px;

    right: -160px;
    top: -180px;

    border: 1px solid rgba(217, 164, 65, 0.12);

    border-radius: 50%;
}


.contact-hero::after {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: 40px;
    top: -90px;

    border: 1px solid rgba(217, 164, 65, 0.08);

    border-radius: 50%;
}


.contact-hero-content {

    max-width: 850px;

    position: relative;

    z-index: 2;
}


.hero-tag {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--accent);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 22px;
}


.hero-tag i {
    font-size: 14px;
}


.contact-hero h1 {

    font-size: clamp(45px, 6vw, 82px);

    line-height: 0.98;

    letter-spacing: -3px;

    font-weight: 500;

    max-width: 900px;
}


.contact-hero h1 span {

    display: block;

    color: var(--accent);

    font-weight: 700;
}


.contact-hero p {

    max-width: 650px;

    margin-top: 28px;

    color: var(--text);

    font-size: 16px;

    line-height: 1.8;
}


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

.contact-section {

    padding: 120px 7%;

    background: #ffffff;

    color: var(--dark);
}


.contact-container {

    max-width: 1350px;

    margin: auto;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 100px;

    align-items: start;
}


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

.section-label {

    color: #f0c66d;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


.contact-info h2 {

    margin-top: 18px;

    font-size: clamp(40px, 4vw, 62px);

    line-height: 1;

    letter-spacing: -2px;

    font-weight: 500;
}


.contact-info h2 span {

    display: block;

    color: #f0c66d;

    font-weight: 700;
}


.contact-description {

    margin-top: 25px;

    max-width: 510px;

    color: #687585;

    font-size: 15px;

    line-height: 1.8;
}


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

.contact-item {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 35px;
}


.contact-icon {

    width: 55px;
    height: 55px;

    flex-shrink: 0;

    display: flex;

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

    color: #f0c66d;

    background: rgba(217, 164, 65, 0.10);

    border: 1px solid rgba(217, 164, 65, 0.20);

    border-radius: 50%;
}


.contact-item span {

    display: block;

    color: #8a949f;

    font-size: 9px;

    letter-spacing: 2px;

    font-weight: 700;

    margin-bottom: 5px;
}


.contact-item a,
.contact-item p {

    display: block;

    color: var(--dark);

    text-decoration: none;

    font-size: 16px;

    font-weight: 700;

    margin-bottom: 4px;
}


.contact-item small {

    color: #8a949f;

    font-size: 11px;
}


/* =====================================================
   SOCIAL
===================================================== */

.contact-social {

    margin-top: 55px;

    padding-top: 30px;

    border-top: 1px solid #e5e9ed;
}


.contact-social>span {

    color: #89939d;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}


.social-links {

    display: flex;

    gap: 10px;

    margin-top: 15px;
}


.social-links a {

    width: 40px;
    height: 40px;

    display: flex;

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

    color: var(--dark);

    border: 1px solid #dce2e7;

    border-radius: 50%;

    text-decoration: none;

    transition: 0.3s ease;
}


.social-links a:hover {

    background: var(--dark);

    color: var(--accent);

    border-color: var(--dark);

    transform: translateY(-4px);
}


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

.contact-form-wrapper {

    padding: 45px;

    background: var(--dark);

    position: relative;

    overflow: hidden;

    box-shadow:
        0 30px 70px rgba(7, 17, 31, 0.15);
}


.contact-form-wrapper::before {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    right: -120px;
    top: -120px;

    border: 1px solid rgba(88, 214, 197, 0.15);

    border-radius: 50%;
}


.form-heading {

    position: relative;

    z-index: 2;

    margin-bottom: 35px;
}


.form-heading>span {

    color: var(--accent);

    font-size: 9px;

    letter-spacing: 2px;

    font-weight: 700;
}


.form-heading h3 {

    margin-top: 10px;

    font-size: 32px;

    font-weight: 400;
}


.form-heading strong {

    color: var(--accent);
}


/* =====================================================
   FORM ROW
===================================================== */

.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


.form-group {

    margin-bottom: 22px;
}


.form-group label {

    display: block;

    margin-bottom: 9px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 10px;

    letter-spacing: 1px;

    font-weight: 600;
}


.input-box {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 0 15px;

    height: 52px;

    background: rgba(255, 255, 255, 0.045);

    border: 1px solid rgba(255, 255, 255, 0.10);

    transition: 0.3s ease;
}


.input-box:focus-within {

    border-color: var(--accent);

    background: rgba(88, 214, 197, 0.05);
}


.input-box i {

    color: var(--accent);

    font-size: 13px;
}


.input-box input,
.input-box select,
.input-box textarea {

    width: 100%;

    border: none;

    outline: none;

    background: transparent;

    color: white;

    font-family: inherit;

    font-size: 13px;
}


.input-box input::placeholder,
.input-box textarea::placeholder {

    color: rgba(255, 255, 255, 0.30);
}


.input-box select option {

    background: var(--dark);

    color: white;
}


/* =====================================================
   TEXTAREA
===================================================== */

.textarea-box {

    height: auto;

    align-items: flex-start;

    padding-top: 16px;
}


.input-box textarea {

    resize: vertical;

    min-height: 110px;
}


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

.consent {

    display: flex;

    gap: 10px;

    align-items: flex-start;

    color: rgba(255, 255, 255, 0.45);

    font-size: 10px;

    line-height: 1.6;

    cursor: pointer;
}


.consent input {

    margin-top: 2px;

    accent-color: var(--accent);
}


/* =====================================================
   SUBMIT
===================================================== */

.submit-btn {

    width: 100%;

    margin-top: 25px;

    height: 55px;

    border: none;

    background: var(--accent);

    color: var(--dark);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.5px;

    cursor: pointer;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    transition: 0.3s ease;
}


.submit-btn:hover {

    background: white;

    transform: translateY(-2px);
}


.submit-btn i {

    font-size: 11px;
}


.form-note {

    text-align: center;

    margin-top: 18px;

    color: rgba(255, 255, 255, 0.32);

    font-size: 9px;
}


.form-note i {

    color: var(--accent);

    margin-right: 4px;
}


/* =====================================================
   BENEFITS
===================================================== */

.contact-benefits {

    padding: 110px 7%;

    background: var(--dark);
}


.benefit-heading {

    max-width: 700px;

    margin-bottom: 60px;
}


.benefit-heading>span {

    color: var(--accent);

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 700;
}


.benefit-heading h2 {

    margin-top: 16px;

    font-size: clamp(35px, 4vw, 55px);

    line-height: 1;

    font-weight: 400;
}


.benefit-heading strong {

    color: var(--accent);

    font-weight: 700;
}


/* GRID */

.benefit-grid {

    max-width: 1350px;

    margin: auto;

    display: grid;

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

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

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


.benefit {

    position: relative;

    padding: 45px 30px;

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

    transition: 0.3s ease;
}


.benefit:last-child {

    border-right: none;
}


.benefit:hover {

    background: rgba(255, 255, 255, 0.025);
}


.benefit-number {

    position: absolute;

    top: 20px;
    right: 20px;

    color: rgba(255, 255, 255, 0.15);

    font-size: 11px;
}


.benefit>i {

    color: var(--accent);

    font-size: 23px;

    margin-bottom: 25px;
}


.benefit h3 {

    font-size: 18px;

    margin-bottom: 12px;
}


.benefit p {

    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;
}


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

.contact-cta {

    padding: 80px 7%;

    background: #ffffff;

    color: var(--dark);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}


.contact-cta span {

    color: #f0c66d;

    font-size: 9px;

    letter-spacing: 2px;

    font-weight: 700;
}


.contact-cta h2 {

    margin-top: 12px;

    font-size: clamp(30px, 4vw, 52px);

    font-weight: 400;

    line-height: 1;
}


.contact-cta strong {

    color: #f0c66d;
}


.contact-cta a {

    flex-shrink: 0;

    padding: 17px 27px;

    background: var(--dark);

    color: white;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    display: flex;

    align-items: center;

    gap: 12px;

    transition: 0.3s ease;
}


.contact-cta a:hover {

    background: var(--accent);

    color: var(--dark);
}


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

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

.footer-container {

    position: relative;

    width: 90%;
    max-width: 1400px;

    margin: auto;

    padding: 90px 0 70px;

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap: 70px;
}


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

.footer-logo {

    display: inline-flex;

    flex-direction: column;

    text-decoration: none;

    color: white;

    font-size: 32px;

    font-weight: 800;

    letter-spacing: 1px;
}

.footer-logo span {

    font-size: 12px;

    letter-spacing: 5px;

    color: #d9a441;

    margin-top: 2px;
}


.footer-brand p {

    max-width: 390px;

    margin-top: 25px;

    color: white;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   SOCIAL LINKS
========================================= */

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.social-links a {
    width: 44px;
    height: 44px;

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

    border-radius: 50%;

    text-decoration: none;

    color: #d9a441;

    background: #07111f;

    border: 1px solid rgba(255, 255, 255, 0.15);

    font-size: 18px;

    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #f5f6f8;
    background: #00c985;
    border-color: #00c985;

    transform: translateY(-5px);

    box-shadow:
        0 8px 20px rgba(0, 201, 133, 0.25);
}

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

.footer-column {

    display: flex;

    flex-direction: column;

    gap: 15px;
}

.footer-column h3 {

    font-size: 17px;

    margin-bottom: 12px;

    color: #d9a441;
}

.footer-column h3::after {

    content: "";

    display: block;

    width: 30px;

    height: 3px;

    background: #d9a441;

    margin-top: 10px;

    border-radius: 10px;
}

.footer-column a {

    color: #07111f;

    text-decoration: none;

    font-size: 14px;

    transition: 0.3s ease;
}

.footer-column a:hover {

    color: #00c985;

    padding-left: 5px;
}


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

.footer-contact {

    width: 90%;
    max-width: 1400px;

    margin: auto;

    padding: 30px 0;

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

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

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.contact-item {

    display: flex;

    align-items: center;

    gap: 15px;
}

.contact-icon {

    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: rgba(0, 201, 133, 0.12);

    color: #d9a441;

    display: flex;

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

    font-size: 18px;
}

.contact-item span {

    display: block;

    color: #7f8b98;

    font-size: 12px;

    margin-bottom: 5px;
}

.contact-item strong {

    font-size: 14px;

    color: #e6eaef;
}


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

.footer-apply {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 14px 24px;

    border-radius: 50px;

    background: #07111f;

    color: #d9a441;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s ease;
}

.footer-apply span {

    font-size: 20px;

    transition: 0.3s ease;
}

.footer-apply:hover {

    transform: translateY(-3px);

    box-shadow:
        0 10px 30px rgba(0, 201, 133, 0.25);
}

.footer-apply:hover span {

    transform: translateX(5px);
}


/* =========================================
   DISCLAIMER
========================================= */

.footer-disclaimer {

    width: 90%;
    max-width: 1400px;

    margin: auto;

    padding: 30px 0;
}

.footer-disclaimer p {

    color: #6f7b88;

    font-size: 11px;

    line-height: 1.8;
}

.footer-disclaimer strong {

    color: #aeb8c4;
}


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

.footer-bottom {

    width: 90%;
    max-width: 1400px;

    margin: auto;

    padding: 25px 0;

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

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {

    color: #6f7b88;

    font-size: 12px;
}

.footer-bottom div {

    display: flex;

    gap: 25px;
}

.footer-bottom a {

    color: #7f8b98;

    font-size: 12px;

    text-decoration: none;
}

.footer-bottom a:hover {

    color: #00c985;
}


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

@media (max-width: 900px) {

    .footer-container {

        grid-template-columns: 1fr 1fr;

        gap: 50px;
    }

    .footer-contact {

        flex-wrap: wrap;
    }

}


@media (max-width: 600px) {

    .footer-container {

        grid-template-columns: 1fr;

        padding: 60px 0;
    }

    .footer-contact {

        align-items: flex-start;

        flex-direction: column;
    }

    .footer-apply {

        width: 100%;

        justify-content: center;
    }

    .footer-bottom {

        flex-direction: column;

        text-align: center;
    }

    .footer-bottom div {

        flex-wrap: wrap;

        justify-content: center;
    }

}


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

@media (max-width: 1000px) {

    .contact-container {

        grid-template-columns: 1fr;

        gap: 70px;
    }


    .contact-info {

        max-width: 700px;
    }


    .benefit-grid {

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


    .benefit:nth-child(2) {

        border-right: none;
    }


    .benefit:nth-child(-n+2) {

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


    .footer-container {

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


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

@media (max-width: 700px) {

    .contact-hero {

        min-height: 70vh;

        padding: 130px 7% 60px;
    }


    .contact-hero h1 {

        font-size: 45px;

        letter-spacing: -2px;
    }


    .contact-hero p {

        font-size: 13px;
    }


    .contact-section {

        padding: 80px 6%;
    }


    .contact-container {

        gap: 55px;
    }


    .contact-info h2 {

        font-size: 43px;
    }


    .contact-form-wrapper {

        padding: 28px 20px;
    }


    .form-row {

        grid-template-columns: 1fr;

        gap: 0;
    }


    .form-heading h3 {

        font-size: 27px;
    }


    .benefit-grid {

        grid-template-columns: 1fr;
    }


    .benefit {

        border-right: none !important;

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


    .benefit:last-child {

        border-bottom: none;
    }


    .contact-cta {

        padding: 65px 7%;

        flex-direction: column;

        align-items: flex-start;
    }


    .footer-container {

        grid-template-columns: 1fr;

        gap: 40px;
    }


    .footer-bottom {

        flex-direction: column;

        margin-top: 40px;
    }
}


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

@media (max-width: 450px) {

    .contact-hero h1 {

        font-size: 39px;
    }


    .contact-info h2 {

        font-size: 37px;
    }


    .contact-item {

        align-items: flex-start;
    }


    .contact-icon {

        width: 48px;
        height: 48px;
    }
}