/* ===== CSS Variables & Root Styles ===== */
:root {
    --primary-blue: #074986;
    --primary-blue-dark: #053a6b;
    --primary-teal: #0ba1b9;
    --primary-teal-dark: #098e9f;
    --white: #ffffff;
    --off-white: #f8fafc;
    --light-bg: #f1f5f9;
    --black: #101828;
    --dark-grey: #4a5565;
    --medium-grey: #6d6d6d;
    --light-grey: #c6c6c6;
    --border-grey: #e5e7eb;
    --font-primary: 'Montserrat', Arial, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --navbar-height: 72px;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-height);
}

body {
    font-family: var(--font-primary);
    background-color: var(--off-white);
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

i {
  font-size: 22px; 
}

/* ===== Skip Link (Accessibility) ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    padding: 12px 24px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 600;
    z-index: 10000;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 16px;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Navigation Header ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: box-shadow var(--transition);
    display: block;
    align-items: center;
    justify-content: space-between;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 100%;
    margin: 0;
    padding: 0 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-link {
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-grey);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
    background: rgba(7, 73, 134, 0.06);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.contact-btn {
    padding: 10px 28px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.contact-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
    z-index: 1001;
}

.hamburger:hover {
    background: rgba(0, 0, 0, 0.05);
}

.hamburger-line {
    width: 24px;
    height: 2.5px;
    background: var(--black);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: calc(var(--navbar-height) + 60px);
    background: url('../Asstes/Image/Hero Image background.jpg') center bottom/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.3) 40%,
            rgba(255, 255, 255, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    text-align: center;
    padding: 0 24px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 20px;
}

b {
    color: var(--primary-teal);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--dark-grey);
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.hero-truck-img {
    width: 90%;
    max-width: 1000px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

.hero-footer-buttons {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.hero-btn-left {
    background: var(--primary-blue);
    border-radius: 8px 30px 8px 30px !important;
    box-shadow: 0 10px 20px rgba(7, 73, 134, 0.3);
}

.hero-btn-right {
    background: var(--white) !important;
    color: var(--black) !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    font-weight: 700 !important;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero {
        padding-top: calc(var(--navbar-height) + 40px);
        background-position: center center;
    }

    .hero-truck-img {
        width: 120%;
        max-width: none;
        margin-bottom: 80px;
    }

    .hero-footer-buttons {
        bottom: 20px;
        padding: 0 20px;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .hero-btn-left,
    .hero-btn-right {
        width: 100%;
        justify-content: center;
    }
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-primary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(7, 73, 134, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
    transform: translateY(-2px);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform var(--transition);
}

.btn-primary:hover .arrow-icon,
.cta-button:hover .arrow-icon {
    transform: translateX(4px);
}

/* ===== Stats Section ===== */
.stats-section {
    background: var(--white);
    padding: 64px 0;
    border-bottom: 1px solid var(--border-grey);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 16px;
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.stat-item:hover {
    background: var(--light-bg);
    transform: translateY(-4px);
}

.stat-number {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--medium-grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== About Section ===== */
.about-section {
    padding: 100px 0;
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-teal));
    border-radius: 2px;
    margin-top: 16px;
}

.about-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--dark-grey);
    text-align: justify;
}

.about-text strong {
    color: var(--black);
    font-weight: 700;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition);
}

.about-image:hover {
    transform: scale(1.02);
}

/* ===== Services Section ===== */
.services-section {
    padding: 100px 0;
    background: url('../Asstes/Image/image.png') center bottom/cover no-repeat ;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 100%, 0.7);
    z-index: 0;
}  

.services-header {
    text-align: center;
    margin-bottom: 56px;
}

.services-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.services-subtitle {
    font-size: 18px;
    color: var(--medium-grey);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    padding: 32px 24px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: all var(--transition);
    cursor: default;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card.blue {
    background: linear-gradient(145deg, var(--primary-blue), #0a5da0);
    color: var(--white);
}

.service-card.teal {
    background: linear-gradient(145deg, var(--primary-teal), #0ec5df);
    color: var(--white);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card.blue .service-icon {
    background: rgba(11, 161, 185, 0.3);
}

.service-card.teal .service-icon {
    background: rgba(7, 73, 134, 0.3);
}

.service-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.service-card-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.9;
}

/* ===== Fleet Section ===== */
.fleet-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.fleet-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.fleet-content {
    flex: 1;
    max-width: 600px;
}

.fleet-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.fleet-description {
    font-size: 17px;
    color: var(--dark-grey);
    line-height: 1.8;
}

.fleet-image-wrapper {
    flex: 1;
    max-width: 500px;
}

.fleet-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Fleet Cards Grid */
.fleet-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fleet-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.fleet-card::before {
    content: '';
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 100px;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 10 L90 10 L90 90 L10 90 Z' fill='none' stroke='%23f1f5f9' stroke-width='2'/%3E%3Cpath d='M20 20 L80 20 L80 80 L20 80 Z' fill='none' stroke='%23f1f5f9' stroke-width='2'/%3E%3C/svg%3E") no-repeat;
    opacity: 0.5;
    pointer-events: none;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.fleet-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 5px;
}

.fleet-icon svg {
    width: 30px;
    height: 30px;
}

.fleet-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
}

.fleet-card-desc {
    font-size: 14px;
    color: var(--dark-grey);
    line-height: 1.6;
}

/* ===== Clients Section ===== */
.clients-section {
    padding: 80px 0;
    background: var(--off-white);
}

.clients-header {
    text-align: center;
    margin-bottom: 48px;
}

.clients-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.clients-subtitle {
    font-size: 18px;
    color: var(--dark-grey);
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

/* Client Hover Animation */
.client-logo {
    position: relative;
    width: 200px;
    height: 100px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.client-logo img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.client-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(20px);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    opacity: 0;
    transition: all 0.4s ease;
    white-space: nowrap;
}

.client-logo:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.client-logo:hover img {
    transform: translateY(-40px);
    opacity: 0;
}

.client-logo:hover .client-name {
    transform: translate(-50%, -50%) translateY(0);
    opacity: 1;
}

/* ===== Mission & Vision Section ===== */
.mission-vision-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.mission-vision-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    min-height: 280px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

.mission-vision-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.mission-vision-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.mission-vision-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 280px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--black);
}

.mission-vision-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.mission-vision-text {
    font-size: 15px;
    font-weight: 450;
    line-height: 1.7;
    color: var(--black);
}

/* ===== CTA Section (Interactive) ===== */
.cta-section {
    background: url('../Asstes/Image/image.png') center bottom/cover no-repeat;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsla(209, 90%, 28%, 0.3);
    z-index: 1;
}   

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Slide Out State */
.cta-content.slide-out {
    opacity: 0;
    transform: translate(-150%, -50%);
    pointer-events: none;
}

/* Hidden State for Reveal */
.cta-content.hidden {
    opacity: 0;
    transform: translate(-150%, -50%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--primary-blue);
}

.cta-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--white);
    max-width: 500px;
}

