:root {
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --navy: #0c2340;
    --navy-light: #1a3a5c;
}

.main-content { min-height: calc(100vh - 200px); }

/* ── Site header ── */
.site-header {
    position: relative;
    z-index: 1030;
}

.top-bar {
    background: linear-gradient(90deg, #071628 0%, var(--navy) 45%, #102a48 100%);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.8rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(245, 158, 11, 0.22);
    position: relative;
    z-index: 1035;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    min-height: 1.75rem;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem 1.35rem;
}

.top-bar-link,
.top-bar-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color 0.2s ease;
}

.top-bar-link i,
.top-bar-meta-item i {
    color: var(--accent);
    font-size: 0.78rem;
}

.top-bar-link:hover { color: #fff; }

.top-bar-aside {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.exchange-rates {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.78rem;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.rate-item strong {
    color: var(--accent);
    margin-inline-end: 0.25rem;
    font-weight: 700;
}

.top-bar-social { display: flex; }

.header-social-link {
    width: 1.85rem;
    height: 1.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    font-size: 0.85rem;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.header-social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-1px);
}

.top-bar-mobile {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.top-bar-mobile .top-bar-link,
.top-bar-mobile .top-bar-meta-item {
    font-size: 0.85rem;
}

/* Language & theme controls */
.locale-theme-controls {
    flex-shrink: 0;
}

.lang-dropdown .dropdown-toggle::after {
    margin-inline-start: 0.35rem;
}

.lang-dropdown-menu {
    z-index: 1060;
    border: none;
    border-radius: 10px;
    padding: 0.35rem;
    min-width: 11rem;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22);
    margin-top: 0.4rem !important;
}

.lang-dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 6px;
    padding: 0.45rem 0.75rem;
    font-size: 0.875rem;
}

.lang-dropdown-menu .dropdown-item.active {
    background: var(--navy);
    color: #fff;
}

.lang-dropdown-menu .dropdown-item:not(.active):hover {
    background: rgba(12, 35, 64, 0.08);
}

.lang-check {
    width: 1rem;
    font-size: 0.9rem;
}

.site-navbar .locale-lang-btn {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.04);
}

.site-navbar .locale-lang-btn:hover,
.site-navbar .locale-lang-btn.show {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(245, 158, 11, 0.12);
}

.site-navbar .locale-theme-btn {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.04);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
}

.site-navbar .locale-theme-btn:hover {
    background: rgba(245, 158, 11, 0.12);
    color: var(--accent);
    border-color: var(--accent);
}

/* Navbar */
.site-navbar {
    background: rgba(12, 35, 64, 0.96) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 28px rgba(7, 22, 40, 0.28);
    padding: 0.7rem 0;
    z-index: 1030 !important;
    transition: padding 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-navbar.is-scrolled {
    padding: 0.4rem 0;
    background: rgba(7, 22, 40, 0.97) !important;
    box-shadow: 0 10px 32px rgba(7, 22, 40, 0.4);
}

.brand-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.navbar-brand:hover .brand-icon {
    transform: translateY(-1px) rotate(-3deg);
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.45);
}

.brand-logo {
    display: flex;
    align-items: center;
    max-height: 48px;
}

.brand-logo-img {
    max-height: 48px;
    max-width: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 50%;
    transition: max-height 0.25s ease, max-width 0.25s ease;
}

.site-navbar.is-scrolled .brand-logo-img {
    max-height: 40px;
    max-width: 40px;
}
.site-navbar.is-scrolled .brand-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
}

.brand-text {
    line-height: 1.15;
}

.brand-text strong {
    font-size: 1.08rem;
    letter-spacing: 0.01em;
    color: #fff;
}

.brand-tagline {
    font-size: 0.68rem;
    opacity: 0.72;
    font-weight: 400;
    margin-top: 0.1rem;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-nav-links .nav-link {
    position: relative;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.55rem 0.85rem !important;
    color: rgba(255, 255, 255, 0.82) !important;
    transition: color 0.2s ease;
}

.site-nav-links .nav-link::after {
    content: '';
    position: absolute;
    inset-inline: 0.85rem;
    bottom: 0.2rem;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.site-nav-links .nav-link:hover,
.site-nav-links .nav-link.active {
    color: #fff !important;
}

.site-nav-links .nav-link:hover::after,
.site-nav-links .nav-link.active::after {
    transform: scaleX(1);
}

.site-nav-actions {
    flex-shrink: 0;
}

.btn-nav-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    font-weight: 500;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-nav-outline:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(245, 158, 11, 0.1);
}

.site-nav-order {
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.site-nav-toggler {
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    padding: 0.4rem 0.55rem;
}

.site-nav-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.25);
}

