/* =========================================================
   VSERVICES — Premium homepage styles
   ========================================================= */

:root {
  --primary: #c62828;
  --primary-dark: #9b1c1c;
  --primary-soft: rgba(198, 40, 40, 0.1);
  --secondary: #1c1c1f;
  --accent: #2f3a4a;
  --text: #2a2a2e;
  --text-muted: #6b6b73;
  --text-inverse: #ffffff;
  --bg: #ffffff;
  --bg-muted: #f4f5f7;
  --bg-dark: #141416;
  --border: #e4e5ea;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 16px rgba(20, 20, 22, 0.06);
  --shadow-md: 0 12px 40px rgba(20, 20, 22, 0.1);
  --shadow-lg: 0 24px 60px rgba(20, 20, 22, 0.14);
  --container: 1180px;
  --header-h: 88px;
  --topbar-h: 42px;
  --font-body: "Inter", system-ui, sans-serif;
  --font-heading: "Poppins", system-ui, sans-serif;
  --font-button: "Poppins", system-ui, sans-serif;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

ul {
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--muted {
  background: var(--bg-muted);
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary);
  letter-spacing: -0.02em;
}

.section-desc {
  margin-top: 0.9rem;
  color: var(--text-muted);
  max-width: 540px;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-head .section-desc {
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  font-family: var(--font-button);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: var(--text-inverse);
  box-shadow: 0 10px 28px rgba(198, 40, 40, 0.28);
}

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn--outline {
  color: var(--text-inverse);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn--block {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--primary);
}

.text-link:hover {
  gap: 0.55rem;
}

/* Top bar */
.top-bar {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  min-height: var(--topbar-h);
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--topbar-h);
  padding-block: 0.45rem;
}

.top-bar__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.25rem;
}

.top-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.top-bar__item:hover {
  color: #fff;
}

.top-bar__social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.top-bar__social a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transition: background var(--transition), transform var(--transition), color var(--transition);
}

.top-bar__social a svg {
  display: block;
}

.top-bar__social a:hover {
  color: #fff;
  background: var(--primary);
  transform: translateY(-1px);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}

/* Blur on a pseudo so it does not trap position:fixed children (mobile drawer) */
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.92);
  transition: background var(--transition);
}

.header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}

.header.is-scrolled::before {
  background: rgba(255, 255, 255, 0.96);
}

.header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  width: auto;
  height: 72px;
  max-width: min(200px, 42vw);
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__top,
.nav__contact {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav__link {
  display: block;
  padding: 0.55rem 0.8rem;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 999px;
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: var(--primary);
}

.nav__cta {
  padding: 0.72rem 1.35rem;
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: none;
  align-self: center;
  flex-shrink: 0;
  place-content: center;
  place-items: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
  background: transparent;
  line-height: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0;
  background: var(--secondary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 18, 0.45);
  z-index: 900;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  overflow: hidden;
  background: var(--bg-dark);
}

.hero__slides {
  position: relative;
  height: min(92vh, 860px);
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 7s ease;
  z-index: 0;
}

.hero__slide.is-active .hero__image {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(12, 10, 10, 0.72) 0%, rgba(12, 10, 10, 0.42) 48%, rgba(12, 10, 10, 0.35) 100%),
    linear-gradient(to top, rgba(8, 8, 10, 0.5) 0%, transparent 45%);
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: clamp(3rem, 8vw, 5rem);
  color: #fff;
  pointer-events: none;
}

.hero__content .btn {
  pointer-events: auto;
}

.hero__eyebrow {
  font-family: var(--font-heading);
  font-style: normal;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.92;
  margin-bottom: 0.55rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 14ch;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.hero__text {
  margin-top: 1rem;
  max-width: 34rem;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.hero__nav:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.hero__nav--prev {
  left: clamp(0.75rem, 2vw, 1.5rem);
}

.hero__nav--next {
  right: clamp(0.75rem, 2vw, 1.5rem);
}

.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.55rem;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  transition: var(--transition);
}

.hero__dot.is-active {
  background: #fff;
  width: 28px;
  border-radius: 999px;
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about__media {
  position: relative;
}

.about__media img {
  width: 100%;
  height: min(560px, 70vw);
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about__badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.15rem;
}

.about__badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.about__badge-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.about__lead {
  margin: 1.25rem 0 1rem;
  font-size: 1.08rem;
  color: var(--text);
}

.about__content > p {
  color: var(--text-muted);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.1;
}

.stat__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Services slider */
.services-slider {
  position: relative;
}

.services-slider__viewport {
  overflow: hidden;
  margin: 0 -0.25rem;
  padding: 0.5rem 0.25rem 1rem;
}

.services-slider__track {
  display: flex;
  gap: 1.35rem;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.service-card {
  flex: 0 0 calc((100% - 2.7rem) / 3);
  min-width: 0;
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(228, 229, 234, 0.8);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #1a1a1e;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.7s ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.08);
}

.service-card__body {
  padding: 1.35rem 1.35rem 1.55rem;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  margin-bottom: 0.9rem;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.service-card__text {
  color: var(--text-muted);
  font-size: 0.93rem;
}

.services-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.services-slider__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--secondary);
  transition: var(--transition);
}

.services-slider__btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.services-slider__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  max-width: 220px;
}

.services-slider__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c8c9d0;
  transition: var(--transition);
}

