
/*VARIABLES*/

:root {

    --primary: #0b5ed7;
    --primary-dark: #084298;
    --secondary: #0f172a;

    --text: #334155;
    --text-light: #64748b;

    --background: #ffffff;
    --background-light: #f8fafc;

    --border: #e2e8f0;

    --white: #ffffff;

    --container: 1580px;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;

    --shadow-sm:
        0 4px 15px rgba(15, 23, 42, 0.06);

    --shadow-md:
        0 15px 40px rgba(15, 23, 42, 0.10);

    --transition: 0.3s ease;
}


/*RESET */

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

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

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--background);
    line-height: 1.7;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}


/*CONTAINER*/

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;
}


/*HEADER*/

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: linear-gradient(-90deg,rgb(102,45,145),rgb(0,167,157)) ;

    /*backdrop-filter: blur(12px);*/

    border-bottom: 1px solid transparent;

    transition: var(--transition);
}

.header.scrolled {
    border-color: var(--border);

    box-shadow: var(--shadow-sm);
}


.nav-container {
    height: 80px;

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


/*LOGO*/

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

    font-weight: 800;
}

.logo-mark {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    color: var(--white);
    background: var(--primary);

    font-size: 22px;
}

.logo-text {
    display: flex;
    flex-direction: column;

    color: var(--primary-dark);

    font-size: 18px;
    line-height: 1.1;
}

.logo-text small {
    color: var(--primary);

    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/*Nvigation*/

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    position: relative;

    color: var(--white);

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

    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-cta {
    padding: 11px 18px;

    border-radius: 8px;

    color: var(--white);
    background: var(--primary);

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

    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}


/*MOBILE MENU*/

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    margin: 5px auto;

    background: var(--primary);

    transition: var(--transition);
}


/*HERO*/

.hero {
    padding-top: 140px;
    padding-bottom: 100px;

    background:
        linear-gradient(
            135deg,
            #eff6ff 0%,
            #ffffff 55%
        );

    overflow: hidden;
}

.hero-container {
    display: grid;

    grid-template-columns:
        1.05fr
        0.95fr;

    align-items: center;

    gap: 70px;
}

.eyebrow,
.section-label {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--primary);

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

    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: 22px;

    color: var(--secondary);

    font-size: clamp(42px, 5vw, 70px);

    line-height: 1.08;
    letter-spacing: -2px;
}

.hero h1 span,
h2 span {
    display: block;

    color: var(--primary);
}

.hero-content > p {
    max-width: 600px;

    margin-bottom: 32px;

    color: var(--text-light);

    font-size: 18px;
}


.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 45px;
}


/*BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 14px 24px;

    border-radius: 8px;

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

    transition: var(--transition);
}

.btn-primary {
    color: var(--white);
    background: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    color: var(--secondary);

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

    background: var(--white);
}

.btn-secondary:hover {
    border-color: var(--primary);

    color: var(--primary);

    transform: translateY(-3px);
}

.btn-light {
    color: var(--primary);
    background: var(--white);
}

.btn-light:hover {
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}


/*HERO TRUST*/

.hero-trust {
    display: flex;
    gap: 35px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    color: var(--secondary);

    font-size: 22px;
}

.trust-item span {
    color: var(--text-light);

    font-size: 12px;
}


/* HERO IMAGE*/

.hero-visual {
    position: relative;
}

.hero-image {
    height: 220px;

    overflow: hidden;

    border-radius: 30px;

    box-shadow: var(--shadow-md);
}

.hero-image img {
    height: 100%;
}


.floating-card {
    position: absolute;

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

    padding: 15px 18px;

    background: var(--white);

    border-radius: 12px;

    box-shadow: var(--shadow-md);
}

.floating-card-top {
    top: 35px;
    left: -35px;
}

.floating-card-bottom {
    right: -30px;
    bottom: 35px;
}

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

    display: grid;
    place-items: center;

    border-radius: 8px;

    color: var(--white);
    background: var(--primary);
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    color: var(--secondary);
    font-size: 13px;
}

.floating-card small {
    color: var(--text-light);
    font-size: 11px;
}


/*  SECTIONS */

.section {
    padding: 110px 0;
}

.section-heading {
    max-width: 650px;

    margin: 0 auto 60px;

    text-align: center;
}

.section-heading h2,
.about-content h2,
.why-content h2,
.contact-info h2 {
    margin-bottom: 18px;

    color: var(--secondary);

    font-size: clamp(32px, 4vw, 48px);

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

.section-heading p,
.about-content > p,
.why-content > p,
.contact-info > p {
    color: var(--text-light);
}


/* ABOUT*/

.about {
    background: var(--background);
}

.about-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 80px;

    align-items: center;
}