.site-nav-cta-mobile {
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

@media (max-width: 991.98px) {
    .site-nav-links {
        padding: 0.5rem 0 0.75rem;
        gap: 0.15rem;
    }

    .site-nav-links .nav-link {
        padding: 0.65rem 0.5rem !important;
        border-radius: 8px;
    }

    .site-nav-links .nav-link::after { display: none; }

    .site-nav-links .nav-link.active,
    .site-nav-links .nav-link:hover {
        background: rgba(255, 255, 255, 0.08);
        color: var(--accent) !important;
    }

    .site-nav-actions {
        width: 100%;
        padding-bottom: 0.25rem;
    }

    .site-nav-actions .btn {
        flex: 1 1 auto;
        justify-content: center;
    }
}

/* Cookie consent banner */
.cookie-banner {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 1080;
    background: rgba(15, 23, 42, 0.96);
    color: #f8fafc;
    padding: 1rem 0;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(110%);
    transition: transform 0.28s ease;
}
.cookie-banner.is-visible {
    transform: translateY(0);
}
.cookie-banner-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.cookie-banner-text {
    flex: 1 1 280px;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.95;
}
.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}
.cookie-banner-link {
    color: #cbd5e1;
    font-size: 0.85rem;
    margin-inline-end: 0.25rem;
}
.cookie-banner-link:hover {
    color: #fff;
}
body.theme-light .cookie-banner {
    background: rgba(15, 23, 42, 0.96);
}

.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    font-weight: 600;
}
.btn-accent:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
}
.text-accent { color: var(--accent) !important; }

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    inset-inline-end: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 1050;
    transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }

