/*
Theme Name: Next Moving & Storage
Theme URI: https://nextmovingstorage.com
Author: Next Moving & Storage
Description: Professional moving and storage company theme for NextMovingAndStorage.com
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nextmoving
Tags: business, moving, storage, professional, responsive
*/

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --primary: #1a3a6b;
  --primary-dark: #0f2d5e;
  --accent: #f97316;
  --accent-dark: #ea6800;
  --text: #1e293b;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px; line-height: 1.6; color: var(--text); background: var(--white);
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700; line-height: 1.2; color: var(--primary-dark);
}

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-alt { background: var(--bg-light); }

.section-title { font-size: 2.5rem; margin-bottom: 15px; }
.section-title::after {
  content: ''; display: block; width: 60px; height: 4px;
  background: var(--accent); margin-top: 15px; border-radius: 2px;
}
.section-title.center { text-align: center; }
.section-title.center::after { margin: 15px auto 0; }

.section-subtitle { font-size: 1.1rem; color: var(--text-light); margin-bottom: 50px; }
.section-subtitle.center { text-align: center; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 1rem; cursor: pointer;
  transition: var(--transition); border: 2px solid transparent; text-decoration: none;
}
.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover {
  background: var(--accent-dark); border-color: var(--accent-dark); color: var(--white);
  transform: translateY(-2px); box-shadow: 0 8px 25px rgba(249,115,22,.35);
}
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); transform: translateY(-2px); }
.btn-dark { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-dark:hover {
  background: var(--primary-dark); border-color: var(--primary-dark);
  color: var(--white); transform: translateY(-2px);
}
.btn-white { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-white:hover { background: var(--bg-light); transform: translateY(-2px); }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--primary-dark); color: rgba(255,255,255,.8);
  padding: 8px 0; font-size: .875rem;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; gap: 25px; }
.top-bar-right { display: flex; gap: 20px; align-items: center; }
.top-bar a { color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 6px; }
.top-bar a:hover { color: var(--accent); }
.top-bar svg { width: 14px; height: 14px; fill: currentColor; }

/* ===== SITE HEADER ===== */
.site-header {
  background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,.08);
  position: sticky; top: 0; z-index: 1000; transition: var(--transition);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between; padding: 12px 20px;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 56px; height: 56px;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  flex-shrink: 0;
}
.logo-text { line-height: 1.1; }
.logo-name {
  display: block; font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.35rem; color: var(--primary); letter-spacing: -.5px;
}
.logo-sub {
  display: block; font-size: .68rem; color: var(--accent);
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
}

/* Nav */
.header-right { display: flex; align-items: center; gap: 10px; }
.main-nav { display: flex; align-items: center; gap: 3px; }
.main-nav a {
  padding: 8px 13px; color: var(--text); font-weight: 600;
  font-size: .88rem; border-radius: var(--radius-sm);
}
.main-nav a:hover, .main-nav .current-menu-item > a, .main-nav .current_page_item > a {
  color: var(--primary); background: rgba(26,58,107,.07);
}

.header-phone {
  display: flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--white) !important;
  padding: 10px 20px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: .95rem; white-space: nowrap;
}
.header-phone:hover {
  background: var(--accent-dark) !important; color: var(--white) !important;
  transform: translateY(-1px); box-shadow: 0 5px 15px rgba(249,115,22,.4);
}
.header-phone svg { width: 17px; height: 17px; fill: currentColor; }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px; background: none; border: none;
}
.nav-toggle span { display: block; width: 25px; height: 3px; background: var(--primary); border-radius: 3px; transition: var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #071428 0%, #0f2d5e 45%, #1a3a6b 100%);
  min-height: 88vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='40' cy='40' r='4'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px; align-items: center; position: relative; z-index: 1; padding: 90px 20px;
}
.hero-content { color: var(--white); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,.15); border: 1px solid rgba(249,115,22,.4);
  color: #fbbf24; padding: 6px 16px; border-radius: 30px;
  font-size: .82rem; font-weight: 600; letter-spacing: .5px; margin-bottom: 22px;
}
.hero h1 {
  font-size: 3.6rem; font-weight: 900; color: var(--white);
  line-height: 1.08; margin-bottom: 20px; letter-spacing: -1.5px;
}
.hero h1 span { color: var(--accent); }
.hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,.8); margin-bottom: 35px; line-height: 1.75; }
.hero-cta { display: flex; gap: 15px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 35px; margin-top: 50px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat .number { display: block; font-size: 2rem; font-weight: 800; color: var(--accent); font-family: 'Montserrat', sans-serif; }
.hero-stat .label { font-size: .82rem; color: rgba(255,255,255,.65); }

.hero-truck { display: flex; align-items: center; justify-content: center; }
.hero-truck-svg {
  width: 100%; max-width: 580px;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,.5));
  animation: truckFloat 5s ease-in-out infinite;
}
@keyframes truckFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(.3deg); }
  75% { transform: translateY(-4px) rotate(-.2deg); }
}

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin-top: 40px; }
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 35px 25px;
  text-align: center; box-shadow: var(--shadow); transition: var(--transition);
  border: 1px solid rgba(0,0,0,.05); position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--accent); transform: scaleX(0); transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 18px; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 22px;
}
.service-icon svg { width: 36px; height: 36px; fill: var(--white); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--primary-dark); }
.service-card p { font-size: .88rem; color: var(--text-light); line-height: 1.7; }
.service-link { display: inline-flex; align-items: center; gap: 5px; color: var(--accent); font-weight: 600; font-size: .88rem; margin-top: 15px; }
.service-link:hover { gap: 10px; }

