/* ============================================
   Color Pros Inc – Main Stylesheet
   Mobile-first, local SEO optimized
   ============================================ */

/* CSS Variables */
:root {
  --white: #ffffff;
  --blue: #1a4b9c;
  --blue-dark: #0f2e6b;
  --blue-light: #e8eef9;
  --green: #2e7d32;
  --green-light: #e8f5e9;
  --red: #c0392b;
  --red-dark: #a93226;
  --gray-light: #f7f7f7;
  --gray: #666666;
  --gray-mid: #999999;
  --dark: #1a1a2e;
  --border: #e0e0e0;
  --shadow: 0 2px 12px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
  --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
  --max-w: 1200px;
}

/* 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);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(1.75rem, 5vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; color: var(--gray); }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  display: none;
}
@media (min-width: 1024px) {
  .top-bar {
    background: var(--blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
  }
}
.top-bar a { color: var(--white); }
.top-bar .top-bar-phone { font-weight: 700; font-size: 1rem; }
.top-bar .top-bar-hours { opacity: 0.85; }
.top-bar-sep { opacity: 0.4; margin: 0 0.25rem; }

/* ============================================
   HEADER / NAV
   ============================================ */
header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.5px;
}
.logo-tagline {
  font-size: 0.7rem;
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.logo-img {
  height: 72px;
  width: auto;
  max-width: 260px;
  display: block;
  object-fit: contain;
}
.footer-logo {
  height: 72px;
  max-width: 260px;
  margin-bottom: 0.75rem;
  background: var(--white);
  border-radius: 10px;
  padding: 8px 14px;
  display: block;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Desktop Nav */
nav.main-nav { display: none; }
nav.main-nav ul {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
nav.main-nav a {
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  transition: var(--transition);
  white-space: nowrap;
}
nav.main-nav a:hover { color: var(--blue-dark); background: var(--blue-light); }
nav.main-nav .has-dropdown { position: relative; }
nav.main-nav .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 0.5rem 0;
  z-index: 100;
  border: 1px solid var(--border);
}
nav.main-nav .has-dropdown:hover .dropdown { display: block; }
nav.main-nav .dropdown a {
  display: block;
  padding: 0.6rem 1.25rem;
  border-radius: 0;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--dark);
}
nav.main-nav .dropdown a:hover { background: var(--blue-light); color: var(--blue); }
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: var(--radius) !important;
  padding: 0.6rem 1.25rem !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }

/* Mobile Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1100;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 1050;
  padding: 5rem 1.5rem 2rem;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav a {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: var(--radius);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { background: var(--blue-light); color: var(--blue); }
.mobile-nav .mobile-cta {
  background: var(--red);
  color: var(--white);
  text-align: center;
  margin-top: 1rem;
  border-bottom: none;
  border-radius: var(--radius);
  font-size: 1.1rem;
}
.mobile-nav .mobile-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--blue);
  color: var(--white);
  text-align: center;
  margin-top: 0.5rem;
  border-bottom: none;
  border-radius: var(--radius);
}
.mobile-submenu-title {
  color: var(--gray-mid) !important;
  font-size: 0.75rem !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.75rem 1rem 0.25rem !important;
  cursor: default;
  border-bottom: none !important;
}
.mobile-submenu a {
  padding-left: 1.75rem !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(192,57,43,0.35); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--blue); }
.btn-outline-blue { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }
.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.875rem; }
.btn-block { width: 100%; justify-content: center; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gray-light);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(247,247,247,0.62);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.25rem;
  text-align: center;
  color: var(--dark);
}
.hero-badge {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.hero h1 { color: var(--dark); margin-bottom: 1rem; }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 620px;
  margin: 0 auto 2rem;
  color: var(--gray);
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.hero-trust {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--dark);
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.85;
}
.trust-icon { font-size: 1.1rem; }

/* ============================================
   SECTIONS
   ============================================ */
section { padding: 3.5rem 1.25rem; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  display: inline-block;
  color: var(--green);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}
.section-title { color: var(--dark); margin-bottom: 0.75rem; }
.section-subtitle { color: var(--gray); font-size: 1.05rem; max-width: 620px; }
.section-header { margin-bottom: 2.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }
.section-bg-gray { background: var(--gray-light); }
.section-bg-blue { background: var(--blue-dark); color: var(--white); }
.section-bg-blue .section-title { color: var(--white); }
.section-bg-blue p { color: rgba(255,255,255,0.85); }

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card-body { padding: 1.25rem; }
.service-card-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.service-card h3 { color: var(--dark); margin-bottom: 0.5rem; font-size: 1.1rem; }
.service-card p { font-size: 0.9rem; margin-bottom: 1rem; }
.service-card-link {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--transition);
}
.service-card-link:hover { color: var(--blue-dark); gap: 0.6rem; }

