/* ===== GLOBAL VARIABLES ===== */
:root {
  --primary-color: #E11B22;
  --secondary-color: #141414;
  --accent-color: #FFB400;
  --background-color: #FFFFFF;
  --light-background: #F4F4F3;
  --text-color: #1C1C1C;
  --secondary-text: #666666;
  --border-color: #E4E4E4;

  --heading-font: 'Archivo', sans-serif;
  --body-font: 'Inter', sans-serif;

  --header-height: 76px;
}

/* ===== GLOBAL RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--body-font);
  color: var(--text-color);
  background: var(--background-color);
  line-height: 1.6;
}


/* =========================
   SECTION LABEL COMPONENT
========================= */
.section-label{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:20px;
}
.section-label span{
    display:block;
    width:40px;
    height:1px;
    background:var(--primary-color);
}
.section-label p{
    margin:0;
    font-family:var(--body-font);
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
    color:var(--primary-color);
    text-transform:uppercase;
}

/* Center Alignment Version */
.section-label.center{
    justify-content:center;
}

/* Mobile Responsive */
@media(max-width:600px){
    .section-label span{
        width:25px;
    }
    .section-label p{
        font-size:12px;
    }
}



a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

/* Darker, more solid on scroll */
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: var(--header-height);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ===== BRAND / LOGO ===== */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo {
  height: 38px;
  width: auto;
  display: block;
}

.brand-name {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-transform: uppercase;
}

.brand-name-thin {
  font-weight: 500;
  color: var(--accent-color);
  margin-left: 4px;
}

/* ===== NAVIGATION ===== */
.nav-list {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link {
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 15px;
  color: #dcdcdc;
  letter-spacing: 0.3px;
  position: relative;
  padding: 4px 0;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.28s ease;
}

.nav-link:hover { color: #ffffff; }
.nav-link:hover::after { width: 100%; }

.nav-link.active { color: var(--accent-color); }
.nav-link.active::after { width: 100%; }

/* ===== RIGHT ACTIONS ===== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: right;
}

.phone-label {
  font-size: 11px;
  font-weight: 500;
  color: #9a9a9a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.phone-number {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.btn-cta {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  background: var(--primary-color);
  padding: 11px 22px;
  border-radius: 4px;
  letter-spacing: 0.4px;
  transition: transform 0.2s ease, background 0.25s ease;
  white-space: nowrap;
}

.btn-cta:hover {
  background: #c4151b;
  transform: translateY(-1px);
}

/* ===== HAMBURGER (hidden on desktop) ===== */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle .bar {
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger -> X when open */
.nav-toggle.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .header-inner { padding: 0 20px; }

  .nav-toggle { display: flex; }

  /* Mobile slide-down menu */
  .main-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .main-nav.open { max-height: 420px; }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
  }

  .nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-link {
    display: block;
    padding: 16px 24px;
    font-size: 16px;
  }

  .nav-link::after { display: none; }

  .header-phone { display: none; }
}

@media (max-width: 480px) {
  .btn-cta { padding: 9px 16px; font-size: 13px; }
  .brand-name { font-size: 17px; }
  .brand-logo { height: 32px; }
}


/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 60px) 0 80px;
  background: #0c0c0c url("images/hero-bg.jpg") center / cover no-repeat;
  overflow: hidden;
}

