/* ================================
   GLOBAL
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f8fb;
    color: #071a2b;
}


/* ================================
   NAVBAR
================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    padding: 18px 0;

    background: rgba(7, 26, 43, 0.88);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(255,255,255,0.08);

    transition: 0.4s ease;
}


.nav-container {

    width: 90%;
    max-width: 1400px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ================================
   LOGO
================================ */

.logo {

    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;

    color: #fff;
}


.logo-icon {

    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #ff8a00;

    color: #fff;

    font-size: 20px;

    transform: rotate(-8deg);

    transition: 0.4s ease;
}


.logo:hover .logo-icon {

    transform: rotate(0deg) scale(1.08);

}


.logo-text {

    font-size: 20px;
    font-weight: 800;

    letter-spacing: 1px;
}


.logo-text span {

    color: #19b5fe;

}


/* ================================
   MENU
================================ */

.nav-menu {

    display: flex;
    align-items: center;
    gap: 30px;
}


.nav-menu > a,
.dropdown-link {

    position: relative;

    color: #fff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    padding: 10px 0;

    transition: 0.3s ease;
}


.nav-menu > a::after,
.dropdown-link::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 2px;

    width: 0;
    height: 2px;

    background: #ff8a00;

    transition: 0.3s ease;
}


.nav-menu > a:hover,
.dropdown-link:hover {

    color: #19b5fe;

}


.nav-menu > a:hover::after,
.dropdown-link:hover::after,
.nav-menu > a.active::after {

    width: 100%;

}


.dropdown {

    position: relative;
}


.dropdown-link {

    display: flex;
    align-items: center;
    gap: 7px;
}


.dropdown-link i {

    font-size: 10px;

    transition: 0.3s ease;
}


.dropdown:hover .dropdown-link i {

    transform: rotate(180deg);

}


/* ================================
   DROPDOWN
================================ */

.dropdown-menu {

    position: absolute;

    top: 45px;
    left: -20px;

    width: 220px;

    padding: 12px;

    background: #fff;

    border-radius: 12px;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.15);

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: 0.3s ease;
}


.dropdown:hover .dropdown-menu {

    opacity: 1;
    visibility: visible;

    transform: translateY(0);

}


.dropdown-menu a {

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 13px;

    text-decoration: none;

    color: #071a2b;

    border-radius: 8px;

    font-size: 14px;

    transition: 0.3s ease;
}


.dropdown-menu a i {

    width: 25px;

    color: #ff8a00;
}


.dropdown-menu a:hover {

    background: #eef8fd;

    color: #0b3c5d;

    transform: translateX(5px);

}


/* ================================
   CTA BUTTON
================================ */

.nav-button {

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 13px 20px;

    border-radius: 50px;

    background: #ff8a00;

    color: #fff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: 0.4s ease;

    box-shadow: 0 8px 25px rgba(255,138,0,0.25);
}


.nav-button:hover {

    background: #19b5fe;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(25,181,254,0.3);

}


.nav-button i {

    transition: 0.3s ease;
}


.nav-button:hover i {

    transform: translateX(5px);

}


/* ================================
   MOBILE MENU BUTTON
================================ */

.menu-toggle {

    display: none;

    width: 42px;
    height: 42px;

    border: none;

    background: transparent;

    cursor: pointer;

}


.menu-toggle span {

    display: block;

    width: 26px;
    height: 2px;

    background: #fff;

    margin: 6px auto;

    transition: 0.3s ease;

}


/* ================================
   DEMO SECTION
================================ */

.demo-section {

    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            rgba(7,26,43,0.8),
            rgba(7,26,43,0.8)
        ),
        url("image/banner.png");

    background-size: cover;
    background-position: center;

    color: #fff;
}


.demo-section h1 {

    font-size: clamp(40px, 6vw, 80px);

    margin-bottom: 15px;

}


.demo-section p {

    font-size: 22px;

    color: #19b5fe;

}


/* ================================
   MOBILE
================================ */

