/* =========================================================
   Urban Way Packers and Movers Bangalore – main.css v5.1
   Author: packersandmoversinbangalore.com
   Description: Responsive, SEO-friendly homepage styling
   ========================================================= */

:root {
  --accent: #0b6cf0;
  --accent-dark: #074db3;
  --muted: #666;
  --bg-light: #f8f9fb;
  --max-width: 1200px;
}

/* Reset & Base */
* {
  box-sizing: border-box;
}
body {
  font-family: "Inter", system-ui, Segoe UI, Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  margin: 0;
  background: var(--bg-light);
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: 0.25s color;
}
a:hover {
  color: var(--accent-dark);
}

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
header {
  background: #fff;
  border-bottom: 1px solid #e6e9ef;
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 56px;
  width: auto;
}
nav {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
nav a {
  font-weight: 500;
}

/* Buttons */
.btn {
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s background;
}
.btn:hover {
  background: var(--accent-dark);
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 9px 14px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s all;
}
.btn-ghost:hover {
  background: var(--accent);
  color: #fff;
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: center;
  padding: 48px 0;
}
.hero h1 {
  font-size: 34px;
  margin: 0 0 12px;
}
.hero p {
  color: var(--muted);
  margin: 0 0 18px;
}

/* Quote Card */
.quote-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
}
form .row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
form input,
form select,
form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #e3e6eb;
  border-radius: 8px;
  font-size: 15px;
  transition: border 0.2s;
}
form input:focus,
form select:focus,
form textarea:focus {
  border-color: var(--accent);
  outline: none;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.service {
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
  transition: 0.3s transform, 0.3s box-shadow;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.08);
}
.service h3 {
  margin: 0 0 6px;
}
.service p {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 10px;
}

/* Section Defaults */
section {
  padding: 36px 0;
}
h2.section-title {
  margin: 0 0 16px;
  font-size: 22px;
  color: #000;
}
ul.features {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.why-grid div {
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
}
.why-grid h4 {
  margin: 0 0 8px;
}

/* FAQ */
.faq .q {
  background: #fff;
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 8px;
}
.faq strong {
  display: block;
  font-size: 16px;
  color: #000;
}
.faq p {
  color: var(--muted);
  font-size: 14px;
  margin: 4px 0 0;
}

/* Testimonials */
.testimonials {
  display: flex;
  gap: 12px;
  overflow: hidden;
  will-change: transform;
}
.testimonial {
  background: #fff;
  padding: 16px;
  border-radius: 10px;
  min-width: 260px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
}
.testimonial strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}
.testimonial p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

/* Cities Grid */
.cities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
}
.cities a {
  display: block;
  background: #fff;
  padding: 10px 12px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(16, 24, 40, 0.05);
  transition: 0.3s all;
  font-weight: 500;
}
.cities a:hover {
  background: var(--accent);
  color: #fff;
}

/* Footer */
footer {
  background: #0b1730;
  color: #fff;
  padding: 28px 0;
  margin-top: 24px;
}
footer a {
  color: #cfe3ff;
  transition: 0.25s;
}
footer a:hover {
  color: #fff;
}
footer small {
  color: #cfe3ff;
  display: block;
  margin-top: 10px;
}

/* Floating CTA Buttons */
.floating-ctas {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}
.floating-ctas a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.15);
  font-weight: 600;
}
.call-btn {
  background: #0b6cf0;
}
.wa-btn {
  background: #25d366;
}

/* Utilities */
.badge {
  display: inline-block;
  padding: 6px 8px;
  border-radius: 999px;
  background: #eef3ff;
  color: var(--accent);
  margin: 6px 6px 0 0;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .topbar {
    flex-direction: column;
    gap: 10px;
  }
  .brand img {
    height: 48px;
  }
  nav {
    justify-content: center;
  }
  .hero h1 {
    font-size: 26px;
  }
}
