/* Base Styles */
body {
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    background: #f7fafd;
    color: #1a2947;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.section {
    padding: 60px 0 40px 0;
    border-bottom: 1px solid #e3eaf6;
}
.section:last-child {
    border-bottom: none;
}
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a2947;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 0.5px;
    margin-left: auto;
    margin-right: auto;
}

/* Navbar */
.navbar {
    background: #183153;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(24,49,83,0.08);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.logo {
    display: flex;
    align-items: center;
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
}
.logo-icon {
    color: #3fa9f5;
    margin-right: 10px;
    font-size: 2rem;
}
.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    padding: 8px 0;
    position: relative;
}
.nav-menu li a:hover,
.nav-menu li a.active {
    color: #3fa9f5;
}

/* Responsive Nav */
.nav-toggle, .nav-toggle-label { display: none; }
@media (max-width: 900px) {
    .nav-toggle, .nav-toggle-label { display: block; }
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #183153;
        flex-direction: column;
        width: 100vw;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(.77,0,.18,1);
        box-shadow: 0 8px 24px rgba(24,49,83,0.12);
        z-index: 2000;
        padding: 0;
    }
    .nav-toggle:checked ~ .nav-menu {
        max-height: 420px;
        padding-bottom: 1rem;
    }
    .nav-menu li {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }
    .nav-menu li a {
        display: block;
        padding: 1.2rem 0;
        font-size: 1.2rem;
        color: #fff;
        border-bottom: 1px solid #223a5f;
    }
    .nav-toggle-label {
        position: absolute;
        right: 1.5rem;
        top: 18px;
        width: 32px;
        height: 32px;
        cursor: pointer;
        z-index: 2100;
    }
    .nav-toggle-label span,
    .nav-toggle-label span:before,
    .nav-toggle-label span:after {
        display: block;
        background: #fff;
        height: 4px;
        width: 100%;
        border-radius: 2px;
        position: absolute;
        transition: all 0.3s;
        content: '';
    }
    .nav-toggle-label span {
        top: 14px;
    }
    .nav-toggle-label span:before {
        content: '';
        top: -10px;
    }
    .nav-toggle-label span:after {
        content: '';
        top: 10px;
    }
    .nav-toggle:checked + .nav-toggle-label span {
        background: transparent;
    }
    .nav-toggle:checked + .nav-toggle-label span:before {
        transform: rotate(45deg);
        top: 0;
    }
    .nav-toggle:checked + .nav-toggle-label span:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    color: #fff;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(24,49,83,0.7); /* Darker for contrast */
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 1rem;
}
.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}
.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}
@media (max-width: 700px) {
    .hero-content h1 { font-size: 2.1rem; }
    .hero-content p { font-size: 1rem; }
}
.btn {
    display: inline-block;
    padding: 0.9em 2.2em;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    text-align: center;
}
.btn-primary {
    background: linear-gradient(90deg, #3fa9f5 0%, #183153 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(63,169,245,0.12);
}
.btn-primary:hover {
    background: linear-gradient(90deg, #183153 0%, #3fa9f5 100%);
    color: #fff;
}

/* Services Section */
.services-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.service-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(24,49,83,0.08);
    padding: 2rem 1.5rem;
    text-align: center;
    flex: 1 1 220px;
    max-width: 260px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px rgba(63,169,245,0.18);
}
.service-icon {
    font-size: 2.5rem;
    color: #3fa9f5;
    margin-bottom: 1rem;
    transition: color 0.2s;
}
.service-card:hover .service-icon {
    color: #183153;
}
.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.service-card p {
    color: #4a5a7a;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.testimonial-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(24,49,83,0.08);
    padding: 2rem 1.5rem;
    text-align: center;
    flex: 1 1 260px;
    max-width: 320px;
    position: relative;
    margin-bottom: 1.5rem;
}
.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #3fa9f5;
}
.testimonial-content p {
    font-size: 1.1rem;
    color: #1a2947;
    margin-bottom: 0.7rem;
}
.testimonial-name {
    font-weight: 600;
    color: #3fa9f5;
}