/* Cinematic dark overlay for depth + readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.72) 45%, rgba(8,8,8,0.55) 100%),
    linear-gradient(180deg, rgba(8,8,8,0.75) 0%, rgba(8,8,8,0.35) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 64px;
}

/* --- Left content --- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  font-family: var(--body-font);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #e8e8e8;
  margin-bottom: 26px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(225,27,34,0.25);
}

.hero-title {
  font-family: var(--heading-font);
  font-weight: 800;
  color: #ffffff;
  font-size: clamp(2.6rem, 5.2vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -1px;
  margin-bottom: 22px;
}

.hero-title .highlight { color: var(--primary-color); }

.hero-sub {
  font-family: var(--body-font);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.65;
  color: #c6c6c6;
  margin-bottom: 28px;
}

.hero-points {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 34px;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 500;
  color: #ececec;
}

.tick {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: var(--primary-color);
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(225,27,34,0.35);
}

/* --- Buttons --- */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 15px;
  color: #141414;
  background: linear-gradient(135deg, #FFC42E 0%, #FFB400 100%);
  padding: 15px 26px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 24px rgba(255,180,0,0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255,180,0,0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 15px 24px;
  border-radius: 8px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}

/* --- Trust row --- */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body-font);
  font-size: 14px;
  color: #bdbdbd;
}
.hero-trust strong { color: #ffffff; }
.stars { color: var(--accent-color); letter-spacing: 2px; font-size: 15px; }

/* ===== QUOTE CARD (glassmorphism) ===== */
.quote-card {
  position: relative;
  background: rgba(18,18,18,0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 34px 32px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}

/* Subtle brand accent bar at top of card */
.quote-card::before {
  content: "";
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.quote-head { margin-bottom: 22px; }

.quote-title {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.7rem;
  color: #ffffff;
  margin-bottom: 6px;
  text-align: center;
}

.quote-sub {
  font-family: var(--body-font);
  font-size: 14px;
  color: #a9a9a9;
  margin-bottom: 14px;
  text-align: center;
}

.quote-rating { display: flex; align-items: center; gap: 9px; }
.rating-text { font-family: var(--body-font); font-size: 13px; color: #9a9a9a; }

/* --- Form --- */
.quote-form { display: flex; flex-direction: column; gap: 16px; }

.field { display: flex; flex-direction: column; gap: 7px; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field label {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #9a9a9a;
}

.quote-form input,
.quote-form select {
  width: 100%;
  font-family: var(--body-font);
  font-size: 15px;
  color: #ffffff;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 13px 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  outline: none;
}

.quote-form input::placeholder { color: #7f7f7f; }

.quote-form input:focus,
.quote-form select:focus {
  border-color: var(--primary-color);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 3px rgba(225,27,34,0.18);
}

/* Custom select */
.select-wrap { position: relative; }
.quote-form select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 42px;
}
.quote-form select option { color: #141414; }  /* readable in native dropdown */
.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #b5b5b5;
  pointer-events: none;
}

.btn-submit {
  width: 100%;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 16px;
  color: #141414;
  background: linear-gradient(135deg, #FFC42E 0%, #FFB400 100%);
  border: none;
  border-radius: 10px;
  padding: 15px;
  cursor: pointer;
  margin-top: 4px;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 22px rgba(255,180,0,0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255,180,0,0.42);
}

.quote-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--body-font);
  font-size: 13px;
  line-height: 1.5;
  color: #bdbdbd;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 14px;
  margin-top: 4px;
}
.quote-note svg { color: var(--accent-color); flex-shrink: 0; margin-top: 1px; }
.quote-note strong { color: #ffffff; font-weight: 600; }

/* ===== HERO RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .hero { padding: calc(var(--header-height) + 48px) 0 64px; }
  .hero-sub { max-width: 100%; }
}

@media (max-width: 520px) {
    .hero-trust{display:block;text-align:center;}
  .hero-inner { padding: 0 20px; }
  .quote-card { padding: 26px 20px; }
  .field-row { grid-template-columns: 1fr; }
  .hero-actions { gap: 12px; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
}




/* ================================================== 
TRUST BAR 
==================================================  */
.trust-bar {
  background: var(--background-color);
  padding: 20px 32px;
}

.trust-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;                          /* the gap reveals the divider colour */
  background: var(--border-color);   /* becomes the divider lines */
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(20, 20, 20, 0.06);
}

.trust-item {
  background: var(--background-color);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  transition: background 0.25s ease;
}

.trust-item:hover { background: #fafafa; }

/* --- Premium icon --- */
.trust-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 16px;
  color: var(--primary-color);
  background: linear-gradient(145deg, #ffffff 0%, #ffe9ea 100%);
  border: 1px solid rgba(225, 27, 34, 0.12);
  box-shadow:
    0 10px 22px rgba(225, 27, 34, 0.18),   /* soft red glow */
    0 4px 10px rgba(20, 20, 20, 0.06),      /* grounding shadow */
    inset 0 1px 0 rgba(255, 255, 255, 0.9); /* top highlight */
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-item:hover .trust-icon {
  transform: translateY(-3px);
  box-shadow:
    0 16px 30px rgba(225, 27, 34, 0.28),
    0 6px 14px rgba(20, 20, 20, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* --- Text --- */
.trust-title {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.25;
  margin-bottom: 4px;
}

.trust-desc {
  font-family: var(--body-font);
  font-size: 14px;
  color: var(--secondary-text);
  line-height: 1.4;
}

/* ===== RESPONSIVE ===== */

/* Tablet: 2 x 2, still icon-left */
@media (max-width: 992px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 15px; }
}

/* Mobile: keep all 4 boxes (2 x 2), stack icon on top, centre text, compact */
@media (max-width: 600px) {
  .trust-bar { padding: 15px; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  .trust-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 22px 12px;
  }

  .trust-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .trust-title { font-size: 14.5px; }
  .trust-desc  { font-size: 12.5px; }
}



/* ==================================================
About Us
================================================== */
.about {
  background: var(--background-color);
  padding: 60px 32px;
}

.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}

.about-heading {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: var(--text-color);
  margin: 0 0 20px;
}

.about-heading .highlight { color: var(--primary-color); }

.about-desc {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--secondary-text);
  margin-bottom: 28px;
  max-width: 540px;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 36px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--body-font);
  font-size: 15.5px;
  font-weight: 500;
  color: var(--text-color);
}

.about-list .check {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 7px;
  color: #ff0000;
  background: #e11b2212;

}

.about-btn { margin-top: 4px; }

.about-visual {
  position: relative;
}

.about-image-wrap {
  position: relative;
  z-index: 2;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(20, 20, 20, 0.18);
}

.about-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.about-frame {
  position: absolute;
  z-index: 1;
  right: -18px;
  bottom: -18px;
  width: 55%;
  height: 60%;
  border: 2px solid var(--primary-color);
  border-radius: 18px;
  opacity: 0.28;
}

@media (max-width: 992px) {
  .about { padding: 30px 28px; }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .about-desc { max-width: 100%; }
  .about-image-wrap img { aspect-ratio: 16 / 10; }
  .about-frame { width: 40%; height: 45%; }
}

@media (max-width: 600px) {
  .about { padding: 56px 18px; }
  .about-inner { gap: 36px; }
  .about-list li { font-size: 14.5px; }
  .about-btn { width: 100%; justify-content: center; }
  .about-frame { display: none; }
}


/* ==================================================
Our Services
================================================== */
.services {
  background: var(--light-background);
  padding: 60px 32px;
}

.services-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.services-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 30px;
}

.services-heading {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--text-color);
  margin: 0 0 18px;
}

.services-heading .highlight { color: var(--primary-color); }

.services-sub {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--secondary-text);
  margin: 0 auto;
  max-width: 560px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 0 0 32px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 1px 2px rgba(20, 20, 20, 0.04);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color), #ff5057);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
  z-index: 3;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 24px 50px rgba(20, 20, 20, 0.12);
}

