/* ============================================
   Vizag Appliance Care — Professional Lead Gen CSS
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --primary-mid: #1e3a5f;
  --accent: #10b981;
  --accent-hover: #059669;
  --accent-light: rgba(16, 185, 129, 0.12);
  --cta-orange: #f97316;
  --cta-orange-hover: #ea580c;
  --whatsapp: #25d366;
  --whatsapp-hover: #1da851;
  --call-blue: #3b82f6;
  --call-blue-hover: #2563eb;
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .1);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, .12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, .15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Utility ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--primary);
  color: var(--white);
}

.section-light {
  background: var(--off-white);
}

.section-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: var(--white);
}

.text-center {
  text-align: center;
}

.section-header {
  margin-bottom: 56px;
  text-align: center;
}

.section-header .badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-dark .section-header h2,
.section-gradient .section-header h2 {
  color: var(--white);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p,
.section-gradient .section-header p {
  color: var(--gray-300);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 16px 32px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-call {
  background: var(--call-blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(59, 130, 246, .35);
}

.btn-call:hover {
  background: var(--call-blue-hover);
  box-shadow: 0 6px 28px rgba(59, 130, 246, .45);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .45);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(16, 185, 129, .3);
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.15rem;
  border-radius: 14px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: .9rem;
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--primary);
  color: var(--gray-300);
  font-size: .85rem;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a {
  color: var(--accent);
  font-weight: 600;
  transition: var(--transition);
}

.top-bar a:hover {
  color: var(--white);
}

.top-bar-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* ---------- Header ---------- */
.header {
  background: var(--white);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), #059669);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
}

.logo h1 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.logo h1 span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-body);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links .btn {
  padding: 10px 22px;
  font-size: .9rem;
}

/* Mobile nav */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  margin: 6px 0;
  transition: var(--transition);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  z-index: 999;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  font-weight: 600;
  color: var(--text-body);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav .btn {
  margin-top: 12px;
  width: 100%;
  text-align: center;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, .88) 0%, rgba(30, 58, 95, .78) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 720px;
}

.hero-content .badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, .15);
  color: var(--accent);
  font-size: .85rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(16, 185, 129, .25);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: 1.15rem;
  color: var(--gray-300);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: var(--white);
  padding: 30px 0;
  margin-top: -40px;
  position: relative;
  z-index: 3;
}

.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.trust-item .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.trust-item .number {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.trust-item .label {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-img .price-tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .9rem;
}

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-card-body p {
  font-size: .95rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-list {
  margin-bottom: 20px;
}

.service-list li {
  padding: 4px 0;
  font-size: .9rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

.service-card-actions {
  display: flex;
  gap: 10px;
}

.service-card-actions .btn {
  flex: 1;
  padding: 12px;
  font-size: .85rem;
}

/* ---------- How It Works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--call-blue), var(--accent));
  border-radius: 2px;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-num {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent), #059669);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  margin: 0 auto 20px;
  box-shadow: 0 6px 24px rgba(16, 185, 129, .3);
  border: 4px solid var(--white);
}

.step-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-item p {
  font-size: .9rem;
  color: var(--text-muted);
}

/* ---------- Areas Grid ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.area-tag {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px 20px;
  text-align: center;
  font-weight: 600;
  color: var(--text-body);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.area-tag:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.area-tag::before {
  content: '📍';
  font-size: .9rem;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.testimonial-card .stars {
  display: flex;
  gap: 4px;
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.testimonial-card .quote {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-card .location {
  font-size: .85rem;
  color: var(--text-muted);
}

.testimonial-card .quote-icon {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  color: var(--accent-light);
  line-height: 1;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 2px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pricing-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.pricing-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 4px;
}

.pricing-card .price-note {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing-card ul {
  margin-bottom: 24px;
}

.pricing-card li {
  padding: 8px 0;
  font-size: .9rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--gray-100);
}

.pricing-card li:last-child {
  border-bottom: none;
}

/* ---------- Lead Form ---------- */
.lead-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-xl);
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid var(--gray-100);
}

.lead-form-wrapper h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.lead-form-wrapper>p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-body);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--off-white);
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, .1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ---------- Inline CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  max-width: 1200px;
}