/* Quote Form Section */
.quote-form {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(24,49,83,0.08);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.form-row {
    display: flex;
    gap: 1rem;
}
.quote-form input,
.quote-form textarea {
    flex: 1;
    padding: 0.9em 1em;
    border-radius: 8px;
    border: 1px solid #dbeafe;
    font-size: 1rem;
    font-family: inherit;
    background: #f7fafd;
    transition: border 0.2s;
}
.quote-form input:focus,
.quote-form textarea:focus {
    border: 1.5px solid #3fa9f5;
    outline: none;
}
.quote-form button {
    align-self: flex-end;
}

@media (max-width: 700px) {
    .services-cards, .testimonials-cards {
        flex-direction: column;
        gap: 1.2rem;
    }
    .form-row {
        flex-direction: column;
        gap: 0.7rem;
    }
}

/* Footer */
.footer {
    background: #183153;
    color: #fff;
    padding: 2.5rem 0 1rem 0;
    margin-top: 3rem;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: space-between;
    align-items: flex-start;
}
.footer-brand {
    flex: 1 1 220px;
}
.footer-brand .logo-icon {
    color: #3fa9f5;
    font-size: 2rem;
    margin-right: 8px;
}
.footer-brand .logo-text {
    font-size: 1.3rem;
    font-weight: 700;
}
.footer-links, .footer-contact {
    flex: 1 1 180px;
}
.footer-links h4, .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    color: #3fa9f5;
}
.footer-links ul, .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}
.footer-links ul li, .footer-contact ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}
.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links ul li a:hover {
    color: #3fa9f5;
}
.footer-contact ul li i {
    margin-right: 8px;
    color: #3fa9f5;
}
.footer-social a {
    color: #fff;
    margin-right: 12px;
    font-size: 1.2rem;
    transition: color 0.2s;
}
.footer-social a:hover {
    color: #3fa9f5;
}
.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #b0c4de;
}

/* Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.77,0,.18,1), transform 0.7s cubic-bezier(.77,0,.18,1);
}
.scroll-reveal.visible {
    opacity: 1;
    transform: none;
}

/* Utility */
::-webkit-scrollbar {
    width: 8px;
    background: #e3eaf6;
}
::-webkit-scrollbar-thumb {
    background: #3fa9f5;
    border-radius: 8px;
}

/* --- IMAGE BORDER RADIUS --- */
img, .news-card img, .testimonial-avatar, .partner-logo {
    border-radius: 12px !important;
}

/* --- PARTNER LOGOS AS TEXT/ICONS --- */
.partners-logos {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
    overflow-x: auto;
    padding: 1.5rem 0;
    scrollbar-width: thin;
}
.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    min-width: 120px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #183153;
    background: #fff;
    border-radius: 8px;
    padding: 0.5rem 1.2rem;
    box-shadow: 0 2px 8px rgba(24,49,83,0.06);
    opacity: 0.92;
    transition: box-shadow 0.2s, transform 0.2s;
}
.partner-logo i {
    font-size: 1.7rem;
    margin-right: 0.7rem;
    color: #3fa9f5;
}
.partner-logo:hover {
    box-shadow: 0 8px 32px rgba(63,169,245,0.18);
    transform: scale(1.07);
    opacity: 1;
}

