/* ─── Aerologix-Inspired Design Tokens ──────────── */
:root {
    --primary: #003B49;
    --primary-dark: #002630;
    --primary-light: #0a4d5e;
    --accent: #008000;
    --accent-dark: #1a9e45;
    --text: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --off-white: #F7F7F7;
    --divider: #E2E2E2;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #adb5bd;
    --gray-500: #6c757d;
    --gray-600: #495057;
    --gray-700: #333333;
    --gray-800: #212529;
    --red: #e65757;
    --green: #22c55e;
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --shadow-md: 0 4px 20px rgba(0,59,73,.1);
    --shadow-lg: 0 10px 40px rgba(0,59,73,.12);
    --shadow-xl: 0 20px 60px rgba(0,59,73,.15);
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all .3s ease-in-out;
}

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

body {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
a:hover { color: var(--accent); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1300px; }
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    padding-right: 15px; padding-left: 15px;
}
.row { margin-right: -15px; margin-left: -15px; }
.row > * { padding-right: 15px; padding-left: 15px; }
.row.no-gutters { margin-right: 0; margin-left: 0; }
.row.no-gutters > * { padding-right: 0; padding-left: 0; }

/* ─── Typography ───────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    margin: 0; font-weight: 700; color: var(--primary);
    line-height: 1.3;
}
h1 { font-size: clamp(1.8rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p { line-height: 1.6; margin-bottom: 0; }
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--primary);
    letter-spacing: -0.02em;
}
.section-title h2 span { color: var(--accent); }
.section-title p {
    max-width: 600px;
    margin: 20px auto 0;
    color: var(--text-light);
}
.section { padding: 100px 0; }
.section-off-white { background: var(--off-white); }
.section-dark { background: var(--primary); }

/* ─── Animations ───────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
@keyframes borderZoom {
    100% { transform: scale(1); opacity: 0; }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
.animate-fade-up { animation: fadeUp .6s ease-out both; }
.animate-fade-in { animation: fadeIn .6s ease-out both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

/* ─── Buttons ──────────────────────────────────── */
.btn-default {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: var(--transition);
    text-transform: capitalize;
    line-height: 1.4;
}
.btn-default::before {
    content: '';
    position: absolute;
    width: 0;
    height: 104%;
    top: 50%;
    left: 50%;
    background: var(--primary);
    opacity: 0;
    z-index: -1;
    transform: translateX(-51%) translateY(-51%);
    transition: var(--transition);
    border-radius: var(--radius-sm);
}
.btn-default:hover::before { width: 106%; opacity: 1; }
.btn-default:hover { color: var(--white); }

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--white);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    padding: 13px 29px;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(255,255,255,.5);
    cursor: pointer;
    transition: var(--transition);
    text-transform: capitalize;
    line-height: 1.4;
}
.btn-outline:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--white);
    color: var(--white);
}

.btn-accent-outline {
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
    padding: 13px 29px;
}
.btn-accent-outline:hover { background: var(--accent); color: var(--white); }

.btn-lg { padding: 16px 36px; font-size: 18px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; }

/* ─── Topbar ───────────────────────────────────── */
.topbar {
    background: var(--off-white);
    position: relative;
    z-index: 101;
}
.topbar-contact-info { padding: 10px 0; }
.topbar-contact-info ul { list-style: none; padding: 0; margin: 0; }
.topbar-contact-info ul li {
    display: inline-block;
    margin-right: 15px;
    font-size: 14px;
    color: var(--text);
}
.topbar-contact-info ul li i {
    font-size: 14px;
    margin-right: 6px;
    color: var(--primary);
}
.topbar-contact-info ul li a { color: var(--text); }
.topbar-contact-info ul li a:hover { color: var(--accent); }
.topbar-social-links {
    background: var(--white);
    padding: 10px 15px;
    text-align: center;
}
.topbar-social-links ul { list-style: none; padding: 0; margin: 0; }
.topbar-social-links ul li {
    display: inline-block;
    margin-right: 8px;
}
.topbar-social-links ul li:last-child { margin-right: 0; }
.topbar-social-links ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    transition: var(--transition);
}
.topbar-social-links ul li a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ─── Header ───────────────────────────────────── */
.main-header {
    position: relative;
    z-index: 100;
    background: var(--white);
}
.main-header .header-sticky {
    position: relative;
    top: 0;
    z-index: 100;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}