/* ===== WHY CHOOSE US ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; margin-top: 40px; }
.feature-item { display: flex; gap: 20px; }
.feature-icon {
  width: 56px; height: 56px; min-width: 56px;
  background: rgba(249,115,22,.1); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 28px; height: 28px; fill: var(--accent); }
.feature-text h4 { font-size: 1.05rem; margin-bottom: 7px; color: var(--primary-dark); }
.feature-text p { font-size: .88rem; color: var(--text-light); line-height: 1.7; }

/* ===== PROCESS STEPS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 40px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 28px; left: 12.5%; right: 12.5%;
  height: 2px; background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  font-size: 1.3rem; font-weight: 800; font-family: 'Montserrat', sans-serif;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; border: 3px solid var(--white);
  box-shadow: 0 0 0 4px var(--primary);
}
.step-item h4 { font-size: 1rem; margin-bottom: 8px; color: var(--primary-dark); }
.step-item p { font-size: .85rem; color: var(--text-light); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  padding: 75px 0; text-align: center; color: var(--white);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.08'/%3E%3C/svg%3E");
}
.cta-banner h2 { font-size: 2.6rem; color: var(--white); margin-bottom: 12px; position: relative; }
.cta-banner p { font-size: 1.15rem; opacity: .9; margin-bottom: 35px; position: relative; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; position: relative; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 40px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow); border-top: 4px solid var(--accent);
}
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 15px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: .95rem; color: var(--text); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1.1rem;
}
.author-info strong { display: block; font-weight: 700; font-size: .95rem; }
.author-info span { font-size: .82rem; color: var(--text-light); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 80px 0 55px; text-align: center; color: var(--white);
}
.page-hero h1 { font-size: 2.8rem; color: var(--white); margin-bottom: 15px; }
.breadcrumb { color: rgba(255,255,255,.65); font-size: .88rem; }
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; }

/* ===== PAGE CONTENT ===== */
.page-content { padding: 70px 0; }
.page-content h2 { font-size: 1.8rem; margin: 30px 0 15px; }
.page-content h3 { font-size: 1.4rem; margin: 25px 0 12px; }
.page-content p { margin-bottom: 20px; line-height: 1.8; }
.page-content ul, .page-content ol { padding-left: 25px; margin-bottom: 20px; }
.page-content ul li { list-style: disc; margin-bottom: 8px; line-height: 1.7; }
.page-content ol li { list-style: decimal; margin-bottom: 8px; line-height: 1.7; }

/* ===== CONTACT PAGE ===== */
.contact-hero-strip {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 70px 0 55px; color: var(--white); text-align: center;
}
.contact-hero-strip h1 { font-size: 2.8rem; color: var(--white); margin-bottom: 10px; }
.contact-hero-strip p { font-size: 1.1rem; opacity: .85; }