.services-slider__dot.is-active {
  background: var(--primary);
  width: 24px;
  border-radius: 999px;
}

.services__tagline {
  text-align: center;
  margin-top: 2rem;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.01em;
}

/* Why us */
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feature-card {
  padding: 1.75rem 1.4rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff 0%, #fafafb 100%);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--secondary);
  color: #fff;
  margin: 0 auto 1.15rem;
  transition: background var(--transition);
}

.feature-card:hover .feature-card__icon {
  background: var(--primary);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
  color: var(--secondary);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
}

/* Reviews */
.reviews__carousel {
  max-width: 760px;
  margin-inline: auto;
  position: relative;
}

.reviews__track {
  position: relative;
  min-height: 320px;
}

.review-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s ease;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-card.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}

.review-card__stars {
  color: #e6a700;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.review-card__text {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.65;
  color: var(--secondary);
  font-weight: 400;
  margin-bottom: 1.75rem;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.review-card__author img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.review-card__author strong {
  display: block;
  color: var(--secondary);
}

.review-card__author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.reviews__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

.reviews__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--secondary);
  transition: var(--transition);
}

.reviews__btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.reviews__dots {
  display: flex;
  gap: 0.45rem;
}

.reviews__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c8c9d0;
  transition: var(--transition);
}

.reviews__dot.is-active {
  background: var(--primary);
  width: 24px;
  border-radius: 999px;
}

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact__lead {
  margin: 1rem 0 1.75rem;
  color: var(--text-muted);
}

.contact__list {
  display: grid;
  gap: 1.25rem;
}

.contact__list li {
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
}

.contact__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
}

.contact__list strong {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact__list a:hover {
  color: var(--primary);
}

.contact__list p {
  color: var(--text);
  line-height: 1.55;
}

.contact__owner {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}

.contact__form-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--secondary);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fafafb;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px var(--primary-soft);
}

.form-field.is-invalid input,
.form-field.is-invalid textarea {
  border-color: var(--primary);
}

.field-error {
  display: block;
  min-height: 1.1em;
  margin-top: 0.3rem;
  font-size: 0.78rem;
  color: var(--primary);
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  display: none;
}

.form-status.is-success {
  display: block;
  background: #e8f6ec;
  color: #1d6b3a;
  border: 1px solid #b7e0c4;
}

.form-status.is-error {
  display: block;
  background: #fdecea;
  color: #9b1c1c;
  border: 1px solid #f3c0bb;
}

/* Coverage */
.coverage__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.coverage-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.75rem;
  row-gap: 0.2rem;
  align-items: start;
  padding: 1rem 1.05rem 1rem 0.95rem;
  background: var(--bg);
  border: 1px solid rgba(228, 229, 234, 0.9);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.coverage-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
  opacity: 0;
  transition: opacity var(--transition);
}

.coverage-card::after {
  content: "";
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z' stroke='%23c62828' stroke-width='1.8'/%3E%3Ccircle cx='12' cy='10' r='3' stroke='%23c62828' stroke-width='1.8'/%3E%3C/svg%3E")
    center / 16px 16px no-repeat,
    var(--primary-soft);
}

.coverage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(198, 40, 40, 0.22);
}

.coverage-card:hover::before {
  opacity: 1;
}

.coverage-card__name {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--secondary);
}

.coverage-card__pin {
  grid-column: 2;
  grid-row: 2;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 0.15rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: var(--bg-muted);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.coverage-card__pin--soft {
  background: var(--primary-soft);
  color: var(--primary);
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.78);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer__brand p {
  margin-top: 1rem;
  max-width: 280px;
  font-size: 0.95rem;
  line-height: 1.65;
}

.logo--footer img {
  height: 68px;
  max-width: 180px;
  filter: none;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.footer__social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background var(--transition), transform var(--transition);
}

.footer__social a svg {
  display: block;
}

.footer__social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer__heading {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
}

.footer__links,
.footer__contact {
  display: grid;
  gap: 0.75rem;
  font-size: 0.92rem;
  padding-left: 0;
}

.footer__links li,
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  list-style: none;
  line-height: 1.45;
}

