/* =====================================================
   NEXSHIP LOGISTICS
   MAIN WEBSITE STYLES
===================================================== */


/* =====================================================

===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #172033;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* =====================================================
   2. HEADER / NAVBAR
===================================================== */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    width: 92%;
    max-width: 1250px;
    height: 90px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 11px;

    color: #ffffff;

    font-size: 25px;
    font-weight: 800;

    letter-spacing: -0.5px;
}

.logo-icon {
    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #c51d4c;

    color: #ffffff;

    border-radius: 9px;

    font-size: 18px;
}


/* NAVIGATION LINKS */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-menu a {
    color: rgba(255,255,255,0.88);

    font-size: 14px;
    font-weight: 500;

    transition: 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ffffff;
}

.nav-menu a.active::after {
    content: "";

    display: block;

    width: 22px;
    height: 2px;

    margin: 5px auto 0;

    background: #e72b60;
}


/* QUOTE BUTTON */

.quote-btn {
    background: #c51d4c;
    color: #ffffff;

    padding: 12px 22px;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s ease;
}

.quote-btn:hover {
    background: #e72b60;
    transform: translateY(-2px);
}


/* MOBILE BUTTON */

.menu-btn {
    display: none;

    border: none;
    background: transparent;

    color: #ffffff;

    font-size: 24px;

    cursor: pointer;
}

.login{
    color: #fff;
    margin:10px -20px 0 150px;
    padding: 10px;
}
.sign-up{
    color: #ffffff;
    background-color: #c51d4c;
    padding: 10px 14px;
    border-radius: 10px;
}
/* =====================================================
   3. MOBILE MENU
===================================================== */

.mobile-menu {
    position: fixed;

    top: 75px;
    left: 0;

    width: 100%;

    background: #111827;

    padding: 20px;

    display: none;

    flex-direction: column;

    gap: 15px;

    z-index: 999;
}

.mobile-menu a {
    color: #ffffff;

    padding: 10px;

    border-bottom: 1px solid rgba(255,255,255,0.08);
}


/* =====================================================
   4. HERO SECTION
===================================================== */

.hero {
    position: relative;

    min-height: 760px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(9, 16, 30, 0.93) 0%,
            rgba(9, 16, 30, 0.76) 45%,
            rgba(9, 16, 30, 0.35) 100%
        ),
        url("images/hero.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    background-color: #101a2c;
}


/* HERO OVERLAY */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(197,29,76,0.16),
            transparent 35%
        );
}


/* HERO CONTAINER */

.hero-container {
    position: relative;

    width: 92%;
    max-width: 1250px;

    margin: auto;

    padding-top: 80px;
}


/* HERO CONTENT */

.hero-content {
    max-width: 720px;

    color: #ffffff;
}


/* SMALL TITLE */

.small-title {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: #f04c78;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.small-title span {
    width: 32px;
    height: 2px;

    background: #e72b60;
}


/* HERO HEADING */

.hero-content h1 {
    font-size: clamp(45px, 6vw, 76px);

    line-height: 1.05;

    letter-spacing: -2.5px;

    font-weight: 800;

    margin-bottom: 25px;
}

.hero-content h1 strong {
    display: block;

    color: #e9366b;
}


/* HERO PARAGRAPH */

.hero-content > p {
    max-width: 600px;

    color: rgba(255,255,255,0.82);

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 35px;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 35px;
}


/* PRIMARY BUTTON */

.primary-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    background: #c51d4c;

    color: #ffffff;

    padding: 15px 25px;

    border-radius: 5px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.primary-btn:hover {
    background: #e72b60;

    transform: translateY(-3px);
}

.primary-btn i {
    transition: 0.3s ease;
}

.primary-btn:hover i {
    transform: translateX(4px);
}


/* SECONDARY BUTTON */

.secondary-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 13px 25px;

    border: 1px solid rgba(255,255,255,0.65);

    color: #ffffff;

    border-radius: 5px;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s ease;
}

.secondary-btn:hover {
    background: #ffffff;
    color: #172033;
}


