/*
Theme Name:  Jams Recovery
Theme URI:   https://jamsbreakdownrecovery.co.uk
Description: Custom theme for Jam's Breakdown and Recovery Ltd — built for speed, local SEO and maximum conversion.
Author:      Dot Tech Solution
Author URI:  https://dottechsolution.com
Version:     1.0.0
License:     Private
Text Domain: jams-recovery
*/

/* ============================================================
   CSS CUSTOM PROPERTIES — BRAND SYSTEM
   ============================================================ */
:root {
  --navy:       #0D1628;
  --navy-light: #162035;
  --teal:       #00C9A7;
  --teal-dark:  #00A88A;
  --amber:      #F5A623;
  --amber-dark: #D4891A;
  --white:      #FFFFFF;
  --off-white:  #F4FDFB;
  --grey-light: #F7F8FA;
  --grey-mid:   #888888;
  --grey-dark:  #444444;
  --body-text:  #333333;

  --font-main:  'Inter', 'Arial', sans-serif;
  --font-heavy: 'Inter', 'Arial Black', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.18);
  --shadow-teal:0 4px 20px rgba(0,201,167,0.25);

  --transition: 0.25s ease;
  --max-width:  1200px;
  --section-pad:80px 0;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body-text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }
ul, ol { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heavy);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-teal   { color: var(--teal); }
.text-amber  { color: var(--amber); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.text-navy   { color: var(--navy); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heavy);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,201,167,0.35);
}
.btn-amber {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}
.btn-amber:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-call {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
  font-size: 1.15rem;
  padding: 16px 32px;
  border-radius: var(--radius-xl);
}
.btn-call:hover {
  background: var(--amber-dark);
  color: var(--navy);
  transform: scale(1.03);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover { background: #1ebe5b; color: var(--white); }

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section        { padding: var(--section-pad); }
.section-sm     { padding: 48px 0; }
.section-navy   { background: var(--navy); }
.section-dark   { background: var(--navy-light); }
.section-teal   { background: var(--teal); }
.section-off    { background: var(--off-white); }
.section-grey   { background: var(--grey-light); }

.section-label {
  display: inline-block;
  background: rgba(0,201,167,0.12);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
  border: 1px solid rgba(0,201,167,0.3);
}
.section-navy .section-label,
.section-dark .section-label {
  background: rgba(0,201,167,0.18);
}

.section-title { margin-bottom: 12px; }
.section-sub   { font-size: 1.05rem; color: var(--grey-mid); max-width: 640px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-title { color: var(--navy); }
.section-navy .section-header .section-title,
.section-dark .section-header .section-title { color: var(--white); }
.section-navy .section-sub,
.section-dark .section-sub { color: rgba(255,255,255,0.65); }

/* ============================================================
   GRID HELPERS
   ============================================================ */
.grid-2  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-6  { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(0,201,167,0.2);
  transition: all var(--transition);
}
#site-header.scrolled {
  background: rgba(13, 22, 40, 0.99);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-logo img { height: 60px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.2px;
}
.main-nav a:hover,
.main-nav a.current { color: var(--teal); background: rgba(0,201,167,0.08); }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
.dropdown-menu {
  position: absolute;
  top: 100%; left: 0;
  background: var(--navy);
  border: 1px solid rgba(0,201,167,0.2);
  border-radius: var(--radius-sm);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(8px);
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: all; transform: translateY(0);
}
.dropdown-menu a {
  display: block; padding: 10px 20px;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  border-radius: 0;
}
.dropdown-menu a:hover { color: var(--teal); background: rgba(0,201,167,0.06); }

.header-cta {
  display: flex; align-items: center; gap: 12px;
}
.header-phone {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex; align-items: center; gap: 8px;
}
.header-phone .icon { color: var(--teal); font-size: 1.1rem; }
.header-phone span.num { color: var(--amber); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 6px;
  flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: 84px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover; background-position: center;
  opacity: 0.18;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,22,40,0.96) 40%, rgba(13,22,40,0.7) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: 80px 20px;
  max-width: var(--max-width); margin: 0 auto; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,201,167,0.12);
  border: 1px solid rgba(0,201,167,0.35);
  color: var(--teal); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 18px; border-radius: var(--radius-xl);
  margin-bottom: 20px;
}
.hero-title {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title .highlight { color: var(--amber); display: block; }
.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem; line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 20px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.7); font-size: 0.88rem; font-weight: 600;
}
.trust-item .icon { color: var(--teal); font-size: 1rem; }

.hero-image-wrap {
  position: relative; display: flex; justify-content: center;
}
.hero-image-wrap img {
  width: 100%; max-width: 520px;
  filter: drop-shadow(0 20px 60px rgba(0,201,167,0.2));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--teal);
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  max-width: var(--max-width); margin: 0 auto; padding: 0 20px;
}
.trust-bar-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--navy); font-weight: 700; font-size: 0.92rem;
  padding: 6px 28px;
  position: relative;
}
.trust-bar-item:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 22px; background: rgba(13,22,40,0.25);
}
.trust-bar-item .icon { font-size: 1.2rem; }

/* ============================================================
   SERVICES STRIP
   ============================================================ */