.about-image {
    position: relative;
}

.about-image > img {
    height: 520px;

    border-radius: var(--radius-lg);
}

.experience-card {
    position: absolute;

    right: -25px;
    bottom: 30px;

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

    padding: 20px;

    background: var(--white);

    border-radius: 12px;

    box-shadow: var(--shadow-md);
}

.experience-card strong {
    color: var(--primary);

    font-size: 35px;
}

.experience-card span {
    color: var(--secondary);

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

.about-content h2 {
    margin-bottom: 25px;
}

.about-content > p {
    margin-bottom: 15px;
}

.about-features {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 20px;

    margin: 30px 0;
}

.feature-item {
    display: flex;
    gap: 12px;
}

.feature-item > span {
    width: 28px;
    height: 28px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 50%;

    color: var(--white);
    background: var(--primary);

    font-size: 12px;
}

.feature-item strong {
    display: block;

    color: var(--secondary);

    font-size: 14px;
}

.feature-item p {
    color: var(--text-light);

    font-size: 12px;
}

.text-link {
    color: var(--primary);

    font-size: 14px;
    font-weight: 700;
}


/* SERVICES*/

.services {
    background: var(--background-light);
}

.services-grid {
    display: grid;

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

    gap: 22px;
}

.service-card {
    padding: 32px;

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

    border-radius: var(--radius-md);

    background: var(--white);

    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: transparent;

    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    margin-bottom: 22px;

    border-radius: 12px;

    color: var(--white);
    background: #eff6ff;

    font-size: 23px;
}

.service-card h3 {
    margin-bottom: 12px;

    color: var(--secondary);

    font-size: 18px;
}

.service-card p {
    min-height: 80px;

    margin-bottom: 20px;

    color: var(--text-light);

    font-size: 14px;
}

.service-card a {
    color: var(--primary);

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

/* Services Overview*/

.so {
    padding: 80px 0;

    color: var(--primary);

    background: var(--white);
}

.so .section-label {
    color: rgba(255,255,255,.75);
}

.so-container {
    display: flex;

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

    gap: 40px;
}

.so h3 {
    margin-bottom: 12px;

    font-size: clamp(20px, 4vw, 25px);

    line-height: 1.15;
}

.so h2 span {
    color: var(--white);
}

.so p {
    color: var(--primary);
}

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

.why-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 80px;

    align-items: center;
}

.why-content > p {
    margin-bottom: 35px;
}

.why-list {
    display: flex;
    flex-direction: column;

    gap: 25px;
}

.why-item {
    display: flex;

    gap: 18px;
}

.why-item > span {
    color: var(--primary);

    font-size: 13px;
    font-weight: 800;
}

.why-item h3 {
    margin-bottom: 4px;

    color: var(--secondary);

    font-size: 16px;
}

.why-item p {
    color: var(--text-light);

    font-size: 13px;
}

.why-image {
    position: relative;
}

.why-image > img {
    height: 550px;

    border-radius: var(--radius-lg);
}

.stats-card {
    position: absolute;

    left: -30px;
    bottom: 30px;

    display: flex;

    padding: 20px;

    background: var(--white);

    border-radius: 12px;

    box-shadow: var(--shadow-md);
}

.stats-card div {
    padding: 0 20px;

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

.stats-card div:last-child {
    border: 0;
}

.stats-card strong,
.stats-card span {
    display: block;
}

.stats-card strong {
    color: var(--primary);

    font-size: 22px;
}

.stats-card span {
    color: var(--text-light);

    font-size: 10px;
}


/* PROCESS*/

.process {
    background: var(--background-light);
}

.process-grid {
    display: grid;

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

    gap: 20px;
}

.process-item {
    position: relative;

    padding: 30px;

    background: var(--white);

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);
}

.process-number {
    margin-bottom: 25px;

    color: var(--primary);

    font-size: 32px;
    font-weight: 800;
}

.process-item h3 {
    margin-bottom: 10px;

    color: var(--secondary);
}

.process-item p {
    color: var(--text-light);

    font-size: 13px;
}


/*DESTINATIONS*/

.destination-grid {
    display: grid;

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

    gap: 15px;
}

.destination-card {
    padding: 25px 15px;

    text-align: center;

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

    border-radius: var(--radius-md);

    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-5px);

    border-color: var(--primary);

    box-shadow: var(--shadow-sm);
}