/* Hero */
.hero-section { position: relative; overflow: hidden; }
.hero-slide {
    min-height: 85vh;
    background-image: var(--hero-desktop);
    background-size: cover;
    background-position: center;
    position: relative;
}
@media (max-width: 991px) {
    .hero-slide {
        background-image: var(--hero-mobile, var(--hero-desktop));
    }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 35, 64, 0.88) 0%, rgba(12, 35, 64, 0.55) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-block: 4rem;
    padding-inline: max(1rem, calc(var(--bs-gutter-x, 1.5rem) * 0.5));
    width: 100%;
}
.min-vh-75 { min-height: 70vh; }
.hero-slogan {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}
.hero-content .display-4 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
}
.hero-content .lead {
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.quick-track-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1.75rem;
    color: var(--color-text);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next { width: 5%; }
.hero-section .carousel-indicators {
    margin-bottom: 1rem;
}
.hero-section .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* Sections */
.section-padding { padding: 5rem 0; }
.bg-surface { background: var(--color-surface); }
.section-title {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.theme-dark .section-title { color: var(--color-text); }

/* Services */
.home-services-section {
    background:
        radial-gradient(ellipse 70% 50% at 100% 0%, rgba(245, 158, 11, 0.07), transparent 55%),
        radial-gradient(ellipse 60% 45% at 0% 100%, rgba(12, 35, 64, 0.05), transparent 50%),
        linear-gradient(180deg, #f4f6f9 0%, #eef1f5 100%);
}
.theme-dark .home-services-section {
    background:
        radial-gradient(ellipse 70% 50% at 100% 0%, rgba(245, 158, 11, 0.08), transparent 55%),
        linear-gradient(180deg, #151515 0%, #1a1a1a 100%);
}
.service-card {
    position: relative;
    background: var(--color-bg);
    border: 1px solid rgba(12, 35, 64, 0.08);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 18px rgba(12, 35, 64, 0.04);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
}
.service-card::before {
    content: '';
    position: absolute;
    inset-inline: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #fbbf24 55%, transparent);
    opacity: 0.85;
    transition: opacity 0.3s ease, height 0.3s ease;
}
[dir="rtl"] .service-card::before {
    background: linear-gradient(270deg, var(--accent), #fbbf24 55%, transparent);
}
.service-card-inner {
    height: 100%;
}
.service-card-body {
    padding: 1.75rem 1.65rem 1.5rem;
    gap: 0;
}
.service-card-media {
    position: relative;
    overflow: hidden;
}
.service-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 35, 64, 0.35), transparent 55%);
    pointer-events: none;
}
.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.service-card:hover .service-card-media img {
    transform: scale(1.05);
}
.service-card-icon-el {
    font-size: 1.45rem;
    line-height: 1;
}
.service-card-icon-el.icon-custom-img {
    width: 1.45rem;
    height: 1.45rem;
    object-fit: contain;
}
.service-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 0.65rem;
    line-height: 1.35;
    letter-spacing: -0.01em;
}
.theme-dark .service-card-title { color: var(--color-text); }
.service-card-desc {
    color: var(--color-text-muted, #6b7280);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0 0 1.35rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.service-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    align-self: flex-start;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.45rem 0.85rem 0.45rem 0;
    border-radius: 999px;
    transition: color 0.25s ease, gap 0.25s ease, background 0.25s ease, padding 0.25s ease;
}
.service-card-cta i {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    font-size: 0.95rem;
}
.service-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin-top: 0.4rem;
    line-height: 1.45;
}
.service-card-features li i {
    margin-top: 0.15rem;
    flex-shrink: 0;
}
.services-banner-subtitle,
.services-cta-text {
    max-width: 760px;
}
.services-cta-box {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}
.services-section-head,
.section-head {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(12, 35, 64, 0.12);
    border-color: rgba(245, 158, 11, 0.4);
}
.service-card:hover::before {
    opacity: 1;
    height: 4px;
}
.service-card:hover .service-icon {
    background: var(--navy);
    color: var(--accent);
    transform: scale(1.05);
}
.service-card:hover .service-card-cta {
    color: var(--accent-hover);
    gap: 0.65rem;
}
.service-card:hover .service-card-cta i {
    transform: translateX(var(--svc-cta-shift, 3px));
}
[dir="rtl"] .service-card { --svc-cta-shift: -3px; }
.service-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(145deg, rgba(245, 158, 11, 0.16), rgba(245, 158, 11, 0.08));
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: var(--accent);
    margin-bottom: 1.15rem;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.services-jump {
    margin-top: -1.5rem;
    position: relative;
    z-index: 2;
}
.services-jump .service-overview-card {
    box-shadow: 0 8px 28px rgba(12, 35, 64, 0.08);
}

/* Countries */
.country-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.25rem 0.75rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.country-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.15);
}
.country-flag {
    width: 48px;
    height: auto;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.country-name { display: block; font-size: 0.85rem; font-weight: 600; }

/* Why us */
.why-card {
    background: var(--color-bg);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    height: 100%;
}
.why-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--navy);
    color: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Stats */
.stats-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}
.stat-number {
    display: block;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.stat-label { font-size: 0.9rem; opacity: 0.85; }

/* Process */
.process-timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
}
.process-step {
    flex: 0 0 auto;
    width: 180px;
    text-align: center;
    padding: 0 0.5rem;
}
.process-number {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}
.process-connector {
    width: 40px;
    height: 2px;
    background: var(--color-border);
    margin-top: 24px;
    flex-shrink: 0;
}

/* Calculator */
.calculator-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.calc-result {
    text-align: center;
    padding: 1.5rem;
    background: rgba(245, 158, 11, 0.08);
    border-radius: 12px;
}

/* Route map */
.route-map { height: 450px; z-index: 1; }

/* Shipments */
.shipment-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.25rem;
    transition: box-shadow 0.2s;
}
.shipment-card:hover { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); }
.shipment-status {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}
.status-delivered { background: #d1fae5; color: #065f46; }
.status-in_transit { background: #dbeafe; color: #1e40af; }
.status-customs { background: #fef3c7; color: #92400e; }

/* Testimonials */
.testimonial-card { max-width: 640px; padding: 2rem; }
.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Partners */
.partner-logo {
    padding: 1rem 2rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-weight: 700;
    color: var(--color-text);
    opacity: 0.7;
    font-size: 0.95rem;
    transition: opacity 0.2s;
}
.partner-logo:hover { opacity: 1; }

/* News */
.news-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.news-card:hover { box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); }
.news-img { width: 100%; height: 180px; object-fit: cover; }
.news-img-placeholder {
    height: 180px;
    background: var(--color-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-border);
}
.news-body { padding: 1.25rem; }

/* Certificates */
.cert-card {
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color 0.2s;
}
.cert-card:hover { border-color: var(--accent); }
.cert-icon {
    display: block;
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}
.cert-card span { font-weight: 600; font-size: 0.9rem; }

/* Contact form */
.contact-info-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.contact-form-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
}

/* CTA banner */
.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, #1e4976 50%, var(--navy-light) 100%);
}