.main-header .header-sticky.hide {
    transform: translateY(-100%);
}
.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--divider);
    transform: translateY(0);
    box-shadow: 0 2px 20px rgba(0,59,73,.08);
}
.navbar { padding: 0; }
.navbar > .container { display: flex; align-items: center; }
.navbar-brand { padding: 0; margin-right: 40px; }
.navbar-brand img { height: 40px; }

.main-menu { font-family: var(--font); flex: 1; }
.main-menu .navbar-nav { align-items: center; }
.main-menu .navbar-nav > .nav-item { margin: 0 15px; position: relative; }
.main-menu .navbar-nav > .nav-item > .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    padding: 38px 0;
    text-transform: capitalize;
    transition: var(--transition);
    position: relative;
}
.main-menu .navbar-nav > .nav-item > .nav-link:hover,
.main-menu .navbar-nav > .nav-item > .nav-link.active {
    color: var(--accent);
}
.main-menu .has-submenu > .nav-link {
    padding-right: 18px !important;
}
.main-menu .has-submenu > .nav-link::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
    margin-left: 6px;
    position: absolute;
    top: 50%;
    margin-top: -7px;
    transition: var(--transition);
}
.main-menu .has-submenu:hover > .nav-link::after { transform: rotate(-180deg); }

.main-menu .sub-menu {
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 220px;
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--accent);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    transition: var(--transition);
}
.main-menu .has-submenu:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
}
.main-menu .sub-menu .nav-item { margin: 0; }
.main-menu .sub-menu .nav-link {
    color: var(--white) !important;
    padding: 12px 20px !important;
    font-weight: 500;
    display: block;
}
.main-menu .sub-menu .nav-link:hover { color: var(--primary) !important; }

.header-contact-phone { display: flex; align-items: center; margin-left: 30px; flex-shrink: 0; }
.header-contact-phone a { display: flex; align-items: center; color: var(--primary); }
.header-contact-phone a img { margin-right: 10px; width: 24px; }
.header-contact-phone h3 {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
}
.header-contact-phone h3 span {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
}

/* Mobile nav */
.navbar-toggle { display: none; }
.responsive-menu { display: none; margin-top: 0; }

.slicknav_btn {
    background: var(--primary);
    width: 36px; height: 36px;
    margin: 0; padding: 5px;
    border-radius: 0;
}
.slicknav_icon .slicknav_icon-bar {
    display: block;
    height: 3px;
    width: 22px;
    background: var(--white);
    margin: 4px auto !important;
}
.slicknav_menu {
    padding: 0;
    background: var(--accent);
    position: absolute;
    width: 100%;
    z-index: 1;
    margin-top: 10px;
}
.slicknav_nav ul { margin: 0; }
.slicknav_nav li a {
    position: relative;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 20px;
    margin: 0;
    color: var(--white);
    transition: var(--transition);
}
.slicknav_nav li a:hover {
    background: transparent;
    color: var(--primary);
    border-radius: 0;
}
.slicknav_nav .sub-menu li a { padding: 10px 30px; }
.slicknav_nav .slicknav_row {
    padding: 10px 20px;
    margin: 0;
    background: transparent !important;
}
.slicknav_arrow { font-size: 0 !important; }
.slicknav_arrow::after {
    width: 20px; height: 20px;
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 14px;
    text-align: center;
    position: absolute;
    right: 15px;
    top: 10px;
    transition: var(--transition);
}
.slicknav_open > a .slicknav_arrow::after { transform: rotate(-180deg); }
.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
}
.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span:nth-child(2) { opacity: 0; }
.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
}

/* ─── Hero ─────────────────────────────────────── */
.hero {
    position: relative;
    padding: 140px 0 220px;
    background: url('../images/hero-bg.jpg') no-repeat center center / cover;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, var(--primary) 100%);
    z-index: 2;
}
.hero .container { position: relative; z-index: 3; }
.hero-content { position: relative; z-index: 3; }
.hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 20px;
}
.hero-content h1 span { color: var(--accent); }
.hero-content-body { margin-bottom: 40px; }
.hero-content-body p {
    color: var(--white);
    font-size: 18px;
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
    opacity: 0.9;
}
.hero-content-footer .btn-default::before { background: var(--white); }
.hero-content-footer .btn-default:hover { color: var(--primary); }

