/* ===========================================
   GBE LOGISTICS - ANIMATIONS & EFFECTS
   =========================================== */

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo {
    margin-bottom: 2rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-logo img {
    height: 60px;
    width: auto;
}

.preloader-progress {
    width: 200px;
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gbe-blue), var(--gbe-yellow));
    width: 0;
    animation: preloaderProgress 1.5s ease-out forwards;
}

@keyframes preloaderProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ============================================
   TEXT GRADIENT ANIMATION
   ============================================ */
.text-gradient {
    background: linear-gradient(135deg, var(--gbe-yellow) 0%, var(--gbe-yellow-dark) 50%, var(--gbe-yellow) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.animate-gradient {
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ============================================
   HERO PARTICLES
   ============================================ */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 210, 0, 0.3);
    border-radius: 50%;
    animation: particleFloat 15s infinite ease-in-out;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) rotate(720deg);
        opacity: 0;
    }
}

/* ============================================
   FLOATING SHAPES
   ============================================ */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gbe-yellow);
    top: 10%;
    right: 10%;
    animation: floatShape1 20s infinite ease-in-out;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--white);
    bottom: 20%;
    right: 25%;
    animation: floatShape2 25s infinite ease-in-out;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--gbe-yellow);
    top: 50%;
    right: 5%;
    animation: floatShape3 18s infinite ease-in-out;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: var(--white);
    bottom: 30%;
    left: 40%;
    animation: floatShape4 22s infinite ease-in-out;
}

@keyframes floatShape1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-30px, 20px) rotate(90deg); }
    50% { transform: translate(20px, -30px) rotate(180deg); }
    75% { transform: translate(-20px, -20px) rotate(270deg); }
}

@keyframes floatShape2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -40px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

@keyframes floatShape3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-50px); }
}

@keyframes floatShape4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(180deg); }
}

/* ============================================
   TYPING TEXT EFFECT
   ============================================ */
.typing-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--gbe-yellow);
    animation: typing 3s steps(40, end) forwards, blink 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: var(--gbe-yellow); }
}

/* ============================================
   SCROLL INDICATOR
   ============================================ */
.scroll-indicator {
    position: relative;
    margin-top: var(--space-3xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--gbe-yellow);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0.3;
    }
}

/* ============================================
   WAVE ANIMATION
   ============================================ */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    overflow: hidden;
}

.hero-wave svg {
    width: 100%;
    height: auto;
    display: block;
}

.wave-path {
    animation: waveMove 8s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% {
        d: path("M0 120L60 110C120 100 240 80 360 70C480 60 600 60 720 65C840 70 960 80 1080 85C1200 90 1320 90 1380 90L1440 90V120H1380C1320 120 1200 120 1080 120C960 120 840 120 720 120C600 120 480 120 360 120C240 120 120 120 60 120H0Z");
    }
    50% {
        d: path("M0 120L60 100C120 90 240 90 360 85C480 80 600 70 720 75C840 80 960 90 1080 95C1200 100 1320 100 1380 100L1440 100V120H1380C1320 120 1200 120 1080 120C960 120 840 120 720 120C600 120 480 120 360 120C240 120 120 120 60 120H0Z");
    }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Different reveal directions */
.reveal-item[data-reveal="fade-up"].revealed {
    transform: translateY(0);
}

.reveal-item[data-reveal="fade-down"] {
    transform: translateY(-30px);
}

.reveal-item[data-reveal="fade-left"] {
    transform: translateX(50px);
}

.reveal-item[data-reveal="fade-left"].revealed {
    transform: translateX(0);
}

.reveal-item[data-reveal="fade-right"] {
    transform: translateX(-50px);
}

.reveal-item[data-reveal="fade-right"].revealed {
    transform: translateX(0);
}

.reveal-item[data-reveal="zoom-in"] {
    transform: scale(0.8);
}

.reveal-item[data-reveal="zoom-in"].revealed {
    transform: scale(1);
}

.reveal-item[data-reveal="flip-left"] {
    transform: perspective(1000px) rotateY(-30deg);
}

.reveal-item[data-reveal="flip-left"].revealed {
    transform: perspective(1000px) rotateY(0);
}

/* ============================================
   BUTTON HOVER EFFECTS
   ============================================ */
.btn-hover-effect {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-hover-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-hover-effect:hover::before {
    left: 100%;
}

.btn-hover-effect span {
    position: relative;
    z-index: 2;
}

.btn-hover-effect svg {
    transition: transform 0.3s ease;
}

.btn-hover-effect:hover svg {
    transform: translateX(5px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--gbe-blue);
}

/* ============================================
   SECTION HEADER STYLES
   ============================================ */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

.section-header.text-left {
    text-align: left;
    margin: 0 0 var(--space-xl);
}

.section-tag {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--gbe-ice);
    color: var(--gbe-blue);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    color: var(--gray-500);
    margin-top: var(--space-md);
    font-size: 1.125rem;
}

.section-cta {
    text-align: center;
    margin-top: var(--space-3xl);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.stat-item {
    text-align: center;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gbe-blue), var(--gbe-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    background: var(--gbe-ice);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gbe-blue);
}

.pulse-animation {
    animation: iconPulse 2s ease-in-out infinite;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gbe-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-600);
    font-size: 0.9375rem;
    font-weight: 500;
}

