/* ============================================
   Best Way Logistics - Main Stylesheet
   Color Scheme:
   - Deep Blue: #003366
   - Red: #CC0000
   - White: #FFFFFF
   - Charcoal Gray: #333333
   - Light Gray: #F5F5F5
   ============================================ */

/* ============================================
   CSS Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #003366;
    --primary-red: #CC0000;
    --white: #FFFFFF;
    --charcoal: #333333;
    --light-gray: #F5F5F5;
    --medium-gray: #CCCCCC;
    --text-dark: #222222;
    --text-light: #666666;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ============================================
   Loading Screen
   ============================================ */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white); /* White background for loader */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.7s ease-out, visibility 0.7s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loading-logo {
    width: 150px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite ease-in-out; /* Pulsing animation */
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.loading-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    letter-spacing: 2px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px var(--shadow-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    /* Remove gap, font styles as they are for text logo */
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.navbar-logo {
    height: 50px; /* Larger for desktop */
    width: auto;
    transition: all 0.3s ease;
}

/* Responsive adjustments for logo */
@media (max-width: 992px) { /* Adjust breakpoint for tablets */
    .navbar-logo {
        height: 45px;
    }
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 40px; /* Smaller on mobile */
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--charcoal);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.btn-apply {
    background: var(--primary-red);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link.btn-apply::after {
    display: none;
}

.nav-link.btn-apply:hover {
    background: #AA0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   Flash Messages
   ============================================ */
.flash-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1001;
    max-width: 400px;
}

.flash-message {
    background: var(--white);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow-dark);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.flash-success {
    border-left: 4px solid #28a745;
}

.flash-success i {
    color: #28a745;
    font-size: 1.5rem;
}

.flash-error {
    border-left: 4px solid #dc3545;
}

.flash-error i {
    color: #dc3545;
    font-size: 1.5rem;
}

.flash-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-left: auto;
}

/* ============================================
   Hero Section (Video Background)
   ============================================ */
.hero-video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover; /* Ensures the video covers the entire area */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark overlay */
    z-index: 0;
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 1rem; /* Add some padding for smaller screens */
}

.hero-text-block {
    max-width: 900px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3); /* Slightly darker background for text block */
    border-radius: 10px;
}

.hero-main-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: 5.5rem; /* Large font size */
    font-weight: 900;
    line-height: 1; /* Stacked vertically */
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.hero-main-headline .text-blue {
    color: var(--primary-blue); /* Deep blue */
    display: block; /* Stack vertically */
}

.hero-main-headline .text-red {
    color: var(--primary-red); /* Bright red */
    display: block; /* Stack vertically */
}

.hero-sub-headline {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    color: var(--light-gray);
}

.btn-view-services {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-view-services:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    transform: translateY(-3px);
}

/* Animation for hero text */
.animate-fade-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 1s ease-out forwards;
}

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

/* Responsive adjustments for Hero Section */
@media (max-width: 1200px) {
    .hero-main-headline {
        font-size: 4.5rem;
    }
    .hero-sub-headline {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .hero-main-headline {
        font-size: 3.5rem;
    }
    .hero-sub-headline {
        font-size: 1.1rem;
    }
    .hero-text-block {
        padding: 1.5rem;
    }
    .btn-view-services {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-main-headline {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }
    .hero-sub-headline {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .hero-text-block {
        padding: 1rem;
    }
    .btn-view-services {
        padding: 0.7rem 1.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .hero-main-headline {
        font-size: 2.2rem;
    }
    .hero-sub-headline {
        font-size: 0.9rem;
    }
    .hero-text-block {
        padding: 0.75rem;
    }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background: #AA0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ============================================
   Sections
   ============================================ */
.section-padding {
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    margin: 0 auto 1.5rem;
}

.text-center .section-divider {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white) !important;
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
    position: relative;
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004080 100%);
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.page-header-small {
    padding: 6rem 0 3rem;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 51, 102, 0.3) 100%);
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--light-gray);
}

.breadcrumb a:hover {
    color: var(--primary-red);
}

.breadcrumb i {
    font-size: 0.7rem;
}

/* ============================================
   Mission Section
   ============================================ */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), #004080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.mission-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   Fleet Section
   ============================================ */
.fleet-section {
    background: linear-gradient(135deg, #004080 0%, #002244 100%); /* Slightly brighter blue gradient */
    padding: 5rem 0;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.fleet-card {
    background: rgba(255, 255, 255, 0.12); /* Lighter, slightly transparent white */
    backdrop-filter: blur(5px); /* Slightly less blur */
    padding: 2.5rem 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3); /* Slightly more visible border */
    text-align: center;
    color: var(--white); /* Base text color for card */
    transition: all 0.4s ease; /* Smoother transition */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); /* Subtle box-shadow */
}