/* Footer */
.site-footer {
    position: relative;
    background:
        radial-gradient(ellipse at 12% 0%, rgba(245, 158, 11, 0.12), transparent 42%),
        radial-gradient(ellipse at 88% 100%, rgba(30, 73, 118, 0.45), transparent 50%),
        linear-gradient(180deg, #0a1c33 0%, var(--navy) 45%, #071628 100%);
    color: rgba(255, 255, 255, 0.85);
    margin-top: auto;
    overflow: hidden;
}

.footer-accent {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 20%, #fbbf24 50%, var(--accent) 80%, transparent 100%);
}

.footer-main {
    padding: 3.5rem 0 2.75rem;
}

.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--accent), var(--accent-hover));
    color: #fff;
    font-size: 1.25rem;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
    flex-shrink: 0;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    max-height: 52px;
}

.footer-brand-logo img {
    max-height: 52px;
    max-width: 52px;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-brand-text strong {
    font-size: 1.05rem;
    font-weight: 700;
}

.footer-brand-text small {
    font-size: 0.72rem;
    opacity: 0.7;
    margin-top: 0.15rem;
}

.footer-about {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    max-width: 28rem;
}

.footer-social {
    margin-top: 0.25rem;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.1rem;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 0.65rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    bottom: 0;
    width: 1.75rem;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
}

.footer-links li { margin-bottom: 0.35rem; }

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.9;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(2px);
}

[dir="rtl"] .footer-links a:hover {
    transform: translateX(-2px);
}

.footer-links a:hover::before {
    width: 0.55rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.45;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover { color: var(--accent); }

.footer-contact i {
    color: var(--accent);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.footer-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.btn-footer-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.btn-footer-outline:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(245, 158, 11, 0.1);
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.28);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.1rem 0;
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.1rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover { color: var(--accent); }

.footer-credit {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-credit-link {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .footer-main { padding: 2.75rem 0 2rem; }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: start;
    }
}

@media (max-width: 991px) {
    .hero-slide {
        min-height: auto;
        align-items: stretch !important;
    }
    .min-vh-75 { min-height: auto; }
    .hero-content {
        padding-block: 3rem 4.25rem;
        padding-inline: 1.35rem;
        max-width: 100%;
    }
    .hero-content .display-4 {
        font-size: clamp(1.65rem, 6vw, 2.25rem);
        margin-bottom: 0.75rem !important;
    }
    .hero-content .lead {
        font-size: 1rem;
        margin-bottom: 1.25rem !important;
    }
    .hero-slogan {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
    .quick-track-card {
        padding: 1.25rem;
        margin-top: 0.25rem;
    }
    .quick-track-card .input-group-lg > .form-control,
    .quick-track-card .input-group-lg > .btn {
        font-size: 0.95rem;
        padding: 0.65rem 0.85rem;
    }
    .hero-section .carousel-control-prev,
    .hero-section .carousel-control-next {
        width: 2.5rem;
        height: 2.5rem;
        top: auto;
        bottom: 3.25rem;
        opacity: 0.9;
        background: rgba(12, 35, 64, 0.45);
        border-radius: 50%;
        transform: none;
    }
    .hero-section .carousel-control-prev {
        inset-inline-start: 1rem;
    }
    .hero-section .carousel-control-next {
        inset-inline-end: 1rem;
    }
    .hero-section .carousel-control-prev-icon,
    .hero-section .carousel-control-next-icon {
        width: 1rem;
        height: 1rem;
    }
    .hero-section .carousel-indicators {
        margin-bottom: 0.85rem;
    }
    .process-step { width: 100%; margin-bottom: 1.5rem; }
    .section-padding { padding: 3rem 0; }
    .stat-number { font-size: 2rem; }
}

@media (max-width: 575.98px) {
    .hero-content {
        padding-block: 2.5rem 3.75rem;
        padding-inline: 1.25rem;
    }
    .hero-content .display-4 {
        font-size: 1.5rem;
    }
    .hero-content .btn-lg {
        width: 100%;
        padding: 0.7rem 1rem;
        font-size: 1rem;
    }
    .quick-track-card .input-group {
        flex-direction: column;
    }
    .quick-track-card .input-group > .form-control {
        width: 100%;
        border-radius: 0.5rem !important;
        margin-bottom: 0.5rem;
    }
    .quick-track-card .input-group > .btn {
        width: 100%;
        border-radius: 0.5rem !important;
    }
    .hero-section .carousel-control-prev,
    .hero-section .carousel-control-next {
        display: none;
    }
}

/* Page banners & shared CTAs */
.page-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(245, 158, 11, 0.18), transparent 45%),
        radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.06), transparent 40%);
    pointer-events: none;
}
.page-banner-inner {
    position: relative;
    z-index: 1;
    padding-block: 1rem;
}
.page-banner-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.35);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}
.page-banner-lead { max-width: 720px; }
.page-cta-band {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 20px;
    padding: 3.25rem 2rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(12, 35, 64, 0.2);
}
.page-cta-band::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}
.page-cta-band h2,
.page-cta-band p {
    position: relative;
    color: #fff;
}
.page-cta-band p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 640px;
    margin-inline: auto;
}

