/* ===================================
   LEGGET TRUCK REPAIR - MAIN STYLES
   =================================== */

/* Root Variables */
:root {
    --red: #c0392b;
    --red-dark: #a93226;
    --red-light: #e74c3c;
    --black: #111111;
    --dark: #1a1a1a;
    --gray-dark: #2d2d2d;
    --gray: #555555;
    --gray-light: #888888;
    --gray-bg: #f5f5f5;
    --white: #ffffff;
    --border: #e0e0e0;
    --font-main: 'Inter', sans-serif;
    --font-head: 'Oswald', sans-serif;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--red-dark); }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.15;
    color: var(--black);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 4px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-red {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.btn-red:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192,57,43,0.4);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-dark {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}
.btn-dark:hover { background: var(--gray-dark); color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* Pulse Animation */
.pulse-btn { animation: pulseAnim 2s infinite; }
@keyframes pulseAnim {
    0%, 100% { box-shadow: 0 0 0 0 rgba(192,57,43,0.5); }
    50% { box-shadow: 0 0 0 10px rgba(192,57,43,0); }
}

/* ===================================
   TOP BAR
   =================================== */
.top-bar {
    background: var(--black);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.8rem;
    z-index: 1000;
    position: relative;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
}
.pulse-dot {
    width: 8px; height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease infinite;
    flex-shrink: 0;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.top-bar-phone {
    color: var(--red-light);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}
.top-bar-phone:hover { color: var(--white); }
.top-bar-reviews {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 5px;
}
.top-bar-reviews .stars { color: #f39c12; }
.top-bar-reviews:hover { color: var(--white); }

/* ===================================
   HEADER
   =================================== */
.main-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}
.main-header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 20px;
}
.header-logo a { display: flex; align-items: center; text-decoration: none; }
.text-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0.05em;
    line-height: 1;
}
.logo-sub {
    font-family: var(--font-main);
    font-size: 0.65rem;
    color: var(--gray);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Navigation */
.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-item { position: relative; }
.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 12px;
    font-family: var(--font-main);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
    white-space: nowrap;
}
.nav-link:hover, .nav-item.active .nav-link { color: var(--red); }
.dropdown-arrow { transition: transform 0.3s; }
.nav-item:hover .dropdown-arrow { transform: rotate(180deg); }

/* Mega Dropdown */
.mega-dropdown {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100vw;
    background: var(--white);
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 998;
    border-top: 3px solid var(--red);
}
.nav-item:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mega-dropdown-inner { padding: 40px 24px; }
.mega-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.mega-col h4.mega-heading {
    font-family: var(--font-main);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border);
}
.mega-col ul { list-style: none; padding: 0; }
.mega-col ul li { margin-bottom: 10px; }
.mega-col ul li a {
    font-size: 0.9rem;
    color: var(--black);
    font-weight: 500;
    transition: color 0.2s, padding-left 0.2s;
    display: block;
}
.mega-col ul li a:hover { color: var(--red); padding-left: 6px; }

/* Mega CTA Box */
.mega-cta-box {
    background: linear-gradient(135deg, var(--dark) 0%, #4a0a0a 100%);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 20px;
    color: var(--white);
}
.live-indicator {
    font-size: 0.75rem;
    color: #2ecc71;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 8px;
}
.mega-cta-box h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    font-family: var(--font-head);
}
.mega-cta-box p { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 16px; }

/* Regular Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--white);
    min-width: 280px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    border-top: 3px solid var(--red);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}
.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-inner {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.dropdown-inner a {
    display: block;
    padding: 8px 12px;
    font-size: 0.9rem;
    color: var(--black);
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition);
}
.dropdown-inner a:hover { background: var(--gray-bg); color: var(--red); padding-left: 18px; }

/* Area Dropdown */
.area-dropdown { min-width: 600px; left: 50%; transform: translateX(-60%) translateY(-10px); }
.nav-item:hover .area-dropdown { transform: translateX(-60%) translateY(0); }
.dropdown-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dropdown-col h5 {
    font-family: var(--font-main);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border);
}
.dropdown-col a {
    display: block;
    padding: 5px 8px;
    font-size: 0.85rem;
    color: var(--black);
    transition: var(--transition);
}
.dropdown-col a:hover { color: var(--red); padding-left: 14px; }

/* Header CTA */
.header-cta { flex-shrink: 0; }

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}
.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 Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1002;
    opacity: 0;
    transition: opacity 0.3s;
}
.mobile-overlay.active { display: block; opacity: 1; }

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(400px, 100vw);
    height: 100vh;
    background: var(--white);
    z-index: 1003;
    overflow-y: auto;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}