@media (max-width: 1050px) {

    .nav-menu {

        position: absolute;

        top: 80px;
        left: 5%;

        width: 90%;

        padding: 20px;

        background: #071a2b;

        border-radius: 15px;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 5px;

        opacity: 0;
        visibility: hidden;

        transform: translateY(-15px);

        transition: 0.3s ease;

    }


    .nav-menu.active {

        opacity: 1;
        visibility: visible;

        transform: translateY(0);

    }


    .dropdown {

        width: 100%;

    }


    .dropdown-link {

        width: 100%;

    }


    .dropdown-menu {

        position: static;

        width: 100%;

        margin-top: 10px;

        display: none;

        opacity: 1;
        visibility: visible;

        transform: none;

        box-shadow: none;

    }


    .dropdown:hover .dropdown-menu {

        display: block;

    }


    .nav-button {

        display: none;

    }


    .menu-toggle {

        display: block;

    }

}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 480px) {

    .navbar {

        padding: 13px 0;

    }


    .logo-text {

        font-size: 17px;

    }


    .logo-icon {

        width: 38px;
        height: 38px;

    }


    .nav-menu {

        top: 68px;

    }

}


/* =========================================
   COMMON
========================================= */

section {
    overflow: hidden;
}

.section-mini-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #ff8a00;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.section-heading {
    max-width: 750px;
    margin: 0 auto 60px;

    text-align: center;
}

.section-heading h2,
.why-content h2,
.tabs-heading h2,
.network-content h2,
.contact-info h2 {

    font-size: clamp(38px, 5vw, 62px);

    line-height: 1.08;

    color: #071a2b;

    letter-spacing: -2px;

    margin-bottom: 20px;
}

.section-heading h2 span,
.why-content h2 span,
.tabs-heading h2 span,
.network-content h2 span,
.contact-info h2 span {

    color: #19b5fe;
}

.section-heading p {
    color: #647486;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================
   TRACKING
========================================= */

.tracking-section {
    background: #071a2b;

    padding: 70px 0;
}

.tracking-container {
    width: 90%;
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: 0.8fr 1.5fr;

    align-items: center;

    gap: 60px;
}

.tracking-intro h2 {
    color: #fff;

    font-size: 38px;

    line-height: 1.1;

    margin-bottom: 15px;
}

.tracking-intro h2 span {
    color: #19b5fe;
}

.tracking-intro p {
    color: rgba(255,255,255,0.65);

    line-height: 1.6;

    max-width: 450px;
}

.tracking-box {
    padding: 10px;

    display: flex;

    gap: 10px;

    background: #fff;

    border-radius: 12px;

    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.tracking-input {
    flex: 1;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 0 15px;
}

.tracking-input i {
    color: #19b5fe;
}

.tracking-input input {
    width: 100%;

    border: 0;
    outline: 0;

    font-size: 15px;
}

.track-button,
.quote-button {
    border: 0;

    padding: 15px 20px;

    border-radius: 8px;

    text-decoration: none;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s;
}

.track-button {
    background: #19b5fe;
    color: #fff;
}

.quote-button {
    background: #ff8a00;
    color: #fff;

    display: flex;
    align-items: center;
    gap: 8px;
}

.track-button:hover,
.quote-button:hover {
    transform: translateY(-3px);
}

#trackingMessage {
    grid-column: 2;

    color: #19b5fe;

    margin-top: -40px;
    padding-left: 15px;
}


/* =========================================
   SERVICES
========================================= */

.services-section {
    padding: 110px 0;

    background: #f4f8fb;
}

.services-container {
    width: 90%;
    max-width: 1400px;

    margin: auto;
}

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.service-card {
    position: relative;

    padding: 38px;

    background: #fff;

    border: 1px solid #e4edf3;

    border-radius: 18px;

    transition: 0.4s ease;

    overflow: hidden;
}

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #19b5fe;

    transform: scaleX(0);

    transform-origin: left;

    transition: 0.4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(7,26,43,0.12);
}

.featured-service {
    background: #071a2b;

    color: #fff;
}

.service-number {
    position: absolute;

    top: 20px;
    right: 25px;

    font-size: 12px;

    color: #a9b7c4;
}

.service-icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: rgba(25,181,254,0.12);

    color: #19b5fe;

    font-size: 24px;

    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 22px;

    margin-bottom: 15px;
}