.service-card:hover::before { transform: scaleY(1); }

.service-icon {
  display: block;
  width: 100%;
  height: 190px;
  margin-bottom: 24px;
  overflow: hidden;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon img { transform: scale(1.05); }

.service-title {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-color);
  margin: 0 0 10px;
  padding: 0 30px;
}

.service-desc {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.65;
  color: var(--secondary-text);
  margin: 0 0 20px;
  padding: 0 30px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--primary-color);
  padding: 0 30px;
}

.service-link svg { transition: transform 0.25s ease; }
.service-card:hover .service-link svg { transform: translateX(4px); }

.services-cta {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

@media (max-width: 992px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-icon { height: 170px; }
}

@media (max-width: 600px) {
  .services { padding: 30px 18px; }
  .services-head { margin-bottom: 32px; }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .service-card { padding: 0 0 20px; }
  .service-icon { height: 130px; margin-bottom: 16px; }
  .service-title { font-size: 16px; padding: 0 16px; }
  .service-desc { font-size: 13.5px; margin-bottom: 14px; padding: 0 16px; }
  .service-link { font-size: 13px; padding: 0 16px; }
  .services-cta { margin-top: 32px; }
  .btn-primary { width: 100%; justify-content: center; }
}


/* ==================================================
Guarantee Banner
================================================== */
.guarantee {
  background: var(--background-color);
  padding: 60px 32px;
}

.guarantee-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 44px;
  padding: 46px 54px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(120% 140% at 15% 0%, rgba(225, 27, 34, 0.28) 0%, rgba(225, 27, 34, 0) 55%),
    linear-gradient(120deg, #1c1c1c 0%, #141414 45%, #0c0c0c 100%);
  box-shadow: 0 30px 70px rgba(20, 20, 20, 0.22);
}

.guarantee-badge {
  position: relative;
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 6px rgba(225, 27, 34, 0.14),
    0 18px 40px rgba(225, 27, 34, 0.4);
}

.guarantee-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.guarantee-title {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin: 0 0 14px;
}

.guarantee-title .highlight { color: var(--accent-color); }

.guarantee-desc {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.7;
  color: #c6c6c6;
  margin: 0;
  max-width: 760px;
}

@media (max-width: 992px) {
  .guarantee-inner {
    gap: 34px;
    padding: 38px 40px;
  }
  .guarantee-badge { width: 130px; height: 130px; }
}

@media (max-width: 600px) {
  .guarantee { padding: 30px 18px; }
  .guarantee-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 32px 24px;
    border-radius: 20px;
  }
  .guarantee-badge { width: 150px; height: 150px; }
  .guarantee-desc { font-size: 14.5px; }
}