.mobile-drawer.active { right: 0; }
.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid var(--border);
    background: var(--black);
}
.mobile-drawer-header .logo-name { color: var(--white); }
.mobile-drawer-header .logo-sub { color: rgba(255,255,255,0.6); }
.mobile-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    padding: 5px 10px;
}
.mobile-phone-cta {
    padding: 20px;
    background: var(--red);
    text-align: center;
}
.mobile-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
}
.mobile-cta-sub { color: rgba(255,255,255,0.8); font-size: 0.8rem; margin-top: 6px; margin-bottom: 0; }
.mobile-nav { flex: 1; overflow-y: auto; }
.mobile-nav-list { padding: 16px 0; }
.mobile-nav-item { border-bottom: 1px solid var(--border); }
.mobile-nav-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-nav-link {
    display: block;
    padding: 18px 24px;
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--black);
    text-decoration: none;
    flex: 1;
}
.mobile-nav-link:hover { color: var(--red); }
.mobile-expand-btn {
    background: none;
    border: none;
    font-size: 0.7rem;
    color: var(--gray);
    cursor: pointer;
    padding: 18px 24px;
    transition: transform 0.3s;
}
.mobile-expand-btn.active { transform: rotate(180deg); color: var(--red); }
.mobile-sub-menu {
    display: none;
    background: var(--gray-bg);
    padding: 10px 16px 16px;
}
.mobile-sub-menu.active { display: block; }
.mobile-sub-menu a {
    display: block;
    padding: 8px 12px;
    font-size: 0.875rem;
    color: var(--gray-dark);
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: var(--transition);
}
.mobile-sub-menu a:hover { color: var(--red); border-left-color: var(--red); padding-left: 16px; }
.mobile-sub-category {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 12px 6px;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/2348359/pexels-photo-2348359.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=900&w=1920');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.hero-section:hover .hero-bg { transform: scale(1); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17,17,17,0.95) 0%, rgba(17,17,17,0.7) 60%, rgba(192,57,43,0.3) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 80px 0;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(192,57,43,0.2);
    border: 1px solid var(--red);
    color: var(--red-light);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-title {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}
.hero-title .red-text { color: var(--red-light); }
.hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 600px;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat-num {
    display: block;
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--red-light);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
    display: block;
}
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ===================================
   SECTIONS - COMMON
   =================================== */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-lg { padding: 120px 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-red { background: var(--red); color: var(--white); }
.section-red h2, .section-red h3 { color: var(--white); }
.section-gray { background: var(--gray-bg); }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0 0 12px;
    border-bottom: 2px solid var(--red);
    margin-bottom: 16px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { color: var(--gray); font-size: 1.05rem; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }

/* ===================================
   SERVICES GRID
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.service-card-img {
    height: 220px;
    background: var(--gray-dark);
    overflow: hidden;
    position: relative;
}
.service-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.service-card-body { padding: 24px; }
.service-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--black);
    font-family: var(--font-head);
}
.service-card-desc { font-size: 0.9rem; color: var(--gray); margin-bottom: 16px; }
.service-card-link {
    color: var(--red);
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.service-card-link:hover { gap: 10px; }

/* ===================================
   STATS COUNTER SECTION
   =================================== */
.stats-section {
    background: linear-gradient(135deg, var(--dark) 0%, #2a0808 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/8994766/pexels-photo-8994766.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=400&w=1920') center/cover no-repeat;
    opacity: 0.05;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
    text-align: center;
}
.stat-item { color: var(--white); }
.stat-number {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--red-light);
    line-height: 1;
    display: block;
}
.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
    display: block;
}
.stat-divider {
    width: 40px;
    height: 3px;
    background: var(--red);
    margin: 12px auto;
}

/* ===================================
   WHY CHOOSE US
   =================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.why-card {
    padding: 36px 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { border-color: var(--red); box-shadow: var(--shadow); transform: translateY(-4px); }
.why-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.why-title { font-size: 1.2rem; margin-bottom: 12px; }
.why-text { color: var(--gray); font-size: 0.9rem; margin: 0; }

/* ===================================
   TRUCK BRAND SLIDER
   =================================== */