/* ============================================
   WHY US / FEATURES
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--blue);
}
.feature-text h4 { color: var(--dark); margin-bottom: 0.25rem; }
.feature-text p { font-size: 0.9rem; margin: 0; }

/* ============================================
   STATS
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.stat-card {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label { color: rgba(255,255,255,0.8); font-size: 0.875rem; }

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,46,107,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { color: white; font-size: 0.8rem; font-weight: 600; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 1.75rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }

/* ============================================
   SERVICE AREA MAP / GRID
   ============================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.area-chip {
  background: var(--white);
  border: 2px solid var(--blue-light);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.area-chip:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.area-chip .area-icon { font-size: 0.9rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.review-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 0.75rem; }
.review-text { font-size: 0.95rem; color: var(--dark); font-style: italic; margin-bottom: 1rem; }
.review-author { font-weight: 700; font-size: 0.875rem; color: var(--dark); }
.review-location { font-size: 0.8rem; color: var(--gray-mid); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  padding: 3rem 1.25rem;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; }
.cta-banner .btn-outline-white:hover { color: var(--red); }

/* ============================================
   QUOTE FORM
   ============================================ */
.form-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  -webkit-appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,75,156,0.12);
}
.form-control::placeholder { color: var(--gray-mid); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0; }
.form-note { font-size: 0.8rem; color: var(--gray-mid); text-align: center; margin-top: 0.5rem; }
.form-success {
  display: none;
  background: var(--green-light);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  color: var(--green);
  font-weight: 600;
}
.form-success.show { display: block; }

/* ============================================
   SERVICE AREA PAGE / INNER PAGE HERO
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 3rem 1.25rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.88); margin: 0 auto 1.5rem; max-width: 580px; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.825rem;
  color: rgba(255,255,255,0.7);
  justify-content: center;
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: 0.5; }

/* ============================================
   SERVICE PAGE CONTENT
   ============================================ */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.sidebar-card h4 { color: var(--dark); margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--blue-light); }
.sidebar-services a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 500;
  transition: var(--transition);
  border-bottom: 1px solid var(--gray-light);
}
.sidebar-services a:hover { background: var(--blue-light); color: var(--blue); padding-left: 0.75rem; }
.sidebar-services a:last-child { border-bottom: none; }
.sidebar-phone {
  background: var(--blue-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}
.sidebar-phone h4 { color: var(--white); margin-bottom: 0.5rem; border: none; }
.sidebar-phone .big-phone {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  margin: 0.5rem 0 1rem;
}
.service-content h2 { color: var(--dark); margin: 2rem 0 0.75rem; font-size: 1.5rem; }
.service-content h2:first-child { margin-top: 0; }
.service-content ul {
  list-style: none;
  margin-bottom: 1.25rem;
}
.service-content ul li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--gray);
  font-size: 0.95rem;
}
.service-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.service-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 1.5rem 0;
  box-shadow: var(--shadow);
}
.service-img-wrap img { width: 100%; height: 280px; object-fit: cover; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
}
.footer-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.25rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.footer-brand .logo-name { color: var(--white); font-size: 1.6rem; }
.footer-brand .logo-tagline { color: var(--green); }
.footer-brand p { margin-top: 0.75rem; font-size: 0.9rem; color: rgba(255,255,255,0.6); max-width: 300px; }
.footer-nap { margin-top: 1rem; }
.footer-nap p { font-size: 0.875rem; color: rgba(255,255,255,0.7); margin: 0.3rem 0; }
.footer-nap a { color: rgba(255,255,255,0.85); font-weight: 600; }
.footer-nap a:hover { color: var(--white); }
.footer-col h5 {
  color: var(--white);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.875rem; transition: var(--transition); }
.footer-col a:hover { color: var(--white); padding-left: 3px; }
.nap-item { font-size: 0.875rem; color: rgba(255,255,255,0.7); margin: 0.3rem 0; }
.nap-item a { color: rgba(255,255,255,0.85); font-weight: 600; }
.nap-item a:hover { color: var(--white); }
.nap-label { font-weight: 600; color: rgba(255,255,255,0.5); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; margin-right: 0.25rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }

/* ============================================
   FLOATING CALL BUTTON (mobile)
   ============================================ */
.float-call {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  background: var(--red);
  color: var(--white);
  padding: 0.875rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(192,57,43,0.45);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 900;
  transition: var(--transition);
}
.float-call:hover { background: var(--red-dark); transform: scale(1.04); }
.float-call-icon { font-size: 1.1rem; animation: ring 2s infinite; }
@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-15deg); }
  20% { transform: rotate(15deg); }
  30% { transform: rotate(-10deg); }
  40% { transform: rotate(10deg); }
  50% { transform: rotate(0deg); }
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
}
.step-text h4 { color: var(--dark); margin-bottom: 0.25rem; }
.step-text p { font-size: 0.9rem; margin: 0; }

/* ============================================
   TABS (services page)
   ============================================ */
.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.tab-btn {
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ============================================
   RESPONSIVE — TABLET (≥640px)
   ============================================ */
@media (min-width: 640px) {
  section { padding: 4.5rem 1.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .float-call { display: none; }
}

/* ============================================
   RESPONSIVE — DESKTOP (≥1024px)
   ============================================ */
@media (min-width: 1024px) {
  section { padding: 5rem 2rem; }
  nav.main-nav { display: flex; }
  .hamburger { display: none; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .areas-grid { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-main { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .content-with-sidebar { grid-template-columns: 1fr 320px; }
  .process-steps { grid-template-columns: repeat(4, 1fr); }
  .hero { min-height: 600px; }
  .hero-content { text-align: left; }
  .hero-trust { justify-content: flex-start; }
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.divider { height: 1px; background: var(--border); margin: 2rem 0; }

/* ============================================
   PRINT / ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