.services-strip { padding: 64px 0; }
.service-card {
  background: var(--white);
  border: 1px solid rgba(0,201,167,0.12);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,201,167,0.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  background: rgba(0,201,167,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.8rem;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--teal); color: var(--white);
}
.service-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--navy); }
.service-card p  { font-size: 0.88rem; color: var(--grey-mid); margin: 0; }
.service-card a  {
  display: inline-block; margin-top: 14px;
  font-size: 0.82rem; font-weight: 700; color: var(--teal);
  letter-spacing: 0.5px;
}

/* ============================================================
   USP / WHY CHOOSE
   ============================================================ */
.usp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.usp-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,201,167,0.15);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex; gap: 20px; align-items: flex-start;
}
.usp-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(0,201,167,0.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--teal);
}
.usp-card h4 { color: var(--white); margin-bottom: 6px; font-size: 1rem; }
.usp-card p  { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin: 0; }

/* ============================================================
   HOW IT WORKS — STEPS
   ============================================================ */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 40px; left: calc(16.66% + 20px); right: calc(16.66% + 20px);
  height: 2px; background: linear-gradient(90deg, var(--teal), var(--amber));
  z-index: 0;
}
.step-card {
  text-align: center; position: relative; z-index: 1;
}
.step-num {
  width: 80px; height: 80px;
  background: var(--navy);
  border: 3px solid var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 900; color: var(--teal);
  margin: 0 auto 20px;
  position: relative; z-index: 2;
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step-card p  { font-size: 0.88rem; color: var(--grey-mid); }

/* ============================================================
   AREAS SECTION
   ============================================================ */
.areas-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.area-tag {
  background: rgba(0,201,167,0.08);
  border: 1px solid rgba(0,201,167,0.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  text-align: center; font-size: 0.88rem; font-weight: 600;
  color: var(--navy); transition: all var(--transition);
  cursor: pointer;
}
.area-tag:hover {
  background: var(--teal); color: var(--white);
  border-color: var(--teal);
}

/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
}
.review-stars { color: #FFB800; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text  { font-size: 0.92rem; line-height: 1.7; color: var(--grey-dark); margin-bottom: 18px; font-style: italic; }
.review-author { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.review-date   { font-size: 0.8rem; color: var(--grey-mid); }
.review-badge  {
  position: absolute; top: 20px; right: 20px;
  background: var(--off-white); border-radius: 50%;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--white); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-cat {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--teal); margin-bottom: 10px;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--teal); }
.blog-card p   { font-size: 0.88rem; color: var(--grey-mid); margin-bottom: 16px; }
.blog-meta { font-size: 0.8rem; color: var(--grey-mid); display: flex; gap: 12px; }

/* ============================================================
   STICKY CALL BAR (mobile)
   ============================================================ */
.sticky-call {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--amber);
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.sticky-call a {
  color: var(--navy); font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}

/* WhatsApp float button */
.whatsapp-float {
  position: fixed; bottom: 80px; right: 20px; z-index: 998;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); background: #1ebe5b; color: var(--white); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,201,167,0.08) 0%, transparent 70%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.7); margin-bottom: 36px; font-size: 1.05rem; }
.cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #080D18;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
}
.footer-logo img { height: 70px; margin-bottom: 20px; }
.footer-about { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 1rem;
  transition: all var(--transition);
}
.footer-socials a:hover { background: var(--teal); color: var(--white); }

.footer-heading {
  color: var(--white); font-size: 0.95rem; font-weight: 700;
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,201,167,0.2);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a  { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--teal); }

.footer-contact-item {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 14px; font-size: 0.88rem;
}
.footer-contact-item .icon { color: var(--teal); margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--teal); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 140px 0 60px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,201,167,0.06) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 600px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--teal); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-sm); margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; background: var(--white);
  border: none; cursor: pointer;
  padding: 20px 24px; font-size: 1rem; font-weight: 700;
  color: var(--navy); display: flex; justify-content: space-between; align-items: center;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--off-white); }
.faq-q .toggle { color: var(--teal); font-size: 1.4rem; font-weight: 300; transition: transform var(--transition); }
.faq-item.open .faq-q .toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
  background: var(--off-white);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 20px 24px; font-size: 0.95rem; color: var(--grey-dark); line-height: 1.7; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-md);
  padding: 40px; box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 8px; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-main); font-size: 0.95rem;
  color: var(--body-text); background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,201,167,0.1);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   STATS COUNTER ROW
   ============================================================ */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card {
  text-align: center; padding: 36px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,201,167,0.15);
  border-radius: var(--radius-md);
}
.stat-num {
  font-size: clamp(2.4rem, 4vw, 3.2rem); font-weight: 900;
  color: var(--amber); line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.6); font-weight: 600; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px 0; }

  .main-nav, .header-cta .btn { display: none; }
  .nav-toggle { display: flex; }

  .main-nav.open {
    display: flex; flex-direction: column; gap: 4px;
    position: fixed; top: 84px; left: 0; right: 0; bottom: 0;
    background: var(--navy); padding: 24px 20px;
    overflow-y: auto; z-index: 999;
  }
  .main-nav.open a { padding: 14px 0; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,0.06); border-radius: 0; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; padding: 60px 20px; }
  .hero-image-wrap { order: -1; }
  .hero-image-wrap img { max-width: 320px; margin: 0 auto; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }

  .grid-2, .grid-3, .usp-grid, .steps-grid, .reviews-grid, .blog-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-bar-inner { gap: 12px; }
  .trust-bar-item:not(:last-child)::after { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sticky-call { display: block; }
  .whatsapp-float { bottom: 76px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; justify-content: center; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