/* TRUST */

.hero-trust {
    display: flex;

    align-items: center;

    gap: 25px;
}

.trust-item {
    display: flex;

    align-items: center;

    gap: 8px;

    color: rgba(255,255,255,0.78);

    font-size: 12px;
}

.trust-item i {
    color: #e9366b;
}


/* =====================================================
   5. TRACKING SECTION
===================================================== */

.tracking-section {
    position: relative;

    z-index: 20;

    width: 92%;
    max-width: 1150px;

    margin: -75px auto 100px;
}


/* TRACKING BOX */

.tracking-box {
    background: #ffffff;

    padding: 35px 40px;

    border-radius: 10px;

    box-shadow:
        0 20px 60px rgba(14, 26, 45, 0.14);

    display: grid;

    grid-template-columns: 70px 1fr 1.3fr;

    align-items: center;

    gap: 25px;
}


/* TRACKING ICON */

.tracking-icon {
    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff0f4;

    color: #c51d4c;

    font-size: 24px;
}


/* TRACKING TEXT */

.tracking-text span {
    color: #c51d4c;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.tracking-text h2 {
    color: #172033;

    font-size: 22px;

    line-height: 1.3;

    margin: 3px 0;
}

.tracking-text p {
    color: #7b8494;

    font-size: 12px;
}


/* TRACKING FORM */

.tracking-form {
    display: flex;

    gap: 10px;
}


/* INPUT */

.input-wrapper {
    position: relative;

    flex: 1;
}

.input-wrapper i {
    position: absolute;

    left: 16px;
    top: 50%;

    transform: translateY(-50%);

    color: #9aa2af;

    font-size: 14px;
}

.input-wrapper input {
    width: 100%;

    height: 52px;

    padding: 0 15px 0 43px;

    border: 1px solid #e0e4ea;

    border-radius: 5px;

    outline: none;

    font-size: 13px;

    color: #172033;

    transition: 0.3s;
}

.input-wrapper input:focus {
    border-color: #c51d4c;

    box-shadow:
        0 0 0 3px rgba(197,29,76,0.08);
}


/* TRACK BUTTON */

.tracking-form button {
    height: 52px;

    padding: 0 22px;

    border: none;

    border-radius: 5px;

    background: #c51d4c;

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    white-space: nowrap;

    transition: 0.3s;
}

.tracking-form button:hover {
    background: #e72b60;
}


/* =====================================================
   6. SECTION HEADING
===================================================== */

.section-heading {
    text-align: center;

    max-width: 680px;

    margin: 0 auto 55px;
}

.section-heading > span {
    color: #c51d4c;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}

.section-heading h2 {
    margin-top: 8px;

    color: #172033;

    font-size: clamp(30px, 4vw, 43px);

    line-height: 1.2;

    letter-spacing: -1px;
}

.section-heading p {
    margin-top: 15px;

    color: #788294;

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================================
   7. SERVICES
===================================================== */

.services-section {
    padding: 0 6% 110px;
}

.services-grid {
    width: 100%;
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}


/* SERVICE CARD */

.service-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #edf0f4;

    border-radius: 9px;

    box-shadow:
        0 8px 30px rgba(18, 32, 51, 0.06);

    transition: 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(18, 32, 51, 0.12);
}


/* SERVICE IMAGE */

.service-image {
    position: relative;

    height: 200px;

    background-size: cover;
    background-position: center;

    overflow: hidden;
}


/* IMAGE OVERLAY */

.service-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.03),
            rgba(0,0,0,0.35)
        );
}


/* SERVICE BACKGROUNDS */

.air-image {
    background-image:
        url("images/air.jpg");

    background-color: #8db7d8;
}

.sea-image {
    background-image:
        url("images/sea.jpg");

    background-color: #316f96;
}

.road-image {
    background-image:
        url("images/truck.jpg");

    background-color: #4e5967;
}

.warehouse-image {
    background-image:
        url("images/warehouse.jpg");

    background-color: #876e54;
}