.video-play-button {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 66px;
    margin: 40px auto 0;
}
.video-play-button::before,
.video-play-button a::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    border: 3px solid var(--accent);
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: borderZoom 1s infinite linear;
}
.video-play-button a::after { animation-delay: .3s; }
.video-play-button img {
    width: 65px;
    border: 2px solid var(--accent);
    border-radius: 50%;
}

/* ─── Cargo Shipment (Intro Services) ─────────── */
.cargo-shipment {
    position: relative;
    z-index: 4;
    margin-top: -120px;
}
.cargo-shipment-item {
    position: relative;
    overflow: hidden;
    padding: 40px 30px;
    height: 100%;
    background: var(--white);
    box-shadow: 0 10px 50px rgba(3, 75, 91, 0.1);
    transition: var(--transition);
}
.cargo-shipment-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    z-index: 1;
    transition: var(--transition);
}
.cargo-shipment-item:hover::before { transform: translate(100%, -100%); }
.cargo-shipment-item.active::before { transform: translate(100%, -100%); }
.cargo-shipment-item.active { background: transparent; }

.cargo-shipment-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    overflow: hidden;
    transition: var(--transition);
}
.cargo-shipment-item:hover .cargo-shipment-image,
.cargo-shipment-item.active .cargo-shipment-image { opacity: 1; }
.cargo-shipment-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    opacity: 0.7;
}
.cargo-shipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cargo-shipment-content { position: relative; z-index: 2; }
.cargo-shipment-icon { margin-bottom: 20px; }
.cargo-shipment-icon img { height: 50px; }
.cargo-shipment-content h3 {
    font-size: 20px;
    margin-bottom: 16px;
    transition: var(--transition);
}
.cargo-shipment-item:hover .cargo-shipment-content h3,
.cargo-shipment-item.active .cargo-shipment-content h3 { color: var(--white); }
.cargo-shipment-content p {
    margin-bottom: 20px;
    transition: var(--transition);
    color: var(--text-light);
}
.cargo-shipment-item:hover .cargo-shipment-content p,
.cargo-shipment-item.active .cargo-shipment-content p { color: var(--white); }
.cargo-shipment-readmore a {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    padding-right: 24px;
    position: relative;
    transition: var(--transition);
}
.cargo-shipment-readmore a::before {
    content: '\f061';
    font-family: 'FontAwesome';
    font-size: 16px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    transition: var(--transition);
}
.cargo-shipment-item:hover .cargo-shipment-readmore a,
.cargo-shipment-item.active .cargo-shipment-readmore a { color: var(--white); }
.cargo-shipment-item:hover .cargo-shipment-readmore a::before,
.cargo-shipment-item.active .cargo-shipment-readmore a::before { color: var(--white); }

/* ─── Transportation / About ───────────────────── */
.home-transportation { padding: 100px 0; }
.home-transportation .section-title { text-align: left; margin-bottom: 20px; max-width: 500px; }
.home-transportation-content { margin-right: 65px; }
.home-transportation-body p { margin-bottom: 15px; }
.home-transportation-footer {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.home-transportation-footer .header-contact-phone { margin-left: 0; }

.home-transportation-right {
    position: relative;
    background: url('../images/transportation-shape.svg') no-repeat bottom 15px left 28%;
    padding-bottom: 150px;
}
.transportation-img-1 { position: relative; }
.transportation-img-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 280px;
}
.transportation-img-1 img,
.transportation-img-2 img { border-radius: var(--radius-md); }

.transportation-counter-box {
    position: absolute;
    left: 34%;
    bottom: 12%;
    background: var(--white);
    box-shadow: 0 0 30px rgba(0,0,0,.2);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
}
.transportation-counter-box h3 { font-size: 46px; color: var(--accent); }
.transportation-counter-box p { font-weight: 700; }

/* ─── Services Section ─────────────────────────── */
.our-service { padding: 100px 0; }
.our-service-item { margin-bottom: 30px; }
.our-service-image { border-radius: var(--radius-md); overflow: hidden; }
.our-service-image img {
    width: 100%;
    aspect-ratio: 1 / 0.65;
    object-fit: cover;
    transition: transform .5s ease-out;
}
.our-service-item:hover .our-service-image img { transform: scale(1.1); }

