﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  font-size: 30px;
}

:root {
    --red: #D8202C;
    --dark: #1a1a1a;
    --mid: #333;
    --light-gray: #f5f5f5;
    --border: #e0e0e0;
    --text: #333333;
    --text-light: #666;
    --white: #ffffff;
    --blue: #13274A;
}

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

body {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}
a {
    color: #13274A;
}

/* ── TOP BAR ── */
.top-bar {
    background: var(--red);
    color: #ccc;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 40px;
}

    .top-bar a {
        color: #ccc;
        text-decoration: none;
    }

        .top-bar a:hover {
            color: #fff;
        }

.country-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .country-badge .flag {
        width: 20px;
        height: 14px;
        border-radius: 2px;
        background: linear-gradient(180deg, #006a4e 33%, #fff 33%, #fff 66%, #f42a41 66%);
        position: relative;
        overflow: hidden;
    }

        .country-badge .flag::after {
            content: '●';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #f42a41;
            font-size: 8px;
        }



.btn-select {
    border: 1px solid #888;
    background: #13274A;
    color: #ccc;
    padding: 3px 12px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 2px;
}

/* ── NAVBAR ── */

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 64px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

/* ===== LOGO ===== */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 36px;
    width: auto;
}

/* ===== NAV LINKS (center) ===== */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

    .nav-links a,
    .nav-links button {
        font-family: inherit;
        font-size: 0.9rem;
        font-weight: 500;
        color: #374151;
        text-decoration: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem 0.875rem;
        border-radius: 6px;
        transition: background 0.15s ease, color 0.15s ease;
        white-space: nowrap;
    }

        .nav-links a:hover,
        .nav-links button:hover {
            background: #f3f4f6;
            color: #111827;
        }

/* ===== NAV RIGHT ===== */
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

    .nav-right a {
        display: flex;
        align-items: center;
        gap: 0.375rem;
        font-size: 0.875rem;
        font-weight: 500;
        color: #374151;
        text-decoration: none;
        padding: 0.5rem 0.75rem;
        border-radius: 6px;
        transition: background 0.15s ease, color 0.15s ease;
        white-space: nowrap;
    }

        .nav-right a:hover {
            background: #f3f4f6;
            color: #111827;
        }

        .nav-right a svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

.btn-portal {
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    background: #13274A;
    border: none;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.15s ease;
    white-space: nowrap;
}

    .btn-portal:hover {
        background: #1e40af;
    }

/* ===== HAMBURGER BUTTON (hidden on desktop) ===== */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.15s ease;
}

    .nav-hamburger:hover {
        background: #f3f4f6;
    }

    .nav-hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: #374151;
        border-radius: 2px;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    /* Hamburger open state */
    .nav-hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* ===== MOBILE DRAWER ===== */
.nav-mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    z-index: 999;
    /* Slide-in animation */
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    pointer-events: none;
}

    .nav-mobile-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-mobile-menu a,
    .nav-mobile-menu button {
        font-family: inherit;
        font-size: 1rem;
        font-weight: 500;
        color: #374151;
        text-decoration: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.75rem 0.875rem;
        border-radius: 8px;
        text-align: left;
        width: 100%;
        transition: background 0.15s ease, color 0.15s ease;
    }

        .nav-mobile-menu a:hover,
        .nav-mobile-menu button:hover {
            background: #f3f4f6;
            color: #111827;
        }

    .nav-mobile-menu .mobile-search {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .nav-mobile-menu .mobile-search svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

    .nav-mobile-menu .btn-portal {
        margin-top: 0.5rem;
        color: #ffffff;
        background: #1d4ed8;
        font-weight: 600;
        text-align: center;
    }

        .nav-mobile-menu .btn-portal:hover {
            background: #1e40af;
        }

.nav-mobile-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 0.5rem 0;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet: hide portal label, compress spacing */
@media (max-width: 900px) {
    nav {
        padding: 0 1.25rem;
    }

    .nav-links a,
    .nav-links button {
        padding: 0.5rem 0.625rem;
        font-size: 0.85rem;
    }

    .nav-right a {
        font-size: 0.825rem;
        padding: 0.5rem 0.625rem;
    }

    .btn-portal {
        font-size: 0.825rem;
        padding: 0.5rem 0.75rem;
    }
}

/* Mobile: collapse nav into hamburger */
@media (max-width: 640px) {
    nav {
        padding: 0 1rem;
    }

    .nav-links,
    .nav-right {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-mobile-menu {
        display: flex;
    }
}

/* ===== TOP BAR ===== */


/* ===== COUNTRY BADGE (left side) ===== */
.country-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
    white-space: nowrap;
}

    .country-badge span {
        color: #cbd5e1;
    }

    .country-badge strong {
        color: #ffffff;
    }

    /* Divider pipe */
    .country-badge .pipe {
        color: #475569;
        margin: 0 0.25rem;
    }

/* ===== BUTTONS ===== */
.btn-stay {
    background: #D8202C;
    color: var(--dark);
    border: none;
    padding: 3px 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 2px;
}


.btn-stay {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

    .btn-stay:hover {
        background: rgba(255, 255, 255, 0.12);
    }


    .btn-select:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.08);
    }