.contact-detail-item p a,
.contact-icon-circle + p {
    color: var(--black);
    font-weight: 500;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--white);
    color: var(--primary-blue);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all var(--transition);
}

.cta-button:hover {
    background: var(--off-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Reveal Section Styles */
.contact-details-reveal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(150%, -50%);
    /* Start off-screen right */
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.contact-details-reveal.active {
    transform: translate(-50%, -50%);
    /* Slide to center */
    opacity: 1;
    pointer-events: all;
}

.contact-detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    color: var(--white);
}

.contact-detail-item h3 {
    color: var(--primary-blue);
}

.contact-icon-circle {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon-circle svg {
    width: 32px;
    height: 32px;
}

.contact-detail-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-detail-item p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive CTA and Fleet Grid */
@media (max-width: 1024px) {
    .fleet-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-details-reveal {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .fleet-grid {
        flex-direction: column;
        text-align: center;
    }

    .fleet-cards-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .contact-icon-circle {
        width: 55px;
        height: 55px;
    }

    .contact-detail-item h3 {
        font-size: 15px;
    }

    .contact-detail-item p {
        font-size: 12px;
        text-align: center;
    }

    .contact-details-reveal {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* ===== Footer ===== */
.footer {
    background: var(--black);
    color: #d1d5dc;
    padding: 56px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 46px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-brand-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: #99a1af;
}

.footer-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    font-size: 14px;
    color: #99a1af;
    transition: all var(--transition);
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-address {
    font-style: normal;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #d1d5dc;
    line-height: 1.6;
}

.footer-contact-item a {
    color: #d1d5dc;
    transition: color var(--transition);
}

.footer-contact-item a:hover {
    color: #51A2FF;
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-divider {
    border-top: 1px solid #1e2939;
    padding: 24px 0;
    text-align: center;
    font-size: 14px;
    color: var(--light-grey);
}

/* ===== Scroll Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== Focus Visible (Accessibility) ===== */
*:focus-visible {
    outline: 3px solid var(--primary-teal);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .fade-in,
    .fade-in-left,
    .fade-in-right {
        opacity: 1;
        transform: none;
    }
}


/* ===================================================
   RESPONSIVE DESIGN
   =================================================== */

/* ===== Tablet & Small Desktop (max-width: 1024px) ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .fleet-grid {
        gap: 40px;
    }

    .fleet-features {
        grid-template-columns: 1fr;
    }
}

/* ===== Tablet (max-width: 768px) ===== */
@media (max-width: 768px) {

    /* Nav */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--white);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        padding: 80px 32px 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 14px 16px;
        font-size: 16px;
        border-radius: var(--radius-sm);
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(7, 73, 134, 0.08);
    }

    .nav-link.active::after {
        display: none;
    }

    .contact-btn {
        display: none;
    }

    /* Mobile nav overlay */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Hero */
    .hero {
        min-height: 80vh;
    }

    .hero-title {
        font-size: clamp(28px, 6vw, 42px);
    }

    /* Sections */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper {
        order: -1;
    }

    .about-image-wrapper::before {
        display: none;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fleet-image-wrapper {
        order: -1;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    /* Reduce padding */
    .about-section,
    .services-section,
    .fleet-section,
    .cta-section {
        padding: 64px 0;
    }

    .clients-section,
    .mission-vision-section {
        padding: 56px 0;
    }
}

/* ===== Mobile (max-width: 480px) ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-content {
        padding: 24px 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        justify-content: center;
        width: 100%;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-item {
        padding: 16px 8px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 28px 20px;
    }

    .fleet-features {
        grid-template-columns: 1fr;
    }

    .client-logo {
        width: calc(50% - 12px);
    }

    .clients-grid {
        gap: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .services-title,
    .fleet-title,
    .clients-title,
    .cta-title {
        font-size: 24px;
    }

    .cta-section {
        padding: 56px 0;
    }

    .mission-vision-content {
        padding: 24px;
        min-height: 240px;
    }
}