/* SERVICE ICON */

.service-icon {
    position: absolute;

    z-index: 2;

    top: 18px;
    left: 18px;

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #c51d4c;

    color: #ffffff;

    font-size: 17px;

    box-shadow:
        0 5px 15px rgba(0,0,0,0.2);
}


/* SERVICE CONTENT */

.service-content {
    padding: 23px;
}

.service-content h3 {
    color: #172033;

    font-size: 18px;

    margin-bottom: 9px;
}

.service-content p {
    color: #788294;

    font-size: 12px;

    line-height: 1.8;

    min-height: 67px;
}

.service-content a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 18px;

    color: #c51d4c;

    font-size: 12px;

    font-weight: 700;
}

.service-content a i {
    transition: 0.3s;
}

.service-content a:hover i {
    transform: translateX(5px);
}


/* =====================================================
   8. WHY SECTION
===================================================== */

.why-section {
    padding: 110px 7%;

    background: #f7f8fa;
}

.why-container {
    max-width: 1180px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}


/* WHY IMAGE */

.why-image {
    height: 500px;

    position: relative;

    border-radius: 12px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(16,29,49,0.15),
            rgba(16,29,49,0.65)
        ),
        url("images/warehouse.jpg");

    background-size: cover;

    background-position: center;

    box-shadow:
        0 20px 50px rgba(16,29,49,0.15);
}


/* EXPERIENCE CARD */

.image-card {
    position: absolute;

    left: 25px;
    bottom: 25px;

    padding: 22px 28px;

    background: #c51d4c;

    color: #ffffff;

    border-radius: 7px;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.2);
}

.big-number {
    font-size: 38px;

    font-weight: 800;

    line-height: 1;
}

.image-card span {
    display: block;

    margin-top: 5px;

    font-size: 11px;

    opacity: 0.9;
}


/* WHY CONTENT */

.section-label {
    color: #c51d4c;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}

.why-content h2 {
    color: #172033;

    font-size: clamp(32px, 4vw, 46px);

    line-height: 1.15;

    letter-spacing: -1.5px;

    margin: 10px 0 18px;
}

.why-content h2 strong {
    color: #c51d4c;
}

.why-content > p {
    color: #788294;

    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 30px;
}


/* BENEFIT */

.benefit {
    display: flex;

    gap: 17px;

    margin-bottom: 25px;
}

.benefit-icon {
    flex-shrink: 0;

    width: 47px;
    height: 47px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #fff0f4;

    color: #c51d4c;

    border-radius: 7px;
}

.benefit h3 {
    color: #172033;

    font-size: 15px;

    margin-bottom: 3px;
}

.benefit p {
    color: #7b8494;

    font-size: 12px;
}


/* =====================================================
   9. STATISTICS
===================================================== */

.stats-section {
    background: #111c2e;

    padding: 65px 6%;
}

.stats-container {
    max-width: 1150px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.stat {
    text-align: center;

    padding: 10px 20px;

    border-right:
        1px solid rgba(255,255,255,0.1);
}

.stat:last-child {
    border-right: none;
}

.stat > i {
    color: #e9366b;

    font-size: 21px;

    margin-bottom: 12px;
}

.stat h2 {
    color: #ffffff;

    font-size: 35px;

    line-height: 1;

    margin-bottom: 7px;
}

.stat p {
    color: #9ca8ba;

    font-size: 11px;
}


/* =====================================================
   10. ABOUT
===================================================== */

.about-section {
    padding: 110px 7%;
}

.about-container {
    max-width: 1150px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 0.8fr;

    gap: 90px;

    align-items: center;
}

.about-content h2 {
    color: #172033;

    font-size: clamp(32px, 4vw, 45px);

    line-height: 1.15;

    letter-spacing: -1.5px;

    margin: 10px 0 20px;
}

.about-content h2 strong {
    color: #c51d4c;
}

.about-content p {
    color: #788294;

    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 15px;

    max-width: 600px;
}

.about-content .primary-btn {
    margin-top: 18px;
}


/* ABOUT BOX */

.about-box {
    min-height: 350px;

    padding: 50px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #111c2e,
            #25354d
        );

    color: #ffffff;

    border-radius: 12px;

    position: relative;

    overflow: hidden;

    box-shadow:
        0 20px 50px rgba(17,28,46,0.15);
}

.about-box::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    right: -100px;
    top: -100px;

    border-radius: 50%;

    border: 45px solid rgba(255,255,255,0.03);
}