/* ==================================================
Residential & Commercial Split
================================================== */
.split {
  background: var(--secondary-color);
}

.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-col {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 400px 48px 60px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.split-col::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,12,12,0.25) 0%, rgba(12,12,12,0.55) 55%, rgba(12,12,12,0.92) 100%);
  z-index: 1;
}

.split-residential { background-image: url("images/Residential.jpg.jpeg"); }
.split-commercial  { background-image: url("images/Commercial.jpg.jpeg"); }

.split-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.split-title {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin: 0 0 16px;
}

.split-desc {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.7;
  color: #d0d0d0;
  margin: 0 0 28px;
}

.split-btn { margin-top: 4px; }

@media (max-width: 992px) {
  .split-col { padding: 320px 36px 48px; }
}

@media (max-width: 700px) {
  .split-inner { grid-template-columns: 1fr; }
  .split-col { padding: 300px 24px 44px; }
}

@media (max-width: 600px) {
  .split-col { padding: 100px 18px 36px; }
  .split-desc { font-size: 14.5px; }
  .split-btn { width: 100%; justify-content: center; }
}


/* ==================================================
Google Reviews
================================================== */
.reviews {
  background: var(--light-background);
  padding: 60px 32px;
}

.reviews-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.reviews-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}

.reviews-heading {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: var(--text-color);
  margin: 0;
}

.reviews-heading .highlight { color: var(--primary-color); }

.reviews-carousel {
  --per-view: 3;
  --gap: 24px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.carousel-viewport {
  overflow: hidden;
  flex: 1;
}

.carousel-track {
  display: flex;
  gap: var(--gap);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
  flex: 0 0 calc((100% - (var(--per-view) - 1) * var(--gap)) / var(--per-view));
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 10px 30px rgba(20, 20, 20, 0.06);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review-avatar {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
}

.review-person {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  margin-right: auto;
}

.review-name {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-color);
}

.review-role {
  font-family: var(--body-font);
  font-size: 12.5px;
  color: var(--secondary-text);
}

.review-google { flex-shrink: 0; }

.review-stars {
  color: var(--accent-color);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-family: var(--body-font);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-color);
  margin: 0;
}

.carousel-btn {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--background-color);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(20, 20, 20, 0.08);
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, opacity 0.25s ease;
}

.carousel-btn:hover {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  transform: scale(1.06);
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
  background: var(--background-color);
  color: var(--text-color);
  border-color: var(--border-color);
}

.reviews-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 44px;
}

.reviews-rating {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--body-font);
  font-size: 15px;
  color: var(--secondary-text);
}

.reviews-rating strong {
  font-family: var(--heading-font);
  font-size: 18px;
  color: var(--text-color);
}

.reviews-rating .review-stars { margin-bottom: 0; }

@media (max-width: 992px) {
  .reviews-carousel { --per-view: 2; }
}

@media (max-width: 700px) {
  .reviews-carousel { --per-view: 1; }
}

@media (max-width: 600px) {
  .reviews { padding: 30px 18px; }
  .reviews-head { margin-bottom: 32px; }
  .reviews-carousel { gap: 8px; }
  .carousel-btn { width: 40px; height: 40px; }
  .reviews-footer {
    flex-direction: column;
    gap: 18px;
    margin-top: 32px;
  }
  .btn-primary { width: 100%; justify-content: center; }
}



/* ==================================================
Projects
================================================== */
.projects {
  position: relative;
  background: var(--secondary-color);
  padding: 60px 32px;
  overflow: hidden;
}

.projects-watermark {
  position: absolute;
  top: 6px;
  left: 24px;
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: clamp(4rem, 12vw, 11rem);
  line-height: 1;
  letter-spacing: -2px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.projects-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: center;
}

