/* ══════════════════════════════════════════════════════════════
   Best Movers USA — Brand Palette: Navy + Green + Graphite
   ══════════════════════════════════════════════════════════════ */

:root {
  --primary: #1E3A5F;          /* Brand Primary Blue */
  --primary-dark: #142940;
  --primary-light: #2a5080;
  --accent: #5FAF3A;           /* Brand Primary Green */
  --accent-hover: #4f9930;
  --accent-glow: #7bc954;
  --accent-light: rgba(95, 175, 58, 0.12);
  --dark: #3A3A3A;             /* Brand Dark Gray */
  --text: #3A3A3A;
  --text-light: #6b7280;
  --white: #ffffff;
  --off-white: #F5F5F5;        /* Brand Light Gray */
  --border: #e4e9f0;
  --shadow: 0 4px 24px rgba(30, 58, 95, 0.08);
  --shadow-lg: 0 16px 48px rgba(30, 58, 95, 0.14);
  --shadow-green: 0 12px 32px rgba(95, 175, 58, 0.3);
  --radius: 14px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  font-size: 112.5%;  /* 18px base — scales all rem values up ~12.5% */
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.accent { color: var(--accent); }

.section-tag {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 2px;
  background: var(--accent);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.section-sub {
  color: var(--text-light);
  font-size: 1.2rem;
  max-width: 680px;
  margin: 0 auto 56px;
}

section { text-align: center; }

/* ── Buttons ──────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(95, 175, 58, 0.28);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-primary:hover::after { transform: translateX(100%); }

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-green);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-nav {
  background: var(--primary);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.85rem;
  margin-left: 12px;
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.18);
  border-color: var(--primary);
}

.btn-nav:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(95, 175, 58, 0.35);
}

.btn-lg { padding: 17px 42px; font-size: 1.05rem; }

/* ── Top Bar ──────────────────────────────────────────────── */

.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(95, 175, 58, 0.25);
}

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

.top-contact { display: flex; gap: 28px; }
.top-contact a { color: rgba(255,255,255,0.85); }
.top-contact a:hover { color: var(--accent); }
.top-contact i { margin-right: 8px; color: var(--accent); }

.top-social { display: flex; gap: 16px; }
.top-social a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: all var(--transition); }
.top-social a:hover { color: var(--accent); transform: translateY(-2px); }

/* ── Navbar ───────────────────────────────────────────────── */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(30, 58, 95, 0.08);
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 0 rgba(30, 58, 95, 0.06), 0 8px 24px rgba(30, 58, 95, 0.06);
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 28px;
  min-height: 72px;
}

.logo { display: flex; align-items: center; line-height: 0; }
.logo img {
  height: 180px;
  width: auto;
  margin: -60px 0;
  transition: transform var(--transition);
}
.logo:hover img { transform: scale(1.04); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(30, 58, 95, 0.04);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(30, 58, 95, 0.06);
}
.nav-links a:not(.btn) {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--primary);
  padding: 9px 18px;
  border-radius: 999px;
  transition: all var(--transition);
}
.nav-links a:not(.btn):hover {
  color: var(--accent);
  background: var(--white);
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.08);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ══════════════════════════════════════════════════════════════
   HERO — Real Truck Driving Video
   ══════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: left;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 41, 64, 0.88) 0%, rgba(20, 41, 64, 0.65) 55%, rgba(20, 41, 64, 0.35) 100%),
    linear-gradient(180deg, rgba(20, 41, 64, 0.2) 0%, transparent 40%, rgba(20, 41, 64, 0.55) 100%);
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
  width: 100%;
}

.hero-content { max-width: 720px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(95, 175, 58, 0.18);
  border: 1px solid rgba(95, 175, 58, 0.5);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.live-dot {
  width: 8px; height: 8px;
  background: var(--accent-glow);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 12px var(--accent-glow);
}

.live-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent-glow);
  animation: pulse-ring 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3.5); opacity: 0; }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--accent-glow) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-sub {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  max-width: 620px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}

.hero-features i {
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: bounce 2.5s ease-in-out infinite;
}

