/* ======================================
   PATNA MOVERS N PACKERS - MAIN STYLESHEET
   Design: Light Theme, Navy Blue + Green Accent
   ====================================== */

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

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #0a1f44;
  --navy-dark: #071530;
  --navy-light: #132d5e;
  --green: #28a745;
  --green-dark: #1e7e34;
  --green-light: #5cb85c;
  --green-accent: #d4edda;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --black: #111111;
  --orange: #fd7e14;
  --shadow: 0 2px 15px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 12px 40px rgba(0,0,0,0.15);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark-gray);
  background: var(--white);
  overflow-x: hidden;
}

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

h1 { font-size: 2.4rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

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

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

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy-dark);
  color: var(--white);
  font-size: 13px;
  padding: 6px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: var(--white);
  margin-right: 20px;
}

.top-bar a:hover {
  color: var(--green);
}

.top-bar-left i {
  margin-right: 5px;
  color: var(--green);
}

/* ===== HEADER ===== */
.header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  font-weight: 800;
}

.logo-text {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.logo-text span {
  color: var(--green);
  font-size: 0.75rem;
  display: block;
  font-weight: 400;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  color: var(--white);
  padding: 20px 14px;
  display: block;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--green);
  background: rgba(255,255,255,0.05);
}

/* Dropdown */
.nav-menu li .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius) var(--radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

.nav-menu li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 18px;
  color: var(--dark-gray);
  font-size: 13px;
  border-bottom: 1px solid var(--light-gray);
}

.dropdown a:hover {
  background: var(--green-accent);
  color: var(--navy);
  padding-left: 22px;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 15px;
}

.header-cta a {
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.btn-call {
  background: var(--green);
  color: var(--white);
}

.btn-call:hover {
  background: var(--green-dark);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1ebe57;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 40px 0 50px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
  opacity: 0.5;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 12px;
  line-height: 1.25;
}

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

.hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin-bottom: 20px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}

/* Image Slider */
.hero-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 240px;
  margin-top: 15px;
}

.hero-slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slider img.active {
  opacity: 1;
}

/* Quote Form */
.hero-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 25px;
  box-shadow: var(--shadow-xl);
}

.hero-form h3 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 1.15rem;
  color: var(--navy);
}

.hero-form .form-group {
  margin-bottom: 10px;
}

.hero-form input,
.hero-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: 13px;
  font-family: var(--font-primary);
  transition: var(--transition);
}

.hero-form input:focus,
.hero-form select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(40,167,69,0.15);
}

.hero-form .btn-submit {
  width: 100%;
  padding: 12px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-primary);
  margin-top: 5px;
}

.hero-form .btn-submit:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-primary);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(40,167,69,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

.btn-green-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-green-outline:hover {
  background: var(--green);
  color: var(--white);
}

/* ===== COUNTER SECTION ===== */
.counters {
  background: var(--off-white);
  padding: 40px 0;
  border-top: 3px solid var(--green);
}

.counters .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.counter-item {
  text-align: center;
  padding: 20px 10px;
}

.counter-item i {
  font-size: 32px;
  color: var(--green);
  margin-bottom: 10px;
}

.counter-item .count {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  font-family: var(--font-heading);
}

.counter-item .count-suffix {
  font-size: 1.4rem;
  color: var(--green);
  font-weight: 700;
}

.counter-item p {
  font-size: 14px;
  color: var(--gray);
  margin-top: 4px;
  font-weight: 500;
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 50px 0;
}

.section-gray {
  background: var(--off-white);
}

.section-title {
  text-align: center;
  margin-bottom: 35px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--green);
  border-radius: 3px;
}

.section-title p {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .icon {
  width: 60px;
  height: 60px;
  background: var(--green-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 26px;
  color: var(--green);
  transition: var(--transition);
}

.service-card:hover .icon {
  background: var(--green);
  color: var(--white);
}

.service-card h4 {
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 12px;
}

.service-card .read-more {
  color: var(--green);
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-card .read-more:hover {
  color: var(--navy);
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  text-align: center;
  padding: 25px 15px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.why-card i {
  font-size: 36px;
  color: var(--green);
  margin-bottom: 12px;
}

.why-card h4 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.why-card p {
  font-size: 13px;
  color: var(--gray);
}

/* ===== PROCESS STEPS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step {
  text-align: center;
  padding: 25px 15px;
  position: relative;
}

.process-step .step-num {
  width: 50px;
  height: 50px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 12px;
  font-family: var(--font-heading);
}

.process-step h4 {
  margin-bottom: 6px;
}

.process-step p {
  font-size: 13px;
  color: var(--gray);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 40px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  font-size: 16px;
}

.cta-banner .btn-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--green);
}

.testimonial-card .stars {
  color: var(--orange);
  margin-bottom: 10px;
  font-size: 14px;
}

.testimonial-card p {
  font-style: italic;
  color: var(--gray);
  margin-bottom: 12px;
  font-size: 14px;
}

.testimonial-card .client {
  font-weight: 600;
  color: var(--navy);
  font-size: 14px;
}

/* ===== QUOTE FORM PAGE ===== */
.quote-section {
  padding: 50px 0;
}

.quote-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--green);
}

.quote-form-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.quote-form-container .form-group {
  margin-bottom: 15px;
}

.quote-form-container label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 14px;
}

.quote-form-container input,
.quote-form-container select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-primary);
  transition: var(--transition);
}