.contact-section { padding: 80px 0; background: var(--bg-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }

.contact-info-card {
  background: var(--white); border-radius: var(--radius); padding: 40px 35px;
  box-shadow: var(--shadow);
}
.contact-info-card h2 { font-size: 1.7rem; margin-bottom: 10px; }
.contact-info-card > p { color: var(--text-light); margin-bottom: 30px; font-size: .95rem; }

.contact-item { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.contact-item-icon {
  width: 50px; height: 50px; min-width: 50px; background: var(--primary);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.contact-item-icon svg { width: 23px; height: 23px; fill: var(--white); }
.contact-item-text strong {
  display: block; font-size: .78rem; text-transform: uppercase;
  letter-spacing: 1px; color: var(--accent); margin-bottom: 3px;
}
.contact-item-text span, .contact-item-text a { color: var(--text); font-size: .98rem; font-weight: 500; }

.hours-table { width: 100%; margin-top: 25px; border-collapse: collapse; }
.hours-table td { padding: 8px 0; font-size: .9rem; border-bottom: 1px solid #f1f5f9; }
.hours-table td:first-child { color: var(--text-light); }
.hours-table td:last-child { text-align: right; font-weight: 600; }

/* Contact Form */
.contact-form-wrapper {
  background: var(--white); border-radius: var(--radius); padding: 45px 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-wrapper h3 { font-size: 1.7rem; margin-bottom: 8px; color: var(--primary-dark); }
.contact-form-wrapper > p { color: var(--text-light); margin-bottom: 30px; font-size: .95rem; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label { display: block; font-weight: 600; font-size: .85rem; color: var(--text); margin-bottom: 6px; }
.form-group label .req { color: #ef4444; margin-left: 2px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid #e2e8f0;
  border-radius: var(--radius-sm); font-size: .95rem; font-family: inherit;
  color: var(--text); background: var(--white); transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,58,107,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 20px; padding-right: 40px;
}
.recaptcha-wrapper { margin: 20px 0; }
.form-submit { margin-top: 5px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 16px; font-size: 1.05rem; }

.form-message { padding: 15px 20px; border-radius: var(--radius-sm); margin-bottom: 20px; font-weight: 500; display: none; }
.form-message.success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; display: block; }
.form-message.error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; display: block; }

/* ===== FOOTER ===== */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,.8); }
.footer-top { padding: 70px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 50px; }

.footer-brand .footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand .logo-icon { width: 60px; height: 60px; border-radius: 10px; object-fit: contain; }
.footer-logo-name { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.25rem; color: var(--white); line-height: 1.1; }
.footer-logo-sub { font-size: .65rem; color: var(--accent); letter-spacing: 1.5px; text-transform: uppercase; display: block; }
.footer-brand p { font-size: .88rem; line-height: 1.8; margin-bottom: 22px; }

.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px; background: rgba(255,255,255,.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.social-btn:hover { background: var(--accent); transform: translateY(-2px); }
.social-btn svg { width: 18px; height: 18px; fill: var(--white); }

.footer-widget h4 {
  font-size: .95rem; font-weight: 700; color: var(--white);
  margin-bottom: 22px; padding-bottom: 12px;
  border-bottom: 2px solid var(--accent); display: inline-block;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: .88rem; color: rgba(255,255,255,.72);
  display: flex; align-items: center; gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--accent); font-size: 1.1rem; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.footer-contact-item svg { width: 17px; height: 17px; fill: var(--accent); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: .88rem; line-height: 1.6; }
.footer-contact-item a { color: rgba(255,255,255,.8); }
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom { background: rgba(0,0,0,.28); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: .82rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .82rem; color: rgba(255,255,255,.55); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ===== 404 ===== */
.error-404-wrap { text-align: center; padding: 120px 0; }
.error-404-wrap .error-num {
  font-size: 9rem; font-weight: 900; color: var(--accent); line-height: 1;
  font-family: 'Montserrat', sans-serif; display: block;
}
.error-404-wrap h2 { font-size: 2rem; margin: 10px 0 20px; }
.error-404-wrap p { color: var(--text-light); margin-bottom: 35px; font-size: 1.1rem; }

/* ===== WORDPRESS CORE ===== */
.wp-block-image { margin: 30px 0; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin: 0 25px 20px 0; }
.alignright { float: right; margin: 0 0 20px 25px; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .85rem; color: var(--text-light); text-align: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .site-header .container { flex-wrap: wrap; gap: 12px; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 20px; flex-direction: column;
    box-shadow: 0 15px 40px rgba(0,0,0,.12); border-top: 3px solid var(--accent); z-index: 999;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 15px; width: 100%; }
  .nav-toggle { display: flex; }
  .hero .container { grid-template-columns: 1fr; text-align: center; padding: 70px 20px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-cta, .hero-stats { justify-content: center; }
  .hero-truck { order: -1; }
  .hero-truck-svg { max-width: 90%; }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.9rem; }
  .page-hero h1 { font-size: 2rem; }
  .cta-banner h2 { font-size: 1.9rem; }
  .contact-form-wrapper { padding: 30px 20px; }
  .contact-info-card { padding: 30px 25px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; letter-spacing: -1px; }
  .section { padding: 60px 0; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .header-phone { padding: 9px 15px; font-size: .88rem; }
  .logo-name { font-size: 1.15rem; }
}
