/* 
   DESIRE TRANSPORT INC. - Custom Stylesheet (Light Theme)
   Built for speed, accessibility, and modern logistics B2B presentation.
*/

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

:root {
    /* Design Tokens - Claire McGowan-style Brand Palette */
    --color-primary: #513229;       /* Mother Earth - primary brand color: buttons, headings, strong text */
    --color-primary-dark: #3a2219;  /* Darker Mother Earth - hover state for primary buttons */
    --color-secondary: #3a2219;     /* Deep Brown / Main Headings */
    --color-accent: #D8EBF9;        /* Something Blue - soft accent, used as a FILL/background only */
    --color-accent-ink: #2C5F82;    /* Deep Blue - readable text/icon color for anything sitting on the accent fill or on white */
    --color-accent-dark: #c3e0f5;   /* Deeper Something Blue - hover state for accent-tinted elements */

    --bg-primary: #F4F1E2;          /* Lucky Dice - Warm Cream */
    --bg-secondary: #FCE6B7;        /* The Bay - Warm Yellow */
    --bg-tertiary: #D7D4B1;         /* Walking Vinnie - Sage Green */
    --border-color: #c8c4a0;        /* Warm Sage Border */
    
    --text-primary: #2e1c14;       /* Deep Brown - Body Text */
    --text-secondary: #513229;     /* Mother Earth - Secondary copy */
    --text-muted: #7a6050;         /* Warm Muted Brown - Metadata & captions */
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.08);

    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout Constants */
    --header-height: 80px;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-secondary);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}

.bg-light {
    background-color: var(--bg-secondary);
}

.bg-shaded {
    background-color: var(--bg-tertiary);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(81, 50, 41, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    text-transform: uppercase;
}

.badge-accent {
    background-color: var(--color-accent);
    color: var(--color-accent-ink);
}

.badge-coming-soon {
    background-color: var(--border-color);
    color: var(--text-muted);
    font-size: 0.65rem;
    vertical-align: middle;
    margin-left: 0.25rem;
}

.badge-verified {
    background-color: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 1440px;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--color-secondary);
    letter-spacing: -0.5px;
    flex-shrink: 0;
    white-space: nowrap;
    line-height: 1;
}

.logo svg {
    flex-shrink: 0;
}

.logo svg {
    color: var(--color-accent-ink);
}

.logo span {
    color: var(--color-primary);
}

.logo-suffix {
    font-style: normal;
    font-size: 0.62em;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    align-self: flex-start;
    margin-top: 0.15em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex-wrap: nowrap;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-secondary);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section (Light Theme Showcase) */
.hero {
    position: relative;
    background: radial-gradient(circle at 100% 0%, rgba(216, 235, 249, 0.6) 0%, rgba(255, 255, 255, 0) 60%),
                radial-gradient(circle at 0% 100%, rgba(81, 50, 41, 0.04) 0%, rgba(255, 255, 255, 0) 50%);
    padding: 5rem 0 3rem 0;
    overflow: hidden;
}

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

.hero-content h1 {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-content h1 span {
    color: var(--color-primary);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-img-container {
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid #ffffff;
}

.hero-badge-overlay {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: #ffffff;
    padding: 1.25rem 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border-color);
}

.hero-badge-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-ink);
}

.hero-badge-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

.hero-badge-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Trust Bar */
.trust-bar {
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    padding: 2rem 0;
    margin-top: 3rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.trust-item svg {
    color: var(--color-primary);
    width: 32px;
    height: 32px;
}

.trust-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
}

.trust-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-numbers {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--border-color);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Section Header */
.section-header {
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-header .sub {
    color: var(--color-accent-ink);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Services Grid (Overview Cards) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(81, 50, 41, 0.2);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    background-color: var(--color-primary);
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card-link svg {
    transition: var(--transition);
}

.service-card:hover .service-card-link svg {
    transform: translateX(4px);
}

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

.why-bullets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.why-bullet-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.why-bullet-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-color);
}

.why-bullet-icon {
    color: var(--color-accent-ink);
    margin-bottom: 1rem;
}

.why-bullet-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.why-bullet-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Service Area Section */
.area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.area-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.area-state-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.area-state-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.area-state-info h4 {
    font-size: 1.1rem;
}

.area-state-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Big Banner CTA (Light Contrast) */
.cta-banner {
    background: linear-gradient(135deg, #e0f2fe 0%, #ffffff 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 4rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-banner-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.cta-banner p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.cta-banner-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Subpage Header Banner */
.page-header-banner {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 4rem 0;
    position: relative;
}

.page-header-banner h1 {
    font-size: 3rem;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-secondary);
}

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

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

/* Detailed Services / Industries Subpage Sections */
.detail-section-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.detail-section-row:last-child {
    margin-bottom: 0;
}

.detail-section-row.reverse {
    direction: rtl;
}

.detail-section-row.reverse .detail-content-box {
    direction: ltr;
}

.detail-content-box h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.detail-use-cases {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.detail-use-cases h4 {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.detail-use-cases li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.detail-img-box {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

/* Quote Form Section */
.form-container {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-full-width {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-secondary);
}

.form-control {
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(81, 50, 41, 0.12);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Contact Info Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

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

.contact-map-placeholder {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    height: 100%;
    min-height: 350px;
    background-color: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.contact-map-placeholder svg {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

/* Safety & Compliance Grid */
.safety-kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.safety-kpi-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.safety-kpi-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent-ink);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.safety-kpi-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.safety-kpi-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.safety-fmcsa-box {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    margin-top: 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.safety-fmcsa-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #dcfce7;
    color: #15803d;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.safety-fmcsa-text h3 {
    color: #14532d;
    margin-bottom: 0.5rem;
}

.safety-fmcsa-text p {
    color: #166534;
    font-size: 0.95rem;
}

/* Footer Section */
footer {
    background-color: var(--bg-tertiary);
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2rem 0;
    color: var(--text-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand-col h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-brand-col p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-compliance-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.footer-links-col h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-col a {
    font-size: 0.9rem;
}

.footer-links-col a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Notification/Form Toast styling */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #10b981;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 10000;
    animation: slideUp 0.3s ease;
}

/* Animations */
@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .cta-banner-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-banner-actions {
        justify-content: flex-start;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* The "coming soon" teasers are non-clickable placeholders — keep them out of the
   crowded desktop bar and surface them inside the collapsed menu instead. */
@media (min-width: 1201px) {
    .nav-portal-link {
        display: none;
    }
}

/* Collapse the desktop nav into the hamburger menu before the links run out of room */
@media (max-width: 1200px) {
    .mobile-nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        gap: 2.5rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }

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

    .nav-links a {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        gap: 2.5rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-actions {
        display: none; /* Hide top bar button on mobile, show it in mobile menu or as secondary */
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid, .area-grid, .detail-section-row, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .detail-section-row.reverse {
        direction: ltr;
    }
    
    .why-bullets {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-full-width {
        grid-column: span 1;
    }
    
    .safety-kpi-grid {
        grid-template-columns: 1fr;
    }
    
    .safety-fmcsa-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