.quote-form-container input:focus,
.quote-form-container select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(40,167,69,0.12);
}

.quote-form-container .btn-submit {
  width: 100%;
  padding: 13px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-primary);
}

.quote-form-container .btn-submit:hover {
  background: var(--green-dark);
}

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 45px 0 40px;
  text-align: center;
  position: relative;
}

.page-banner h1 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 8px;
}

.page-banner .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.page-banner .breadcrumb a {
  color: var(--green);
}

/* ===== CONTENT PAGES ===== */
.content-section {
  padding: 50px 0;
}

.content-section h2 {
  margin-bottom: 12px;
}

.content-section h3 {
  margin: 20px 0 8px;
  color: var(--navy);
}

.content-section p {
  margin-bottom: 12px;
  color: var(--dark-gray);
  line-height: 1.7;
}

.content-section ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.content-section ul li {
  position: relative;
  padding: 4px 0 4px 20px;
  color: var(--dark-gray);
  font-size: 14px;
}

.content-section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

.content-grid-reverse {
  grid-template-columns: 400px 1fr;
}

/* ===== LOCATION GRID ===== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 25px 0;
}

.location-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 15px;
  transition: var(--transition);
}

.location-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.location-card h4 {
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--navy);
}

.location-card p {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 6px;
}

.location-card a {
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-info-card {
  display: flex;
  gap: 15px;
  padding: 18px;
  background: var(--off-white);
  border-radius: var(--radius);
  margin-bottom: 15px;
  align-items: flex-start;
}

.contact-info-card i {
  font-size: 24px;
  color: var(--green);
  min-width: 30px;
  text-align: center;
  margin-top: 3px;
}

.contact-info-card h4 {
  font-size: 14px;
  margin-bottom: 3px;
}

.contact-info-card p {
  font-size: 13px;
  color: var(--gray);
}

.map-placeholder {
  background: var(--light-gray);
  height: 300px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 45px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--green);
}

.footer p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer ul li {
  margin-bottom: 6px;
}

.footer ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer ul li a:hover {
  color: var(--green);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 15px 0;
  margin-top: 30px;
  text-align: center;
  font-size: 13px;
}

.footer-bottom span {
  color: var(--green);
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}

@keyframes pulse {
  0% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
}

/* ===== FLOATING CALL ===== */
.call-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 56px;
  height: 56px;
  background: #007bff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0,123,255,0.4);
  transition: var(--transition);
  animation: pulse-call 2s infinite;
}

.call-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0,123,255,0.5);
}

@keyframes pulse-call {
  0% { box-shadow: 0 4px 20px rgba(0,123,255,0.4); }
  50% { box-shadow: 0 4px 30px rgba(0,123,255,0.6); }
  100% { box-shadow: 0 4px 20px rgba(0,123,255,0.4); }
}

/* ===== SUCCESS MESSAGE ===== */
.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  background: var(--green-accent);
  border-radius: var(--radius);
  color: var(--green-dark);
  font-weight: 600;
  margin-top: 10px;
}

.form-success.show {
  display: block;
}

/* ===== TRUST BADGES ===== */
.trust-badges {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.trust-badge i {
  color: var(--green);
  font-size: 18px;
}

/* ===== INTERNAL LINKS ===== */
.internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.internal-links a {
  padding: 6px 14px;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--navy);
  transition: var(--transition);
}

.internal-links a:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
  }
  .hero-form {
    max-width: 450px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .content-grid,
  .content-grid-reverse {
    grid-template-columns: 1fr;
  }
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 70px 20px 20px;
    gap: 0;
    overflow-y: auto;
    z-index: 999;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu > li > a {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-menu li .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0,0,0,0.2);
    box-shadow: none;
    border-radius: 0;
    display: none;
  }
  .nav-menu li.dropdown-open .dropdown {
    display: block;
  }
  .dropdown a {
    color: rgba(255,255,255,0.8);
    border-bottom-color: rgba(255,255,255,0.05);
  }
  .dropdown a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--green);
  }
  .menu-toggle {
    display: flex;
  }
  .header-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .counters .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .why-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-content h1 {
    font-size: 1.7rem;
  }
  .page-banner h1 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }
  .counters .container {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .why-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
  .locations-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .top-bar {
    display: none;
  }
}

/* ===== DATE INPUT FIX (MOBILE) ===== */
input[type="date"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  background: var(--white);
  padding-right: 40px !important;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  cursor: pointer;
  opacity: 1;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2328a745"><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM9 10H7v2h2v-2zm4 0h-2v2h2v-2zm4 0h-2v2h2v-2z"/></svg>') no-repeat center;
  background-size: 20px;
}