/* ===== COUNTRY LINK (right side) ===== */
.top-bar > a {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: #93c5fd;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transition: background 0.15s ease, color 0.15s ease;
    flex-shrink: 0;
}

    .top-bar > a:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.08);
    }

/* ===== TABLET (max 900px) ===== */
@media (max-width: 900px) {
    .top-bar {
        padding: 0 1.25rem;
    }
}

/* ===== MOBILE (max 640px) ===== */
@media (max-width: 640px) {
    .top-bar {
        flex-direction: column;
        height: auto;
        padding: 0.625rem 1rem;
        gap: 0.4rem;
        text-align: center;
    }

    .country-badge {
        justify-content: center;
        white-space: normal;
        gap: 0.2rem;
        line-height: 1.6;
    }

    .top-bar > a {
        font-size: 0.775rem;
    }
}

/* ===== VERY SMALL (max 380px) ===== */
@media (max-width: 380px) {
    .btn-stay,
    .btn-select {
        font-size: 0.75rem;
    }

    .country-badge span,
    .top-bar > a {
        font-size: 0.75rem;
    }
}



/* ── HERO ── */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns=''%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    background: linear-gradient(to right, transparent 0%, rgba(15,52,96,0.3) 100%), url('../images/logistics-freight-management-storage-supply-concept.jpg') center/cover no-repeat;
    clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 40px 60px 60px;
    max-width: 560px;
}

.hero h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

    .hero h1 span {
        color: var(--red);
    }

.hero p {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    margin-bottom: 28px;
}

.track-form {
    display: flex;
    gap: 0;
    max-width: 480px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

    .track-form input {
        flex: 1;
        padding: 14px 18px;
        font-size: 14px;
        border: none;
        outline: none;
        border-radius: 2px 0 0 2px;
        font-family: inherit;
    }

        .track-form input::placeholder {
            color: #999;
        }

.btn-track {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 0 2px 2px 0;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

    .btn-track:hover {
        background: #b8040e;
    }

/* ── QUICK ACTIONS ── */
.quick-actions {
    background: #fff;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 700px;
    margin: -30px auto 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    border-radius: 4px;
    overflow: hidden;
}

.qa-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
    text-align: center;
    border-right: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    color: var(--text);
}

    .qa-item:last-child {
        border-right: none;
    }

    .qa-item:hover {
        background: #fff9e6;
    }

.qa-icon {
    width: 44px;
    height: 44px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 18px;
}

.qa-item h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.qa-item p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.4;
}

/* ── BANNER ── */
.banner {
    background: var(--blue);
    padding: 30px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    gap: 24px;
}

.banner-text h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.banner-text p {
    font-size: 14px;
    color: white;
    max-width: 580px;
    line-height: 1.5;
}

.btn-outline {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 2px;
    white-space: nowrap;
    letter-spacing: 0.3px;
    transition: background 0.2s;
}

    .btn-outline:hover {
        background: #b8040e;
    }

/* ===== TABLET (max 640px) ===== */
@media (max-width: 900px) {
    .banner

{
    padding: 2rem 1.75rem;
    gap: 1.5rem;
}

.banner-text h2 {
    font-size: 1.3rem;
}

.banner-text p {
    font-size: 0.875rem;
}

}

/* ===== MOBILE (max 640px) ===== */
@media (max-width: 640px) {
    .banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.75rem 1.25rem;
        gap: 1.25rem;
    }

    .banner-text h2 {
        font-size: 1.2rem;
    }

    .banner-text p {
        font-size: 0.875rem;
    }

    .btn-outline {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
    }
}

/* ===== VERY SMALL (max 380px) ===== */
@media (max-width: 380px) {
    .banner {
        padding: 1.5rem 1rem;
    }

    .banner-text h2 {
        font-size: 1.1rem;
    }
}