/* About page */
.about-banner {
    background-image: linear-gradient(135deg, rgba(12,35,64,0.95), rgba(26,58,92,0.9)),
        url('https://images.unsplash.com/photo-1494412574643-98286aeddbcc?w=1920&q=80');
    background-size: cover;
    background-position: center;
}
.breadcrumb-light .breadcrumb-item a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb-light .breadcrumb-item.active { color: #fff; }
.breadcrumb-light .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }
.lead-sm { font-size: 1.05rem; }
.intro-fact-card {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 1.25rem;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.intro-fact-card:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 10px 28px rgba(12, 35, 64, 0.08);
}
.intro-fact-icon {
    width: 44px; height: 44px; min-width: 44px;
    background: rgba(245,158,11,0.12); color: var(--accent);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
}
.about-intro-img img { height: 400px; object-fit: cover; }
.story-card {
    background: var(--color-bg); border: 1px solid var(--color-border);
    border-radius: 16px; padding: 2rem;
    position: relative;
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.story-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.35);
    box-shadow: 0 14px 36px rgba(12, 35, 64, 0.1);
}
.story-step {
    position: absolute;
    top: 1.25rem;
    inset-inline-end: 1.25rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--accent);
    opacity: 0.7;
}
.story-icon {
    width: 64px; height: 64px; background: var(--navy); color: var(--accent);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(12, 35, 64, 0.18);
}
.mv-card {
    border-radius: 18px; padding: 2.5rem; color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(12, 35, 64, 0.18);
}
.mv-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    inset-inline-end: -15%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.22), transparent 70%);
    border-radius: 50%;
}
.mv-mission { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.mv-vision { background: linear-gradient(135deg, #1e4976, var(--navy)); }
.mv-icon {
    width: 56px; height: 56px; background: rgba(245,158,11,0.2);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--accent); margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.mv-card h2,
.mv-card p { position: relative; z-index: 1; }
.about-goals-band {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(12, 35, 64, 0.06));
    border-block: 1px solid rgba(245, 158, 11, 0.2);
    padding: 3.5rem 0;
}
.about-goals-band h2 { color: var(--navy); }
.theme-dark .about-goals-band h2 { color: var(--color-text); }
.about-goals-text {
    max-width: 720px;
    color: var(--color-text-muted, #6c757d);
    font-size: 1.05rem;
    line-height: 1.7;
}
.value-chip {
    background: var(--color-bg); border: 1px solid var(--color-border);
    border-radius: 14px; padding: 1.5rem 1rem;
    text-align: center;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.value-chip:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(12, 35, 64, 0.08);
}
.value-chip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.12);
    color: var(--accent);
    font-size: 1.4rem;
}
.value-chip i { display: block; font-size: 1.5rem; color: var(--accent); margin-bottom: 0.5rem; }
.value-chip span { font-weight: 600; font-size: 0.95rem; display: block; }
.about-stat-icon {
    color: var(--accent);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}
.country-flag-sm { width: 36px; border-radius: 4px; box-shadow: 0 1px 4px rgba(0,0,0,0.1); }
.team-card {
    background: var(--color-bg); border: 1px solid var(--color-border);
    border-radius: 12px; padding: 1.5rem 1rem;
}
.team-photo { width: 90px; height: 90px; object-fit: cover; }
.team-photo-placeholder {
    width: 90px; height: 90px; background: var(--color-surface);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--color-border);
}
.team-role { font-size: 0.8rem; color: var(--accent); font-weight: 600; }
.testimonial-box {
    background: var(--color-bg); border: 1px solid var(--color-border);
    border-radius: 12px; padding: 1.5rem;
}
.testimonial-text-sm { font-style: italic; color: var(--color-text); margin-bottom: 1rem; }
.gallery-item {
    display: block; position: relative; border-radius: 12px; overflow: hidden;
    aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: #fff; padding: 1.5rem 1rem 0.75rem; font-size: 0.85rem; font-weight: 600;
}
.about-contact-list li {
    display: flex; gap: 1rem; padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
}
.about-contact-list li:last-child { border-bottom: none; }
.about-contact-list i { color: var(--accent); font-size: 1.25rem; margin-top: 0.15rem; }
.about-contact-list a { color: var(--color-text); text-decoration: none; }
.about-contact-list a:hover { color: var(--accent); }
#aboutContactMap { height: 280px; }
#aboutCountriesMap { height: 380px; }