.service-card p {
    color: #718090;

    line-height: 1.7;

    margin-bottom: 25px;
}

.featured-service p {
    color: rgba(255,255,255,0.65);
}

.service-card a {
    color: #19b5fe;

    text-decoration: none;

    font-weight: 700;

    font-size: 14px;
}

.service-card a i {
    margin-left: 7px;

    transition: 0.3s;
}

.service-card a:hover i {
    margin-left: 12px;
}


/* =========================================
   WHY US
========================================= */

.why-section {
    padding: 120px 0;

    background: #fff;
}

.why-container {
    width: 90%;
    max-width: 1300px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}

.why-image {
    position: relative;
}

.why-image img {
    width: 100%;

    height: 600px;

    object-fit: cover;

    border-radius: 25px;
}

.experience-card {
    position: absolute;

    right: -25px;
    bottom: 30px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 22px;

    background: #ff8a00;

    color: #fff;

    border-radius: 15px;

    box-shadow: 0 20px 40px rgba(255,138,0,0.25);
}

.experience-card strong {
    font-size: 40px;
}

.experience-card span {
    font-size: 12px;

    line-height: 1.4;
}

.why-content > p {
    color: #68798a;

    line-height: 1.8;

    margin-bottom: 35px;
}

.why-features {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;
}

.why-feature {
    display: flex;

    gap: 15px;
}

.why-icon {
    min-width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #eef8fd;

    color: #19b5fe;
}

.why-feature h3 {
    font-size: 16px;

    margin-bottom: 6px;
}

.why-feature p {
    font-size: 13px;

    color: #7b8793;

    line-height: 1.5;
}


/* =========================================
   TRANSPORT TABS
========================================= */

.transport-tabs-section {
    padding: 110px 0;

    background: #f4f8fb;
}

.transport-tabs-container {
    width: 90%;
    max-width: 1300px;

    margin: auto;
}

.tabs-heading {
    text-align: center;

    margin-bottom: 45px;
}

.transport-tabs {
    display: flex;

    justify-content: center;

    gap: 10px;

    margin-bottom: 40px;
}

.transport-tab {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 14px 25px;

    border: 1px solid #dbe7ee;

    background: #fff;

    color: #536273;

    border-radius: 50px;

    cursor: pointer;

    font-weight: 700;

    transition: 0.3s;
}

.transport-tab i {
    color: #19b5fe;
}

.transport-tab.active {
    background: #071a2b;

    color: #fff;

    border-color: #071a2b;
}

.transport-tab-content {
    display: grid;

    grid-template-columns: 1fr 1fr;

    background: #fff;

    border-radius: 25px;

    overflow: hidden;

    box-shadow: 0 25px 70px rgba(7,26,43,0.1);
}

.transport-tab-image {
    min-height: 520px;
}

.transport-tab-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s;
}

.transport-tab-info {
    padding: 70px;
}

.transport-tab-info > span {
    color: #ff8a00;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}

.transport-tab-info h3 {
    font-size: 42px;

    margin: 15px 0;
}

.transport-tab-info > p {
    color: #697889;

    line-height: 1.8;

    margin-bottom: 25px;
}

.transport-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-bottom: 35px;
}

.transport-points div {
    font-size: 13px;

    color: #435263;
}

.transport-points i {
    color: #19b5fe;

    margin-right: 7px;
}

.dark-cta {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 14px 22px;

    background: #071a2b;

    color: #fff;

    text-decoration: none;

    border-radius: 50px;

    font-weight: 700;

    font-size: 13px;

    transition: 0.3s;
}

.dark-cta:hover {
    background: #ff8a00;

    transform: translateY(-3px);
}


/* =========================================
   STATS
========================================= */

.stats-section {
    padding: 70px 0;

    background: #19b5fe;
}

.stats-container {
    width: 90%;
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;
}

.stat-item {
    display: flex;

    align-items: center;

    gap: 18px;

    color: #fff;
}

.stat-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.15);

    font-size: 21px;
}

.stat-item h3 {
    font-size: 38px;

    line-height: 1;
}

.stat-item p {
    margin-top: 7px;

    font-size: 13px;

    opacity: 0.85;
}


