/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  background-color: #ffffff;
}

/* NAVBAR */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.nav-container {
  max-width: 1120px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-box {
  width: 32px;
  height: 32px;
  background: #2563eb;
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.site-name {
  font-weight: 700;
  font-size: 18px;
  color: #111827;
}

/* LINKS */
.nav-links {
  display: none;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

.nav-links a:hover {
  color: #2563eb;
}

/* CALL BUTTON */
.call-btn {
  display: none;
  background: #dc2626;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.call-btn:hover {
  background: #b91c1c;
}

/* MOBILE MENU BUTTON */
.menu-btn {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  border-top: 1px solid #e5e7eb;
  padding: 16px;
}

.mobile-menu a {
  display: block;
  padding: 10px;
  color: #374151;
  text-decoration: none;
  border-radius: 6px;
}

.mobile-menu a:hover {
  background: #f3f4f6;
}

.mobile-call-btn {
  margin-top: 10px;
  background: #dc2626;
  color: white;
  padding: 12px;
  text-align: center;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .call-btn {
    display: inline-flex;
  }

  .menu-btn {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }
}
/* Mobile menu toggle */
.mobile-menu {
  display: none;
}

.mobile-menu.open {
  display: block;
}
/* Call Now button (desktop) */
.call-btn {
  background-color: #dc2626; /* red */
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.call-btn:hover {
  background-color: #b91c1c; /* deeper red */
  color: #ffffff;
}

/* =========================
   CALL NOW BUTTON — MOBILE ONLY
========================= */
.mobile-call-btn {
  background-color: #dc2626;      /* red */
  color: #ffffff !important;      /* white text */
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  display: block;
}

/* Mobile hover / tap */
.mobile-call-btn:hover,
.mobile-call-btn:active {
  background-color: #991b1b;      /* deeper red */
  color: #ffffff !important;      /* text stays white */
}
/* =========================
   FORCE MOBILE CALL BUTTON COLORS
   (Overrides mobile-menu <a> hover)
========================= */
@media (max-width: 767px) {

  .mobile-menu a.mobile-call-btn {
    background-color: #dc2626 !important;
    color: #ffffff !important;
  }

  .mobile-menu a.mobile-call-btn:hover,
  .mobile-menu a.mobile-call-btn:active,
  .mobile-menu a.mobile-call-btn:focus {
    background-color: #991b1b !important; /* deeper red */
    color: #ffffff !important;
  }

  /* Prevent mobile tap highlight interference */
  .mobile-menu a.mobile-call-btn {
    -webkit-tap-highlight-color: transparent;
  }
}
/* =========================
   HERO SECTION
========================= */
.hero {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  padding: 100px 24px;
  color: #ffffff;
}

.hero-container {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

/* HERO CONTENT */
.hero-content {
  max-width: 640px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text {
  font-size: 18px;
  color: #e0e7ff;
  margin-bottom: 32px;
}

/* ACTION BUTTONS */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hero-btn.primary {
  background: #dc2626;
  color: #ffffff;
}

.hero-btn.primary:hover {
  background: #b91c1c;
}

.hero-btn.secondary {
  background: #ffffff;
  color: #2563eb;
}

.hero-btn.secondary:hover {
  background: #f3f4f6;
}

/* =========================
   RESPONSIVE (DESKTOP)
========================= */
@media (min-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .hero-title {
    font-size: 52px;
  }
}
/* =========================
   HERO CARD (RIGHT SIDE)
========================= */
.hero-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 32px;
  color: #ffffff;
}

.hero-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* FEATURES LIST */
.hero-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-features li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-features strong {
  font-size: 16px;
  font-weight: 700;
}

.hero-features span {
  font-size: 14px;
  color: #e0e7ff;
}
/* =========================
   SERVICES SECTION
========================= */

.services {
  background-color: #ffffff;
  padding: 100px 24px;
}

.services-container {
  max-width: 1120px;
  margin: auto;
}

/* HEADER */

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
}

.services-header p {
  font-size: 18px;
  color: #6b7280;
}

/* GRID */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

/* CARD */

.service-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 16px;
}

.service-card a {
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

.service-card a:hover {
  text-decoration: underline;
}

/* DESKTOP GRID */

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-header h2 {
    font-size: 42px;
  }
}
/* =========================
   SERVICES GRID FIX (FORCE)
========================= */

.services {
  overflow: visible;
}

.services-container {
  overflow: visible;
}

.services-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

/* MOBILE */
@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   SERVICES (ISOLATED & SAFE)
========================= */

.services {
  padding: 96px 24px;
  background: #ffffff;
}

.services-container {
  max-width: 1120px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
}

.services-header p {
  font-size: 18px;
  color: #6b7280;
}

/* GRID — THIS IS THE FIX */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.service-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.service-icon {
  font-size: 28px;
  display: inline-block;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

.service-card p {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 16px;
}

.service-card a {
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== QUOTE SECTION ===== */

.quote-section {
  background: #f8fafc;
  padding: 96px 24px;
}

.quote-container {
  max-width: 560px;
  margin: 0 auto;
  background: #ffffff;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.quote-container h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
  text-align: center;
}

.quote-subtitle {
  text-align: center;
  color: #64748b;
  margin-bottom: 32px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 600;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 15px;
  outline: none;
}

.form-group textarea {
  resize: none;
  height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563eb;
}

.quote-btn {
  margin-top: 8px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
}

.quote-btn:hover {
  background: #1d4ed8;
}

.privacy-text {
  font-size: 13px;
  color: #64748b;
  text-align: center;
  margin-top: 8px;
}
/* ===== TESTIMONIALS SECTION ===== */

.testimonials-section {
  background: #f8fafc;
  padding: 96px 24px;
}

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

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 8px;
}

.section-header p {
  font-size: 18px;
  color: #64748b;
}

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

.testimonial-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.stars {
  color: #facc15;
  font-size: 20px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 16px;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-card hr {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin-bottom: 16px;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
}

.testimonial-author span {
  font-size: 14px;
  color: #2563eb;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== SERVICE AREAS SECTION ===== */

.areas-section {
  background: #f1f7ff;
  padding: 96px 24px;
}

.areas-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}

.areas-content h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
}

.areas-text {
  font-size: 18px;
  color: #475569;
  max-width: 520px;
  margin-bottom: 32px;
}

.areas-list {
  display: flex;
  gap: 64px;
  margin-bottom: 40px;
}

.areas-list ul {
  list-style: none;
  padding: 0;
}

.areas-list li {
  font-size: 16px;
  margin-bottom: 12px;
}

.areas-btn {
  display: inline-block;
  background: #2563eb;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}

.areas-btn:hover {
  background: #1d4ed8;
}

/* STATS CARD */

.stats-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.stats-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 32px;
}

.stat-item {
  margin-bottom: 24px;
}

.stat-item strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: #2563eb;
}

.stat-item span {
  font-size: 15px;
  color: #475569;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .areas-container {
    grid-template-columns: 1fr;
  }

  .areas-list {
    gap: 32px;
  }
}
/* ===== FINAL CTA SECTION ===== */

.cta-section {
  background: linear-gradient(180deg, #2563eb, #1e40af);
  padding: 96px 24px;
  text-align: center;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.cta-container h2 {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-container p {
  font-size: 18px;
  color: #e0e7ff;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* BUTTONS */

.cta-btn {
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

/* Call Button (Red) */
.cta-btn.call {
  background: #dc2626;
  color: #ffffff;
}

.cta-btn.call:hover {
  background: #b91c1c;
}

/* Quote Button (White) */
.cta-btn.quote {
  background: #ffffff;
  color: #2563eb;
}

.cta-btn.quote:hover {
  background: #f1f5f9;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .cta-container h2 {
    font-size: 32px;
  }

  .cta-container p {
    font-size: 16px;
  }
}
/* FOOTER */
.footer {
  background: linear-gradient(135deg, #0b1220, #0f172a);
  color: #cbd5e1;
  padding-top: 64px;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer h3,
.footer h4 {
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-brand p {
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-links a,
.footer-contact a {
  display: block;
  color: #cbd5e1;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #38bdf8;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 8px;
  border-radius: 50%;
  background: #1e293b;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.footer-socials a:hover {
  background: #2563eb;
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal a {
  margin-left: 16px;
  color: #cbd5e1;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #38bdf8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal a {
    margin-left: 8px;
    margin-right: 8px;
  }
}
/* =========================
   FOOTER CONTACT — FINAL (SINGLE SOURCE OF TRUTH)
========================= */

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact .contact-item .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  font-size: 16px;
}

.footer-contact .contact-item a,
.footer-contact .contact-item span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  color: #cbd5e1;
  text-decoration: none;
}

.footer-contact .contact-item a:hover {
  color: #ffffff;
}
/* =========================
   FOOTER BOTTOM – FIXED
========================= */
.footer-bottom {
  grid-column: 1 / -1; /* 🔑 THIS IS THE KEY FIX */

  width: 100%;
  margin-top: 40px;
  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.15);

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

/* Legal links */
.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Footer legal links */
.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =========================
   ABOUT PAGE – HERO
========================= */
.about-hero {
  background: linear-gradient(135deg, #1e40af, #2563eb);
  color: #fff;
  padding: 120px 20px;
}

.about-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.about-hero p {
  font-size: 18px;
  max-width: 700px;
  line-height: 1.6;
}

/* ==========================
   ABOUT – OUR MISSION
========================== */

.about-mission {
  padding: 80px 20px;
  background: #ffffff;
}

.about-mission-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.mission-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #333;
}

.mission-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
}

/* Stats grid */
.mission-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: #f1f7ff;
  padding: 30px;
  border-radius: 14px;
  text-align: left;
}

.stat-card strong {
  font-size: 32px;
  color: #2563eb;
  display: block;
  margin-bottom: 6px;
}

.stat-card span {
  font-size: 14px;
  color: #333;
}

/* Mobile */
@media (max-width: 768px) {
  .about-mission-container {
    grid-template-columns: 1fr;
  }
}
/* ==========================
   CORE VALUES
========================== */

.core-values {
  padding: 100px 20px;
  background: #f1f5f9;
  text-align: center;
}

.core-values-container {
  max-width: 1200px;
  margin: 0 auto;
}

.core-values h2 {
  font-size: 36px;
  margin-bottom: 60px;
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.core-value svg {
  width: 42px;
  height: 42px;
  fill: #2563eb;
  margin-bottom: 16px;
}

.core-value h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.core-value p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

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

/* Mobile */
@media (max-width: 600px) {
  .core-values-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================
   ABOUT – OUR STORY
========================== */

.about-story {
  padding: 100px 20px;
  background: #ffffff;
}

.about-story-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-story h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #0f172a;
}

.about-story p {
  font-size: 18px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 24px;
}

/* Mobile */
@media (max-width: 600px) {
  .about-story {
    padding: 70px 20px;
  }

  .about-story h2 {
    font-size: 32px;
  }

  .about-story p {
    font-size: 16px;
  }
}

/* ==========================
   ABOUT CTA
========================== */

.about-cta {
  background: #2563eb; /* Primary blue */
  padding: 100px 20px;
  text-align: center;
}

.about-cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-cta h2 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 16px;
}

.about-cta p {
  font-size: 18px;
  color: #e0e7ff;
  margin-bottom: 40px;
}

.about-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* Red button */
.cta-btn.primary {
  background: #dc2626;
  color: #ffffff;
}

.cta-btn.primary:hover {
  background: #b91c1c;
}

/* White button */
.cta-btn.secondary {
  background: #ffffff;
  color: #2563eb;
}

.cta-btn.secondary:hover {
  background: #f1f5f9;
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 24px;
  margin-top: 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;

  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;

  color: #cbd5e1;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

/* Legal links */
.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
}

.footer-legal a:hover {
  color: #38bdf8;
}

/* =========================
   FOOTER BOTTOM — MOBILE
========================= */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================
   SERVICES PAGE – HERO
========================= */

.services-hero {
  background: linear-gradient(180deg, #2563eb, #1e40af);
  padding: 120px 24px;
}

.services-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-hero h1 {
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.services-hero p {
  font-size: 20px;
  color: #e0e7ff;
  max-width: 520px;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .services-hero {
    padding: 90px 20px;
  }

  .services-hero h1 {
    font-size: 40px;
  }

  .services-hero p {
    font-size: 16px;
  }
}

/* =========================
   SERVICES – INTRO
========================= */

.services-intro {
  background: #ffffff;
  padding: 100px 24px;
  text-align: center;
}

.services-intro-container {
  max-width: 900px;
  margin: 0 auto;
}

.services-intro h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
}

.services-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 40px;
}

/* CTA Button */
.services-intro-btn {
  display: inline-block;
  background: #2563eb;
  color: #ffffff;
  padding: 16px 34px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
}

.services-intro-btn:hover {
  background: #1d4ed8;
}

/* Mobile */
@media (max-width: 768px) {
  .services-intro {
    padding: 80px 20px;
  }

  .services-intro h2 {
    font-size: 32px;
  }

  .services-intro p {
    font-size: 16px;
  }
}

/* =========================
   SERVICES GRID (DETAIL)
========================= */

.services-grid-section {
  background: #f8fafc;
  padding: 100px 24px;
}

.services-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.service-detail-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.service-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.service-detail-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}

.service-detail-card p {
  font-size: 16px;
  color: #475569;
  margin-bottom: 18px;
  line-height: 1.6;
}

.service-detail-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
}

/* LIST */
.service-detail-card ul {
  list-style: none;
  margin-bottom: 28px;
  padding: 0;
}

.service-detail-card li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #334155;
}

.service-detail-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

/* BUTTON */
.service-btn {
  display: inline-block;
  background: #2563eb;
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}

.service-btn:hover {
  background: #1d4ed8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-grid-container {
    grid-template-columns: 1fr;
  }
}

/* =========================
   HOW WE WORK
========================= */

.process-section {
  background: #ffffff;
  padding: 100px 24px;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.process-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 60px;
}

/* STEPS GRID */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* SINGLE STEP */
.process-step {
  max-width: 260px;
  margin: 0 auto;
}

.step-circle {
  width: 60px;
  height: 60px;
  background: #dbeafe;
  color: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 18px;
}

.process-step h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

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

@media (max-width: 500px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* FAQ PREVIEW SECTION */
.faq-preview {
  background: #f1f7ff;
  padding: 96px 20px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 48px;
  color: #111;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: #fff;
  padding: 28px 32px;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.faq-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111;
}

.faq-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.faq-link {
  margin-top: 40px;
}

.faq-link a {
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

.faq-link a:hover {
  text-decoration: underline;
}

/* SERVICES PAGE FINAL CTA */
.services-cta {
  background: #2563eb;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.services-cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.services-cta h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.services-cta p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 40px;
}

.services-cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.services-cta .cta-btn {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services-cta .cta-btn.call {
  background: #dc2626;
  color: #fff;
}

.services-cta .cta-btn.quote {
  background: #fff;
  color: #2563eb;
}

.services-cta .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Mobile */
@media (max-width: 768px) {
  .services-cta h2 {
    font-size: 32px;
  }
}

/* =========================
   FOOTER
========================= */

.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 80px 20px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* BRAND */
.footer-brand h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 260px;
}

/* SOCIALS */
.footer-socials {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: #1e293b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: #cbd5e1;
  font-size: 14px;
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #2563eb;
}

/* CONTACT */
.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
}

.footer-contact .icon {
  font-size: 16px;
}

.footer-contact a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #2563eb;
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid #1e293b;
  margin-top: 60px;
  padding: 24px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 14px;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: #94a3b8;
  font-size: 14px;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #2563eb;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================
   PAGE HERO (Shared)
========================== */

.page-hero {
  background: linear-gradient(180deg, #2563eb 0%, #1e40af 100%);
  padding: 120px 20px;
}

.page-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 12px;
}

.page-hero p {
  color: #e5edff;
  font-size: 18px;
  max-width: 520px;
}

/* ==========================
   STATE & CITY SELECTOR
========================== */

.state-city-section {
  padding: 100px 20px;
  background: #ffffff;
}

.state-city-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

/* STATES PANEL */
.states-panel h3 {
  margin-bottom: 16px;
}

.state-list {
  list-style: none;
  padding: 0;
}

.state-item {
  padding: 14px 16px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.state-item:hover {
  background: #e5e7eb;
}

.state-item.active {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

/* CITIES PANEL */
.cities-panel h3 {
  margin-bottom: 24px;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.city-card {
  padding: 16px 18px;
  border-radius: 12px;
  border: 2px solid #dbeafe;
  background: #ffffff;
  transition: all 0.25s ease;
}

.city-card:hover {
  border-color: #2563eb;
  transform: translateY(-4px);
}

.city-name {
  font-weight: 600;
}

.city-state {
  font-size: 14px;
  color: #64748b;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .state-city-container {
    grid-template-columns: 1fr;
  }

  .cities-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   SERVICE DETAILS SECTION
========================= */

.service-details {
  background: #f2f8ff;
  padding: 80px 20px;
}

.service-details-container {
  max-width: 1100px;
  margin: auto;
}

.service-details-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.coverage-card,
.info-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 32px;
}

/* COVERAGE STATS */

.coverage-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #2563eb;
}

.stat-label {
  display: block;
  margin-top: 6px;
  color: #555;
}

/* BUTTON */

.primary-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 22px;
  background: #2563eb;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.primary-btn:hover {
  background: #1e4fd6;
}

/* WHAT TO EXPECT */

.expect-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.expect-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.check {
  color: #16a34a;
  font-size: 20px;
  font-weight: bold;
}

/* =========================
   AREA CTA SECTION
========================= */

.area-cta {
  background: #2563eb;
  padding: 100px 20px;
  text-align: center;
}

.area-cta-container {
  max-width: 900px;
  margin: auto;
  color: #fff;
}

.area-cta h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.area-cta p {
  font-size: 18px;
  margin-bottom: 36px;
  opacity: 0.95;
}

/* BUTTONS */

.area-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* RED BUTTON */
.cta-btn.red {
  background: #dc2626;
  color: #fff;
}

.cta-btn.red:hover {
  background: #b91c1c;
}

/* WHITE BUTTON */
.cta-btn.white {
  background: #fff;
  color: #2563eb;
}

.cta-btn.white:hover {
  background: #e5e7eb;
}

/* ==========================
   REVIEWS – RATING SUMMARY
========================== */

.reviews-rating {
  background: #f1f7ff;
  padding: 80px 20px;
  text-align: center;
}

.reviews-rating-container {
  max-width: 1100px;
  margin: 0 auto;
}

.rating-score {
  font-size: 64px;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 10px;
}

.rating-stars {
  font-size: 22px;
  color: #fbbf24;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.rating-text {
  font-size: 16px;
  color: #334155;
}

/* ==========================
   REVIEWS GRID
========================== */

.reviews-grid-section {
  background: #ffffff;
  padding: 80px 20px;
}

.reviews-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.review-card {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px;
  background: #fff;
  transition: all 0.3s ease;
}

/* Hover Effect */
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  border-color: #c7dbff;
}

.review-stars {
  color: #fbbc04;
  margin-bottom: 10px;
}

.review-tag {
  display: inline-block;
  background: #e6f0ff;
  color: #2563eb;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.review-text {
  font-style: italic;
  line-height: 1.7;
  color: #1f2937;
  margin-bottom: 24px;
}

.review-card hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin-bottom: 18px;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.review-footer strong {
  display: block;
  font-size: 0.95rem;
}

.review-footer span {
  display: block;
  font-size: 0.85rem;
  color: #6b7280;
}

.review-time {
  font-size: 0.8rem;
  color: #6b7280;
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 768px) {
  .reviews-grid-container {
    grid-template-columns: 1fr;
  }
}

.trust-section {
  background: #f2f8ff;
  padding: 80px 20px;
}

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

.trust-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 48px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.trust-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.trust-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
}

.trust-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-title {
    font-size: 26px;
  }
}