.about-box-icon {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #c51d4c;

    border-radius: 10px;

    font-size: 25px;

    margin-bottom: 25px;
}

.about-box h3 {
    font-size: 25px;

    line-height: 1.3;

    max-width: 400px;

    margin-bottom: 15px;
}

.about-box p {
    color: #b7c0ce;

    font-size: 13px;
}


/* =====================================================
   11. CTA
===================================================== */

.cta-section {
    position: relative;

    padding: 100px 20px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            rgba(197,29,76,0.94),
            rgba(137,15,49,0.94)
        );
}

.cta-section::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border: 60px solid rgba(255,255,255,0.04);

    border-radius: 50%;

    left: -120px;
    top: -100px;
}

.cta-section::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border: 45px solid rgba(255,255,255,0.04);

    border-radius: 50%;

    right: -100px;
    bottom: -100px;
}

.cta-content {
    position: relative;

    z-index: 2;

    max-width: 700px;

    margin: auto;

    color: #ffffff;
}

.cta-content > span {
    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    opacity: 0.8;
}

.cta-content h2 {
    font-size: clamp(34px, 5vw, 52px);

    line-height: 1.15;

    margin: 8px 0 15px;
}

.cta-content p {
    color: rgba(255,255,255,0.85);

    font-size: 14px;

    margin-bottom: 28px;
}

.cta-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: #ffffff;

    color: #a71640;

    padding: 14px 25px;

    border-radius: 5px;

    font-size: 13px;

    font-weight: 700;

    transition: 0.3s;
}

.cta-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.15);
}


/* =====================================================
   12. CONTACT
===================================================== */

.contact-section {
    padding: 110px 7%;

    background: #ffffff;
}

.contact-container {
    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns: 0.75fr 1.25fr;

    gap: 70px;

    align-items: start;
}


/* CONTACT INFO */

.contact-info {
    padding-top: 10px;
}

.contact-item {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 30px;
}

.contact-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #fff0f4;

    color: #c51d4c;

    border-radius: 7px;
}

.contact-item h3 {
    color: #172033;

    font-size: 14px;

    margin-bottom: 2px;
}

.contact-item p {
    color: #788294;

    font-size: 12px;
}


/* CONTACT FORM */

.contact-form {
    padding: 35px;

    background: #f7f8fa;

    border-radius: 10px;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    border: 1px solid #e2e6eb;

    background: #ffffff;

    outline: none;

    border-radius: 5px;

    padding: 14px;

    margin-bottom: 15px;

    color: #172033;

    font-size: 12px;

    transition: 0.3s;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #c51d4c;

    box-shadow:
        0 0 0 3px rgba(197,29,76,0.07);
}

.contact-form button {
    border: none;

    background: #c51d4c;

    color: #ffffff;

    padding: 14px 22px;

    border-radius: 5px;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s;
}

.contact-form button:hover {
    background: #e72b60;

    transform: translateY(-2px);
}


/* =====================================================
   13. FOOTER
===================================================== */

footer {
    background: #0b1423;

    color: #ffffff;

    padding: 70px 7% 0;
}

.footer-container {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;

    gap: 60px;

    padding-bottom: 55px;
}


/* FOOTER BRAND */

.footer-brand .logo {
    margin-bottom: 18px;
}

.footer-brand > p {
    max-width: 310px;

    color: #8995a7;

    font-size: 12px;

    line-height: 1.8;
}


/* SOCIALS */

.socials {
    display: flex;

    gap: 9px;

    margin-top: 20px;
}