.our-service-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    margin-top: -10%;
}
.service-content-box {
    display: flex;
    align-items: center;
    width: 75%;
    background: var(--white);
    box-shadow: 0 10px 50px rgba(3, 75, 91, 0.1);
    padding: 20px;
}
.our-service-icon { margin-right: 12px; }
.our-service-icon img { height: 40px; }
.our-service-title h2 {
    font-size: 20px;
    color: var(--text);
    text-transform: capitalize;
}
.our-service-content-button {
    width: 15%;
    background: var(--primary);
    padding: 14px 12px;
    margin-left: -30px;
    text-align: center;
}
.our-service-content-button a { color: var(--accent); font-size: 30px; }
.our-service-content-button a:hover { color: var(--white); }
.our-service-footer { text-align: center; margin-top: 20px; }

/* ─── CTA Section ──────────────────────────────── */
.our-contract {
    position: relative;
    background: url('../images/contact-bg-img.jpg') no-repeat center center / cover;
    padding: 100px 0;
}
.our-contract::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    opacity: 0.5;
}
.our-cta-box {
    position: relative;
    z-index: 1;
    background: var(--primary);
    border-radius: var(--radius-md);
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    text-align: center;
}
.our-contract-title { margin-bottom: 20px; }
.our-contract-title h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--white);
}
.our-contract-body p { color: var(--white); margin-bottom: 20px; }
.our-contract-body .btn-default::before { background: var(--white); }
.our-contract-body .btn-default:hover { color: var(--primary); }

/* ─── Recent Projects ───────────────────────────── */
.recent-project { padding: 100px 0 70px; }
.project-slider { position: relative; max-width: 1180px; margin: 0 auto; }
.project-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
}
.project-image img {
    width: 100%;
    aspect-ratio: 1 / 1.2;
    object-fit: cover;
    transition: transform .5s ease-out;
}
.project-item:hover .project-image img { transform: scale(1.1); }
.project-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    transform: translateY(100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}
.project-item:hover .project-content {
    transform: translateY(0);
    opacity: 1;
}
.project-content-title {
    background: var(--white);
    box-shadow: 0 10px 50px rgba(3, 75, 91, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}
.project-content-title h3 {
    font-size: 18px;
    color: var(--primary);
}
.project-content-title i { font-size: 20px; color: var(--accent); }
.project-content-title h3 a { color: inherit; }

/* ─── Our Goals / Stats ─────────────────────────── */
.our-goals { padding: 100px 0; }
.our-goals-item {
    background: var(--white);
    box-shadow: 0 10px 50px rgba(3, 75, 91, 0.1);
    border-radius: var(--radius-md);
    text-align: center;
    padding: 30px;
    margin-bottom: 30px;
}
.counter-icon { margin-bottom: 20px; }
.our-goals-counter h3 { font-size: 50px; color: var(--primary); }
.our-goals-counter h3 span { color: inherit; }

/* ─── Providing Service / Features ─────────────── */
.providing-service { padding: 100px 0 50px; }
.Featured-Content-Box img { width: 100%; border-radius: var(--radius-md); }
.providing-content { margin-left: 10px; }
.providing-content .section-title { text-align: left; margin-bottom: 30px; max-width: 450px; }
.providing-content-body p { margin-bottom: 30px; }
.providing-item-box { display: flex; gap: 20px; flex-wrap: wrap; }
.providing-item { text-align: center; flex: 1; min-width: 120px; }
.providing-item .icon-box { margin-bottom: 10px; }
.providing-item span { font-weight: 700; display: block; }

/* ─── Latest Posts ──────────────────────────────── */
.latest-posts { padding: 50px 0 70px; }
.post-item {
    margin-bottom: 30px;
    height: calc(100% - 30px);
}
.post-featured-image {
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}
.post-featured-image img {
    aspect-ratio: 1 / 0.7;
    object-fit: cover;
    transition: transform .5s ease-in-out;
}
.post-item:hover .post-featured-image img { transform: scale(1.1); }
.post-body h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 10px;
}
.post-meta { margin-bottom: 20px; }
.post-meta ul { list-style: none; padding: 0; margin: 0; }
.post-meta ul li { display: inline-block; }
.post-meta ul li a {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}
.post-readmore a {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    padding-right: 20px;
    position: relative;
    transition: var(--transition);
}
.post-readmore a::before {
    content: '\f061';
    font-family: 'FontAwesome';
    font-size: 16px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    transition: var(--transition);
}
.post-readmore:hover a { color: var(--primary); }
.post-readmore:hover a::before { color: var(--primary); }