/* ── SERVICE CARDS ── */
.services {
    padding: 70px 40px;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1100px;
    margin: 0 auto 50px;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s;
}

    .service-card:hover {
        box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    }

    .service-card.reverse {
        direction: rtl;
    }

        .service-card.reverse > * {
            direction: ltr;
        }

.service-img {
    background: #ddd center/cover no-repeat;
    min-height: 320px;
}

    .service-img.express {
        background-image: url('https://images.unsplash.com/photo-1605745341112-85968b19335b?w=600&q=80');
    }

    .service-img.cargo {
        background-image: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=600&q=80');
    }

.service-body {
    padding: 44px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.service-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.service-body h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.service-divider {
    width: 40px;
    height: 3px;
    background: var(--red);
    margin: 12px 0 16px;
}

.service-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
}

.svc-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.svc-dot {
    width: 50px;
    height: 50px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #13274A;
}

.btn-explore {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 13px 28px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 2px;
    letter-spacing: 0.3px;
    transition: background 0.2s;
    align-self: flex-start;
}

    .btn-explore:hover {
        background: #b8040e;
    }

/* ── SERVICE UPDATES ── */
.updates {
    background: var(--light-gray);
    padding: 50px 40px;
}

.updates-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.updates h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.updates > .updates-inner > p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.update-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

    .update-item:hover {
        color: #b8040e;
    }

    .update-item::before {
        content: '•';
        color: var(--red);
        font-size: 20px;
        line-height: 0;
    }

/* ── ARTICLE CARDS ── */
.articles {
    padding: 60px 40px;
}

.articles-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.article-card {
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.3s;
    text-decoration: none;
    color: var(--text);
}

    .article-card:hover {
        box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    }

.article-img {
    height: 200px;
    background: center/cover no-repeat;
}

    .article-img.a1 {
        background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=600&q=80');
    }

    .article-img.a2 {
        background-image: url('https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?w=600&q=80');
    }

.article-body {
    padding: 22px;
}

.article-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.article-body h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.2;
}

.article-body p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

/* ── FOOTER ── */
footer {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 50px 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s;
}

    .footer-col a:hover {
        color: var(--red);
    }

.footer-bottom {
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--red);
}

    .footer-logo span {
        color: var(--text-light);
        font-size: 12px;
        font-family: 'Source Sans 3', sans-serif;
        margin-left: 8px;
        font-weight: 400;
    }

.social-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

    .social-links a {
        width: 32px;
        height: 32px;
        border: 1px solid var(--border);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: var(--text-light);
        font-size: 14px;
        transition: all 0.2s;
    }

        .social-links a:hover {
            background: var(--red);
            color: #fff;
            border-color: var(--red);
        }

.footer-legal {
    background: var(--blue);
    padding: 12px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: white;
}

    .footer-legal a {
        color: white;
        text-decoration: none;
        margin-left: 16px;
    }

        .footer-legal a:hover {
            color: #ccc;
        }

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.address p {
    font-size: 15px;
    margin-top: 15px;
    width: 380px;
    color: var(--blue);
    font-weight: bold;
}


/* ===== TABLET (max 900px) ===== */
@media (max-width: 900px) {
    footer {
        padding: 40px 32px 0;
    }

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

    /* Third col spans full width */
    .footer-col:nth-child(3) {
        grid-column: 1 / -1;
    }

    .footer-legal {
        padding: 12px 32px;
    }
}

/* ===== MOBILE (max 640px) ===== */
@media (max-width: 640px) {
    footer {
        padding: 0 1.25rem 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    /* Accordion columns */
    .footer-col {
        border-top: 1px solid var(--border);
    }

        .footer-col:last-child {
            border-bottom: 1px solid var(--border);
            margin-bottom: 1.5rem;
        }

        .footer-col h4 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0;
            padding: 1rem 0;
            cursor: pointer;
            user-select: none;
        }

            .footer-col h4::after {
                content: "+";
                font-size: 1.1rem;
                font-weight: 400;
                color: var(--text-light);
                transition: transform 0.2s ease;
            }

        .footer-col.open h4::after {
            transform: rotate(45deg);
        }

    .footer-col-links {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding-bottom 0.3s ease;
        padding-bottom: 0;
    }

    .footer-col.open .footer-col-links {
        max-height: 300px;
        padding-bottom: 1rem;
    }

    /* Footer bottom */
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem 0;
    }

    /* Legal bar */
    .footer-legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.625rem;
        padding: 1rem 1.25rem;
    }

        .footer-legal a {
            margin-left: 0;
        }

    .legal-links {
        gap: 0;
    }

        .legal-links a {
            padding: 0.15rem 0.625rem;
            border-right: 1px solid rgba(255, 255, 255, 0.25);
        }

            .legal-links a:first-child {
                padding-left: 0;
            }

            .legal-links a:last-child {
                border-right: none;
            }
}