.destination-card span.destination-flag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 44px;
    margin: 0 auto 12px;
    overflow: hidden;
    border-radius: 6px;
    background: #f4f6f8;
}

.destination-card span.destination-flag img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-card h3 {
    color: var(--secondary);

    font-size: 13px;
}

.destination-card p {
    color: var(--text-light);

    font-size: 10px;
}

.destination-extra[hidden] {
    display: none;
}

.destination-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.destination-toggle {
    min-width: 230px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
}

.destination-toggle-icon {
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
    transition: transform 0.25s ease;
}

.destination-toggle[aria-expanded="true"] .destination-toggle-icon {
    transform: rotate(180deg);
}


/*CTA*/

.cta {
    padding: 80px 0;

    color: var(--white);

    background: var(--primary);
}

.cta .section-label {
    color: rgba(255,255,255,.75);
}

.cta-container {
    display: flex;

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

    gap: 40px;
}

.cta h2 {
    margin-bottom: 12px;

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

    line-height: 1.15;
}

.cta h2 span {
    color: var(--white);
}

.cta p {
    color: rgba(255,255,255,.8);
}


/* CONTACT*/

.contact {
    background: var(--background-light);
}

.contact-grid {
    display: flex;
    flex-direction: column;

    gap: 50px;
}

.contact-top {
    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 80px;

    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;

    gap: 25px;

    margin-top: 40px;
}

.contact-item {
    display: flex;

    gap: 15px;
}

.contact-icon {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 10px;
    colour:var(--white);
    background: #eff6ff;
}

.contact-item strong {
    display: block;

    color: var(--secondary);

    font-size: 15px;
}

.contact-item p {
    color: var(--text-light);

    font-size: 14px;
}


.contact-form-wrapper {
    padding: 35px;

    border-radius: var(--radius-lg);

    background: var(--white);

    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    margin-bottom: 25px;

    color: var(--secondary);

    font-size: 24px;
}

.form-row {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: var(--secondary);

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

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 13px 15px;

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

    border-radius: 8px;

    outline: none;

    color: var(--secondary);

    background: var(--background-light);

    transition: var(--transition);
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);

    background: var(--white);
}

.form-message {
    margin-top: 15px;

    color: var(--primary);

    font-size: 13px;

    text-align: center;
}


/*FOOTER*/

.footer {
    padding-top: 70px;

    color: #cbd5e1;

    background: #0f172a;
}

.footer-grid {
    display: grid;

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

    gap: 50px;

    padding-bottom: 60px;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-about p {
    max-width: 300px;

    margin-top: 20px;

    color: #94a3b8;

    font-size: 13px;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.footer-column h3 {
    margin-bottom: 10px;

    color: var(--white);

    font-size: 14px;
}

.footer-column a,
.footer-column span {
    color: var(--white);

    font-size: 13px;

    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--white);
}


.footer-bottom {
    display: flex;

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

    padding: 20px 0;

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

.footer-bottom p {
    color: #64748b;

    font-size: 11px;
}

.social-links {
    display: flex;

    gap: 8px;
}

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

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--white);

    background: rgba(255,255,255,.08);

    font-size: 12px;

    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
}


/*RESPONSIVE*/