.scroll-indicator::after {
  content: '';
  width: 2px; height: 28px;
  background: linear-gradient(180deg, var(--accent-glow), transparent);
  border-radius: 2px;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ── Services ─────────────────────────────────────────────── */

.services {
  padding: 110px 0;
  background: var(--white);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  text-align: left;
  padding: 38px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-glow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.service-icon {
  width: 60px; height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
  margin-bottom: 22px;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--accent);
  color: var(--white);
  transform: rotate(-6deg) scale(1.05);
  box-shadow: var(--shadow-green);
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

.service-price {
  display: inline-block;
  margin-top: 18px;
  padding: 7px 16px;
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

/* ── About ────────────────────────────────────────────────── */
/* FIXED CLASS */
.about-img-placeholder {
  width: 100%;
  max-width: 520px;

  height: 460px;

  margin: 0 auto;

  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );

  border-radius: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 35px;

  position: relative;
  overflow: hidden;

  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

.about-img-placeholder::before {
  content: '';

  position: absolute;

  top: -50%;
  right: -30%;

  width: 400px;
  height: 400px;

  background: radial-gradient(
    circle,
    rgba(95,175,58,0.25) 0%,
    transparent 70%
  );

  border-radius: 50%;
}

.about-img-placeholder img {
  position: relative;
  z-index: 2;

  max-width: 82%;

  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.25));
}

.about-badge {
  position: absolute;

  bottom: -18px;
  right: -18px;

  width: 120px;
  height: 120px;

  background: var(--accent);

  color: var(--white);

  border-radius: 50%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  box-shadow: 0 14px 35px rgba(95,175,58,0.4);
}

.badge-num {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.badge-text {
  font-size: 0.72rem;
  text-align: center;
  line-height: 1.3;
  margin-top: 4px;
}

/* Why Grid Styles */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 20px;
  margin: 32px 0 28px;
  position: relative;
  z-index: 2;
}

/* ===== STRONGER SHADOWS FOR WHY CARDS (24/7, Top Rates, No Contracts) ===== */
.why-card {
  background: var(--off-white);
  padding: 18px 12px;
  border-radius: 28px;
  text-align: center;
  transition: all 0.3s ease;
  /* MUCH STRONGER default shadow */
  box-shadow: 0 15px 25px -8px rgba(0, 0, 0, 0.25),
              0 6px 12px -6px rgba(0, 0, 0, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Even stronger hover effect */
.why-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: white;
  /* EXTRA STRONG shadow on hover */
  box-shadow: 0 25px 35px -12px rgba(0, 0, 0, 0.35),
              0 12px 20px -10px rgba(0, 0, 0, 0.25),
              0 0 0 2px var(--accent),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.why-card h4 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.why-card p {
  font-size: 0.75rem;
  margin-bottom: 0;
  color: var(--text-light);
  font-weight: 500;
}

.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 2;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.about-list i { 
  color: var(--accent); 
  font-size: 1.0rem; 
}

/* Responsive */
@media (max-width: 900px) {
  .about-text {
    padding: 32px 24px;
    box-shadow: 0 30px 40px -15px rgba(0, 0, 0, 0.3);
  }
  .about-text:hover {
    transform: translateY(-8px);
  }
  .why-grid {
    gap: 12px;
  }
  .why-card h4 {
    font-size: 1.3rem;
  }
  .why-card {
    box-shadow: 0 10px 18px -6px rgba(0, 0, 0, 0.2);
  }
  .why-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 18px 25px -10px rgba(0, 0, 0, 0.3);
  }
}

@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-text {
    order: 1;
  }
  .about-media {
    order: 2;
  }
}
/* ── Process ──────────────────────────────────────────────── */
/* ── Process ──────────────────────────────────────────────── */

.process {
  padding: 110px 0;
  background: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(95, 175, 58, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.process .section-title { color: var(--white); }
.process .section-sub { color: rgba(255,255,255,0.7); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
  position: relative;
  z-index: 2;
}

.process-grid.three-col { grid-template-columns: repeat(3, 1fr); }

.process-step {
  text-align: left;
  padding: 36px 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
}

.process-step:hover {
  background: rgba(95, 175, 58, 0.12);
  border-color: rgba(95, 175, 58, 0.5);
  transform: translateY(-6px);
}

.step-num {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-glow), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  line-height: 1;
}

.process-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.process-step p {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ── Testimonials ─────────────────────────────────────────── */

.testimonials {
  padding: 110px 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  text-align: left;
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  background: var(--white);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--accent-light);
  line-height: 1;
  font-weight: 700;
}

.testimonial-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.stars { color: #f6b100; font-size: 0.9rem; margin-bottom: 18px; display: flex; gap: 2px; position: relative; z-index: 2; }

.testimonial-card > p {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.author-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-glow));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(95, 175, 58, 0.3);
}

.testimonial-author strong {
  display: block;
  font-size: 0.98rem;
  color: var(--primary);
  font-weight: 700;
}

.testimonial-author span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ── FAQ ──────────────────────────────────────────────────── */

.faq {
  padding: 110px 0;
  background: var(--off-white);
}

.faq-list { max-width: 800px; margin: 0 auto; text-align: left; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  background: var(--white);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover { border-color: rgba(95, 175, 58, 0.3); }

.faq-item.active {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(95, 175, 58, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  font-family: inherit;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--accent); }

.faq-question i {
  font-size: 0.85rem;
  color: var(--accent);
  transition: transform var(--transition);
}

.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 26px 22px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── Quote Form ───────────────────────────────────────────── */

.quote {
  padding: 110px 0;
  background: var(--white);
  position: relative;
}

.quote-form {
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
  padding: 44px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group { display: flex; flex-direction: column; }
.form-group.full-width { margin-bottom: 24px; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: all var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-light);
}

.form-group textarea { resize: vertical; }

.quote-form .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ── Contact ──────────────────────────────────────────────── */

.about {
  padding: 110px 0;
  background: var(--off-white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  text-align: left;
}

.about-media {
  position: relative;
}

/* FIXED CLASS SELECTOR */
.about-img-placeholder {
  width: 100%;
  height: 520px;
  background: linear-gradient(135deg, #dbeeff 0%, #c9e4ff 100%);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 25px 70px rgba(0,0,0,0.18),
    0 0 30px rgba(80,140,255,0.12);
}

.about-img-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(120,180,255,0.35) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-glow 10s ease-in-out infinite;
}

@keyframes float-glow {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -20px) scale(1.1);
  }
}

.about-img-placeholder img {
  position: relative;
  z-index: 2;
  max-width: 75%;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.22));
  animation: truck-float 5s ease-in-out infinite;
}

