/* ===== RESET & BASE ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
    --navy: #1b2d5b;
    --navy-mid: #274180;
    --navy-light: #3a5a9e;
    --red: #d63031;
    --red-dark: #b71c1c;
    --red-bright: #ff4444;
    --white: #ffffff;
    --off-white: #f5f6fa;
    --gray-50: #fafbfc;
    --gray-100: #f0f2f5;
    --gray-200: #e2e5ea;
    --gray-300: #ccd1d9;
    --gray-400: #9ba3b0;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-container {
    display: flex; align-items: center; justify-content: space-between; height: 76px;
}

.logo { display: flex; align-items: center; gap: 12px; transition: opacity var(--transition); }
.logo:hover { opacity: 0.85; }
.logo-icon {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 10px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white); font-size: 20px;
    box-shadow: 0 3px 10px rgba(15,29,61,0.25);
}
.logo-icon svg { width: 40px; height: 40px; }
.logo-fds {
    font-size: 36px; font-weight: 900; color: var(--navy);
    letter-spacing: -1.5px; line-height: 1;
}
.logo-text {
    font-size: 9.5px; font-weight: 700; color: var(--red);
    line-height: 1.35; letter-spacing: 1px; text-transform: uppercase;
    border-left: 2px solid var(--red); padding-left: 10px;
}

.nav-links {
    display: flex; list-style: none; gap: 4px; align-items: center;
}
.nav-links a {
    padding: 9px 18px; border-radius: 8px; font-size: 14px;
    font-weight: 500; color: var(--gray-600);
    transition: all var(--transition); position: relative;
}
.nav-links a:hover { color: var(--navy); background: var(--gray-100); }
.nav-links a.active {
    color: var(--white); background: var(--navy); font-weight: 600;
}

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span {
    width: 22px; height: 2px; background: var(--gray-900);
    border-radius: 2px; transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 700px;
    display: flex; align-items: center;
    background: var(--navy);
    margin-top: 76px; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 70% 20%, rgba(214,48,49,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(42,69,128,0.4) 0%, transparent 60%),
        linear-gradient(135deg, var(--navy) 0%, #142347 100%);
}
.hero::after {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .hero-accent {
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--red), var(--red-bright), var(--red));
    z-index: 3;
}

.hero-content {
    position: relative; z-index: 2; padding: 80px 0; max-width: 640px;
}
.hero-tagline {
    display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 4px;
    color: var(--red-bright); text-transform: uppercase; margin-bottom: 20px;
    padding: 8px 16px; background: rgba(214,48,49,0.12);
    border-radius: 6px; border: 1px solid rgba(214,48,49,0.2);
}
.hero h1 {
    font-size: 52px; font-weight: 900; color: var(--white);
    line-height: 1.1; margin-bottom: 24px; letter-spacing: -1px;
}
.hero .highlight {
    background: linear-gradient(135deg, var(--red-bright), #ff6b6b);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 18px; color: rgba(255,255,255,0.65); margin-bottom: 40px;
    line-height: 1.8; max-width: 520px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero truck background decoration */
.hero-truck-bg {
    position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
    z-index: 1; font-size: 320px; color: rgba(255,255,255,0.04);
    line-height: 1;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px; border-radius: 10px; font-size: 15px;
    font-weight: 600; cursor: pointer; transition: all var(--transition);
    border: 2px solid transparent; letter-spacing: 0.2px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white); border-color: transparent;
    box-shadow: 0 4px 14px rgba(214,48,49,0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(214,48,49,0.4);
}
.btn-outline {
    background: rgba(255,255,255,0.06); color: var(--white);
    border-color: rgba(255,255,255,0.25);
    backdrop-filter: blur(4px);
}
.btn-outline:hover {
    border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white); color: var(--navy);
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.btn-white:hover {
    background: var(--gray-50); transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--white); position: relative; z-index: 3;
    border-bottom: 1px solid var(--gray-200);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
    display: flex; flex-direction: column; align-items: center;
    padding: 36px 16px; text-align: center; position: relative;
}
.stat:not(:last-child)::after {
    content: ''; position: absolute; right: 0; top: 20%; height: 60%;
    width: 1px; background: var(--gray-200);
}
.stat-number {
    font-size: 40px; font-weight: 900; letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label {
    font-size: 12px; font-weight: 600; color: var(--gray-400);
    margin-top: 6px; text-transform: uppercase; letter-spacing: 1.5px;
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-tag {
    display: inline-block; font-size: 12px; font-weight: 700; color: var(--red);
    text-transform: uppercase; letter-spacing: 3px; margin-bottom: 12px;
}
.section-tag.center { display: block; text-align: center; }
.section-title {
    font-size: 40px; font-weight: 900; color: var(--navy);
    letter-spacing: -0.8px; margin-bottom: 56px; line-height: 1.15;
}
.section-title.center { text-align: center; }
.center-btn { text-align: center; margin-top: 56px; }

/* ===== SERVICES GRID ===== */
.services-preview { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
    background: var(--white); padding: 36px 28px; border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--red), var(--red-bright));
    opacity: 0; transition: opacity var(--transition);
}
.service-card:hover {
    transform: translateY(-6px); box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
    width: 60px; height: 60px; border-radius: 14px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px; color: var(--white); font-size: 24px;
    box-shadow: 0 4px 12px rgba(15,29,61,0.2);
}
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
.service-card p { font-size: 14px; color: var(--gray-500); line-height: 1.75; }