/* ===== VERY SMALL (max 380px) ===== */
@media (max-width: 380px) {
    footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .footer-legal {
        padding: 0.875rem 1rem;
        font-size: 11px;
    }
}
/* ── SCROLL TO TOP ── */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(212,5,17,0.4);
    transition: background 0.2s, transform 0.2s;
    z-index: 999;
}

    .scroll-top:hover {
        background: #b8040e;
        transform: translateY(-2px);
    }

/* ── ANIMATIONS ── */
@@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeUp 0.7s ease both;
}

.quick-actions {
    animation: fadeUp 0.7s 0.3s ease both;
}

@@media (max-width: 768px) {
    .service-card, .service-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

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

    .quick-actions {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 20px 16px 0;
    }

    .articles-inner {
        grid-template-columns: 1fr;
    }

    nav {
        padding: 0 16px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .banner {
        flex-direction: column;
        padding: 24px;
    }

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

    .top-bar {
        padding: 6px 16px;
        font-size: 11px;
    }
}
/* =============================================================
   RESPONSIVE STYLES — site-responsive.css
   Add this AFTER site.css. Covers all sections:
   Top Bar · Navbar · Hero · Quick Actions · Banner ·
   Services · Updates · Articles · Footer · Scroll-to-top
   Breakpoints: 900px (tablet) · 640px (mobile) · 380px (xs)
   ============================================================= */


/* ─────────────────────────────────────────
   TOP BAR
───────────────────────────────────────── */
@media (max-width: 900px) {
    .top-bar {
        padding: 6px 20px;
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .top-bar {
        flex-direction: column;
        height: auto;
        padding: 8px 16px;
        gap: 6px;
        text-align: center;
        font-size: 12px;
    }

    .country-badge {
        justify-content: center;
        white-space: normal;
        flex-wrap: wrap;
        line-height: 1.7;
    }

    .top-bar > a {
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .btn-stay,
    .btn-select {
        font-size: 11px;
        padding: 2px 8px;
    }
}


/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
@media (max-width: 900px) {
    nav {
        padding: 0 1.25rem;
    }

    .nav-links a,
    .nav-links button {
        padding: 0.5rem 0.5rem;
        font-size: 0.82rem;
    }

    .nav-right a {
        font-size: 0.82rem;
        padding: 0.5rem 0.5rem;
    }

    .btn-portal {
        font-size: 0.8rem;
        padding: 0.5rem 0.7rem;
    }
}

@media (max-width: 640px) {
    nav {
        padding: 0 1rem;
    }

    .nav-links,
    .nav-right {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-mobile-menu {
        display: flex;
    }
}


/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
@media (max-width: 900px) {
    .hero {
        min-height: 360px;
    }

    .hero-image {
        width: 50%;
        clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    .hero-content {
        padding: 48px 32px;
        max-width: 480px;
    }

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

@media (max-width: 640px) {
    .hero {
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
    }

    /* Push image behind as full background */
    .hero-image {
        position: absolute;
        width: 100%;
        clip-path: none;
        opacity: 0.18;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        padding: 40px 20px 48px;
        max-width: 100%;
    }

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

    .hero p {
        font-size: 14px;
    }

    .track-form {
        flex-direction: column;
        max-width: 100%;
        box-shadow: none;
        gap: 8px;
    }

        .track-form input {
            border-radius: 2px;
            padding: 13px 16px;
        }

    .btn-track {
        border-radius: 2px;
        padding: 13px 20px;
        width: 100%;
    }
}

@media (max-width: 380px) {
    .hero h1 {
        font-size: 26px;
    }

    .hero-content {
        padding: 32px 16px 40px;
    }
}


/* ─────────────────────────────────────────
   QUICK ACTIONS
───────────────────────────────────────── */
@media (max-width: 900px) {
    .quick-actions {
        max-width: 580px;
        margin: -24px auto 0;
    }
}

@media (max-width: 640px) {
    .quick-actions {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 20px 16px 0;
        border-radius: 4px;
    }

    .qa-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
        flex-direction: row;
        text-align: left;
        gap: 14px;
        padding: 16px 20px;
    }

        .qa-item:last-child {
            border-bottom: none;
        }

    .qa-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .qa-item h3 {
        font-size: 14px;
        margin-bottom: 2px;
    }
}


/* ─────────────────────────────────────────
   BANNER
───────────────────────────────────────── */
@media (max-width: 900px) {
    .banner {
        padding: 28px 32px;
        gap: 20px;
        margin-top: 40px;
    }

    .banner-text h2 {
        font-size: 20px;
    }

    .banner-text p {
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
        margin-top: 28px;
        gap: 16px;
    }

    .banner-text h2 {
        font-size: 18px;
    }

    .btn-outline {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }
}

@media (max-width: 380px) {
    .banner {
        padding: 20px 16px;
    }

    .banner-text h2 {
        font-size: 16px;
    }
}


/* ─────────────────────────────────────────
   SERVICE CARDS
───────────────────────────────────────── */
@media (max-width: 900px) {
    .services {
        padding: 50px 24px;
    }

    .service-body {
        padding: 32px 28px;
    }

        .service-body h2 {
            font-size: 26px;
        }
}

@media (max-width: 768px) {
    .service-card,
    .service-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .service-img {
        min-height: 220px;
    }

    /* Put image on top for reversed card too */
    .service-card.reverse .service-img {
        order: -1;
    }

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

@media (max-width: 640px) {
    .services {
        padding: 36px 16px;
    }

    .service-body {
        padding: 24px 20px;
    }

        .service-body h2 {
            font-size: 22px;
        }

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

    .btn-explore {
        width: 100%;
        text-align: center;
        align-self: stretch;
    }
}


/* ─────────────────────────────────────────
   SERVICE UPDATES
───────────────────────────────────────── */
@media (max-width: 900px) {
    .updates {
        padding: 40px 24px;
    }
}

@media (max-width: 640px) {
    .updates {
        padding: 32px 16px;
    }

        .updates h2 {
            font-size: 22px;
        }

    .update-item {
        font-size: 13px;
        padding: 12px 0;
    }
}


/* ─────────────────────────────────────────
   ARTICLE CARDS
───────────────────────────────────────── */
@media (max-width: 900px) {
    .articles {
        padding: 48px 24px;
    }
}

@media (max-width: 640px) {
    .articles {
        padding: 32px 16px;
    }

    .articles-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .article-img {
        height: 180px;
    }
}


/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
@media (max-width: 900px) {
    footer {
        padding: 40px 32px 0;
    }

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

    /* Company Information spans full width */
    .footer-col:nth-child(3) {
        grid-column: 1 / -1;
    }

    .footer-legal {
        padding: 12px 32px;
    }
}

@media (max-width: 640px) {
    footer {
        padding: 0 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    /* Accordion columns */
    .footer-col {
        border-top: 1px solid var(--border);
    }

        .footer-col:last-child {
            border-bottom: 1px solid var(--border);
            margin-bottom: 24px;
        }

        .footer-col h4 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0;
            padding: 16px 0;
            cursor: pointer;
            user-select: none;
        }

            .footer-col h4::after {
                content: "+";
                font-size: 1.1rem;
                font-weight: 400;
                color: var(--text-light);
                transition: transform 0.2s ease;
                flex-shrink: 0;
            }

        .footer-col.open h4::after {
            transform: rotate(45deg);
        }

    /* Wrap footer links in <div class="footer-col-links"> for accordion */
    .footer-col-links {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding-bottom 0.3s ease;
        padding-bottom: 0;
    }

    .footer-col.open .footer-col-links {
        max-height: 300px;
        padding-bottom: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 0;
    }

    .footer-legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 16px;
    }

        .footer-legal a {
            margin-left: 0;
        }

    .legal-links {
        gap: 0;
    }

        .legal-links a {
            padding: 3px 10px;
            border-right: 1px solid rgba(255, 255, 255, 0.25);
            font-size: 11px;
        }

            .legal-links a:first-child {
                padding-left: 0;
            }

            .legal-links a:last-child {
                border-right: none;
            }
}

@media (max-width: 380px) {
    footer {
        padding-left: 12px;
        padding-right: 12px;
    }

    .footer-legal {
        padding: 14px 12px;
        font-size: 11px;
    }
}


/* ─────────────────────────────────────────
   SCROLL TO TOP
───────────────────────────────────────── */
@media (max-width: 640px) {
    .scroll-top {
        bottom: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