.stat-bar {
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    margin-top: var(--space-md);
    overflow: hidden;
}

.stat-bar::after {
    content: '';
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--gbe-blue), var(--gbe-yellow));
    border-radius: 2px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-bar.animate::after {
    width: var(--bar-width, 0%);
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card-animated {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.service-card-inner {
    position: relative;
    z-index: 2;
    padding: var(--space-xl);
    text-align: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-animated:hover .service-card-inner {
    transform: translateY(-5px);
    border-color: var(--gbe-blue);
    box-shadow: var(--shadow-2xl);
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gbe-blue) 0%, var(--gbe-blue-dark) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: var(--radius-xl);
}

.service-card-animated:hover .service-card-bg {
    opacity: 0.05;
}

.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gbe-ice);
    border-radius: 50%;
    animation: iconRingPulse 2s ease-in-out infinite;
}

@keyframes iconRingPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: var(--gbe-blue);
    z-index: 1;
    transition: transform 0.3s ease;
}

.service-card-animated:hover .service-icon svg {
    transform: scale(1.1);
}

.service-card-animated h4 {
    margin-bottom: var(--space-md);
    transition: color 0.3s ease;
}

.service-card-animated:hover h4 {
    color: var(--gbe-blue);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gbe-blue);
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: var(--space-md);
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 0.75rem;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--gbe-blue);
    box-shadow: var(--shadow-lg);
    transform: translateX(10px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gbe-ice);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gbe-blue);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: var(--gbe-blue);
    color: white;
}

.feature-content h5 {
    margin-bottom: 4px;
}

.feature-number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-100);
    line-height: 1;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-number {
    color: var(--gbe-ice);
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, var(--gbe-blue) 0%, var(--gbe-blue-dark) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-card-decoration {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--gbe-yellow);
    opacity: 0.1;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    animation: floatShape1 15s infinite ease-in-out;
}

.circle-2 {
    width: 100px;
    height: 100px;
    bottom: 50px;
    right: 100px;
    animation: floatShape2 20s infinite ease-in-out;
}

.decoration-lines {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 4px;
}

.decoration-lines span {
    width: 4px;
    height: 40px;
    background: rgba(255, 210, 0, 0.3);
    border-radius: 2px;
    animation: lineGrow 1.5s ease-in-out infinite;
}

.decoration-lines span:nth-child(2) {
    animation-delay: 0.2s;
    height: 60px;
}

.decoration-lines span:nth-child(3) {
    animation-delay: 0.4s;
    height: 30px;
}

@keyframes lineGrow {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.6); }
}

.cta-card-content {
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 210, 0, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    animation: iconPulse 2s ease-in-out infinite;
}

.cta-icon svg {
    color: var(--gbe-yellow);
}

.cta-card h3 {
    color: white;
    margin-bottom: var(--space-md);
}

.cta-card p {
    opacity: 0.9;
    margin-bottom: var(--space-xl);
}

.cta-contact {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.cta-contact span {
    display: block;
    font-size: 0.875rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.phone-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gbe-yellow);
}

/* ============================================
   FLEET SECTION
   ============================================ */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.fleet-card {
    perspective: 1000px;
}

.fleet-card-inner {
    text-align: center;
    padding: var(--space-xl);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.fleet-card:hover .fleet-card-inner {
    transform: rotateY(5deg) translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--gbe-blue);
}

.fleet-emoji {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    transition: transform 0.3s ease;
}

.fleet-card:hover .fleet-emoji {
    transform: scale(1.2);
}

.fleet-count {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gbe-blue);
    margin-top: var(--space-md);
}

.fleet-progress {
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    margin-top: var(--space-md);
    overflow: hidden;
}

.fleet-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gbe-blue), var(--gbe-yellow));
    border-radius: 2px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fleet-progress-bar.animate {
    width: var(--bar-width, 0%);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gbe-blue) 0%, var(--gbe-blue-dark) 100%);
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.text-yellow {
    color: var(--gbe-yellow);
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.cta-trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

.trust-badge svg {
    color: var(--gbe-yellow);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gbe-blue);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.back-to-top svg {
    animation: bounceUp 2s ease-in-out infinite;
}

@keyframes bounceUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* ============================================
   FOOTER ENHANCEMENTS
   ============================================ */
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact svg {
    flex-shrink: 0;
    color: var(--gbe-yellow);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--gray-800);
    border-radius: var(--radius-md);
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--gbe-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-lg);
}

/* ============================================
   COUNTER ANIMATION
   ============================================ */
.counter {
    display: inline-block;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-trust-badges {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
}