/* ===== WHY FDS ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-text p { font-size: 16px; color: var(--gray-500); margin-bottom: 28px; line-height: 1.85; }
.why-text .section-title { margin-bottom: 20px; }
.check-list { list-style: none; margin-bottom: 36px; }
.check-list li {
    padding: 10px 0 10px 40px; position: relative;
    font-size: 15px; color: var(--gray-700); font-weight: 500;
}
.check-list li::before {
    content: ''; position: absolute; left: 0; top: 12px;
    width: 24px; height: 24px; border-radius: 8px;
    background: linear-gradient(135deg, rgba(214,48,49,0.1), rgba(214,48,49,0.05));
    border: 1px solid rgba(214,48,49,0.15);
}
.check-list li::after {
    content: '✓'; position: absolute; left: 6px; top: 12px;
    font-size: 13px; font-weight: 800; color: var(--red);
    line-height: 24px;
}
.why-image-placeholder {
    width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); position: relative; overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.why-image-placeholder::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(214,48,49,0.1) 0%, transparent 60%);
}
.why-image-placeholder p {
    margin-top: 16px; font-size: 14px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase; position: relative;
}

/* ===== PARTNERS ===== */
.partners { background: var(--white); }
.partners-grid {
    display: flex; align-items: center; justify-content: center;
    gap: 24px; flex-wrap: wrap;
}
.partner-logo {
    font-size: 16px; font-weight: 700; color: var(--gray-300);
    padding: 20px 28px; background: var(--white);
    border-radius: var(--radius); border: 1px solid var(--gray-200);
    transition: all var(--transition); letter-spacing: 0.5px;
    display: flex; align-items: center; justify-content: center;
}
.partner-logo img { filter: grayscale(100%); opacity: 0.6; transition: all var(--transition); }
.partner-logo:hover img { filter: grayscale(0%); opacity: 1; }
.partner-logo:hover {
    color: var(--navy); border-color: var(--navy);
    box-shadow: var(--shadow-md); transform: translateY(-2px);
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, var(--navy) 0%, #142347 100%);
    padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.cta::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(214,48,49,0.1) 0%, transparent 70%);
}
.cta-content { position: relative; z-index: 2; }
.cta h2 {
    font-size: 42px; font-weight: 900; color: var(--white);
    margin-bottom: 16px; letter-spacing: -0.5px;
}
.cta p { font-size: 18px; color: rgba(255,255,255,0.6); margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ===== FOOTER ===== */
.footer {
    background: #111d3a; color: rgba(255,255,255,0.5);
    padding-top: 72px; position: relative;
}
.footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--red), var(--red-bright), var(--red));
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo .logo-fds { color: var(--white); font-size: 32px; }
.footer-logo .logo-text { color: var(--red-bright); font-size: 9px; border-color: var(--red-bright); }
.footer .logo-icon {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    width: 38px; height: 38px; font-size: 17px;
    box-shadow: 0 3px 10px rgba(214,48,49,0.3);
}
.footer-desc { font-size: 14px; line-height: 1.8; }
.footer h4 {
    font-size: 13px; font-weight: 700; color: var(--white);
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 24px;
    position: relative; padding-bottom: 12px;
}
.footer h4::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 24px; height: 2px; background: var(--red);
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { font-size: 14px; transition: all var(--transition); }
.footer ul a:hover { color: var(--white); padding-left: 4px; }
.footer p { font-size: 14px; line-height: 1.75; }
.footer-phone {
    font-weight: 700; color: rgba(255,255,255,0.85); margin-top: 10px;
    font-size: 15px;
}
.footer-bottom {
    margin-top: 56px; padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p { font-size: 13px; text-align: center; color: rgba(255,255,255,0.3); }

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, #142347 100%);
    padding: 130px 0 70px; margin-top: 76px; text-align: center;
    position: relative; overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(214,48,49,0.1) 0%, transparent 60%);
}
.page-header::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.page-header h1 {
    font-size: 48px; font-weight: 900; color: var(--white);
    margin-bottom: 14px; position: relative; letter-spacing: -1px;
}
.page-header p { font-size: 18px; color: rgba(255,255,255,0.55); position: relative; }