@media (max-width: 1000px) {

    .nav {
        gap: 15px;
    }

    .hero-container,
    .about-grid,
    .why-grid {
        gap: 45px;
    }

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

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

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

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


@media (max-width: 768px) {
    .header{
       background:var(--white);
    }
    .container {
        width: min(
            calc(100% - 30px),
            var(--container)
        );
    }

    .nav-container {
        height: 70px;
    }


    /* Mobile navigation */

    .menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;

        top: 70px;
        left: 0;

        width: 100%;

        padding: 20px;

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

        background: linear-gradient(-90deg, rgb(102, 45, 145), rgb(0, 167, 157));

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

        box-shadow: var(--shadow-md);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition: var(--transition);
    }

    .nav.active {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .nav-link {
        padding: 10px 0;
    }

    .nav-cta {
        text-align: center;
    }


    /* Hero */

    .hero {
        padding-top: 110px;
        padding-bottom: 70px;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero-image {
        height: 400px;
    }

    .floating-card-top {
        top:0px;
        left: 0px;
    }

    .floating-card-bottom {
        bottom:0px;
        right: 0px;
    }


    /* Sections */

    .section {
        padding: 80px 0;
    }

    .about-grid,
    .why-grid,
    .contact-top {
        grid-template-columns: 1fr;
    }

    .about-image > img,
    .why-image > img {
        height: 400px;
    }

    .experience-card,
    .stats-card {
        right: 15px;
        left: auto;
    }


    .about-features {
        grid-template-columns: 1fr;
    }


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


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


    .cta-container {
        flex-direction: column;
        align-items: flex-start;
    }


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

}


@media (max-width: 500px) {

    .hero h1 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .hero-content > p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-trust {
        gap: 20px;
    }

    .hero-image {
        height: 330px;
    }

    .floating-card {
        padding: 10px;
    }

    .floating-card-top {
        top: 15px;
    }

    .floating-card-bottom {
        bottom: 15px;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 22px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;

        gap: 15px;
    }

}
/*SHIPMENT TRACKING */

.tracking-section {

    padding: 100px 0;

    background: #f8fafc;

}


.tracking-form-wrapper {

    max-width: 800px;

    margin: 40px auto 0;

}


.tracking-input-wrapper {

    display: flex;

    gap: 12px;

    padding: 8px;

    border: 1px solid #dbe2ea;

    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.06);

}


.tracking-input-wrapper input {

    flex: 1;

    min-width: 0;

    padding: 15px 18px;

    border: none;

    outline: none;

    color: #0f172a;

    background: transparent;

    font-size: 14px;

}


.tracking-input-wrapper button {

    padding: 14px 24px;

    border: none;

    border-radius: 8px;

    cursor: pointer;

    color: #ffffff;

    background: var(--primary-color);

    font-size: 13px;

    font-weight: 700;

    transition: .2s ease;

}


.tracking-input-wrapper button:hover {

    transform: translateY(-1px);

}


.tracking-input-wrapper button:disabled {

    cursor: not-allowed;

    opacity: .6;

}


.tracking-message {

    margin-top: 15px;

    color: #dc2626;

    text-align: center;

    font-size: 13px;

}


.tracking-result {

    max-width: 1000px;

    margin: 50px auto 0;

}


.tracking-summary {

    display: grid;

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

    overflow: hidden;

    border: 1px solid #e2e8f0;

    border-radius: 14px;

    background: #ffffff;

}


.tracking-summary-item {

    padding: 22px;

    border-right: 1px solid #e2e8f0;

}


.tracking-summary-item:last-child {

    border-right: none;

}


.tracking-summary-item span {

    display: block;

    margin-bottom: 7px;

    color: #64748b;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .7px;

    text-transform: uppercase;

}


.tracking-summary-item strong {

    color: #0f172a;

    font-size: 14px;

}


.tracking-info-card,
.tracking-history-card {

    margin-top: 20px;

    padding: 28px;

    border: 1px solid #e2e8f0;

    border-radius: 14px;

    background: #ffffff;

}


.tracking-route {

    display: grid;

    grid-template-columns: 1fr 120px 1fr;

    align-items: center;

}


.route-location {

    display: flex;

    flex-direction: column;

    gap: 5px;

}


.route-location:last-child {

    text-align: right;

}


.route-label {

    color: #64748b;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

}


.route-location strong {

    color: #0f172a;

    font-size: 17px;

}


.route-location small {

    color: #64748b;

    font-size: 12px;

}


.route-line {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

}


.route-line::before {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    height: 1px;

    background: #cbd5e1;

}


.route-line span {

    position: relative;

    z-index: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 42px;

    height: 42px;

    border-radius: 50%;

    color: var(--primary-color);

    background: #ffffff;

    border: 1px solid #dbeafe;

    font-size: 18px;

}


.tracking-history-header {

    margin-bottom: 30px;

}


.tracking-history-header h3 {

    margin-top: 6px;

    color: #0f172a;

    font-size: 22px;

}


/* TIMELINE */

.tracking-timeline {

    position: relative;

}


.tracking-timeline::before {

    content: "";

    position: absolute;

    top: 8px;

    bottom: 8px;

    left: 9px;

    width: 2px;

    background: #e2e8f0;

}


.timeline-item {

    position: relative;

    display: grid;

    grid-template-columns: 20px 1fr;

    gap: 18px;

    padding-bottom: 30px;

}


.timeline-item:last-child {

    padding-bottom: 0;

}


.timeline-dot {

    position: relative;

    z-index: 2;

    width: 20px;

    height: 20px;

    border: 4px solid #ffffff;

    border-radius: 50%;

    background: #cbd5e1;

    box-shadow:
        0 0 0 1px #cbd5e1;

}


.timeline-item.active .timeline-dot {

    background: var(--primary-color);

    box-shadow:
        0 0 0 1px var(--primary-color);

}


.timeline-content {

    padding-top: 0;

}


.timeline-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.timeline-status {

    color: #0f172a;

    font-size: 14px;

    font-weight: 800;

}


.timeline-date {

    color: #64748b;

    font-size: 11px;

}


.timeline-location {

    margin-top: 5px;

    color: var(--primary-color);

    font-size: 12px;

    font-weight: 600;

}


.timeline-description {

    margin-top: 7px;

    color: #64748b;

    font-size: 12px;

    line-height: 1.6;

}


/* MOBILE */

@media (max-width: 768px) {

    .tracking-section {

        padding: 70px 0;

    }


    .tracking-input-wrapper {

        flex-direction: column;

        padding: 10px;

    }


    .tracking-input-wrapper button {

        width: 100%;

    }


    .tracking-summary {

        grid-template-columns: 1fr 1fr;

    }


    .tracking-summary-item {

        border-right: none;

        border-bottom: 1px solid #e2e8f0;

    }


    .tracking-route {

        grid-template-columns: 1fr;

        gap: 20px;

    }


    .route-location:last-child {

        text-align: left;

    }


    .route-line {

        height: 50px;

    }


    .route-line::before {

        top: 0;

        bottom: 0;

        left: 50%;

        width: 1px;

        height: auto;

    }


    .timeline-top {

        align-items: flex-start;

        flex-direction: column;

        gap: 5px;

    }

}


@media (max-width: 480px) {

    .tracking-summary {

        grid-template-columns: 1fr;

    }

}
.quote-form-message {

    margin: 12px 0;

    font-size: 13px;

    line-height: 1.5;

}


.quote-form-message.success {

    color: #15803d;

}


.quote-form-message.error {

    color: #dc2626;

}


/* Update Verson */

:root {
    --brand-teal: #10b6a5;
    --brand-blue: #2f6fb4;
    --brand-purple: #6b2fb5;
    --brand-gradient: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-blue) 48%, var(--brand-purple) 100%);
    --brand-gradient-soft: linear-gradient(135deg, rgba(16, 182, 165, .10) 0%, rgba(47, 111, 180, .08) 48%, rgba(107, 47, 181, .10) 100%);
}