/* --- TRACK SHIPMENT --- */
.track-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1rem auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(24,49,83,0.08);
    padding: 1.2rem 1rem;
}
.track-form input[type="text"] {
    flex: 1;
    padding: 0.9em 1em;
    border-radius: 8px;
    border: 1.5px solid #dbeafe;
    font-size: 1rem;
    background: #f7fafd;
    transition: border 0.2s;
}
.track-form input[type="text"]:focus {
    border: 1.5px solid #3fa9f5;
    outline: none;
}
.track-form button {
    padding: 0.9em 1.5em;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(90deg, #3fa9f5 0%, #183153 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.track-form button:hover {
    background: linear-gradient(90deg, #183153 0%, #3fa9f5 100%);
}
.track-help {
    text-align: center;
    color: #4a5a7a;
    font-size: 0.98rem;
}
.sample-track {
    background: #e3eaf6;
    color: #183153;
    padding: 0.2em 0.7em;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
}

/* --- FAQS ACCORDION --- */
.faqs-accordion {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.faq-item {
    margin-bottom: 1.2rem;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(24,49,83,0.06);
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 1.15rem;
    font-weight: 600;
    color: #183153;
    padding: 1.1rem 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: background 0.2s;
}
.faq-question.active, .faq-question:focus {
    background: #e3eaf6;
}
.faq-question i {
    transition: transform 0.3s;
}
.faq-question.active i {
    transform: rotate(90deg);
    color: #3fa9f5;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #f7fafd;
    color: #1a2947;
    font-size: 1rem;
    padding: 0 1.5rem;
    transition: max-height 0.35s cubic-bezier(.77,0,.18,1), padding 0.2s;
}
.faq-question.active + .faq-answer {
    padding: 1rem 1.5rem;
}

/* --- CAREERS --- */
.careers-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.career-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(24,49,83,0.10);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    text-align: left;
    flex: 1 1 260px;
    max-width: 320px;
    min-width: 220px;
    position: relative;
    margin-bottom: 1rem;
    border-left: 5px solid #3fa9f5;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.career-card:hover {
    box-shadow: 0 8px 32px rgba(63,169,245,0.18);
    transform: translateY(-6px) scale(1.03);
}
.career-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #183153;
}
.career-card p {
    color: #4a5a7a;
    font-size: 1rem;
    margin-bottom: 0.7rem;
}
.career-card .btn-small {
    font-size: 0.98rem;
    padding: 0.5em 1.2em;
    border-radius: 20px;
    margin-top: auto;
}
.careers-link {
    text-align: center;
    margin-top: 1.5rem;
}
@media (max-width: 900px) {
    .careers-cards {
        flex-direction: column;
        gap: 1.2rem;
    }
}

/* --- COUNTERS SECTION --- */
.counters-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin: 2rem 0 1rem 0;
}
.counter-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(24,49,83,0.10);
    padding: 2.2rem 2.5rem 1.5rem 2.5rem;
    text-align: center;
    min-width: 160px;
    flex: 1 1 160px;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-top: 4px solid #3fa9f5;
}
.counter-box:hover {
    box-shadow: 0 8px 32px rgba(63,169,245,0.18);
    transform: translateY(-6px) scale(1.03);
}
.counter-num {
    font-size: 2.8rem;
    font-weight: 700;
    color: #3fa9f5;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    font-family: 'Montserrat', Arial, sans-serif;
    transition: color 0.2s;
}
.counter-label {
    font-size: 1.1rem;
    color: #183153;
    font-weight: 500;
    letter-spacing: 0.5px;
}
@media (max-width: 900px) {
    .counters-row {
        flex-direction: column;
        gap: 1.2rem;
    }
    .counter-box {
        min-width: 0;
        width: 100%;
        padding: 1.5rem 1rem 1rem 1rem;
    }
}

/* --- TEXT & TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #183153;
    margin-top: 0;
    margin-bottom: 0.7em;
    font-weight: 700;
    line-height: 1.15;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p, ul, ol {
    font-size: 1.08rem;
    color: #2a3550;
    line-height: 1.7;
    margin-bottom: 1.1em;
    margin-top: 0;
}
ul, ol {
    padding-left: 1.1em;
    margin-left: 0;
}

@media (max-width: 700px) {
    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.08rem; }
    .section-title { font-size: 1.3rem; }
    p, ul, ol { font-size: 0.98rem; }
}

/* --- CONTENT IMAGES --- */
.content-img, .about-extra-content img, .services-callout img, .news-card img, .testimonial-avatar {
    width: 320px;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(24,49,83,0.08);
    object-fit: cover;
    display: block;
}
@media (max-width: 900px) {
    .about-extra-content img, .services-callout img, .news-card img {
        width: 100%;
        max-width: 100%;
        margin-bottom: 1rem;
    }
    .about-extra-content, .services-callout {
        flex-direction: column !important;
        gap: 1.2rem !important;
    }
}