/* ─── Footer ───────────────────────────────────── */
.main-footer { background: var(--primary); }
.mega-footer { padding: 80px 0; }
.footer-heading { margin-bottom: 20px; }
.footer-heading img { height: 40px; }
.footer-content { margin-bottom: 30px; }
.footer-content p { color: var(--white); max-width: 300px; opacity: 0.7; }
.footer-social-link ul { list-style: none; padding: 0; margin: 0; }
.footer-social-link ul li { display: inline-block; margin-right: 5px; }
.footer-social-link ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
    transition: var(--transition);
}
.footer-social-link ul li a:hover {
    border-color: var(--white);
    color: var(--white);
}
.footer-info-heading { margin-bottom: 20px; position: relative; }
.footer-info-heading h2 {
    font-size: 20px;
    color: var(--white);
    text-transform: capitalize;
}
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: var(--white); opacity: 0.7; font-size: 16px; font-weight: 600; }
.footer-links ul li a:hover { opacity: 1; color: var(--accent); }
.footer-contact-box { margin-top: 0; }
.footer-info-box {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}
.footer-info-box .icon-box {
    position: absolute;
    top: 2px;
    left: 0;
}
.footer-info-box .icon-box i { font-size: 20px; color: var(--accent); }
.footer-info-box p { color: var(--white); font-size: 16px; opacity: 0.7; }

.newsletters-content { margin-bottom: 20px; }
.newsletters-content p { color: var(--white); opacity: 0.7; }
.newsletters-form .mail-box {
    background: transparent;
    border-bottom: 2px solid var(--white);
}
.newsletters-form .mail-box .form-control {
    background: transparent;
    border: none;
    color: var(--white);
    padding: 10px 2px;
    box-shadow: none;
}
.newsletters-form .mail-box .form-control::placeholder {
    font-size: 14px;
    color: var(--white);
    opacity: 0.5;
}
.newsletters-form .mail-box button {
    background: transparent;
    border: none;
    margin-top: 11px;
}
.newsletters-form .mail-box i { font-size: 20px; color: var(--accent); transition: var(--transition); }
.newsletters-form .mail-box i:hover { color: var(--white); }

.footer-copyright-links {
    background: var(--accent);
    padding: 20px 0;
}
.footer-copyright p { color: var(--white); font-weight: 600; }
.footer-copyright p b { color: var(--primary); }
.footer-policy-links ul { list-style: none; margin: 0; padding: 0; text-align: right; }
.footer-policy-links ul li {
    position: relative;
    display: inline-block;
    padding-left: 10px;
    margin-left: 10px;
}
.footer-policy-links ul li::before {
    content: '';
    display: block;
    width: 1px;
    height: 15px;
    background: var(--white);
    position: absolute;
    top: 5px;
    left: 0;
}
.footer-policy-links ul li:first-child { padding-left: 0; }
.footer-policy-links ul li:first-child::before { display: none; }
.footer-policy-links ul li a { color: var(--white); font-size: 16px; font-weight: 600; }

/* ─── Page Header (inner pages) ────────────────── */
.page-header {
    position: relative;
    background: url('../images/page-heade-bg.jpg') no-repeat center center / cover;
    padding: 150px 0;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(268deg, transparent 0%, var(--primary) 74%);
}
.page-header-box { position: relative; z-index: 1; }
.page-header-box h2 {
    font-size: clamp(1.5rem, 3.5vw, 3rem);
    color: var(--white);
    margin-bottom: 20px;
}
.page-header-box .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}
.page-header-box .breadcrumb .breadcrumb-item {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}
.page-header-box .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: '\f061';
    font-family: 'FontAwesome';
    font-weight: 900;
    color: var(--accent);
    padding-right: 10px;
}
.page-header-box .breadcrumb .breadcrumb-item a { color: var(--white); }
.page-header-box .breadcrumb .breadcrumb-item.active { color: var(--accent); }