.cta-banner h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-banner p {
  color: var(--gray-300);
  font-size: 1.05rem;
}

.cta-banner .cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer p {
  font-size: .9rem;
  line-height: 1.7;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: .9rem;
  color: var(--gray-400);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-contact div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .9rem;
}

.footer-contact svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  color: var(--gray-500);
}

.footer-legal a {
  color: var(--gray-400);
  margin-left: 20px;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--accent);
}

/* ---------- Floating CTA Bar ---------- */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(15, 23, 42, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 20px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, .25);
}

.floating-cta .container {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.floating-cta .btn {
  flex: 1;
  max-width: 260px;
  padding: 14px 24px;
  font-size: 1rem;
}

/* pulse animation for floating CTA */
@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.floating-cta .btn-whatsapp {
  animation: pulse-ring 2s infinite;
}

/* ---------- Service Page Hero ---------- */
.service-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 100px 0 80px;
  text-align: center;
}

.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, .9) 0%, rgba(30, 58, 95, .82) 100%);
}

.service-hero .container {
  position: relative;
  z-index: 2;
}

.service-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.service-hero p {
  font-size: 1.15rem;
  color: var(--gray-300);
  margin-bottom: 28px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.service-hero .hero-cta {
  justify-content: center;
}

/* ---------- Service Detail Content ---------- */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.detail-features {
  list-style: none;
}

.detail-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-body);
}

.detail-features li::before {
  content: '✅';
  font-size: 1.1rem;
}

.detail-features li:last-child {
  border-bottom: none;
}

.brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.brand-tag {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-body);
  transition: var(--transition);
}

.brand-tag:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ---------- FAQ Accordion ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question .faq-icon {
  font-size: 1.4rem;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 18px;
}

.faq-answer p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Business Info (bottom) ---------- */
.business-info {
  background: var(--gray-100);
  padding: 24px;
  max-width: 800px;
  margin: 0 auto 0;
  border-radius: var(--radius);
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.business-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-body);
  margin-bottom: 10px;
}

.business-info strong {
  color: var(--text-body);
}

.business-info a {
  color: var(--accent);
  text-decoration: underline;
}

/* ---------- Fade-in Animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Body padding for floating CTA ---------- */
body {
  padding-bottom: 80px;
}

/* ========================================
   RESPONSIVE — Full Mobile-First Overhaul
   ======================================== */