.socials a {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 5px;

    background: rgba(255,255,255,0.06);

    color: #aab4c3;

    font-size: 12px;

    transition: 0.3s;
}

.socials a:hover {
    background: #c51d4c;

    color: #ffffff;
}


/* FOOTER COLUMNS */

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-column h3 {
    font-size: 14px;

    margin-bottom: 8px;
}

.footer-column a,
.footer-column p {
    color: #8995a7;

    font-size: 12px;

    transition: 0.3s;
}

.footer-column a:hover {
    color: #ffffff;

    transform: translateX(3px);
}

.footer-column p {
    display: flex;

    gap: 9px;

    line-height: 1.6;
}

.footer-column p i {
    color: #e9366b;

    margin-top: 4px;
}


/* FOOTER BOTTOM */

.footer-bottom {
    max-width: 1200px;

    margin: auto;

    padding: 20px 0;

    border-top:
        1px solid rgba(255,255,255,0.08);

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.footer-bottom p {
    color: #687487;

    font-size: 10px;
}

.footer-bottom div {
    display: flex;

    gap: 20px;
}

.footer-bottom a {
    color: #687487;

    font-size: 10px;
}

.footer-bottom a:hover {
    color: #ffffff;
}


/* =====================================================
   14. TABLET
===================================================== */

@media (max-width: 1050px) {

    .nav-menu {
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tracking-box {
        grid-template-columns: 60px 1fr;
    }

    .tracking-form {
        grid-column: 1 / -1;
    }

    .why-container {
        gap: 50px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =====================================================
   15. MOBILE
===================================================== */

@media (max-width: 750px) {

    /* NAVBAR */

    .navbar {
        height: 75px;
    }

    .nav-menu,
    .quote-btn {
        display: none;
    }

    .menu-btn {
        display: block;
    }


    /* HERO */

    .hero {
        min-height: 680px;

        background:
            linear-gradient(
                rgba(9,16,30,0.9),
                rgba(9,16,30,0.75)
            ),
            url("images/hero.jpg");

        background-position: center;
    }

    .hero-container {
        padding-top: 55px;
    }

    .hero-content h1 {
        font-size: 44px;

        letter-spacing: -1.5px;
    }

    .hero-content > p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }

    .hero-trust {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }


    /* TRACKING */

    .tracking-section {
        width: 90%;

        margin-top: -55px;

        margin-bottom: 75px;
    }

    .tracking-box {
        display: block;

        padding: 28px 22px;
    }

    .tracking-icon {
        margin-bottom: 18px;
    }

    .tracking-text {
        margin-bottom: 20px;
    }

    .tracking-text h2 {
        font-size: 20px;
    }

    .tracking-form {
        display: block;
    }

    .input-wrapper {
        margin-bottom: 10px;
    }

    .tracking-form button {
        width: 100%;
    }


    /* SERVICES */

    .services-section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .services-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .service-image {
        height: 220px;
    }


    /* WHY */

    .why-section {
        padding: 75px 5%;
    }

    .why-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .why-image {
        height: 380px;
    }


    /* STATS */

    .stats-section {
        padding: 55px 5%;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;

        gap: 35px 10px;
    }

    .stat {
        border-right: none;
    }


    /* ABOUT */

    .about-section {
        padding: 75px 5%;
    }

    .about-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .about-box {
        min-height: 300px;

        padding: 35px;
    }


    /* CONTACT */

    .contact-section {
        padding: 75px 5%;
    }

    .contact-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }


    /* FOOTER */

    footer {
        padding-left: 5%;
        padding-right: 5%;
    }

    .footer-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 15px;

        text-align: center;
    }

}


/* =====================================================
   16. SMALL PHONES
===================================================== */

@media (max-width: 420px) {

    .logo {
        font-size: 21px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }

    .hero-content h1 {
        font-size: 37px;
    }

    .hero-content > p {
        font-size: 13px;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .hero-buttons {
        width: 100%;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat {
        padding: 10px;
    }

    .about-box h3 {
        font-size: 22px;
    }

}