/* =========================================
   NETWORK
========================================= */

.network-section {
    padding: 120px 0;

    background: #071a2b;

    color: #fff;
}

.network-container {
    width: 90%;
    max-width: 1300px;

    margin: auto;

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 80px;

    align-items: center;
}

.network-content h2 {
    color: #fff;
}

.network-content > p {
    color: rgba(255,255,255,0.65);

    line-height: 1.8;

    margin-bottom: 30px;
}

.network-list {
    display: flex;

    gap: 25px;

    margin-bottom: 35px;
}

.network-list div {
    display: flex;

    align-items: center;

    gap: 10px;
}

.network-list i {
    color: #19b5fe;
}

.network-list strong {
    display: block;

    font-size: 20px;
}

.network-list span {
    font-size: 11px;

    color: #8796a4;
}

.network-map {
    position: relative;

    min-height: 500px;

    background:
        radial-gradient(
            circle,
            rgba(25,181,254,0.12),
            transparent 65%
        );

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 25px;

    overflow: hidden;
}

.map-grid {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.05) 1px,
            transparent 1px
        );

    background-size: 50px 50px;
}

.map-point {
    position: absolute;

    z-index: 3;
}

.map-point span {
    display: block;

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #ff8a00;

    box-shadow:
        0 0 0 7px rgba(255,138,0,0.15),
        0 0 25px #ff8a00;

    animation: mapPulse 2s infinite;
}

.map-point label {
    position: absolute;

    top: 20px;
    left: -20px;

    color: #fff;

    font-size: 11px;

    white-space: nowrap;
}

.point-1 {
    top: 57%;
    left: 51%;
}

.point-2 {
    top: 43%;
    left: 58%;
}

.point-3 {
    top: 28%;
    left: 45%;
}

.point-4 {
    top: 65%;
    left: 72%;
}

.point-5 {
    top: 35%;
    left: 20%;
}

.map-line {
    position: absolute;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #19b5fe,
        transparent
    );

    transform-origin: left;

    opacity: 0.5;
}

.line-one {
    width: 300px;

    top: 45%;
    left: 45%;

    transform: rotate(-20deg);
}

.line-two {
    width: 280px;

    top: 60%;
    left: 50%;

    transform: rotate(25deg);
}

.line-three {
    width: 350px;

    top: 45%;
    left: 25%;

    transform: rotate(5deg);
}

@keyframes mapPulse {
    0%,100% {
        box-shadow:
            0 0 0 7px rgba(255,138,0,0.15),
            0 0 15px #ff8a00;
    }

    50% {
        box-shadow:
            0 0 0 15px rgba(255,138,0,0.03),
            0 0 30px #ff8a00;
    }
}


/* =========================================
   PROCESS
========================================= */

.process-section {
    padding: 110px 0;

    background: #fff;
}

.process-container {
    width: 90%;
    max-width: 1250px;

    margin: auto;
}

.process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}

.process-item {
    position: relative;

    text-align: center;

    padding: 30px 20px;
}

.process-number {
    position: absolute;

    top: 0;
    right: 10px;

    color: #e8eef2;

    font-size: 45px;

    font-weight: 900;
}

.process-icon {
    width: 75px;
    height: 75px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eef8fd;

    color: #19b5fe;

    font-size: 25px;

    position: relative;

    z-index: 2;
}

.process-item h3 {
    margin-bottom: 12px;

    font-size: 19px;
}

.process-item p {
    color: #788694;

    line-height: 1.6;

    font-size: 13px;
}


/* =========================================
   TESTIMONIALS
========================================= */

.testimonial-section {
    padding: 110px 0;

    background: #f4f8fb;
}

.testimonial-container {
    width: 90%;
    max-width: 900px;

    margin: auto;
}

.testimonial-slider {
    position: relative;

    min-height: 300px;
}

.testimonial-card {
    position: absolute;

    inset: 0;

    padding: 45px;

    background: #fff;

    border-radius: 20px;

    box-shadow: 0 20px 60px rgba(7,26,43,0.08);

    opacity: 0;

    visibility: hidden;

    transform: translateX(30px);

    transition: 0.5s;
}