/* Prevent iOS text size adjustment */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Ensure minimum touch target size (Google's 48px standard) */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-hero {
    padding-top: 120px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .section-header p {
    font-size: .95rem;
  }

  .trust-strip .container {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .trust-strip {
    margin-top: -24px;
    padding: 20px 0;
  }

  .trust-item {
    padding: 16px 12px;
  }

  .trust-item .number {
    font-size: 1.3rem;
  }

  .trust-item .label {
    font-size: .75rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero {
    min-height: 480px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }

  .cta-banner h2 {
    font-size: 1.4rem;
  }

  .cta-banner p {
    font-size: .95rem;
  }

  .cta-banner .cta-buttons {
    justify-content: center;
    width: 100%;
  }

  .cta-banner .cta-buttons .btn {
    flex: 1;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .lead-form-wrapper {
    padding: 28px 20px;
  }

  .lead-form-wrapper h3 {
    font-size: 1.3rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    min-height: 48px;
    font-size: 16px;
  }

  /* 16px prevents iOS zoom */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-card {
    padding: 24px 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .areas-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .area-tag {
    padding: 10px 12px;
    font-size: .85rem;
  }

  .faq-question {
    padding: 16px 18px;
    min-height: 48px;
    font-size: .95rem;
  }

  .faq-item.open .faq-answer {
    padding: 0 18px 16px;
  }

  .service-hero {
    padding: 80px 0 60px;
  }

  .service-hero h1 {
    font-size: 1.7rem;
  }

  .service-hero p {
    font-size: 1rem;
  }

  .service-card-body {
    padding: 20px 16px;
  }

  .service-card-body h3 {
    font-size: 1.1rem;
  }

  .service-card-actions {
    flex-wrap: wrap;
  }

  .service-card-actions .btn {
    flex: 1 1 140px;
    padding: 12px 10px;
  }

  .step-num {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }

  .top-bar {
    font-size: .75rem;
    padding: 6px 0;
  }

  .top-bar .container {
    flex-wrap: nowrap;
    gap: 6px;
  }

  .top-bar-right {
    gap: 12px;
    font-size: .75rem;
  }

  .mobile-nav a {
    padding: 14px 0;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .floating-cta {
    padding: 10px 12px;
  }

  .floating-cta .container {
    gap: 10px;
  }

  .floating-cta .btn {
    padding: 12px 20px;
    font-size: .92rem;
    max-width: none;
    flex: 1;
  }

  .brands-list {
    gap: 8px;
  }

  .brand-tag {
    padding: 6px 14px;
    font-size: .8rem;
  }

  body {
    padding-bottom: 72px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .section {
    padding: 36px 0;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .section-header .badge {
    font-size: .7rem;
    padding: 5px 14px;
  }

  .trust-strip .container {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .trust-item {
    padding: 14px 10px;
  }

  .trust-item .icon {
    font-size: 1.5rem;
    margin-bottom: 6px;
  }

  .trust-item .number {
    font-size: 1.15rem;
  }

  .trust-item .label {
    font-size: .7rem;
  }

  .hero {
    min-height: 420px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: .9rem;
    line-height: 1.6;
  }

  .hero-content .badge-hero {
    font-size: .75rem;
    padding: 6px 14px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 10px;
  }

  .hero-cta .btn {
    width: 100%;
    padding: 14px 20px;
  }

  .top-bar .container {
    justify-content: center;
    text-align: center;
  }

  .top-bar-right {
    display: none;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .logo h1 {
    font-size: 1.15rem;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .cta-banner h2 {
    font-size: 1.2rem;
  }

  .cta-banner .cta-buttons {
    flex-direction: column;
  }

  .cta-banner .cta-buttons .btn {
    width: 100%;
  }

  .service-hero {
    padding: 70px 0 50px;
  }

  .service-hero h1 {
    font-size: 1.4rem;
  }

  .service-hero p {
    font-size: .9rem;
  }

  .floating-cta .btn {
    font-size: .82rem;
    padding: 11px 14px;
  }

  .lead-form-wrapper {
    padding: 24px 16px;
  }

  .lead-form-wrapper h3 {
    font-size: 1.2rem;
  }

  .pricing-card .price {
    font-size: 1.8rem;
  }

  .pricing-card h3 {
    font-size: 1.05rem;
  }

  .testimonial-card .quote {
    font-size: .9rem;
  }

  .footer {
    padding: 40px 0 0;
  }

  .footer h4 {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .footer p {
    font-size: .82rem;
  }

  .footer-legal a {
    margin-left: 12px;
    font-size: .8rem;
  }

  body {
    padding-bottom: 68px;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }

  .hero-content h1 {
    font-size: 1.35rem;
  }

  .section-header h2 {
    font-size: 1.25rem;
  }

  .trust-strip .container {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item .number {
    font-size: 1rem;
  }

  .floating-cta .btn {
    font-size: .78rem;
    padding: 10px 10px;
  }

  .logo h1 {
    font-size: 1.05rem;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    border-radius: 8px;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .service-hero h1 {
    font-size: 1.25rem;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }
}