.fleet-card:hover {
    transform: translateY(-10px) scale(1.02); /* Scale and lift */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(204, 0, 0, 0.5); /* Stronger shadow and red glow */
}

.fleet-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.fleet-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #F4F4F4; /* Slightly tinted white for title */
}

.fleet-card p {
    color: #E0E0E0; /* Slightly tinted white for body text */
    margin-bottom: 1.5rem;
}

.fleet-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #EAF2FF; /* White with a slight blue tint */
    white-space: nowrap; /* Prevent text from wrapping */
    overflow: hidden; /* Hide overflowing content */
    text-overflow: ellipsis; /* Add ellipsis for overflowed text */
}

.stat-label {
    font-size: 0.9rem;
    color: #C9D7E8; /* Soft, clean light-gray-blue */
}

/* ============================================
   Why Section
   ============================================ */
.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-list {
    margin: 2rem 0;
}

.why-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.why-list i {
    color: var(--primary-red);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.why-list strong {
    display: block;
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.why-list p {
    color: var(--text-light);
}

.why-image-container {
    width: 100%;
    aspect-ratio: 1;
    /* Removed background, font-size, color as it will contain an image */
    border-radius: 15px; /* Keep container border-radius */
    overflow: hidden; /* Ensure image respects container border-radius */
    display: flex; /* Keep flex properties for centering if needed, though image will fill */
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px var(--shadow-dark);
}

.why-illustration-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure image fills the container */
    border-radius: 0; /* Square edges for the image itself */
    display: block;
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
    background: var(--light-gray);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, #AA0000 100%);
    padding: 5rem 0;
    text-align: center;
    color: var(--white);
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Story Section
   ============================================ */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.story-quote {
    background: var(--primary-blue);
    color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px var(--shadow-dark);
    position: relative;
}

.story-quote i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.story-quote p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.quote-author {
    font-weight: 600;
    color: var(--light-gray);
}

/* ============================================
   Values Section
   ============================================ */
.values-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #002244 100%);
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--light-gray);
    line-height: 1.8;
}

/* ============================================
   Timeline
   ============================================ */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-red);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 40px);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--primary-red);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--light-gray);
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
    width: 100%;
}

.timeline-year {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   Team Section
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.team-image {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-blue), #004080);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--white);
}

.team-info {
    padding: 2rem 1.5rem;
}

.team-name {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.team-bio {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   Services Section
   ============================================ */
.services-intro {
    max-width: 900px;
    margin: 0 auto;
}

.services-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-light);
}

.service-detail {
    margin-bottom: 5rem;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-content.reverse {
    direction: rtl;
}

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

.service-badge {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-title {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-detail-description {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-detail-info {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.service-features-list h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-features-list ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.service-features-list i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.service-image-container {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary-blue), #004080);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-dark);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 1.5rem;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.service-image-container:hover .service-overlay {
    transform: translateY(0);
}

.service-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
}

.service-divider {
    height: 1px;
    background: var(--medium-gray);
    margin: 3rem 0;
}

/* ============================================
   Comparison Table
   ============================================ */
.comparison-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #002244 100%);
    padding: 5rem 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-dark);
}

.comparison-table thead {
    background: var(--primary-blue);
    color: var(--white);
}

.comparison-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 700;
}

.comparison-table th i {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-red);
}

.comparison-table td {
    padding: 1.25rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.comparison-table tbody tr:nth-child(even) {
    background: var(--light-gray);
}

.comparison-table tbody tr:hover {
    background: rgba(204, 0, 0, 0.05);
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--primary-blue);
    text-align: left;
}

.text-success {
    color: #28a745;
}

.text-muted {
    color: var(--text-light);
}

/* ============================================
   Industries Section
   ============================================ */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.industry-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.industry-card i {
    font-size: 3.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.industry-card h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.industry-card p {
    color: var(--text-light);
}

/* ============================================
   Careers Page
   ============================================ */
.benefits-grid,
.dry-van-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), #004080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.positions-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #002244 100%);
    padding: 5rem 0;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.position-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-dark);
    transition: all 0.3s ease;
}

.position-card:hover {
    transform: translateY(-10px);
}

.position-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.position-title {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.position-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.position-details {
    margin: 1.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.position-requirement {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.position-requirement i {
    color: var(--primary-red);
    flex-shrink: 0;
}

.position-pay {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.pay-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pay-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-red);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-gray);
}

.testimonial-author i {
    font-size: 3rem;
    color: var(--primary-blue);
}

.author-name {
    font-weight: 700;
    color: var(--primary-blue);
}

.author-position {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================
   Process Section
   ============================================ */
.process-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #002244 100%);
    padding: 5rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    color: var(--white);
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--light-gray);
}