@keyframes truck-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.about-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #5FAF3A, #7bc954);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 18px 40px rgba(95,175,58,0.4),
    0 0 25px rgba(95,175,58,0.25);
  z-index: 3;
  animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% {
    box-shadow:
      0 18px 40px rgba(95,175,58,0.4),
      0 0 25px rgba(95,175,58,0.25);
  }
  50% {
    box-shadow:
      0 25px 50px rgba(95,175,58,0.55),
      0 0 40px rgba(95,175,58,0.35);
  }
}

.badge-num {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.badge-text {
  font-size: 0.72rem;
  text-align: center;
  line-height: 1.3;
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* MAIN BOX LIGHT BLUE */
.about-text {
  background: linear-gradient(135deg, #edf6ff 0%, #dceeff 100%);
  border-radius: 38px;
  padding: 42px 34px;
  box-shadow:
    0 35px 65px rgba(0,0,0,0.18),
    0 10px 25px rgba(0,0,0,0.08),
    0 0 0 2px rgba(120,180,255,0.15);
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.about-text::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 38px;
  background: radial-gradient(circle at top left,
    rgba(255,255,255,0.65),
    transparent 55%);
  pointer-events: none;
}

.about-text:hover {
  transform: translateY(-12px);
  box-shadow:
    0 45px 80px rgba(0,0,0,0.24),
    0 18px 35px rgba(0,0,0,0.12),
    0 0 0 3px rgba(120,180,255,0.25);
}

.about-text .section-tag,
.about-text .section-title {
  position: relative;
  z-index: 2;
  text-align: left;
}

.about-text .section-tag {
  margin-left: 0;
}

.about-text p {
  color: #4b5563;
  margin-bottom: 28px;
  font-size: 1rem;
  position: relative;
  z-index: 2;
}

/* WHY GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 18px;
  margin: 30px 0 26px;
  position: relative;
  z-index: 2;
}

/* LIGHT BLUE MINI BOXES */
.why-card {
  background: linear-gradient(135deg, #e8f3ff 0%, #d7ebff 100%);
  padding: 18px 14px;
  border-radius: 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow:
    0 15px 25px -8px rgba(0,0,0,0.16),
    0 6px 12px -6px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.7);
}

.why-card:hover {
  transform: translateY(-8px) scale(1.03);
  background: linear-gradient(135deg, #f4faff 0%, #e3f1ff 100%);
  box-shadow:
    0 28px 45px -12px rgba(0,0,0,0.24),
    0 12px 22px -10px rgba(0,0,0,0.15),
    0 0 0 2px rgba(120,180,255,0.3);
}

.why-card h4 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 800;
}

.why-card p {
  font-size: 0.82rem;
  margin-bottom: 0;
  color: #5b6472;
  font-weight: 500;
}

/* LIST */
.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 12px;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 2;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.about-list i {
  color: var(--accent);
  font-size: 1.05rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-text {
    padding: 30px 24px;
  }

  .why-card h4 {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text {
    order: 1;
  }

  .about-media {
    order: 2;
  }

  .about-list {
    grid-template-columns: 1fr;
  }

  .about-img-placeholder {
    height: 400px;
  }
}
/* ===== CONTACT SECTION WITH SAME STRONGER SHADOW TREATMENT ===== */
/* ===== PREMIUM LIGHT BLUE CONTACT SECTION ===== */

.contact {
  padding: 90px 0;
  background: linear-gradient(135deg, #f4f9ff 0%, #eaf4ff 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(120,180,255,0.18), transparent 70%);
  border-radius: 50%;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* LIGHT BLUE BOXES */
.contact-card {
  position: relative;
  background: linear-gradient(135deg, #edf6ff 0%, #dceeff 100%);
  border-radius: 28px;
  padding: 38px 30px;
  text-align: center;
  overflow: hidden;
  transition: all 0.35s ease;

  border: 1px solid rgba(255,255,255,0.8);

  box-shadow:
    0 18px 40px rgba(0,0,0,0.14),
    0 8px 18px rgba(0,0,0,0.08),
    0 0 24px rgba(120,180,255,0.12);
}

/* glow layer */
.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at top right,
    rgba(255,255,255,0.65),
    transparent 45%);

  pointer-events: none;
}

/* animated shine */
.contact-card::after {
  content: '';
  position: absolute;
  top: -120%;
  left: -40%;
  width: 70%;
  height: 300%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.45),
    transparent
  );

  transform: rotate(25deg);
  transition: 0.8s ease;
}

.contact-card:hover::after {
  left: 140%;
}

/* hover effect */
.contact-card:hover {
  transform: translateY(-10px) scale(1.03);

  background: linear-gradient(135deg, #f7fbff 0%, #e8f3ff 100%);

  box-shadow:
    0 30px 60px rgba(0,0,0,0.22),
    0 15px 30px rgba(0,0,0,0.12),
    0 0 35px rgba(120,180,255,0.22);

  border-color: rgba(120,180,255,0.3);
}

/* ICON */
.contact-icon {
  width: 72px;
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #6fb7ff, #4f9cff);

  color: var(--white);
  border-radius: 50%;

  font-size: 1.45rem;
  margin: 0 auto 20px;

  transition: all 0.35s ease;

  box-shadow:
    0 16px 30px rgba(79,156,255,0.35),
    0 0 20px rgba(79,156,255,0.18);
}

.contact-card:hover .contact-icon {
  transform: scale(1.08) rotate(-5deg);

  box-shadow:
    0 22px 40px rgba(79,156,255,0.45),
    0 0 28px rgba(79,156,255,0.28);
}

/* TITLE */
.contact-card h3 {
  font-size: 1.18rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 800;
  position: relative;
  z-index: 2;
}

/* LINKS */
.contact-card p a {
  color: #348dff;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.contact-card p a:hover {
  color: #1d6fe0;
  text-shadow: 0 0 10px rgba(52,141,255,0.28);
}

/* NOTE */
.contact-note {
  color: #64748b;
  font-size: 0.86rem;
  margin-top: 8px;
  position: relative;
  z-index: 2;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-card {
    padding: 30px 24px;
  }
}
/* Responsive */
@media (max-width: 900px) {
  .about-text {
    padding: 32px 24px;
    box-shadow: 0 30px 40px -15px rgba(0, 0, 0, 0.3);
  }
  .about-text:hover {
    transform: translateY(-8px);
  }
  .why-grid {
    gap: 12px;
  }
  .why-card h4 {
    font-size: 1.3rem;
  }
  .why-card {
    box-shadow: 0 10px 18px -6px rgba(0, 0, 0, 0.2);
  }
  .why-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 18px 25px -10px rgba(0, 0, 0, 0.3);
  }
  .contact-grid {
    gap: 20px;
  }
  .contact-card {
    padding: 28px 20px;
    box-shadow: 0 10px 18px -6px rgba(0, 0, 0, 0.2);
  }
  .contact-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 18px 25px -10px rgba(0, 0, 0, 0.3);
  }
}

@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-text {
    order: 1;
  }
  .about-media {
    order: 2;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
/* LINKS */

.legal-section {
  padding: 55px 0;
  background:
    radial-gradient(circle at top left, rgba(212,175,55,0.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(95,175,58,0.08), transparent 30%),
    linear-gradient(135deg, #f8fafc 0%, #eef5ea 100%);
  border-top: 1px solid rgba(212,175,55,0.14);
}

.legal-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.legal-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 18px 34px;
  border-radius: 22px;

  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(212,175,55,0.22);

  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;

  overflow: hidden;
  transition: all .4s ease;

  /* Strong pop-out shadow */
  box-shadow:
    0 18px 40px rgba(0,0,0,0.14),
    0 0 25px rgba(212,175,55,0.16),
    0 0 60px rgba(95,175,58,0.10);
}

/* glowing animated layer */
.legal-link::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 24px;

  background:
    linear-gradient(
      135deg,
      rgba(212,175,55,0.55),
      rgba(95,175,58,0.25),
      rgba(212,175,55,0.15)
    );

  opacity: 0;
  transition: opacity .4s ease;
  z-index: 0;
}

/* moving shine effect */
.legal-link::after {
  content: '';
  position: absolute;
  top: -120%;
  left: -40%;
  width: 70%;
  height: 320%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.55),
    transparent
  );

  transform: rotate(25deg);
  transition: .7s ease;
}

.legal-link:hover::before {
  opacity: 1;
}

.legal-link:hover::after {
  left: 140%;
}

.legal-link:hover {
  transform: translateY(-8px) scale(1.05);

  color: #5FAF3A;

  border-color: #D4AF37;

  box-shadow:
    0 28px 70px rgba(0,0,0,0.18),
    0 0 40px rgba(212,175,55,0.28),
    0 0 85px rgba(95,175,58,0.18);
}

.legal-link i,
.legal-link span {
  position: relative;
  z-index: 2;
}

.legal-link i {
  color: #D4AF37;
  font-size: 1.1rem;

  text-shadow:
    0 0 10px rgba(212,175,55,0.35),
    0 0 22px rgba(95,175,58,0.18);
}

/* ── Footer ───────────────────────────────────────────────── */

.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-glow), var(--accent));
}

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

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 110px;
  width: auto;
  filter: brightness(1.1);
}