.cta-section {
  background: #2563eb; /* strong blue */
  padding: 96px 20px;
  text-align: center;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 18px;
  color: #e0e7ff;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-call {
  background: #dc2626;
  color: #ffffff;
}

.btn-quote {
  background: #ffffff;
  color: #2563eb;
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .cta-title {
    font-size: 28px;
  }

  .cta-subtitle {
    font-size: 16px;
  }
}

/* =========================
   FAQ HERO SECTION
========================= */

.faq-hero {
  background: linear-gradient(180deg, #2563eb 0%, #1e4ed8 100%);
  color: #ffffff;
  padding: 90px 20px;
}

.faq-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-hero h1 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.faq-hero p {
  font-size: 18px;
  opacity: 0.95;
  max-width: 520px;
}
@media (max-width: 768px) {
  .faq-hero {
    padding: 70px 20px;
  }

  .faq-hero h1 {
    font-size: 32px;
  }

  .faq-hero p {
    font-size: 16px;
  }
}

/* =========================
   FAQ HERO
========================= */
.faq-hero {
  background: linear-gradient(180deg, #2f66eb, #1f4fd8);
  padding: 100px 20px;
  color: #fff;
}

.faq-hero-container {
  max-width: 1200px;
  margin: auto;
}

.faq-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.faq-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* =========================
   FAQ HERO (FINAL)
========================= */

.faq-hero {
  background: linear-gradient(180deg, #2563eb 0%, #1e40af 100%);
  padding: 100px 20px;
  color: #ffffff;
}

.faq-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-hero h1 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 16px;
}

.faq-hero p {
  font-size: 18px;
  max-width: 520px;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .faq-hero {
    padding: 70px 20px;
  }

  .faq-hero h1 {
    font-size: 32px;
  }

  .faq-hero p {
    font-size: 16px;
  }
}

/* =========================================================
   FAQ SECTION — SINGLE SOURCE OF TRUTH (ACCORDION)
========================================================= */

.faq-section {
  padding: 80px 20px;
  background: #ffffff;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

/* CATEGORY TITLE */
.faq-category {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin: 60px 0 24px;
}

/* FAQ ITEM */
.faq-item {
  margin-bottom: 18px;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* QUESTION BUTTON */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  text-align: left;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ICON */
.faq-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* ANSWER (CLOSED) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #f8fafc;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

/* ANSWER TEXT */
.faq-answer p {
  padding: 18px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 1000px;
  opacity: 1;
}

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

/* ==========================
   CONTACT INFO SECTION
========================== */

.contact-info-section {
  padding: 100px 20px;
  background: #ffffff;
}

.contact-info-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

/* CARD */
.contact-info-card {
  padding: 30px 20px;
}

/* ICON CIRCLE */
.contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #e0ebff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

/* TITLE */
.contact-info-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

/* DESCRIPTION */
.contact-desc {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* LINK */
.contact-link {
  font-size: 15px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 900px) {
  .contact-info-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* ==========================
   CONTACT SECTION
========================== */

.contact-section {
  padding: 96px 24px;
  background: #ffffff;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

/* LEFT FORM */
.contact-form h2 {
  font-size: 32px;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #d6dde8;
  font-size: 15px;
  transition: border 0.3s, box-shadow 0.3s;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.submit-btn {
  width: 100%;
  margin-top: 16px;
  padding: 16px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37,99,235,0.35);
}

.form-note {
  margin-top: 16px;
  font-size: 13px;
  color: #6b7280;
  text-align: center;
}

/* RIGHT SIDE */
.help-fast h2 {
  font-size: 32px;
  margin-bottom: 32px;
}

.help-step {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.help-step span {
  font-size: 22px;
  font-weight: 700;
  color: #2563eb;
}

.help-step h4 {
  margin: 0 0 6px;
  font-size: 18px;
}

.help-step p {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
}

.quick-tips {
  margin-top: 32px;
  background: #f1f7ff;
  padding: 24px;
  border-radius: 14px;
}

.quick-tips h4 {
  margin-bottom: 12px;
}

.quick-tips ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-tips li {
  margin-bottom: 8px;
  font-size: 14px;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* ==========================
   CONTACT PAGE WRAPPER
========================== */

.contact-page-section {
  padding: 96px 24px;
  background: #ffffff;
}

.contact-page-container {
  max-width: 1200px;
  margin: auto;
}

/* INFO CARDS */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

/* FORM + HELP */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================
   SERVICE AREA CTA
========================== */

.service-area-cta {
  background: #f2f7ff;
  padding: 96px 24px;
}

.service-area-container {
  max-width: 1100px;
  margin: 0 auto;
}

.service-area-container h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0f172a;
}

.service-area-container p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 32px;
  color: #475569;
}

/* CTA BUTTON */
.service-area-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-area-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .service-area-container h2 {
    font-size: 28px;
  }

  .service-area-container p {
    font-size: 16px;
  }
}

/* ==========================
   LEGAL PAGES
========================== */

.legal-page {
  background: #ffffff;
  padding: 100px 24px;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-container h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.last-updated {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 40px;
}

.legal-container h2 {
  font-size: 22px;
  margin: 36px 0 12px;
}

.legal-container p {
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
}

/* ==========================
   FAQ CTA SECTION
========================== */

.faq-cta {
  background: #f4f8ff;
  padding: 100px 20px;
}

.faq-cta-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
}

.faq-cta-text {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* BUTTONS */

.faq-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.faq-btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Call Button (Red) */
.faq-btn-call {
  background: #e53935;
  color: #fff;
}

.faq-btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(229, 57, 53, 0.3);
}

/* Message Button (Blue) */
.faq-btn-message {
  background: #2962ff;
  color: #fff;
}

.faq-btn-message:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(41, 98, 255, 0.3);
}

/* MOBILE */
@media (max-width: 600px) {
  .faq-cta-title {
    font-size: 28px;
  }

  .faq-cta-text {
    font-size: 16px;
  }

  .faq-btn {
    width: 100%;
    text-align: center;
  }
}

/* ==========================
   FAQ ACCORDION
========================== */

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  padding: 10px 0 0;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* SHOW ANSWER WHEN ACTIVE */
.faq-item.active .faq-answer {
  display: block;
}

/* ICON ROTATION */
.faq-icon {
  transition: transform 0.3s ease;
}

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

/* =====================================================
   FAQ STATIC MODE — FINAL OVERRIDE (NO DROPDOWN)
===================================================== */

.faq-question {
  cursor: default;
}

/* Force answers to always be visible */
.faq-answer {
  display: block !important;
  max-height: none !important;
  opacity: 1 !important;
  overflow: visible !important;
  padding: 0 !important;
}

/* Remove accordion visuals */
.faq-icon {
  display: none !important;
}

/* Clean spacing */
.faq-answer p {
  padding: 12px 24px 20px !important;
}


/* ===============================
   SERVICE STANDARDS (REVIEWS REPLACEMENT)
================================ */

.standards-hero {
  background: #f5f9ff;
  padding: 80px 20px;
  text-align: center;
}

.standards-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
  color: #111;
}

.standards-hero p {
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto;
  color: #555;
  line-height: 1.6;
}

.standards-section {
  padding: 80px 20px;
  background: #ffffff;
}

.standards-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.standard-item {
  background: #f9fbff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.standard-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.standard-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1e5bff;
}

.standard-item p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #444;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .standards-hero h1 {
    font-size: 32px;
  }

  .standards-section {
    padding: 60px 16px;
  }
}

/* ================= COOKIE CONSENT ================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: #fff;
  z-index: 9999;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-content a {
  color: #4da3ff;
  text-decoration: underline;
}

.cookie-btn {
  background: #4da3ff;
  color: #fff;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
}

.cookie-btn:hover {
  opacity: 0.9;
}