/* ============================================
   Application Forms
   ============================================ */
.application-section {
    background: var(--light-gray);
}

.application-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.application-intro h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.application-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.application-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.application-form {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.form-section-title i {
    color: var(--primary-red);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.required {
    color: var(--primary-red);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.form-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.contact-form-wrapper p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-form {
    background: var(--white);
}

.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
    margin: 2rem 0;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.contact-details a {
    color: var(--primary-blue);
}

.contact-details a:hover {
    color: var(--primary-red);
}

.contact-note {
    font-size: 0.9rem;
    font-style: italic;
}

.contact-social {
    margin-top: 2rem;
}

.contact-social h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-red);
    transform: translateY(-5px);
}

.map-section {
    padding: 5rem 0;
}

.map-wrapper {
    margin-top: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-dark);
}

.map-label {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* ============================================
   Success Page
   ============================================ */
.success-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
    background: var(--light-gray);
}

.success-content {
    text-align: center;
    max-width: 700px;
}

.success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    animation: successPulse 1s ease;
}

@keyframes successPulse {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-title {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.success-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 5px 20px var(--shadow);
}

.success-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 1rem 0;
    color: var(--text-light);
}

.success-info i {
    color: var(--primary-red);
    font-size: 1.3rem;
}

.success-info a {
    color: var(--primary-blue);
    font-weight: 600;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.success-links {
    margin-top: 4rem;
}

.success-links h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.link-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-dark);
}

/* Image styling for replaced icons */
.fleet-icon img.fleet-image,
.service-image-container img.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the area without distortion */
    border-radius: 0; /* Rectangular images */
    display: block; /* Remove extra space below image */
}

/* Specific adjustments for fleet-icon and service-image-container */
.fleet-icon,
.service-image-container {
    background: none; /* Remove background gradient/color from container */
    font-size: 0; /* Hide any residual icon font size */
    color: transparent; /* Hide any residual icon color */
    overflow: hidden; /* Ensure image respects border-radius of container */
    border-radius: 10px; /* Match card border-radius */
}

/* Reverted styles for icon containers */
.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), #004080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.why-image-container {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004080 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    color: var(--primary-red);
    box-shadow: 0 10px 40px var(--shadow-dark);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), #004080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.position-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.link-card i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.link-card h4 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.link-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--charcoal);
    color: var(--light-gray);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align logo to the left */
    margin-bottom: 1rem;
}

.footer-logo {
    height: 60px; /* Larger for desktop */
    width: auto;
    filter: brightness(0) invert(1); /* Make logo white for dark footer background */
    transition: all 0.3s ease;
}

/* Responsive adjustments for footer logo */
@media (max-width: 992px) { /* Adjust breakpoint for tablets */
    .footer-logo {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .footer-logo {
        height: 45px; /* Smaller on mobile */
    }
}

.footer-text {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-slogan {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; /* Matching hero headline font weight */
    font-size: 1.1rem; /* Slightly larger for readability */
    letter-spacing: 2px;
    display: flex; /* Use flexbox for alignment */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: flex-start; /* Align to start */
    gap: 0.5rem; /* Spacing between words */
    margin-top: 1rem; /* Add some space from text above */
}

.footer-slogan-blue {
    color: var(--primary-blue); /* Deep blue */
}

.footer-slogan-red {
    color: var(--primary-red); /* Bright red */
}

.footer-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--light-gray);
    transition: color 0.3s ease;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--primary-red);
    margin-top: 0.25rem;
}

.footer-contact a {
    color: var(--light-gray);
}

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

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

.footer-social .social-link:hover {
    background: var(--primary-red);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-legal a {
    color: var(--light-gray);
    margin: 0 0.5rem;
}

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

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px var(--shadow-dark);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-blue);
    transform: translateY(-5px);
}

/* ============================================
   Animation Classes
   ============================================ */
.fade-in {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 10px 40px var(--shadow-dark);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title-main {
        font-size: 3rem;
    }

    .hero-title-sub {
        font-size: 1.2rem;
    }

    .hero-slogan {
        font-size: 1.5rem;
    }

    .why-content,
    .story-content,
    .service-detail-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 40px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-marker {
        left: 0;
        transform: translateX(0);
    }

    .page-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title-main {
        font-size: 2.5rem;
    }

    .hero-slogan {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .mission-grid,
    .fleet-grid,
    .values-grid,
    .benefits-grid,
    .positions-grid,
    .testimonials-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .application-form {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title-main {
        font-size: 2rem;
    }

    .hero-buttons,
    .cta-buttons,
    .success-actions,
    .form-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
}