.news-card img {
    width: 100%;
    max-width: 350px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #3fa9f5;
}

/* --- FLEX WRAPS FOR CONTENT --- */
.about-extra-content, .services-callout {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .about-extra-content, .services-callout {
        flex-direction: column !important;
        gap: 1.2rem !important;
        align-items: stretch;
    }
}

/* --- SECTION PADDING (IMPROVED FOR MOBILE) --- */
@media (max-width: 700px) {
    .section {
        padding: 32px 0 20px 0;
    }
}

/* --- CONTAINER ALIGNMENT & SECTION SPACING --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}
.section {
    padding: 60px 0 40px 0;
    border-bottom: 1px solid #e3eaf6;
}
.section:last-child {
    border-bottom: none;
}
.section-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* --- FLEX LAYOUTS POLISH --- */
.about-extra-content, .services-callout, .news-cards, .testimonials-cards, .careers-cards {
    align-items: flex-start;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}
.news-cards, .testimonials-cards, .careers-cards {
    max-width: 1100px;
}
.faqs-accordion {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- TEXT ALIGNMENT --- */
.text-center {
    text-align: center !important;
}
.text-left {
    text-align: left !important;
}

/* --- SECTION VERTICAL SPACING --- */
.section > .container > *:not(:last-child) {
    margin-bottom: 2.2rem;
}

/* --- NEWS, TESTIMONIALS, CAREERS CARDS --- */
.news-cards, .testimonials-cards, .careers-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
}
.news-card, .testimonial-card, .career-card {
    margin-bottom: 0;
}

/* --- SECTION DIVIDERS --- */
.section {
    position: relative;
}
.section:not(:last-child)::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: #e3eaf6;
}

/* --- BUTTONS --- */
.btn, .btn-primary, .btn-small {
    text-align: center;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    display: inline-block;
}
.btn-small {
    background: #fff;
    color: #3fa9f5;
    border: 1.5px solid #3fa9f5;
    padding: 0.6em 1.5em;
    border-radius: 22px;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(63,169,245,0.08);
    margin-top: 0.7rem;
}
.btn-small:hover, .btn-small:focus {
    background: #3fa9f5;
    color: #fff;
    border-color: #183153;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px rgba(63,169,245,0.16);
}

/* --- HERO TEXT --- */
.hero-content h1, .hero-content p, .hero-content a {
    color: #fff !important;
    text-shadow: 0 2px 12px rgba(24,49,83,0.25);
}

/* --- ICONS --- */
.service-icon, .partner-logo i, .faqs-accordion i, .career-card i, .footer-contact i, .footer-social i {
    transition: color 0.3s, transform 0.3s;
}
.service-card:hover .service-icon,
.career-card:hover i,
.partner-logo:hover i {
    color: #3fa9f5;
    transform: scale(1.18) rotate(-8deg);
}
.faq-question.active i {
    color: #3fa9f5;
    transform: rotate(90deg) scale(1.18);
}

/* --- ANIMATIONS --- */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.1s ease forwards;
}
@keyframes fadeIn {
    to { opacity: 1; }
}
.slide-up {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 0.9s cubic-bezier(.77,0,.18,1) forwards;
}
@keyframes slideUp {
    to { opacity: 1; transform: none; }
}
.icon-animate {
    animation: iconPop 0.7s cubic-bezier(.77,0,.18,1) forwards;
}
@keyframes iconPop {
    0% { transform: scale(0.7); opacity: 0; }
    80% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); }
}

/* --- HOVER/ACTIVE EFFECTS --- */
.service-card:hover, .news-card:hover, .testimonial-card:hover, .career-card:hover {
    box-shadow: 0 8px 32px rgba(63,169,245,0.18);
    transform: translateY(-6px) scale(1.03);
    z-index: 2;
}
.partner-logo:hover {
    background: #e3eaf6;
    color: #183153;
}