.footer__links li::before {
  content: "•";
  color: var(--primary);
  font-size: 1.15rem;
  line-height: 1.2;
  flex-shrink: 0;
}

.footer__contact-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: rgba(198, 40, 40, 0.16);
  color: #ff6b6b;
  border: 1px solid rgba(198, 40, 40, 0.28);
}

.footer__contact-icon svg {
  width: 15px;
  height: 15px;
}

.footer__links a,
.footer__contact a {
  display: inline;
  line-height: 1.45;
  color: inherit;
}

.footer__contact li > a,
.footer__contact li > span:not(.footer__contact-icon) {
  padding-top: 0.35rem;
}

.footer__links a:hover,
.footer__contact a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.15rem 0;
}

.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.85rem;
  text-align: center;
}

/* Floating contact actions */
.float-contact {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1.15rem, env(safe-area-inset-bottom));
  z-index: 1300;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
}

.float-contact__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
}

.float-contact__actions[hidden] {
  display: none;
}

.float-contact__btn,
.float-contact__toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 28px rgba(20, 20, 22, 0.28);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  position: relative;
}

.float-contact__btn svg,
.float-contact__toggle svg {
  width: 22px;
  height: 22px;
  display: block;
}

.float-contact__btn:hover,
.float-contact__toggle:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 32px rgba(20, 20, 22, 0.34);
}

.float-contact__btn--call {
  background: #1d7a46;
}

.float-contact__btn--whatsapp {
  background: #25d366;
}

.float-contact__btn--email {
  background: #c62828;
}

.float-contact__toggle {
  background: var(--primary);
  border: none;
}

.float-contact__toggle .float-contact__icon-close {
  display: none;
}

.float-contact.is-open .float-contact__toggle .float-contact__icon-open {
  display: none;
}

.float-contact.is-open .float-contact__toggle .float-contact__icon-close {
  display: block;
}

.float-contact__label {
  position: absolute;
  right: calc(100% + 0.55rem);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: rgba(20, 20, 22, 0.92);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-heading);
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}

.float-contact__btn:hover .float-contact__label,
.float-contact__btn:focus-visible .float-contact__label {
  opacity: 1;
}