/* Services page */
.services-banner {
    background-image: linear-gradient(135deg, rgba(12,35,64,0.93), rgba(26,58,92,0.88)),
        url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1920&q=80');
    background-size: cover;
    background-position: center;
}
.service-overview-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    height: 100%;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.service-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}
.service-overview-icon {
    width: 52px;
    height: 52px;
    background: rgba(245, 158, 11, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--accent);
    margin: 0 auto 0.85rem;
}
.service-overview-card h5 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.35rem; }
.service-overview-card p { font-size: 0.8rem; margin-bottom: 0; }
.service-badge {
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--accent);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.service-detail-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(245, 158, 11, 0.12);
    color: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-detail-img img { height: 380px; object-fit: cover; }
.svc-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.svc-visible { opacity: 1; transform: translateY(0); }
.services-process .process-number { font-size: 1rem; }
.services-process .process-step { width: 150px; }
.quote-form-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* Services horizontal scroll */
.services-showcase { overflow: hidden; }
.services-scroll-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.services-scroll {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.75rem 0.25rem 1.25rem;
    margin-inline: -0.25rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(245, 158, 11, 0.55) transparent;
    cursor: grab;
    flex: 1;
    min-width: 0;
}
.services-scroll.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.services-scroll::-webkit-scrollbar { height: 6px; }
.services-scroll::-webkit-scrollbar-thumb {
    background: rgba(245, 158, 11, 0.45);
    border-radius: 999px;
}
.service-scroll-card {
    flex: 0 0 min(320px, 78vw);
    scroll-snap-align: start;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
@media (min-width: 768px) {
    .service-scroll-card { flex-basis: min(340px, 42vw); }
}
@media (min-width: 1200px) {
    .service-scroll-card { flex-basis: calc((100% - 2.5rem) / 3); }
}
.service-scroll-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(12, 35, 64, 0.12);
    border-color: rgba(245, 158, 11, 0.35);
}
.service-scroll-card-media {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
}
.service-scroll-card-media--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 2.5rem;
}
.service-scroll-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 35, 64, 0.4), transparent 55%);
    pointer-events: none;
}
.service-scroll-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.service-scroll-card:hover .service-scroll-card-media img {
    transform: scale(1.06);
}
.service-scroll-card-body {
    padding: 1.35rem 1.35rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.service-scroll-card-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.55;
    flex-grow: 1;
}
.service-scroll-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}
.service-scroll-card:hover .service-scroll-card-link { color: var(--accent-hover); }
.service-icon--sm {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    margin-bottom: 0.85rem;
}
.services-scroll-btn {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(12, 35, 64, 0.06);
}
.services-scroll-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(245, 158, 11, 0.08);
}
@media (max-width: 575.98px) {
    .services-scroll-btn { display: none; }
}