/* ─── Quote Form (FreightWale specific) ────────── */
.fw-section { padding: 100px 0; }
.fw-section-gray { background: var(--off-white); }
.fw-section-dark { background: var(--primary); }

.quote-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}
.quote-card h2 { margin-bottom: 4px; }
.quote-card .subtitle { color: var(--text-light); margin-bottom: 32px; }
.quote-trust-banner {
    display: flex;
    gap: 24px;
    padding: 16px 0;
    border-top: 1px solid var(--divider);
    margin-top: 32px;
    flex-wrap: wrap;
}
.quote-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}
.form-step { animation: fadeUp .35s ease-out; }
.form-step h3 { font-size: 18px; color: var(--primary); margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--text);
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--divider);
    border-radius: var(--radius-sm);
    font-size: 15px;
    outline: none;
    transition: var(--transition);
    font-family: var(--font);
    background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(34,197,94,.1);
}
.form-row { display: flex; gap: 16px; }
.form-row .form-group { flex: 1; }
.required { color: var(--red); }
.help-text { font-size: 13px; color: var(--gray-500); margin-top: 4px; }
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
    padding: 8px 0;
}
.checkbox-label input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--accent); }
hr { border: none; border-top: 1px solid var(--divider); margin: 24px 0; }

.mode-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-bottom: 24px; }
.mode-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    border: 2px solid var(--divider);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-weight: 500;
}
.mode-card:hover { border-color: var(--accent); }
.mode-card input { display: none; }
.mode-card input:checked + .mode-label { color: var(--accent); }
.mode-card:has(input:checked) { border-color: var(--accent); background: rgba(34,197,94,.05); }
.mode-label { font-weight: 600; }
.form-actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }

/* ─── Quote Result ─────────────────────────────── */
.quote-result-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    border: 2px solid var(--accent);
    max-width: 750px;
}
.quote-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.quote-ref { font-family: monospace; font-size: 14px; color: var(--gray-500); }
.quote-validity { color: var(--accent); font-weight: 600; margin-bottom: 20px; }
.quote-breakdown { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.quote-breakdown th,
.quote-breakdown td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--divider); font-size: 14px; }
.quote-breakdown th { background: var(--off-white); font-weight: 600; color: var(--text); }
.tar { text-align: right; }
.quote-breakdown tfoot th { font-size: 16px; border-top: 2px solid var(--accent); color: var(--accent); }
.quote-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0; }
.quote-trust { font-size: 14px; color: var(--gray-500); margin-top: 20px; }

/* ─── Lane Page ────────────────────────────────── */
.lane-hero { background: var(--primary); padding: 120px 0 40px; }
.lane-hero .breadcrumbs { font-size: 14px; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.lane-hero .breadcrumbs a { color: rgba(255,255,255,.7); }
.lane-hero .breadcrumbs a:hover { color: var(--white); }
.lane-hero .breadcrumbs .sep { margin: 0 8px; }
.lane-hero h1 { color: var(--white); }
.lane-subtitle { color: rgba(255,255,255,.6); font-size: 16px; }

.layout.with-sidebar { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.content-area .card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--divider);
    margin-bottom: 20px;
}
.content-area .card h2,
.content-area .card h3 { color: var(--primary); margin-bottom: 12px; }
.content-area .card p { margin-bottom: 12px; }
.content-area .card ul { padding-left: 20px; margin-bottom: 12px; }
.content-area .card ul li { margin-bottom: 6px; }

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--divider);
    margin-bottom: 20px;
}
.sidebar-card h3 { font-size: 18px; margin-bottom: 16px; color: var(--primary); }
.sidebar-quote .btn-block { width: 100%; }

/* ─── FAQ ──────────────────────────────────────── */
.faq-list { max-width: 700px; }
.faq-item { border-bottom: 1px solid var(--divider); }
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
    text-align: left;
    transition: var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-question::after {
    content: '+';
    font-size: 22px;
    color: var(--gray-400);
    transition: transform .3s;
    flex-shrink: 0;
    margin-left: 12px;
}
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 0 16px; display: none; font-size: 15px; color: var(--text-light); }
.faq-item.active .faq-answer { display: block; animation: fadeUp .3s ease-out; }