.projects-intro .section-label p { color: var(--primary-color); }

.projects-heading {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin: 0 0 16px;
}

.projects-heading .highlight { color: var(--accent-color); }

.projects-sub {
  font-family: var(--body-font);
  font-size: 15.5px;
  line-height: 1.7;
  color: #b8b8b8;
  margin: 0 0 32px;
}

.projects-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 200px;
}

.proj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.proj-btn.next {
  color: #141414;
  background: linear-gradient(135deg, #FFC42E 0%, #FFB400 100%);
  border: none;
  box-shadow: 0 8px 22px rgba(255, 180, 0, 0.28);
}

.proj-btn.next:hover { transform: translateY(-2px); }

.proj-btn.prev {
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.proj-btn.prev:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.proj-btn:disabled {
  opacity: 0.4;
  cursor: default;
  transform: none;
}

.projects-carousel { min-width: 0; }

.projects-viewport { overflow: hidden; }

.projects-track {
  --per-view: 2;
  --gap: 28px;
  display: flex;
  gap: var(--gap);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card {
  flex: 0 0 calc((100% - (var(--per-view) - 1) * var(--gap)) / var(--per-view));
}

.project-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 22px;
}

.project-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img { transform: scale(1.05); }

.project-cat {
  display: inline-block;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.project-title {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 22px;
  color: #ffffff;
  margin: 0 0 12px;
}

.project-desc {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.65;
  color: #b8b8b8;
  margin: 0 0 20px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 14.5px;
  color: #ffffff;
  transition: color 0.25s ease;
}

.project-link .plus {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 16px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.project-link:hover { color: var(--primary-color); }
.project-link:hover .plus {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
}

@media (max-width: 992px) {
  .projects-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }
  .projects-track { --per-view: 2; }
  .projects-nav {
    flex-direction: row;
    max-width: none;
  }
  .proj-btn { flex: 1; }
}

@media (max-width: 700px) {
  .projects-track { --per-view: 1; }
  .project-image img { height: 260px; }
}

@media (max-width: 600px) {
  .projects { padding: 30px 24px; }
  .projects-watermark { font-size: 22vw; }
  .project-title { font-size: 19px; }
}


/* ==================================================
Working Process
================================================== */
.process {
  background: var(--background-color);
  padding: 60px 32px;
}

.process-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.process-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}

.process-heading {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text-color);
  margin: 0;
}

.process-heading .highlight { color: var(--primary-color); }

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.process-line {
  position: absolute;
  top: 40px;
  left: 8%;
  width: 84%;
  height: 120px;
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}

.process-step:nth-child(3) { margin-top: 70px; }

.process-num {
  position: absolute;
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 90px;
  line-height: 1;
  color: var(--light-background);
  z-index: -1;
  user-select: none;
}

.process-icon {
  display: inline-grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(145deg, #ff3a41 0%, var(--primary-color) 100%);
  box-shadow: 0 16px 34px rgba(225, 27, 34, 0.32);
  margin-bottom: 28px;
}

.process-title {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 22px;
  color: var(--text-color);
  margin: 0 0 12px;
}

.process-desc {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.7;
  color: var(--secondary-text);
  margin: 0 auto;
  max-width: 320px;
}

@media (max-width: 992px) {
  .process-step:nth-child(3) { margin-top: 40px; }
}

@media (max-width: 700px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .process-line { display: none; }
  .process-step:nth-child(3),
  .process-step:nth-child(2) { margin-top: 0; }
  .process-num { font-size: 80px; }
}

@media (max-width: 600px) {
  .process { padding: 30px 18px; }
  .process-head { margin-bottom: 44px; }
  .process-icon { width: 80px; height: 80px; margin-bottom: 22px; }
  .process-title { font-size: 20px; }
}


/* ==================================================
Equipment Partners
================================================== */
.partners {
  position: relative;
  padding: 60px 32px;
  background: #0c0c0c url("images/hero-bg.jpg") center / cover no-repeat fixed;
  overflow: hidden;
}

.partners-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.78) 50%, rgba(10,10,10,0.9) 100%);
  z-index: 1;
}

.partners-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.partners-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.partners-label span { background: var(--accent-color); }
.partners-label p { color: var(--accent-color); }

.partners-heading {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin: 0 0 18px;
}

.partners-heading .highlight { color: var(--primary-color)}