/* Service detail page */
.service-detail-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    color: #fff;
    overflow: hidden;
}
.service-detail-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}
.service-detail-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(12, 35, 64, 0.88), rgba(12, 35, 64, 0.55) 45%, rgba(12, 35, 64, 0.92));
}
.service-detail-hero-bg--fallback {
    background-image: linear-gradient(135deg, var(--navy), var(--navy-light)),
        url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1920&q=80');
    background-size: cover;
    background-position: center;
}
.service-detail-hero-content {
    position: relative;
    z-index: 1;
    padding: 3.5rem 0 2.75rem;
}
.service-detail-hero-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(245, 158, 11, 0.18);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(6px);
}
.service-detail-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    max-width: 720px;
}
.service-detail-lead {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 640px;
    margin-bottom: 0;
    line-height: 1.65;
}
.service-detail-figure {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(12, 35, 64, 0.12);
}
.service-detail-photo {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    display: block;
}
.service-detail-copy-text {
    white-space: pre-line;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--color-text);
    margin-bottom: 0;
}
.service-detail-aside {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: sticky;
    top: 5.5rem;
}
.service-detail-panel {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 28px rgba(12, 35, 64, 0.05);
}
.service-detail-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.service-detail-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
}
.service-detail-cta {
    background: linear-gradient(160deg, rgba(12, 35, 64, 0.03), rgba(245, 158, 11, 0.06));
}
.service-card-link { color: inherit; }
.service-card-link:focus-visible {
    outline: none;
}
.service-card-link:focus-visible .service-card {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25), 0 20px 48px rgba(12, 35, 64, 0.12);
}

@media (max-width: 991px) {
    .service-detail-img img { height: 260px; }
    .services-process .process-step { width: 100%; }
    .service-detail-aside { position: static; }
    .service-detail-photo { max-height: 280px; }
    .service-detail-hero { min-height: 280px; }
}

