/* ===========================
   AAA Garage Door Services
   Main Stylesheet
=========================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.7;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* --- Colors --- */
:root {
  --red:    #c0392b;
  --red-dark: #a93226;
  --dark:   #1a1a1a;
  --mid:    #2c2c2c;
  --gray:   #f5f5f5;
  --light:  #fff;
  --border: #e0e0e0;
  --text:   #444;
  --heading:#1a1a1a;
}

/* ===========================
   TOP BAR
=========================== */
.top-bar {
  background: var(--dark);
  color: #ccc;
  font-size: 13px;
  padding: 7px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: #ccc; }
.top-bar a:hover { color: #fff; }
.top-bar .top-contact { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar .top-contact span { display: flex; align-items: center; gap: 6px; }
.top-bar .top-social { display: flex; gap: 12px; }
.top-bar .top-social a { color: #ccc; font-size: 14px; }
.top-bar .top-social a:hover { color: var(--red); }

/* ===========================
   HEADER / NAV
=========================== */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
.logo img { height: 65px; width: auto; }
nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}
nav ul li a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
nav ul li a:hover,
nav ul li a.active {
  background: var(--red);
  color: #fff;
}
/* Dropdown */
nav ul li { position: relative; }
nav ul li .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  border-top: 3px solid var(--red);
  z-index: 100;
}
nav ul li:hover .dropdown { display: block; }
nav ul li .dropdown li a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  border-radius: 0;
  text-transform: none;
  letter-spacing: 0;
  color: var(--dark);
  border-bottom: 1px solid #f0f0f0;
}
nav ul li .dropdown li a:hover { background: var(--red); color: #fff; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: 0.3s;
}
.mobile-nav {
  display: none;
  background: #fff;
  border-top: 3px solid var(--red);
  padding: 10px 0;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { flex-direction: column; }
.mobile-nav ul li a {
  display: block;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid #f0f0f0;
  text-transform: uppercase;
}
.mobile-nav ul li a:hover { background: var(--red); color: #fff; }

/* ===========================
   CONTAINER
=========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===========================
   HERO BANNER
=========================== */
.hero {
  background: linear-gradient(135deg, rgba(26,26,26,0.88) 0%, rgba(192,57,43,0.80) 100%),
              url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400') center/cover no-repeat;
  color: #fff;
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  text-shadow: 1px 2px 8px rgba(0,0,0,0.4);
}
.hero p {
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,0.92);
}
.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.hero-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-badge i { color: #f5c518; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-white:hover { background: #fff; color: var(--red); }
.btn-dark {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.btn-dark:hover { background: var(--red); border-color: var(--red); }

/* ===========================
   TRUST BAR
=========================== */
.trust-bar {
  background: var(--red);
  color: #fff;
  padding: 18px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 40px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
}
.trust-item i { font-size: 18px; opacity: 0.9; }

/* ===========================
   SECTIONS
=========================== */
section { padding: 64px 0; }
.section-gray { background: var(--gray); }
.section-dark { background: var(--dark); color: #fff; }
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-dark .section-title h2 { color: #fff; }
.section-title p {
  font-size: 16px;
  color: var(--text);
  max-width: 640px;
  margin: 0 auto;
}
.section-dark .section-title p { color: rgba(255,255,255,0.75); }
.divider {
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 10px auto 0;
  border-radius: 3px;
}

/* ===========================
   SERVICE CARDS
=========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 8px 28px rgba(0,0,0,0.13); }
.service-card-icon {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 28px 20px 20px;
  font-size: 40px;
}
.service-card-body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading);
}
.service-card-body p { font-size: 14px; color: var(--text); flex: 1; margin-bottom: 16px; }
.service-card-body .btn { font-size: 13px; padding: 9px 18px; }

/* ===========================
   WHY CHOOSE US
=========================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
}
.why-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 28px 22px;
  text-align: center;
}
.why-item i { font-size: 36px; color: var(--red); margin-bottom: 14px; }
.why-item h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.why-item p { font-size: 13px; color: rgba(255,255,255,0.72); }

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 8px;
  padding: 26px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border-left: 4px solid var(--red);
}
.stars { color: #f5c518; margin-bottom: 12px; font-size: 16px; }
.testimonial-card p { font-size: 14px; color: var(--text); font-style: italic; margin-bottom: 14px; }
.testimonial-author { font-weight: 700; font-size: 14px; color: var(--heading); }

/* ===========================
   TWO-COL CONTENT
=========================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.content-block h2 {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 14px;
  line-height: 1.25;
}
.content-block p { font-size: 15px; color: var(--text); margin-bottom: 14px; }
.check-list { margin: 16px 0 22px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 9px;
}
.check-list li i { color: var(--red); margin-top: 3px; flex-shrink: 0; }
.img-block img {
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* ===========================
   PAGE HERO (inner pages)
=========================== */
.page-hero {
  background: linear-gradient(135deg, rgba(26,26,26,0.9) 0%, rgba(192,57,43,0.82) 100%),
              url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400') center/cover no-repeat;
  color: #fff;
  padding: 72px 0 60px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(24px, 4.5vw, 46px);
  font-weight: 800;
  margin-bottom: 14px;
}
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.88); max-width: 600px; margin: 0 auto 20px; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: #fff; }

/* ===========================
   SERVICE DETAIL PAGE
=========================== */
.service-detail { padding: 60px 0; }
.service-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.service-content h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--heading);
  margin: 28px 0 12px;
}
.service-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading);
  margin: 22px 0 10px;
}
.service-content p { font-size: 15px; color: var(--text); margin-bottom: 14px; line-height: 1.75; }
.service-content ul, .service-content ol {
  margin: 12px 0 18px 0;
  padding-left: 0;
}
.service-content ul li, .service-content ol li {
  font-size: 15px;
  color: var(--text);
  padding: 6px 0 6px 24px;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}
.service-content ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--red);
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 12px;
}
.service-content a { color: var(--red); font-weight: 600; text-decoration: underline; }
.service-content a:hover { color: var(--red-dark); }
.service-content .feature-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 22px 0;
}
.feature-box {
  background: var(--gray);
  border-radius: 6px;
  padding: 18px;
  border-left: 4px solid var(--red);
}
.feature-box h4 { font-size: 14px; font-weight: 700; color: var(--heading); margin-bottom: 6px; }
.feature-box p { font-size: 13px; color: var(--text); margin: 0; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  overflow: hidden;
}
.sidebar-card-header {
  background: var(--red);
  color: #fff;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 15px;
}
.sidebar-card-body { padding: 18px; }
.sidebar-phone {
  font-size: 24px;
  font-weight: 800;
  color: var(--red);
  text-align: center;
  display: block;
  margin: 10px 0;
}
.sidebar-services ul li {
  padding: 9px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}