/* ===== ABOUT PAGE ===== */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-intro h2 {
    font-size: 34px; font-weight: 900; color: var(--navy);
    margin-bottom: 24px; line-height: 1.2; letter-spacing: -0.5px;
}
.about-intro p { font-size: 16px; color: var(--gray-500); line-height: 1.85; margin-bottom: 16px; }
.about-image-placeholder {
    width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4); font-size: 14px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    box-shadow: var(--shadow-xl);
}

.timeline { max-width: 700px; margin: 0 auto; position: relative; padding-left: 48px; }
.timeline::before {
    content: ''; position: absolute; left: 14px; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(180deg, var(--red), var(--gray-200));
}
.timeline-item { position: relative; margin-bottom: 48px; }
.timeline-item::before {
    content: ''; position: absolute; left: -42px; top: 4px;
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--white); border: 3px solid var(--red);
    box-shadow: 0 0 0 4px rgba(214,48,49,0.1);
}
.timeline-item h3 { font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.timeline-item p { font-size: 15px; color: var(--gray-500); line-height: 1.8; }

/* ===== SERVICES PAGE ===== */
.services-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.service-detail-card {
    padding: 44px 36px; border-radius: var(--radius-lg);
    background: var(--white); border: 1px solid var(--gray-200);
    transition: all var(--transition); position: relative; overflow: hidden;
}
.service-detail-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--navy-light));
    opacity: 0; transition: opacity var(--transition);
}
.service-detail-card:hover {
    box-shadow: var(--shadow-xl); border-color: transparent;
    transform: translateY(-4px);
}
.service-detail-card:hover::before { opacity: 1; }
.service-detail-card .service-icon { margin-bottom: 24px; }
.service-detail-card h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.service-detail-card p { font-size: 15px; color: var(--gray-500); line-height: 1.85; }

/* ===== FLEET PAGE ===== */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.fleet-card {
    border-radius: var(--radius-lg); overflow: hidden;
    background: var(--white); border: 1px solid var(--gray-200);
    transition: all var(--transition);
}
.fleet-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-6px); border-color: transparent; }
.fleet-card-image {
    height: 220px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.35); font-size: 14px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
}
.fleet-card-body { padding: 28px; }
.fleet-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.fleet-card p { font-size: 14px; color: var(--gray-500); line-height: 1.75; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px; }
.contact-info-card {
    background: linear-gradient(135deg, var(--navy) 0%, #142347 100%);
    border-radius: var(--radius-lg); padding: 44px; color: var(--white);
    position: relative; overflow: hidden; box-shadow: var(--shadow-xl);
}
.contact-info-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(214,48,49,0.08) 0%, transparent 60%);
}
.contact-info-card h3 {
    font-size: 26px; font-weight: 800; margin-bottom: 36px;
    position: relative;
}
.contact-item { display: flex; gap: 16px; margin-bottom: 28px; position: relative; }
.contact-item-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    color: var(--red-bright); font-size: 20px;
}
.contact-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.contact-item p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.contact-item a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.contact-item a:hover { color: var(--white); }
.contact-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 8px 0 28px; position: relative; }

.contact-form {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 44px; border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}
.contact-form h3 { font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.contact-form > p { font-size: 15px; color: var(--gray-500); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--gray-700); margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 13px 16px; border: 1.5px solid var(--gray-200);
    border-radius: 10px; font-size: 14px; font-family: inherit;
    transition: all var(--transition); background: var(--gray-50);
    color: var(--gray-900);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--navy); background: var(--white);
    box-shadow: 0 0 0 4px rgba(15,29,61,0.08);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.contact-form .btn { width: 100%; padding: 16px; font-size: 16px; }

/* ===== VIDEO SECTION ===== */
.video-section { background: var(--off-white); }
.video-wrapper { text-align: center; }
.video-wrapper video { background: #000; }

/* ===== FOOTER SOCIAL ===== */
.footer-social {
    display: flex; gap: 12px; margin-top: 20px;
}
.footer-social a {
    width: 42px; height: 42px; border-radius: 10px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); font-size: 20px;
    transition: all var(--transition);
}
.footer-social a:hover {
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
    color: var(--white); border-color: transparent;
    transform: translateY(-2px); box-shadow: 0 4px 15px rgba(225,48,108,0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .fleet-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { gap: 48px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        display: none; position: absolute; top: 76px; left: 0; right: 0;
        background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
        flex-direction: column; padding: 16px 24px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg); gap: 4px;
    }
    .nav-links.active { display: flex; }
    .nav-links a { padding: 14px 16px; width: 100%; border-radius: 10px; }

    .hero { min-height: 560px; }
    .hero h1 { font-size: 36px; }
    .hero-desc { font-size: 16px; }
    .hero-truck { display: none; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat:not(:last-child)::after { display: none; }

    .services-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 30px; }
    .section { padding: 72px 0; }

    .why-grid, .about-intro, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-detail-grid { grid-template-columns: 1fr; }
    .fleet-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }

    .page-header { padding: 110px 0 56px; }
    .page-header h1 { font-size: 36px; }
    .cta h2 { font-size: 32px; }
}