/* Blog page */
.blog-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--accent), #fbbf24);
    z-index: 1100;
    transition: width 0.1s linear;
}
.blog-banner {
    background-image: linear-gradient(135deg, rgba(12, 35, 64, 0.94), rgba(26, 58, 92, 0.9)),
        url('https://images.unsplash.com/photo-1494412574643-98286aeddbcc?w=1920&q=80');
    background-size: cover;
    background-position: center;
}
.blog-featured {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(12, 35, 64, 0.1);
    transition: box-shadow 0.3s;
}
.blog-featured:hover { box-shadow: 0 12px 40px rgba(12, 35, 64, 0.14); }
.blog-featured-img-wrap { display: block; height: 100%; min-height: 280px; }
.blog-featured-img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-featured:hover .blog-featured-img { transform: scale(1.03); }
.blog-featured-content { padding: 2.5rem; }
.blog-featured-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}
.blog-featured-title { font-size: 1.65rem; font-weight: 700; margin: 0.75rem 0; line-height: 1.35; }
.blog-featured-title a { color: var(--color-text); text-decoration: none; }
.blog-featured-title a:hover { color: var(--accent); }
.blog-featured-excerpt { color: var(--color-text-muted, #6b7280); margin-bottom: 1rem; }
.blog-category-badge {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.blog-category-badge-lg { font-size: 0.75rem; padding: 0.35rem 0.75rem; }
.blog-card-img-link { position: relative; display: block; overflow: hidden; }
.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.06); }
.blog-card-img-link .blog-category-badge {
    position: absolute;
    top: 0.75rem;
    inset-inline-start: 0.75rem;
}
.blog-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.09);
    border-color: rgba(245, 158, 11, 0.35);
}
.blog-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card-title a { color: var(--color-text); text-decoration: none; }
.blog-card-title a:hover { color: var(--accent); }
.blog-card-excerpt {
    font-size: 0.875rem;
    color: var(--color-text-muted, #6b7280);
    margin-bottom: 0.85rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    font-size: 0.75rem;
    color: var(--color-text-muted, #6b7280);
    margin-bottom: 0.85rem;
}
.blog-card-meta i { color: var(--accent); margin-inline-end: 0.2rem; }
.blog-read-more { align-self: flex-start; }
.blog-articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.blog-popular-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.blog-popular-item {
    display: flex;
    gap: 0.85rem;
    padding: 0.85rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, transform 0.2s;
}
.blog-popular-item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    color: inherit;
}
.blog-popular-thumb {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 8px;
    object-fit: cover;
}
.blog-popular-info h6 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-popular-meta { font-size: 0.72rem; color: var(--color-text-muted, #6b7280); }
.blog-categories-scroll {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: thin;
}
.blog-cat-btn {
    white-space: nowrap;
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.blog-cat-btn:hover,
.blog-cat-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}
.blog-cat-btn.active i { color: var(--accent); }
.blog-search-inline,
.blog-search-box {
    position: relative;
}
.blog-search-inline i,
.blog-search-box i {
    position: absolute;
    inset-inline-start: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    pointer-events: none;
}
.blog-search-inline .form-control,
.blog-search-box .form-control {
    padding-inline-start: 2.5rem;
    border-radius: 10px;
    border-color: var(--color-border);
}
.blog-search-inline .form-control { min-width: 220px; }
.blog-search-inline .form-control:focus,
.blog-search-box .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.15);
}
.blog-sidebar { position: sticky; top: 90px; }
.blog-sidebar-widget {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 1.35rem;
    margin-bottom: 1.25rem;
}
.blog-sidebar-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid var(--accent);
}
.blog-sidebar-categories { list-style: none; padding: 0; margin: 0; }
.blog-sidebar-categories li { margin-bottom: 0.25rem; }
.blog-sidebar-cat {
    width: 100%;
    text-align: start;
    border: none;
    background: transparent;
    padding: 0.45rem 0.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    color: var(--color-text);
}
.blog-sidebar-cat:hover,
.blog-sidebar-cat.active {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
    font-weight: 600;
}
.blog-sidebar-cat i { margin-inline-end: 0.5rem; width: 1.1rem; }
.blog-sidebar-posts { list-style: none; padding: 0; margin: 0; }
.blog-sidebar-posts li { margin-bottom: 0.75rem; }
.blog-sidebar-posts li:last-child { margin-bottom: 0; }
.blog-sidebar-post {
    display: flex;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    align-items: flex-start;
}
.blog-sidebar-post:hover strong { color: var(--accent); }
.blog-sidebar-post strong {
    display: block;
    font-size: 0.82rem;
    line-height: 1.35;
    margin-bottom: 0.15rem;
}
.blog-sidebar-post small { font-size: 0.72rem; color: var(--color-text-muted, #6b7280); }
.blog-sidebar-thumb {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 8px;
    object-fit: cover;
}
.blog-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.blog-tag {
    border: 1px solid var(--color-border);
    background: var(--color-surface, #f8fafc);
    border-radius: 6px;
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.blog-tag:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}
.blog-newsletter { background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: #fff; }
.blog-newsletter .blog-sidebar-title { color: #fff; border-bottom-color: var(--accent); }
.blog-newsletter .text-muted { color: rgba(255, 255, 255, 0.7) !important; }
.blog-social-links { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.blog-social-link {
    width: 40px;
    height: 40px;
    background: rgba(245, 158, 11, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.blog-social-link:hover { background: var(--accent); color: #fff; }
.blog-tip-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.35rem;
    height: 100%;
    transition: border-color 0.2s, transform 0.2s;
}
.blog-tip-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}
.blog-tip-icon {
    width: 44px;
    height: 44px;
    background: rgba(245, 158, 11, 0.12);
    color: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}
.blog-tip-card h5 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.35rem; }
.blog-news-item {
    display: flex;
    gap: 1rem;
    padding: 1.15rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    transition: border-color 0.2s;
}
.blog-news-item:hover { border-color: rgba(245, 158, 11, 0.4); }
.blog-news-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--navy);
    color: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.blog-news-item h5 { font-size: 0.95rem; font-weight: 600; }
.blog-news-date { font-size: 0.75rem; color: var(--color-text-muted, #6b7280); white-space: nowrap; }
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.blog-page-btn {
    min-width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.blog-page-btn:hover:not(:disabled) {
    border-color: var(--accent);
    color: var(--accent);
}
.blog-page-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}
.blog-page-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.blog-empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--color-text-muted, #6b7280);
}
.blog-empty-state i { font-size: 2.5rem; color: var(--accent); display: block; margin-bottom: 0.75rem; }
.blog-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.blog-visible { opacity: 1; transform: translateY(0); }
.blog-article-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--accent), #fbbf24);
    z-index: 1100;
}
.blog-article-header { padding: 2rem 0 1rem; }
.blog-article-cover {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.blog-article-cover img { width: 100%; max-height: 420px; object-fit: cover; }
.blog-article-content { font-size: 1.05rem; line-height: 1.8; }
.blog-article-content h2, .blog-article-content h3 { margin-top: 1.75rem; margin-bottom: 0.75rem; }
@media (max-width: 991px) {
    .blog-sidebar { position: static; }
    .blog-articles-grid { grid-template-columns: 1fr; }
    .blog-popular-row { grid-template-columns: 1fr; }
    .blog-featured-content { padding: 1.5rem; }
}
@media (max-width: 575px) {
    .blog-featured-title { font-size: 1.35rem; }
}