/* Brand gradient for the site's main colored surfaces/buttons. */
.nav-cta,
.btn-primary,
.logo-mark,
.floating-icon,
.feature-item > span,
.service-icon,
.contact-icon,
.social-links a:hover,
.tracking-input-wrapper button,
.timeline-item.active .timeline-dot {
    background: var(--brand-gradient);
}

.nav-cta:hover,
.btn-primary:hover {
    background: linear-gradient(135deg, #0ca997 0%, #285fa4 48%, #5d27a5 100%);
}

/* Use the same brand identity for section/background surfaces without making text hard to read. */
.hero,
.services,
.process,
.contact,
.tracking-section {
    background: var(--brand-gradient-soft);
}

.cta,
.footer {
    background: var(--brand-gradient);
}

/* Official logo image */
.logo-mark {
    width: 48px;
    height: 48px;
    padding: 0;
    overflow: hidden;
    border-radius: 50%;
    flex-shrink: 0;
}

.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text small,
.section-label,
.text-link,
.service-card a,
.why-item > span,
.stats-card strong,
.experience-card strong,
.process-number,
.timeline-location {
    color: var(--brand-purple);
}


.hero-container {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 45px;
}

.hero-image {
    height: auto;
    aspect-ratio: 1155 / 814;
    background: #ffffff;
}

.hero-image img {
    height: 100%;
    object-fit: contain;
}


.contact-top {
    grid-template-columns: minmax(0, .85fr) minmax(0, .95fr);
    gap: 28px;
    align-items: start;
}

.contact-map {
    min-width: 0;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.contact-map-heading h3 {
    margin-top: 4px;
    margin-bottom: 18px;
    color: var(--secondary);
    font-size: 22px;
}

.map-frame {
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid var(--border);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-directions {
    display: inline-block;
    margin-top: 14px;
    color: var(--brand-purple);
    font-size: 13px;
    font-weight: 700;
}

/* Keep the form readable beside the map. */
.contact-form-wrapper {
    min-width: 0;
}

@media (max-width: 768px) {
   
    .hero-visual {
        order: -1;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-image {
        width: 100%;
        aspect-ratio: 1155 / 814;
    }

    .contact-top {
        grid-template-columns: 1fr;
    }

    .map-frame {
        height: 320px;
    }
}

@media (max-width: 500px) {
    .logo-mark {
        width: 44px;
        height: 44px;
    }

    .hero-image {
        aspect-ratio: 1155 / 814;
    }

    .map-frame {
        height: 280px;
    }
}

/* TOP PROMOTIONAL IMAGE SLIDER */
.top-banner-slider {
    position: relative;
    width: min(100%, 1580px);
    margin: 80px auto 0;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.top-banner-track {
    position: relative;
    width: 100%;
    aspect-ratio: 3.35 / 1;
    overflow: hidden;
}

.top-banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.015);
    transition: opacity 0.55s ease, transform 0.7s ease, visibility 0.55s ease;
}

.top-banner-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.top-banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-banner-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.45);
    cursor: pointer;
    transform: translateY(-50%);
    font-size: 30px;
    line-height: 1;
    transition: 0.25s ease;
}

.top-banner-arrow:hover {
    background: linear-gradient(135deg, #0ca997 0%, #285fa4 48%, #5d27a5 100%);
}

.top-banner-prev { left: 14px; }
.top-banner-next { right: 14px; }

.top-banner-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    z-index: 3;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.top-banner-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    transition: 0.25s ease;
}

.top-banner-dot.active {
    width: 25px;
    border-radius: 10px;
    background: linear-gradient(90deg, #0ca997, #5d27a5);
}


.hero-container {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
}


.hero-visual { order: -1; }
.hero-content { order: 1; }

/*FOOTER READABILITY*/
.footer {
    color: rgba(255, 255, 255, 0.9);
}

.footer-about p,
.footer-column a,
.footer-column span {
    color: rgba(255, 255, 255, 0.88);
}

.footer-column h3 {
    color: #ffffff;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.22);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.78);
}

.social-links a {
    background: rgba(255, 255, 255, 0.16);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.28);
}

/*CONTACT MAP*/
.contact-map {
    background: rgba(255, 255, 255, 0.96);
}

.map-frame {
    border: 2px solid rgba(40, 95, 164, 0.15);
}

.map-directions {
    color: var(--brand-purple);
}

@media (max-width: 768px) {
    .top-banner-slider {
        margin-top: 70px;
    }

    .top-banner-track {
        aspect-ratio: 2.25 / 1;
    }

    .top-banner-arrow {
        width: 34px;
        height: 34px;
        font-size: 24px;
    }

    .top-banner-prev { left: 8px; }
    .top-banner-next { right: 8px; }

}

@media (max-width: 500px) {
    .top-banner-track {
        aspect-ratio: 2 / 1;
    }

    .top-banner-dots {
        bottom: 8px;
    }

    .top-banner-dot {
        width: 7px;
        height: 7px;
    }

    .top-banner-dot.active {
        width: 20px;
    }
}


.tracking-section {
    padding-top: 100px;
    padding-bottom: 30px;
}

.hero {
    padding-top: 20px;
    padding-bottom: 60px;
}

@media (min-width: 769px) {
    .hero-image {
        width: 100%;
        height: 800px;
        aspect-ratio: unset;
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }
}

@media (max-width: 768px) {
    .tracking-section {
        padding-top: 90px;
        padding-bottom: 15px;
    }

    .hero {
        padding-top: 10px;
        padding-bottom: 50px;
    }
}

/*PAGE FRAME*/

body {
    background: linear-gradient(-90deg,rgb(102,45,145),rgb(0,167,157));
}

.page-frame {
    max-width: 1580px;
    margin: 0 auto;
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 0 80px rgba(15, 23, 42, 0.18);
}


.top-banner-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16%;
    z-index: 2;

    padding: 10px 20px;

    background: rgba(60, 60, 60, 0.55);
    text-align: center;

    clip-path: inset(0 100% 0 0);
}

.top-banner-slide.active .top-banner-caption {
    animation: bannerCaptionReveal 0.9s ease forwards;
    animation-delay: 1.1s;
}

.top-banner-caption span {
    display: inline-block;

    color: #ffffff;
    font-weight: 700;
    font-size: clamp(16px, 2.6vw, 26px);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

@keyframes bannerCaptionReveal {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}

@media (max-width: 640px) {
    .top-banner-caption {
        padding: 8px 14px;
    }

    .top-banner-caption span {
        font-size: clamp(13px, 4vw, 18px);
        letter-spacing: 0.5px;
    }
}