.brands-section { padding: 60px 0; overflow: hidden; }
.brands-header { text-align: center; margin-bottom: 40px; }
.brands-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}
.brands-title { font-size: 1.8rem; margin-bottom: 8px; }
.brands-sub { color: var(--gray); font-size: 0.95rem; }
.brands-slider-wrap { overflow: hidden; position: relative; }
.brands-slider-wrap::before,
.brands-slider-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}
.brands-slider-wrap::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.brands-slider-wrap::after { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.brands-track {
    display: flex;
    gap: 40px;
    animation: brandScroll 25s linear infinite;
    width: max-content;
}
.brands-track:hover { animation-play-state: paused; }
@keyframes brandScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.brand-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-width: 150px;
    background: var(--white);
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}
.brand-logo-item:hover { filter: grayscale(0%); opacity: 1; border-color: var(--red); }
.brand-logo-item img { height: 45px; width: auto; object-fit: contain; }
.brand-logo-text {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-dark);
    letter-spacing: 0.05em;
}

/* ===================================
   REVIEWS SECTION
   =================================== */
.reviews-section { background: var(--gray-bg); padding: 80px 0; }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-stars { color: #f39c12; font-size: 1.2rem; margin-bottom: 14px; }
.review-text {
    font-size: 0.92rem;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-head);
    flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.95rem; color: var(--black); }
.review-company { font-size: 0.8rem; color: var(--gray); }
.review-location { font-size: 0.78rem; color: var(--red); }
.review-google-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.7rem;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, #3a0808 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/29950614/pexels-photo-29950614.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=400&w=1920') center/cover no-repeat;
    opacity: 0.08;
}
.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.cta-badge {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.cta-title {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 16px;
}
.cta-subtitle { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-note { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-top: 16px; }

/* ===================================
   AREAS MAP SECTION
   =================================== */
.areas-section { padding: 80px 0; }
.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.area-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gray-bg);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--black);
    transition: var(--transition);
    text-decoration: none;
}
.area-tag:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.area-tag svg { color: var(--red); flex-shrink: 0; }
.area-tag:hover svg { color: var(--white); }

/* ===================================
   CONTACT FORM
   =================================== */
.contact-form-section { padding: 80px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-form { background: var(--gray-bg); padding: 40px; border-radius: var(--radius-lg); }
.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 8px;
    color: var(--black);
}
.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: border-color 0.3s;
    background: var(--white);
    color: var(--black);
}
.form-control:focus {
    outline: none;
    border-color: var(--red);
}
select.form-control { cursor: pointer; }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; }
.form-message { display: none; padding: 14px; border-radius: var(--radius); margin-top: 16px; font-weight: 600; }
.form-message.success { background: #d4edda; color: #155724; display: block; }
.form-message.error { background: #f8d7da; color: #721c24; display: block; }

.contact-info { padding: 20px 0; }
.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}
.contact-info-icon {
    width: 48px; height: 48px;
    background: var(--red);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-info-text h4 { margin-bottom: 4px; font-size: 0.875rem; color: var(--gray); font-weight: 600; }
.contact-info-text p, .contact-info-text a {
    font-size: 1rem;
    color: var(--black);
    font-weight: 700;
    text-decoration: none;
}
.contact-info-text a:hover { color: var(--red); }

/* ===================================
   PAGE HERO (Inner Pages)
   =================================== */
.page-hero {
    position: relative;
    padding: 100px 0 80px;
    background: var(--dark);
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17,17,17,0.95) 0%, rgba(17,17,17,0.6) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }
.page-hero-title {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
}
.page-hero-subtitle {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 700px;
    margin-bottom: 30px;
}
.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.page-hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 16px;
    text-decoration: none;
}
.page-hero-phone:hover { color: var(--red-light); }

/* ===================================
   CONTENT SECTIONS
   =================================== */
.content-section { padding: 80px 0; }
.content-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 60px;
    align-items: start;
}
.content-main h2 { margin-bottom: 20px; font-size: 2rem; }
.content-main h3 { margin: 36px 0 16px; font-size: 1.5rem; color: var(--red); }
.content-main p { color: var(--gray-dark); margin-bottom: 16px; }
.content-main ul { list-style: none; padding: 0; margin-bottom: 20px; }
.content-main ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: var(--gray-dark);
    border-bottom: 1px solid var(--border);
}
.content-main ul li::before {
    content: '✓';
    color: var(--red);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.sidebar { position: sticky; top: 100px; }
.sidebar-widget {
    background: var(--gray-bg);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 24px;
    border-left: 4px solid var(--red);
}
.sidebar-widget h3 { font-size: 1.1rem; margin-bottom: 16px; }
.sidebar-phone {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sidebar-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--red);
    color: var(--white);
    padding: 16px;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    text-align: center;
}
.sidebar-call-btn:hover { background: var(--red-dark); color: var(--white); transform: translateY(-2px); }
.sidebar-links { list-style: none; padding: 0; }
.sidebar-links li { border-bottom: 1px solid var(--border); }
.sidebar-links li a {
    display: block;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--black);
    font-weight: 500;
    transition: var(--transition);
}
.sidebar-links li a:hover { color: var(--red); padding-left: 8px; }