.partners-sub {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.7;
  color: #c6c6c6;
  margin: 0 auto;
  max-width: 620px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.partner-card {
  position: relative;
  border: 1px solid rgb(57 57 57 / 50%);
  border-radius: 18px;
  padding: 40px 38px;
  overflow: hidden;
  background: rgba(20, 20, 20, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  right: 34px;
  height: 2px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.partner-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.22);
}

.partner-name {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 30px;
  color: #ffffff;
  margin: 0 0 18px;
}

.partner-desc {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.7;
  color: #c0c0c0;
  margin: 0 0 24px;
}

.partner-tag {
  display: inline-block;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent-color);
  background: rgba(255, 180, 0, 0.08);
  border: 1px solid rgba(255, 180, 0, 0.35);
  padding: 9px 16px;
  border-radius: 8px;
}

@media (max-width: 700px) {
  .partners-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 600px) {
  .partners {
    padding: 30px 18px;
    background-attachment: scroll;
  }
  .partners-head { margin-bottom: 40px; }
  .partner-card { padding: 30px 24px; }
  .partner-name { font-size: 26px; }
}



/* ==================================================
FAQ
================================================== */
.faq {
  background: var(--background-color);
  padding: 60px 32px;
}

.faq-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.faq-head {
  margin-bottom: 44px;
}

.faq-heading {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text-color);
  margin: 0;
}

.faq-heading .highlight { color: var(--primary-color); }

.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.faq-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(20, 20, 20, 0.16);
}

.faq-image {
  width: 100%;
  height: 100%;
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 480px;
}

.faq-callbar {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--accent-color);
  border-radius: 12px;
  padding: 12px 12px 12px 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.faq-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 15px;
  color: #141414;
}

.faq-talk {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  background: var(--secondary-color);
  padding: 10px 18px;
  border-radius: 8px;
  white-space: nowrap;
  transition: transform 0.2s ease;
}

.faq-talk:hover { transform: translateY(-2px); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: var(--background-color);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.open {
  border-color: rgba(255, 180, 0, 0.5);
  box-shadow: 0 10px 30px rgba(20, 20, 20, 0.06);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 22px 24px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.4;
  color: var(--text-color);
  transition: color 0.25s ease;
}

.faq-item.open .faq-q { color: var(--accent-color); }

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon::before {
  top: 9px;
  left: 0;
  width: 20px;
  height: 2px;
}

.faq-icon::after {
  top: 0;
  left: 9px;
  width: 2px;
  height: 20px;
}

.faq-q { color: var(--text-color); }
.faq-icon { color: var(--secondary-text); }
.faq-item.open .faq-icon { color: var(--accent-color); }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a p {
  margin: 0;
  padding: 0 24px 24px;
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.7;
  color: var(--secondary-text);
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-image img { min-height: 380px; }
}

@media (max-width: 600px) {
  .faq { padding: 30px 18px; }
  .faq-head { margin-bottom: 32px; }
  .faq-image img { min-height: 320px; }
  .faq-callbar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
  }
  .faq-call { justify-content: center; }
  .faq-talk { justify-content: center; }
  .faq-q { font-size: 15.5px; padding: 18px 18px; }
  .faq-a p { padding: 0 18px 20px; }
}


/* ==================================================
Areas We Serve
================================================== */
.areas {
  background: #F3F3F3;
  padding: 60px 32px;
}

.areas-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.areas-head {
  max-width: 760px;
  margin: 0 auto 40px;
}

.areas-heading {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: var(--text-color);
  margin: 0;
}

.areas-heading .highlight { color: var(--primary-color); }

.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.area-pill {
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-color);
    background: #ffb4000d;
    border: 1px solid #e11b224a;
    border-radius: 999px;
    padding: 12px 24px;
    box-shadow: rgba(136, 199, 58, 0.10) 2px 2px, rgba(136, 199, 58, 0.04) 4px 4px !important;
    transition: transform 0.22s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.area-pill:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
  color: var(--primary-color);
  box-shadow: 0 10px 24px rgba(225, 27, 34, 0.14);
}