.sidebar-services ul li:last-child { border-bottom: none; }
.sidebar-services ul li a {
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.sidebar-services ul li a i { color: var(--red); font-size: 12px; }
.sidebar-services ul li a:hover { color: var(--red); }
.hours-list li { font-size: 13px; color: var(--text); padding: 6px 0; border-bottom: 1px dashed #e0e0e0; }
.hours-list li:last-child { border-bottom: none; }
.hours-badge { display: inline-block; background: #27ae60; color: #fff; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 10px; margin-left: 6px; }
.contact-form .form-row { margin-bottom: 14px; }
.contact-form label { font-size: 13px; font-weight: 600; color: var(--heading); display: block; margin-bottom: 5px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 14px;
  font-family: inherit;
  color: var(--dark);
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
}
.contact-form textarea { height: 100px; resize: vertical; }

/* ===========================
   FAQ ACCORDION
=========================== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  background: #fff;
  font-weight: 600;
  font-size: 15px;
  color: var(--heading);
  transition: background 0.2s;
}
.faq-question:hover { background: #fdf5f5; }
.faq-question.open { background: var(--red); color: #fff; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-icon { font-size: 18px; transition: transform 0.3s; }
.faq-answer {
  display: none;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text);
  background: #fafafa;
  border-top: 1px solid var(--border);
  line-height: 1.7;
}
.faq-answer.open { display: block; }

/* ===========================
   AREAS SERVED
=========================== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.area-tag {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.area-tag i { color: var(--red); font-size: 12px; }
.area-tag:hover { background: var(--red); color: #fff; border-color: var(--red); }
.area-tag:hover i { color: #fff; }

/* ===========================
   CTA BAND
=========================== */
.cta-band {
  background: var(--red);
  color: #fff;
  padding: 56px 0;
  text-align: center;
}
.cta-band h2 { font-size: clamp(22px, 4vw, 38px); font-weight: 800; margin-bottom: 14px; }
.cta-band p { font-size: 16px; opacity: 0.9; margin-bottom: 28px; }
.cta-band .btn-outline-white:hover { color: var(--red); }

/* ===========================
   STATS
=========================== */
.stats-bar { background: var(--dark); color: #fff; padding: 40px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-num { font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: var(--red); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ===========================
   CONTACT PAGE
=========================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 15px;
  color: var(--text);
  align-items: flex-start;
}
.contact-info-list .ci-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-list strong { display: block; font-size: 14px; color: var(--heading); margin-bottom: 2px; }
.map-container { border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); margin-top: 30px; }
.map-container iframe { display: block; width: 100%; }
.full-contact-form {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 36px;
}
.full-contact-form h3 { font-size: 22px; font-weight: 800; color: var(--heading); margin-bottom: 8px; }
.full-contact-form p { font-size: 14px; color: var(--text); margin-bottom: 24px; }
.full-contact-form .form-row { margin-bottom: 16px; }
.full-contact-form .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.full-contact-form label { font-size: 13px; font-weight: 600; color: var(--heading); display: block; margin-bottom: 5px; }
.full-contact-form input,
.full-contact-form select,
.full-contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 14px;
  font-family: inherit;
  color: var(--dark);
  transition: border 0.2s;
}
.full-contact-form input:focus,
.full-contact-form select:focus,
.full-contact-form textarea:focus { outline: none; border-color: var(--red); }
.full-contact-form textarea { height: 130px; resize: vertical; }
.form-success {
  display: none;
  background: #eafaf1;
  border: 1px solid #a9dfbf;
  color: #1e8449;
  padding: 14px 18px;
  border-radius: 5px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ===========================
   ABOUT PAGE
=========================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.team-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  text-align: center;
}
.team-card-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #c0392b, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: rgba(255,255,255,0.5);
}
.team-card-body { padding: 18px; }
.team-card-body h4 { font-size: 16px; font-weight: 700; color: var(--heading); margin-bottom: 4px; }
.team-card-body span { font-size: 13px; color: var(--red); font-weight: 600; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-icon {
  width: 50px;
  height: 50px;
  background: var(--red);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.value-item h4 { font-size: 15px; font-weight: 700; color: var(--heading); margin-bottom: 5px; }
.value-item p { font-size: 13px; color: var(--text); }

/* ===========================
   FOOTER
=========================== */
footer {
  background: #111;
  color: rgba(255,255,255,0.8);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}
.footer-logo { margin-bottom: 14px; }
.footer-logo img { height: 55px; filter: brightness(0) invert(1); }
.footer-col p { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.65); margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.footer-col ul li a i { color: var(--red); font-size: 11px; }
.footer-col ul li a:hover { color: #fff; }
.footer-contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.footer-contact-list li i { color: var(--red); margin-top: 3px; flex-shrink: 0; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--red); }
.footer-bottom {
  background: #0a0a0a;
  padding: 16px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--red); }

/* ===========================
   PRICING TABLE
=========================== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.pricing-table th {
  background: var(--dark);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
}
.pricing-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); }
.pricing-table tr:nth-child(even) td { background: var(--gray); }
.pricing-table tr:hover td { background: #fdf5f5; }

/* ===========================
   PROCESS STEPS
=========================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.process-step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.process-step h4 { font-size: 15px; font-weight: 700; color: var(--heading); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--text); }

/* ===========================
   STICKY PHONE BUTTON (mobile)
=========================== */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--red);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 16px rgba(192,57,43,0.5);
  z-index: 999;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(192,57,43,0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(192,57,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(192,57,43,0); }
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .service-layout { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: repeat(2, 1fr); display: grid; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .full-contact-form .form-row-2 { grid-template-columns: 1fr; }
  .service-content .feature-boxes { grid-template-columns: 1fr; }
  .sticky-call { display: flex; }
  section { padding: 44px 0; }
  .hero { padding: 70px 0 60px; }
  .page-hero { padding: 52px 0 42px; }
}
@media (max-width: 480px) {
  .top-bar .top-social { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-badges { flex-direction: column; align-items: center; }
  .trust-bar .container { flex-direction: column; text-align: center; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}
