/* Apex Freight - Tech/Operations Dark Theme */
:root {
    --charcoal: #0f1419;
    --charcoal-light: #1a2332;
    --charcoal-mid: #242d3a;
    --apex-red: #dc2626;
    --apex-red-light: #ef4444;
    --accent-cyan: #22d3ee;
    --accent-blue: #3b82f6;
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --text-light: #d1d5db;
    --border-color: rgba(255,255,255,0.1);
    --gradient-dark: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
    --gradient-red: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    --ff-primary: 'Space Grotesk', sans-serif;
    --transition: all 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--ff-primary);
    background: var(--charcoal);
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--text-white);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }

h1 span, h2 span { color: var(--apex-red); }

p { color: var(--text-gray); }

a { color: inherit; text-decoration: none; }

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--gradient-red);
    color: var(--text-white);
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--ff-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--text-white);
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--apex-red);
    color: var(--apex-red);
}

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* Header */
header {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-white);
}

.logo span { color: var(--apex-red); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-gray);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--apex-red);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    z-index: 101;
    width: 44px;
    height: 44px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    background: var(--charcoal-light);
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 99;
    border-bottom: 3px solid var(--apex-red);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    display: block;
    padding: 1rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--apex-red);
}

.mobile-nav .mobile-phone {
    color: var(--apex-red);
}

/* Hero */
.hero {
    padding: 10rem 0 5rem;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&q=80&w=1200') center/cover no-repeat;
    opacity: 0.15;
    mask-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0));
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0));
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--apex-red-light);
    margin-bottom: 1.5rem;
}

.hero h1 { margin-bottom: 1.5rem; }

.hero-content > p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Tracking Card Visual */
.tracking-card {
    background: var(--charcoal-mid);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
}

.tracking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.tracking-label {
    font-weight: 600;
    color: var(--text-white);
}

.tracking-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(34, 211, 238, 0.15);
    border: 1px solid var(--accent-cyan);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--accent-cyan);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.tracking-route {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.route-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 0;
}

.point-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--charcoal-light);
    border: 2px solid var(--border-color);
    margin-top: 4px;
    flex-shrink: 0;
}

.route-point.active .point-dot {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
}

.route-point.current .point-dot {
    background: var(--apex-red);
    border-color: var(--apex-red);
    animation: pulse 1.5s infinite;
}

.route-point div {
    display: flex;
    flex-direction: column;
}

.route-point strong {
    color: var(--text-white);
    font-size: 0.9rem;
}

.route-point span {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.route-line {
    width: 2px;
    height: 20px;
    background: var(--accent-cyan);
    margin-left: 5px;
}

.route-line.inactive {
    background: var(--border-color);
}

/* Page Hero */
.page-hero {
    padding: 10rem 0 4rem;
    background: var(--gradient-dark);
    text-align: center;
}

.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { font-size: 1.25rem; max-width: 600px; margin: 0 auto; }

/* Sections */
.section {
    padding: 5rem 0;
}

.section.bg-dark {
    background: var(--charcoal-light);
}

.section.bg-gradient {
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--apex-red-light);
    margin-bottom: 1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--charcoal-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--apex-red);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.service-card p {
    font-size: 0.9rem;
}

/* Why Grid */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-content h2 {
    margin: 1rem 0 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.feature-item h4 {
    margin-bottom: 0.25rem;
}

.feature-item p {
    font-size: 0.9rem;
}

.why-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-red);
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content > p {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-section .btn-primary {
    background: var(--text-white);
    color: var(--apex-red);
}

.cta-section .btn-outline {
    border-color: rgba(255,255,255,0.5);
    color: var(--text-white);
}

.cta-section .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--text-white);
}

/* Coverage */
.coverage-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.coverage-states {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.state-tag {
    padding: 0.5rem 1rem;
    background: var(--charcoal-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-white);
}

.coverage-info h3 {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--apex-red-light);
}

.coverage-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Story Grid */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    margin: 1rem 0 1.5rem;
}

.story-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--charcoal-mid);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--apex-red);
    margin-bottom: 0.5rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: var(--charcoal-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--apex-red);
}

.value-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    background: var(--charcoal-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.team-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--apex-red);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    margin-bottom: 0.25rem;
}