.area-pill-more {
  color: #ffffff;
  background: linear-gradient(135deg, #ff3a41 0%, var(--primary-color) 100%);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(225, 27, 34, 0.28);
}

.area-pill-more:hover {
  transform: translateY(-3px);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(225, 27, 34, 0.4);
}

@media (max-width: 600px) {
  .areas { padding: 30px 18px; }
  .areas-head { margin-bottom: 32px; }
  .areas-list { gap: 10px; }
  .area-pill { font-size: 13.5px; padding: 10px 18px; }
}


/* ==================================================
CTA
================================================== */
.cta {
  background: var(--secondary-color);
  padding: 60px 32px;
}

.cta-card {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 40px;
  padding: 56px 56px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(120% 160% at 100% 0%, rgba(225, 27, 34, 0.42) 0%, rgba(225, 27, 34, 0) 55%),
    linear-gradient(120deg, #1c1c2e 0%, #17171f 45%, #121218 100%);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.4);
}

.cta-label span { background: var(--accent-color); }
.cta-label p { color: var(--accent-color); }

.cta-heading {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin: 0 0 16px;
}

.cta-heading .highlight { color: var(--primary-color); }

.cta-desc {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.7;
  color: #c2c2c8;
  margin: 0 0 24px;
  max-width: 520px;
}

.cta-rating {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--body-font);
  font-size: 14.5px;
  color: #b6b6bd;
  margin-bottom: 28px;
}

.cta-rating strong {
  font-family: var(--heading-font);
  font-size: 17px;
  color: #ffffff;
}

.cta-rating .stars { color: var(--accent-color); letter-spacing: 2px; font-size: 16px; }

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  transition: color 0.25s ease;
}

.cta-phone svg { color: var(--primary-color); }
.cta-phone:hover { color: var(--accent-color); }

.cta-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 40px 32px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cta-trust-title {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--accent-color);
}

.cta-trust-sub {
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #a9a9b0;
  margin-bottom: 14px;
}

.cta-trust-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 15px;
  color: #141414;
  background: linear-gradient(135deg, #FFC42E 0%, #FFB400 100%);
  padding: 15px 24px;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(255, 180, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.cta-trust-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(255, 180, 0, 0.42);
}

@media (max-width: 900px) {
  .cta-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 36px;
  }
  .cta-desc { max-width: 100%; }
}

@media (max-width: 600px) {
  .cta { padding: 30px 18px; }
  .cta-card {
    padding: 32px 22px;
    border-radius: 20px;
  }
  .cta-actions { gap: 12px; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .cta-trust { padding: 30px 22px; }
}


/* ==================================================
CTA
================================================== */
.cta {
  background: var(--secondary-color);
  padding: 30px 32px;
}

.cta-card {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  padding: 30px 30px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(120% 150% at 50% 0%, rgba(225, 27, 34, 0.4) 0%, rgba(225, 27, 34, 0) 55%),
    linear-gradient(120deg, #1c1c2e 0%, #17171f 45%, #121218 100%);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.4);
}

.cta-label span { background: var(--accent-color); }
.cta-label p { color: var(--accent-color); }

.cta-heading {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin: 0 0 16px;
}

.cta-heading .highlight { color: var(--primary-color); }

.cta-desc {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.7;
  color: #c2c2c8;
  margin: 0 0 32px;
  max-width: 400px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.5px;
  color: #ffffff;
  transition: color 0.25s ease;
}

.cta-phone svg { color: var(--primary-color); }
.cta-phone:hover { color: var(--accent-color); }

@media (max-width: 600px) {
  .cta { padding: 30px 18px; }
  .cta-card {
    padding: 40px 24px;
    border-radius: 20px;
  }
  .cta-actions {
    flex-direction: column;
    width: 100%;
    margin-bottom: 24px;
  }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .cta-phone { font-size: 22px; }
}

/* ==================================================
Footer
================================================== */
.footer {
  background: #1a1a1a;
  color: #c8c8c8;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 60px 32px 44px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 22px;
}

.footer-logo img {
  height: 46px;
  width: auto;
  display: block;
}

.footer-about {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.7;
  color: #a8a8a8;
  margin: 0 0 24px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.social-link:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.footer-title {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 17px;
  color: #ffffff;
  margin: 0 0 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a,
.footer-plain {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body-font);
  font-size: 15px;
  color: #b0b0b0;
  transition: color 0.25s ease, transform 0.2s ease;
}

.footer-links a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--accent-color);
  border-right: 2px solid var(--accent-color);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-plain::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--accent-color);
  border-right: 2px solid var(--accent-color);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 32px;
}

.footer-copy,
.footer-loc {
  margin: 0;
  font-family: var(--body-font);
  font-size: 13.5px;
  color: #8f8f8f;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-about { max-width: 480px; }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 20px 32px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 20px;
  }
}