/* ─── Content Card (booking/lead) ──────────────── */
.content-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--divider);
    padding: 40px;
    max-width: 640px;
    margin: 0 auto;
}
.content-card h1 { color: var(--primary); margin-bottom: 16px; }
.content-card p { color: var(--text-light); margin-bottom: 20px; }

/* ─── Alerts ───────────────────────────────────── */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 16px; font-size: 14px; }
.alert-error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.alert-info { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; }
.alert-warning { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }

/* ─── Badge ────────────────────────────────────── */
.badge { display: inline-block; padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.badge-success { background: #dcfce7; color: #166534; }
.badge-info { background: #dbeafe; color: #1e40af; }
.badge-danger { background: #fee2e2; color: #991b1b; }
.badge-warning { background: #fef3c7; color: #92400e; }
.success-icon { font-size: 3rem; color: var(--green); margin: 16px 0; }

/* ─── Admin ────────────────────────────────────── */
.admin-login-page { display: flex; align-items: center; justify-content: center; min-height: 100vh; background: var(--off-white); }
.login-box {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 420px;
}
.login-box h1 { text-align: center; margin-bottom: 8px; }
.login-box .subtitle { text-align: center; color: var(--gray-500); margin-bottom: 32px; }
.admin-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.admin-nav { display: flex; gap: 8px; flex-wrap: wrap; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.stat-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--divider);
}
.stat-value { font-size: 1.8rem; font-weight: 800; color: var(--accent); }
.stat-label { font-size: 14px; color: var(--gray-500); margin-top: 4px; }
.table-container { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
table th, table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--divider); font-size: 14px; }
table th { background: var(--off-white); font-weight: 600; color: var(--text); }
pre { white-space: pre-wrap; word-break: break-word; }

/* ─── Map / Testimonials (optional) ─────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--divider);
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px; left: 20px;
    font-size: 3rem;
    color: var(--divider);
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-text { font-size: 15px; color: var(--text-light); font-style: italic; margin-bottom: 16px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gray-200); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--gray-600); }
.testimonial-name { font-weight: 600; color: var(--text); }
.testimonial-role { font-size: 13px; color: var(--gray-400); }

/* ─── Floating Quote Button ────────────────────── */
.float-quote {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(34,197,94,.4);
    padding: 14px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--white);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.float-quote:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-2px); }

/* ─── Responsive ───────────────────────────────── */
@media (max-width: 1199px) {
    .project-slider { max-width: 100%; }
}

@media (max-width: 991px) {
    .main-menu .navbar-nav > .nav-item { margin: 0 8px; }
    .header-contact-phone { margin-left: 15px; }
    .home-transportation-content { margin-right: 0; }
    .home-transportation-right { margin-top: 40px; padding-bottom: 100px; }
    .layout.with-sidebar { grid-template-columns: 1fr; }
    .quote-card { padding: 32px; }
    .mega-footer .col-lg-4,
    .mega-footer .col-lg-2,
    .mega-footer .col-lg-3 { margin-bottom: 30px; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .section-title { margin-bottom: 40px; }

    .hero { padding: 100px 0 180px; }

    .main-header .header-sticky.active { position: relative; }

    .topbar-contact-info ul { text-align: center; }
    .topbar-contact-info ul li { margin: 0 8px; }
    .topbar-social-links { text-align: center; }

    .cargo-shipment-item { margin-bottom: 20px; }
    .cargo-shipment-content { padding: 20px 0; }

    .home-transportation-footer { flex-direction: column; align-items: flex-start; gap: 20px; }

    .our-service-content { margin-top: -30%; }

    .page-header { padding: 100px 0; }

    .quote-card { padding: 24px; }
    .quote-trust-banner { flex-direction: column; gap: 12px; }
    .mode-options { grid-template-columns: repeat(2, 1fr); }
    .form-row { flex-direction: column; gap: 0; }

    .content-card { padding: 24px; }
    .quote-result-card { padding: 24px; }
    .quote-header { flex-direction: column; gap: 8px; }

    .footer-copyright p,
    .footer-policy-links ul { text-align: center; }
    .footer-policy-links { margin-top: 10px; }

    .transportation-img-2 { max-width: 180px; }
    .transportation-counter-box {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .mode-options { grid-template-columns: 1fr; }
    .quote-actions { flex-direction: column; }
    .float-quote { display: none; }
}