.team-card span {
    display: block;
    color: var(--apex-red-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-card p {
    font-size: 0.9rem;
}

/* Fleet Grid */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.fleet-card {
    background: var(--charcoal-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
}

.fleet-card h4 {
    margin-bottom: 0.5rem;
}

.fleet-count {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(220, 38, 38, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--apex-red-light);
    margin-bottom: 0.75rem;
}

/* Service Detail */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-detail-content h2 {
    margin: 1rem 0 1.5rem;
}

.service-detail-content > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-detail-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

/* Additional Services */
.additional-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.additional-card {
    background: var(--charcoal-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.additional-card:hover {
    border-color: var(--apex-red);
}

.additional-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.additional-card h4 {
    margin-bottom: 0.5rem;
}

/* Pricing Info */
.pricing-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-info > p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.pricing-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--charcoal-mid);
    border-radius: 8px;
}

.pricing-item span {
    color: var(--accent-cyan);
    font-size: 1.25rem;
}

.pricing-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
}

.contact-form-wrap {
    background: var(--charcoal-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    background: var(--charcoal-mid);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-white);
    font-family: var(--ff-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--apex-red);
}

.form-group select {
    cursor: pointer;
}

.contact-form button {
    margin-top: 1rem;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--charcoal-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
}

.info-card h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.phone-link {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--apex-red);
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.credentials-box {
    background: var(--charcoal-mid);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
}

.credentials-box h4 {
    margin-bottom: 1rem;
    color: var(--apex-red-light);
}

.credential-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.credential-item:last-child {
    border-bottom: none;
}

.credential-item span {
    color: var(--text-gray);
}

.credential-item strong {
    color: var(--text-white);
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-white);
}

.form-success h3 {
    margin-bottom: 0.5rem;
}

/* Map */
.map-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: var(--charcoal-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
}

.faq-item h4 {
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.faq-item p {
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--charcoal-light);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    color: var(--apex-red-light);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-gray);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-contact p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.25rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .fleet-grid { grid-template-columns: repeat(2, 1fr); }
    .additional-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .why-image { order: -1; }
    .story-grid { grid-template-columns: 1fr; }
    .story-image { order: -1; }
    .service-detail { grid-template-columns: 1fr; }
    .service-detail.reverse { direction: ltr; }
    .service-detail-image { order: -1; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info { order: -1; }
}

@media (max-width: 768px) {
    header { padding: 0.75rem 0; top: 50px; }
    .nav-links { display: none !important; }
    header .btn-primary { display: none !important; }
    .mobile-toggle { display: flex !important; }
    
    /* UNIQUE HERO: TECH OPERATIONS DASHBOARD STYLE */
    /* Dark tech theme with live tracking card, scan lines */
    .hero { 
        padding: 1.5rem 0;
        position: relative;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(255,255,255,0.03) 2px,
                rgba(255,255,255,0.03) 4px
            );
        pointer-events: none;
    }
    
    .hero-content { text-align: left; }
    
    .hero-badge {
        font-size: 0.6rem;
        padding: 0.4rem 0.75rem;
        background: transparent;
        border: 1px solid var(--apex-red);
        color: var(--apex-red);
        font-family: 'Space Grotesk', monospace;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-badge i { animation: pulse 1.5s ease-in-out infinite; }
    
    @keyframes pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.4; }
    }
    
    .hero h1 { 
        font-size: 1.85rem; 
        margin-bottom: 0.75rem;
        line-height: 1.15;
    }
    
    .hero h1 span { color: var(--apex-red); }
    
    .hero-content > p { 
        font-size: 0.9rem; 
        margin-bottom: 1.5rem;
        color: var(--text-light);
        line-height: 1.7;
    }
    
    .hero-ctas { 
        flex-direction: column; 
        gap: 0.75rem;
    }
    
    .hero-ctas .btn-primary { 
        width: 100%; 
        justify-content: center;
        background: var(--apex-red);
        border-radius: 4px;
        font-weight: 700;
        letter-spacing: 1px;
        padding: 1rem 1.5rem;
    }
    
    .hero-ctas .btn-outline { 
        width: 100%; 
        justify-content: center;
        border-color: rgba(255,255,255,0.3);
        color: var(--white);
        border-radius: 4px;
    }
    
    /* STATS as tracking dashboard */
    .hero-stats { 
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-top: 1.5rem;
        padding: 1rem;
        background: rgba(255,255,255,0.05);
        border: 1px solid var(--border-color);
        border-radius: 4px;
    }
    
    .stat-item { 
        text-align: center;
        padding: 0.75rem 0.5rem;
        background: rgba(0,0,0,0.3);
        border-radius: 4px;
    }
    
    .stat-number { 
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--cyan);
        display: block;
        font-family: 'Space Grotesk', monospace;
    }
    
    .stat-label { 
        font-size: 0.55rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--text-light);
        line-height: 1.3;
    }
    
    .page-hero { padding: 2rem 0; }
    .page-hero h1 { font-size: 1.75rem; }
    
    .section { padding: 2.5rem 0; }
    .section-header { margin-bottom: 2rem; }
    .section-header h2 { font-size: 1.5rem; }
    
    .services-grid { grid-template-columns: 1fr; gap: 1rem; }
    .service-card { padding: 1.5rem; }
    .values-grid { grid-template-columns: 1fr; gap: 1rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .fleet-grid { grid-template-columns: 1fr; gap: 1rem; }
    .additional-grid { grid-template-columns: 1fr; gap: 1rem; }
    .pricing-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .team-grid { grid-template-columns: 1fr; gap: 1rem; }
    .faq-grid { grid-template-columns: 1fr; gap: 1rem; }
    
    .form-row { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }
    .contact-form-wrap { padding: 1.5rem; }
    
    .footer { padding: 2.5rem 0 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
    .coverage-grid { flex-direction: column; text-align: center; }
    .coverage-states { justify-content: center; }
    
    .cta-full { padding: 3rem 0; }
    .cta-full h2 { font-size: 1.5rem; }
    .cta-buttons { flex-direction: column; gap: 0.75rem; }
    .cta-buttons a { width: 100%; justify-content: center; }
}

/* Extra small screens */
@media (max-width: 375px) {
    .container { padding: 0 1rem; }
    .hero h1 { font-size: 1.5rem; }
}

/* Icon Styling */
.service-icon i { font-size: 2rem; color: var(--apex-red); }
.feature-icon i { color: var(--accent-cyan); }
.value-icon i { color: var(--apex-red); }
.additional-icon i { color: var(--apex-red); }