.testimonial-card.active-testimonial {
    opacity: 1;

    visibility: visible;

    transform: translateX(0);
}

.quote-icon {
    color: #19b5fe;

    font-size: 30px;

    margin-bottom: 20px;
}

.testimonial-card > p {
    color: #526273;

    font-size: 19px;

    line-height: 1.8;

    margin-bottom: 30px;
}

.client {
    display: flex;

    align-items: center;

    gap: 12px;
}

.client-avatar {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #071a2b;

    color: #fff;

    font-weight: 700;
}

.client strong {
    display: block;
}

.client span {
    color: #8a98a5;

    font-size: 12px;
}

.testimonial-controls {
    margin-top: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;
}

.testimonial-controls button {
    width: 42px;
    height: 42px;

    border: 1px solid #dbe4e9;

    background: #fff;

    border-radius: 50%;

    cursor: pointer;

    transition: 0.3s;
}

.testimonial-controls button:hover {
    background: #19b5fe;

    color: #fff;
}

.testimonial-dots {
    display: flex;

    gap: 7px;
}

.testimonial-dots span {
    width: 25px;
    height: 4px;

    border-radius: 5px;

    background: #d2dde4;

    cursor: pointer;
}

.testimonial-dots span.active {
    width: 45px;

    background: #ff8a00;
}


/* =========================================
   CTA
========================================= */

.cta-section {
    padding: 100px 0;

    background: #19b5fe;
}

.cta-container {
    width: 90%;
    max-width: 1200px;

    margin: auto;

    position: relative;

    overflow: hidden;
}

.cta-content {
    position: relative;

    z-index: 2;

    max-width: 700px;
}

.cta-content > span {
    color: #fff;

    font-size: 12px;

    letter-spacing: 2px;

    font-weight: 800;
}

.cta-content h2 {
    color: #fff;

    font-size: clamp(40px, 6vw, 68px);

    line-height: 1.05;

    margin: 15px 0;
}

.cta-content h2 strong {
    display: block;

    color: #071a2b;
}

.cta-content p {
    color: rgba(255,255,255,0.85);

    max-width: 550px;

    line-height: 1.7;

    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;

    gap: 12px;
}

.cta-main-btn,
.cta-outline-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 15px 23px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 700;

    font-size: 13px;

    transition: 0.3s;
}

.cta-main-btn {
    background: #071a2b;

    color: #fff;
}

.cta-outline-btn {
    border: 1px solid rgba(255,255,255,0.6);

    color: #fff;
}

.cta-main-btn:hover,
.cta-outline-btn:hover {
    transform: translateY(-4px);
}

.cta-outline-btn:hover {
    background: #fff;

    color: #071a2b;
}

.cta-decoration {
    position: absolute;

    right: 0;
    top: 50%;

    transform: translateY(-50%);

    font-size: 220px;

    color: rgba(255,255,255,0.12);
}


/* =========================================
   CONTACT
========================================= */

.contact-section {
    padding: 120px 0;

    background: #fff;
}

.contact-container {
    width: 90%;
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 80px;

    align-items: start;
}

.contact-info > p {
    color: #718090;

    line-height: 1.8;

    margin-bottom: 35px;
}

.contact-details {
    display: grid;

    gap: 22px;
}

.contact-detail {
    display: flex;

    align-items: center;

    gap: 15px;
}

.contact-detail > div {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #eef8fd;

    color: #19b5fe;
}

.contact-detail small {
    display: block;

    color: #9aa7b2;

    font-size: 9px;

    letter-spacing: 1px;

    margin-bottom: 4px;
}

.quote-form {
    padding: 40px;

    background: #f4f8fb;

    border-radius: 20px;
}

.quote-form h3 {
    font-size: 28px;

    color: #071a2b;

    margin-bottom: 7px;
}

.quote-form > p {
    color: #7a8995;

    font-size: 13px;

    margin-bottom: 25px;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    font-size: 12px;

    font-weight: 700;

    color: #334454;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid #d9e4ea;

    border-radius: 8px;

    outline: none;

    background: #fff;

    font-family: inherit;

    transition: 0.3s;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #19b5fe;

    box-shadow: 0 0 0 3px rgba(25,181,254,0.08);
}