.footer-col p { font-size: 0.92rem; line-height: 1.8; }

.footer-social { display: flex; gap: 12px; margin-top: 22px; }

.footer-social a {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(95, 175, 58, 0.4);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--accent);
  margin-top: 10px;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: all var(--transition); }
.footer-col ul a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact li { display: flex; align-items: center; gap: 10px; }
.footer-contact i { color: var(--accent); width: 16px; text-align: center; }

.footer-bottom {
  margin-top: 56px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.85rem;
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 1024px) {
  .hero h1 { font-size: 3.4rem; }
  .hero-inner { padding: 80px 24px; }

  .services-grid,
  .testimonials-grid,
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid.three-col { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .about-inner { gap: 40px; }
}

@media (max-width: 768px) {
  .top-bar-inner { flex-direction: column; gap: 10px; }

  .logo img { height: 130px; margin: -32px 0; }
  .navbar-inner { min-height: 64px; padding: 8px 20px; }
  .menu-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 6px;
    box-shadow: var(--shadow-lg);
    border: none;
    border-top: 1px solid var(--border);
    border-radius: 0;
  }

  .nav-links a:not(.btn) { width: 100%; padding: 12px 16px; border-radius: var(--radius-sm); }
  .btn-nav { margin-left: 0; width: 100%; justify-content: center; }

  .nav-links.active { display: flex; }
  .navbar-inner { position: relative; }

  .hero { min-height: 75vh; }
  .hero-inner { padding: 60px 20px; }
  .hero h1 { font-size: 2.6rem; }
  .hero-sub { font-size: 1rem; }
  .hero-features { gap: 14px; }
  .hero-features li { font-size: 0.88rem; }

  .scroll-indicator { display: none; }

  .section-title { font-size: 2rem; }

  .services-grid,
  .testimonials-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .process-grid,
  .process-grid.three-col { grid-template-columns: 1fr; }

  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .about-text .section-tag,
  .about-text .section-title { text-align: center; }
  .about-text .section-tag { margin-left: auto; margin-right: auto; }
  .about-list { grid-template-columns: 1fr; text-align: left; }
  .about-badge { right: 10px; bottom: -10px; width: 100px; height: 100px; }
  .badge-num { font-size: 1.5rem; }

  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 28px; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-col h4::after { margin: 10px auto 0; }
  .footer-social { justify-content: center; }
  .footer-contact li { justify-content: center; }
}