body.is-nav-open .float-contact {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 480px) {
  .float-contact {
    right: 0.85rem;
    bottom: 0.95rem;
  }

  .float-contact__btn,
  .float-contact__toggle {
    width: 48px;
    height: 48px;
  }

  .float-contact__btn svg,
  .float-contact__toggle svg {
    width: 20px;
    height: 20px;
  }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coverage__list {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .top-bar__social {
    display: none;
  }

  .top-bar__inner {
    justify-content: stretch;
  }

  .top-bar__info {
    width: 100%;
    justify-content: space-between;
    gap: 0.5rem 1rem;
  }

  .top-bar__item {
    flex-shrink: 1;
    min-width: 0;
  }

  .top-bar__item span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .about__content {
    text-align: center;
  }

  .about__stats {
    text-align: center;
  }

  .about__content .btn {
    margin-inline: auto;
  }

  .services-slider__track {
    gap: 1rem;
  }

  .service-card {
    flex-basis: calc((100% - 1rem) / 2);
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: center;
    z-index: 1002;
  }

  .nav-toggle.is-open {
    opacity: 0;
    pointer-events: none;
  }

  .header__inner {
    align-items: center;
    min-height: 72px;
    padding-block: 0.35rem;
  }

  .logo img {
    height: 58px;
    max-width: min(160px, 48vw);
  }

  .nav-overlay {
    z-index: 1200;
  }

  body.is-nav-open {
    overflow: hidden;
    touch-action: none;
  }

  body.is-nav-open .header {
    z-index: 1100;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(300px, 86vw);
    max-width: 100%;
    height: auto;
    min-height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.18);
    transform: translateX(105%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1201;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    padding: 0.75rem 1rem 0.75rem 1.15rem;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
    flex-shrink: 0;
  }

  .nav__top-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--secondary);
    line-height: 1;
  }

  .nav__close {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    background: var(--bg-muted);
    border: 1px solid var(--border);
    transition: var(--transition);
    padding: 0;
    line-height: 0;
  }

  .nav__close:hover,
  .nav__close:focus-visible {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.1rem;
    padding: 0.75rem 0.9rem 0.35rem;
    flex-shrink: 0;
  }

  .nav__link {
    padding: 0.8rem 0.95rem;
    font-size: 0.98rem;
    border-radius: 10px;
  }

  .nav__cta {
    width: calc(100% - 1.8rem);
    margin: 0.35rem 0.9rem 0.85rem;
    text-align: center;
    flex-shrink: 0;
  }

  .nav__contact {
    display: grid;
    gap: 0.75rem;
    margin-top: auto;
    padding: 1rem 1.05rem calc(1.35rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--border);
    background: var(--bg-muted);
    justify-items: stretch;
    flex-shrink: 0;
  }

  .nav__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.45;
    word-break: break-word;
  }

  .nav__contact-item:hover {
    color: var(--primary);
  }

  .nav__contact-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--primary);
    border: 1px solid var(--border);
  }

  .nav__contact-icon svg {
    width: 15px;
    height: 15px;
  }

  .nav__social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.65rem;
    padding-top: 0.45rem;
    width: 100%;
  }

  .nav__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--secondary);
    color: #fff;
    transition: var(--transition);
    flex-shrink: 0;
  }

  .nav__social a:hover {
    background: var(--primary);
  }

  .hero__content {
    align-items: center;
    text-align: center;
    padding-inline: 1rem;
  }

  .hero__title {
    max-width: none;
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .hero__text {
    font-size: 0.95rem;
    max-width: 32rem;
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
    width: 100%;
  }

  .hero__nav {
    top: auto;
    bottom: 1.15rem;
    transform: none;
    width: 40px;
    height: 40px;
  }

  .hero__nav--prev {
    left: 0.75rem;
  }

  .hero__nav--next {
    right: 0.75rem;
  }

  .hero__dots {
    bottom: 1.45rem;
  }

  .top-bar__location span {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 700px) {
  .top-bar__info .top-bar__location {
    display: none;
  }

  .service-card {
    flex-basis: 100%;
  }

  .why__grid,
  .form-row,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .coverage__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
  }

  .coverage-card {
    padding: 0.85rem 0.8rem 0.85rem 0.75rem;
    column-gap: 0.6rem;
  }

  .coverage-card::after {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background-size: 14px 14px, auto;
  }

  .coverage-card__name {
    font-size: 0.84rem;
  }

  .coverage-card__pin {
    font-size: 0.7rem;
    padding: 0.14rem 0.45rem;
  }

  .about__stats {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    text-align: center;
  }

  .about__content {
    text-align: center;
  }

  .about__content .btn {
    margin-inline: auto;
  }

  .stat {
    text-align: center;
  }

  .service-card__body {
    text-align: center;
  }

  .service-card__icon {
    margin-inline: auto;
  }

  .service-card .text-link {
    justify-content: center;
  }

  .hero {
    min-height: 78vh;
  }

  .hero__slides {
    height: 78vh;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .nav {
    width: min(100vw - 48px, 300px);
  }

  .top-bar__info {
    gap: 0.35rem 0.75rem;
  }

  .top-bar__info span:last-child,
  .top-bar__item span {
    font-size: 0.75rem;
  }

  .coverage__list {
    grid-template-columns: 1fr;
  }

  .coverage-card {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto;
    align-items: center;
  }

  .coverage-card::after {
    grid-row: 1;
  }

  .coverage-card__name {
    grid-column: 2;
    grid-row: 1;
  }

  .coverage-card__pin {
    grid-column: 3;
    grid-row: 1;
    margin-top: 0;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__content {
    padding-block: 3.5rem 4.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   Inner pages — page hero, services grid
   ========================================================= */

body.page-inner .header {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}

body.page-inner .header::before {
  background: rgba(255, 255, 255, 0.98);
}

.page-hero {
  position: relative;
  padding: clamp(3.25rem, 7vw, 5rem) 0;
  background:
    linear-gradient(125deg, rgba(20, 20, 22, 0.92) 0%, rgba(47, 58, 74, 0.88) 55%, rgba(155, 28, 28, 0.75) 100%),
    url("../assets/hero-1.jpg") center / cover no-repeat;
  color: var(--text-inverse);
  overflow: hidden;
  text-align: center;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffb4b4;
  margin-bottom: 0.75rem;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.page-hero__text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
  margin-inline: auto;
}

.page-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.35rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

.page-hero__crumb a:hover {
  color: #fff;
}

.page-hero__crumb-sep {
  opacity: 0.5;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.services-grid .service-card {
  flex: none;
  width: 100%;
  max-width: none;
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .page-hero {
    min-height: 240px;
    padding: 2.75rem 0 3rem;
    background-position: center center;
  }

  .page-hero__title {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .page-hero__text {
    font-size: 0.95rem;
    padding-inline: 0.25rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .services-grid .service-card {
    width: 100%;
  }
}