.submit-button {
    width: 100%;

    padding: 15px;

    border: 0;

    border-radius: 8px;

    background: #071a2b;

    color: #fff;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s;
}

.submit-button:hover {
    background: #ff8a00;

    transform: translateY(-3px);
}

.form-message {
    text-align: center;

    margin-top: 15px;

    color: #19b5fe;

    font-size: 13px;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    background: #04121e;

    color: #fff;

    padding: 75px 0 0;
}

.footer-container {
    width: 90%;
    max-width: 1300px;

    margin: auto;
}

.footer-main {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;

    gap: 50px;

    padding-bottom: 60px;
}

.footer-logo {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #fff;

    text-decoration: none;

    font-size: 20px;

    font-weight: 800;
}

.footer-logo span {
    color: #19b5fe;
}

.footer-logo > span {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #010a27;

    border-radius: 10px;

    color: #fff;
}

.footer-about p {
    color: #7c8c9b;

    line-height: 1.7;

    font-size: 13px;

    margin: 20px 0;
}

.social-icons {
    display: flex;

    gap: 8px;
}

.social-icons a {
    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: rgba(255,255,255,0.06);

    color: #fff;

    text-decoration: none;

    transition: 0.3s;
}

.social-icons a:hover {
    background: #19b5fe;

    transform: translateY(-3px);
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.footer-column h3 {
    font-size: 16px;

    margin-bottom: 10px;
}

.footer-column a {
    color: #7c8c9b;

    text-decoration: none;

    font-size: 13px;

    transition: 0.3s;
}

.footer-column a:hover {
    color: #19b5fe;

    padding-left: 4px;
}

.footer-contact p {
    display: flex;

    gap: 10px;

    color: #7c8c9b;

    font-size: 13px;

    line-height: 1.5;
}

.footer-contact i {
    color: #19b5fe;

    min-width: 15px;
}

.footer-bottom {
    padding: 22px 0;

    border-top: 1px solid rgba(255,255,255,0.08);

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: #687887;

    font-size: 11px;
}

.footer-bottom div {
    display: flex;

    gap: 20px;
}

.footer-bottom a {
    color: #687887;

    text-decoration: none;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .tracking-container,
    .why-container,
    .network-container,
    .contact-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .tracking-box {
        flex-wrap: wrap;
    }

    .tracking-input {
        width: 100%;

        min-height: 48px;
    }

    #trackingMessage {
        grid-column: 1;

        margin-top: -30px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .network-map {
        min-height: 400px;
    }

    .transport-tab-content {
        grid-template-columns: 1fr;
    }

    .transport-tab-image {
        min-height: 350px;
    }

}


@media (max-width: 600px) {

    .tracking-section,
    .services-section,
    .why-section,
    .transport-tabs-section,
    .network-section,
    .process-section,
    .testimonial-section,
    .contact-section {
        padding: 75px 0;
    }

    .tracking-box {
        flex-direction: column;
    }

    .tracking-input {
        min-height: 50px;
    }

    .track-button,
    .quote-button {
        width: 100%;

        justify-content: center;
    }

    .services-grid,
    .stats-container,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .why-image img {
        height: 420px;
    }

    .experience-card {
        right: 15px;
    }

    .why-features {
        grid-template-columns: 1fr;
    }

    .transport-tabs {
        overflow-x: auto;

        justify-content: flex-start;

        padding-bottom: 5px;
    }

    .transport-tab {
        flex-shrink: 0;
    }

    .transport-tab-info {
        padding: 35px 25px;
    }

    .transport-tab-info h3 {
        font-size: 32px;
    }

    .transport-points {
        grid-template-columns: 1fr;
    }

    .network-list {
        flex-direction: column;
    }

    .network-map {
        min-height: 320px;
    }

    .testimonial-card {
        padding: 30px;

        min-height: 340px;
    }

    .testimonial-card > p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;

        align-items: flex-start;
    }

    .cta-decoration {
        font-size: 130px;

        right: -20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .quote-form {
        padding: 25px;
    }

    .footer-main {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom div {
        flex-direction: column;

        gap: 8px;
    }

}