/* Image Gallery Grid */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 40px 0;
}
.image-gallery.two-col { grid-template-columns: 1fr 1fr; }
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    height: 220px;
}
.gallery-item.tall { grid-row: span 2; height: auto; min-height: 460px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }

/* Alert/Info Box */
.info-box {
    background: linear-gradient(135deg, #fff3f3 0%, #ffe8e8 100%);
    border: 1px solid #ffcccc;
    border-left: 4px solid var(--red);
    border-radius: var(--radius);
    padding: 24px;
    margin: 30px 0;
}
.info-box h4 { color: var(--red); margin-bottom: 10px; }
.info-box p { margin: 0; color: var(--gray-dark); }

/* Warning Box */
.warning-box {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-left: 4px solid #ffa000;
    border-radius: var(--radius);
    padding: 24px;
    margin: 30px 0;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section { padding: 80px 0; background: var(--gray-bg); }
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: var(--black);
    transition: color 0.3s;
    gap: 16px;
    font-family: var(--font-head);
}
.faq-question:hover { color: var(--red); }
.faq-question.active { color: var(--red); }
.faq-icon {
    width: 28px; height: 28px;
    background: var(--gray-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--red);
}
.faq-question.active .faq-icon { transform: rotate(45deg); background: var(--red); color: var(--white); }
.faq-answer {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}
.faq-answer.active { max-height: 500px; padding: 0 28px 24px; }
.faq-answer p { color: var(--gray-dark); margin: 0; font-size: 0.95rem; }

/* ===================================
   BRANDS/VEHICLES WE SERVICE
   =================================== */
.vehicles-section { padding: 70px 0; }
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 40px;
}
.vehicle-card {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}
.vehicle-card:hover {
    border-color: var(--red);
    background: #fff3f3;
    transform: translateY(-3px);
}
.vehicle-icon { font-size: 2rem; margin-bottom: 8px; }
.vehicle-name { font-size: 0.85rem; font-weight: 700; color: var(--black); }

/* ===================================
   ABOUT SECTION HOME
   =================================== */
.about-home { padding: 80px 0; }
.about-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-home-images { position: relative; }
.about-main-img { border-radius: var(--radius-lg); overflow: hidden; height: 450px; }
.about-main-img img { width: 100%; height: 100%; object-fit: cover; }
.about-floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--red);
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.about-floating-num {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}
.about-floating-label { font-size: 0.8rem; opacity: 0.85; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--gray-dark); margin-bottom: 16px; }
.about-features { margin: 28px 0; }
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.about-feature:last-child { border-bottom: none; }
.feature-check {
    width: 28px; height: 28px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.feature-text h5 { font-size: 0.95rem; margin-bottom: 4px; }
.feature-text p { font-size: 0.875rem; color: var(--gray); margin: 0; }

/* ===================================
   FOOTER
   =================================== */
.footer-cta-section {
    background: var(--red);
    padding: 50px 0;
}
.footer-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.footer-cta-badge {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.footer-cta-title {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 8px;
}
.footer-cta-text { color: rgba(255,255,255,0.85); max-width: 500px; margin: 0; }
.footer-cta-actions { text-align: center; flex-shrink: 0; }
.footer-cta-note { color: rgba(255,255,255,0.7); font-size: 0.8rem; margin-top: 8px; }

.main-footer { background: #0f0f0f; }
.footer-top { padding: 70px 0 50px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-brand {}
.footer-logo .text-logo-white { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-name { color: var(--white); font-size: 1.4rem; }
.footer-logo .logo-sub { color: rgba(255,255,255,0.5); }
.footer-tagline { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 20px; max-width: 300px; }
.footer-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--red-light);
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-head);
    text-decoration: none;
    margin-bottom: 8px;
}
.footer-phone-dot {
    width: 8px; height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease infinite;
    flex-shrink: 0;
}
.footer-phone:hover { color: var(--white); }
.footer-address {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-top: 8px;
}
.footer-stars { margin-top: 16px; display: flex; align-items: center; gap: 10px; }
.star-rating { color: #f39c12; font-size: 1rem; }
.footer-review-link { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-review-link:hover { color: var(--white); }
.footer-payment { margin-top: 24px; }
.payment-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}
.payment-logos { display: flex; flex-wrap: wrap; gap: 6px; }
.payment-logo {
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.05);
}
.footer-col {}
.footer-heading {
    font-family: var(--font-main);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links { padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links li a {
    color: rgba(255,255,255,0.55);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
}
.footer-links li a:hover { color: var(--white); padding-left: 6px; }
.footer-hours { padding: 0; }
.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-hours li strong { color: var(--white); }

.footer-map { border-top: 1px solid rgba(255,255,255,0.08); padding: 50px 0; }
.footer-map-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}
.footer-map-text h3 { color: var(--white); margin-bottom: 12px; font-size: 1.5rem; }
.footer-map-text p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 20px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copyright { color: rgba(255,255,255,0.35); font-size: 0.8rem; margin: 0; }
.footer-bottom-links p { color: rgba(255,255,255,0.25); font-size: 0.75rem; margin: 0; }
.footer-bottom-right { color: rgba(255,255,255,0.3); font-size: 0.75rem; letter-spacing: 0.1em; }

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--red);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 100px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(192,57,43,0.5);
    z-index: 990;
    animation: pulseAnim 2s infinite;
    text-decoration: none;
    display: none;
}
.floating-call-btn:hover { background: var(--red-dark); color: var(--white); }

/* ===================================
   HOMEPAGE SPECIFIC
   =================================== */
.home-intro { padding: 80px 0; }
.home-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.intro-features { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.intro-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-dark);
}
.intro-feature-icon { color: var(--red); font-size: 1.2rem; flex-shrink: 0; }

/* Service Page Specific */
.service-impact-box {
    background: linear-gradient(135deg, #fff3f3, #ffe0e0);
    border-radius: var(--radius-lg);
    padding: 36px;
    margin: 40px 0;
    border-left: 5px solid var(--red);
}
.service-impact-box h3 { color: var(--red); margin-bottom: 12px; }

.service-cta-box {
    background: linear-gradient(135deg, var(--dark), #3a0808);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    color: var(--white);
    margin: 40px 0;
}
.service-cta-box h3 { color: var(--white); margin-bottom: 12px; }
.service-cta-box p { color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.service-cta-phone {
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--red-light);
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Area Page Specific */
.area-interstate-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.interstate-badge {
    background: var(--dark);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 4px;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
}

/* Solution Page */
.solution-hero-stats { display: flex; gap: 40px; margin-top: 30px; flex-wrap: wrap; }
.solution-hero-stat { text-align: center; }
.solution-hero-stat-num {
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: var(--red-light);
    display: block;
    font-weight: 700;
    line-height: 1;
}
.solution-hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ===================================
   ANIMATIONS ON SCROLL
   =================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* ===================================
   ADMIN STYLES
   =================================== */
.legget-admin-wrap { max-width: 1200px; }
.legget-admin-wrap h1 { margin-bottom: 24px; }
.legget-admin-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 12px;
}
.tab-btn {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    color: #555;
    font-weight: 600;
    background: #f5f5f5;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.tab-btn:hover { background: #e0e0e0; color: #333; }
.tab-btn.active { background: #c0392b; color: #fff; }
.legget-form-table td input, .legget-form-table td textarea { width: 100%; }
.legget-info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 20px 0 30px; }
.info-card { background: #fff; border: 1px solid #ddd; border-radius: 8px; padding: 20px; border-left: 4px solid #c0392b; }
.info-card h3 { margin-bottom: 8px; font-size: 1rem; }
.info-card .big-value { font-size: 1.5rem; font-weight: 700; color: #c0392b; }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1200px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
    .footer-grid .footer-col:nth-child(4),
    .footer-grid .footer-col:nth-child(5) { display: none; }
}

@media (max-width: 1024px) {
    .main-nav { display: none; }
    .mobile-toggle { display: flex; }
    .floating-call-btn { display: flex; }
    .header-cta .btn { display: none; }
    .mega-dropdown-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-home-grid { grid-template-columns: 1fr; }
    .about-home-images { order: -1; }
    .about-floating-card { right: 20px; bottom: -10px; }
    .areas-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .content-grid { grid-template-columns: 1fr; }
    .home-intro-grid { grid-template-columns: 1fr; }
    .footer-map-inner { grid-template-columns: 1fr; }
    .footer-cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .hero-section { min-height: 100vh; }
    .hero-stats { gap: 20px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .image-gallery { grid-template-columns: 1fr 1fr; }
    .image-gallery .gallery-item.tall { grid-row: span 1; min-height: 220px; height: 220px; }
    .footer-grid { grid-template-columns: 1fr; }
    .solution-hero-stats { gap: 20px; }
    .mega-dropdown-grid { grid-template-columns: 1fr; }
    .dropdown-cols { grid-template-columns: 1fr; }
    .intro-features { grid-template-columns: 1fr; }
    .legget-info-cards { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; align-items: center; }
    .page-hero-actions { flex-direction: column; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 60px 0; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .image-gallery { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
}
