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

:root {
  --blue: #2b7ec1;
  --blue-dark: #1a5a8a;
  --blue-darker: #0f3d5e;
  --blue-light: #e8f2fa;
  --blue-lighter: #f0f7fc;
  --navy: #1b3a55;
  --navy-dark: #122840;
  --text: #2c3e50;
  --text-light: #5a6d7e;
  --text-lighter: #8899a6;
  --white: #ffffff;
  --off-white: #f7f9fb;
  --border: #dde4ea;
  --border-light: #e8edf2;
  --green: #2eab5a;
  --gold: #f0b429;
  --teal: #1a9e8f;
  --teal-light: rgba(26, 158, 143, 0.08);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
  --header-height: 90px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--blue-dark);
}

img {
  max-width: 100%;
  display: block;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
  line-height: 1.25;
}

h1 { font-size: 2.75rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

/* ===== Layout ===== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--off-white);
}

.section--blue {
  background: var(--blue-light);
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-dark);
  border-bottom: none;
  box-shadow: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
  max-width: 1400px;
  padding: 0 40px;
}

.header__logo img {
  height: 72px;
  width: auto;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 6px;
}

.nav__link {
  display: block;
  padding: 10px 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.header__phone svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

.header__phone:hover {
  color: var(--white);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--blue);
  color: var(--white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}

.header__cta:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(43, 126, 193, 0.3);
}

/* Hamburger */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile nav actions */
.mobile-actions {
  display: none;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height) - 48px);
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(18, 40, 64, 0.88) 0%, rgba(18, 40, 64, 0.55) 40%, rgba(18, 40, 64, 0.1) 100%);
}

.hero .container {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 48px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  padding: 72px 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px;
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero h1 {
  font-size: 4.75rem;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
  font-weight: 700;
}

.hero__sub {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 700px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.6);
  animation: hero-bounce 2s ease infinite;
  transition: color var(--transition);
}

.hero__scroll:hover {
  color: rgba(255, 255, 255, 0.9);
}

@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== Announcement Bar ===== */
/* ===== Announcement Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.8s ease;
}

.modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.modal {
  background: linear-gradient(135deg, rgba(27, 58, 85, 0.95), rgba(43, 126, 193, 0.95));
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 0;
  max-width: 960px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  line-height: 1;
  transition: opacity var(--transition);
}

.modal__close:hover {
  color: #fff;
}

.modal__content {
  text-align: center;
  padding: 120px 100px 80px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.modal__label {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.modal__title {
  font-size: 2.6rem;
  color: #fff;
  margin-bottom: 16px;
}

.modal__text {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  line-height: 1.6;
}

.modal__urgency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 12px;
}

.modal .modal__cta.btn {
  font-size: 1.2rem;
  padding: 16px 40px;
  margin-bottom: 80px;
  align-self: center;
  background: var(--gold);
  color: var(--navy-dark);
}

.modal .modal__cta.btn:hover {
  background: #e0a620;
}

/* ===== Trust Bar ===== */
.trust-bar {
  background: var(--navy-dark);
  padding: 14px 0;
}

.trust-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.trust-bar__item {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.trust-bar__sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.4;
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(43, 126, 193, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn--outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
}

.btn--white:hover {
  background: var(--blue-light);
  color: var(--blue-dark);
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--lg {
  padding: 20px 48px;
  font-size: 1.2rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ===== Section Headers ===== */
.section__header {
  text-align: center;
  margin-bottom: 48px;
}

.section__label {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 12px;
}

.section__header h2 {
  margin-bottom: 12px;
}

.section__header p {
  color: var(--text);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Legacy section title support */
.section__title {
  text-align: center;
  margin-bottom: 40px;
}

.section__title h2 {
  margin-bottom: 8px;
}

.section__title p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ===== Service Overview Cards ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.service-overview {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.service-overview:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-overview__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--blue-light);
  border-radius: 12px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.service-overview__icon svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
}

.service-overview h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-overview p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.service-overview__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue);
  transition: gap var(--transition);
}

.service-overview__link:hover {
  gap: 10px;
}

.service-overview__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.service-overview__link:hover svg {
  transform: translateX(3px);
}

.service-overview--has-image {
  padding: 0;
}

.service-overview__image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.service-overview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-overview--has-image:hover .service-overview__image img {
  transform: scale(1.05);
}

.service-overview__body {
  padding: 32px 36px;
}

/* ===== Why Choose Us / Features Grid ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature {
  text-align: center;
  padding: 32px 20px;
}

.feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--blue-light);
  border-radius: 16px;
  margin: 0 auto 20px;
}

.feature__icon svg {
  width: 30px;
  height: 30px;
  color: var(--blue);
}

.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ===== Service Area ===== */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.area-content h2 {
  margin-bottom: 16px;
}

.area-content > p {
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.7;
}

.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  list-style: none;
}

.area-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text);
  padding: 6px 0;
}

.area-list li svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
  flex-shrink: 0;
}

.area-map {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-lighter) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  border: 1px solid var(--border);
}

.area-map__inner {
  text-align: center;
  color: var(--text-light);
}

.area-map__inner svg {
  width: 64px;
  height: 64px;
  color: var(--blue);
  opacity: 0.4;
  margin: 0 auto 16px;
}

.area-map__inner p {
  font-size: 0.9rem;
  font-weight: 500;
}

.area-map-full {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 960px;
  margin: 0 auto;
}

.area-map-full img {
  width: 100%;
  display: block;
}

/* ===== Reviews Section ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.review-card__author {
  margin-top: auto;
}

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.review-card__stars svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  fill: var(--gold);
}

.review-card__text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}

.review-card__text.expanded {
  -webkit-line-clamp: unset;
}

.review-card__toggle {
  background: none;
  border: none;
  color: var(--text-lighter);
  font-size: 0.8rem;
  font-weight: 400;
  cursor: pointer;
  padding: 0;
  margin-bottom: 16px;
  transition: color var(--transition);
}

.review-card__toggle:hover {
  color: var(--text-light);
}

.review-card__author {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
}

.reviews-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 100%);
  padding: 72px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-banner__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 20px;
}

.cta-banner__phone:hover {
  color: var(--white);
}

.cta-banner__phone svg {
  width: 20px;
  height: 20px;
}

/* ===== Cards (shared) ===== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card--blue { border-top-color: var(--blue); }
.card--teal { border-top-color: var(--teal); }
.card--navy { border-top-color: var(--navy); }

.card--blue .card__price {
  color: var(--blue);
  background: rgba(43, 126, 193, 0.08);
}

.card--teal .card__price {
  color: var(--teal);
  background: var(--teal-light);
}

.card--navy .card__price {
  color: var(--navy);
  background: rgba(27, 58, 85, 0.08);
}

.card--blue .card__list li::before { background: var(--blue); }
.card--teal .card__list li::before { background: var(--teal); }
.card--navy .card__list li::before { background: var(--navy); }

.card--blue .card__list-label { color: var(--blue); }
.card--teal .card__list-label { color: var(--teal); }
.card--navy .card__list-label { color: var(--navy); }

.card__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 16px;
  gap: 8px;
}

.card__title {
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
  color: var(--navy);
}

.card__price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue);
  background: rgba(43, 126, 193, 0.08);
  padding: 4px 14px;
  border-radius: 6px;
}

.card__desc {
  font-size: 0.95rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
}

.card__list {
  list-style: none;
  padding: 0;
}

.card__sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.service-grid--3 .card__sections {
  grid-template-columns: 1fr;
}

.card__list li {
  padding: 5px 0;
  padding-left: 24px;
  position: relative;
  font-size: 1rem;
  color: var(--text);
}

.card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.6;
}

.card__list li.card__list-label {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  padding-left: 0;
  margin-top: 14px;
  padding-top: 10px;
}

.card__list li.card__list-label::before {
  display: none;
}

.card__list li:first-child.card__list-label {
  margin-top: 0;
  padding-top: 0;
}

/* ===== Carousel ===== */
.carousel {
  position: relative;
  padding: 0 48px;
}

.carousel__track {
  display: flex;
  align-items: flex-start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 28px;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.carousel__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  box-sizing: border-box;
}

.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  z-index: 2;
}

.carousel__arrow:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.carousel__arrow--prev {
  left: 0;
}

.carousel__arrow--next {
  right: 0;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.carousel__dot.active {
  background: var(--blue);
}

.opening-followup {
  margin-top: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .carousel {
    padding: 0 36px;
  }

  .carousel__arrow {
    width: 32px;
    height: 32px;
  }
}

/* ===== Service Grid ===== */
.service-grid {
  display: grid;
  gap: 28px;
}

.service-grid--2 {
  grid-template-columns: 1fr 1fr;
}

.service-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ===== Page Header ===== */
.page-header {
  background: linear-gradient(135deg, var(--navy), var(--blue-dark));
  padding: 56px 0;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.25rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Section (inner pages) */
.cta-section {
  text-align: center;
  padding: 56px 0;
  background: var(--blue-light);
}

.cta-section h2 {
  margin-bottom: 12px;
}

.cta-section p {
  color: var(--text-light);
  margin-bottom: 24px;
}

/* ===== Chemicals ===== */
.chem-note {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  background: var(--blue-light);
  padding: 24px 32px;
  border-radius: var(--radius);
  border-left: 4px solid var(--blue);
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.7;
}

.chem-card {
  text-align: center;
}

.chem-card__label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 8px;
}

.chem-card__name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.chem-card__items {
  list-style: none;
  margin-bottom: 24px;
}

.chem-card__items li {
  padding: 10px 0;
  font-size: 1.15rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.chem-card__items li:last-child {
  border-bottom: none;
}

.chem-card__price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue);
}

.chem-card--featured {
  border-color: var(--blue);
  border-width: 2px;
  position: relative;
}

.chem-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 3px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== Contact Layout ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
}

.contact-info .card {
  margin-bottom: 20px;
}

.contact-info__item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.935rem;
}

.contact-info__item:last-child {
  border-bottom: none;
}

.contact-info__label {
  font-weight: 600;
  color: var(--navy);
  min-width: 80px;
}

/* ===== Form ===== */
.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form__select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235a6d7e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(43, 126, 193, 0.15);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__success {
  display: none;
  background: #e8f8ee;
  border: 1px solid #6fcf97;
  color: #1e6b3e;
  padding: 16px 20px;
  border-radius: 8px;
  font-weight: 500;
  margin-top: 16px;
}

.form__success.show {
  display: block;
}

/* ===== About Page ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-intro__content h2 {
  margin-bottom: 16px;
}

.about-intro__content p {
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-intro__image {
  background: var(--blue-light);
  border-radius: var(--radius-lg);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  overflow: hidden;
}

.about-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-value {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.about-value__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--blue-light);
  border-radius: 12px;
  margin: 0 auto 16px;
}

.about-value__icon svg {
  width: 26px;
  height: 26px;
  color: var(--blue);
}

.about-value h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.about-value p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== Reviews Page ===== */
.reviews-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.reviews-embed {
  text-align: center;
  padding: 48px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--border);
  margin-top: 48px;
}

.reviews-embed p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== Info bar (inner pages) ===== */
.info-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 8px 0;
  text-align: center;
}

.info-bar span {
  opacity: 0.5;
  margin: 0 8px;
}

/* ===== Winterization Card ===== */
.winterize-section {
  max-width: 680px;
  margin: 0 auto;
}

/* ===== Image Placeholder ===== */
.img-placeholder {
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.6;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 24px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__logo img {
  height: auto;
  width: 280px;
  margin-bottom: 16px;
}

.footer__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}

.footer__social a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__list {
  list-style: none;
}

.footer__list li {
  padding: 4px 0;
  font-size: 0.875rem;
}

.footer__list a {
  color: rgba(255, 255, 255, 0.7);
}

.footer__list a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom span {
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .header__phone {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .area-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .service-grid--3 {
    grid-template-columns: 1fr;
  }

  .service-grid--2 {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-page-grid {
    grid-template-columns: 1fr;
  }

  .about-intro {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .hero { min-height: calc(100vh - var(--header-height)); background-position: center 30%; }
  .hero .container { padding-left: 24px; padding-right: 24px; }
  .hero__content { padding: 36px 0 32px; }
  .hero h1 { font-size: 1.9rem; margin-bottom: 10px; }
  .hero__sub { font-size: 0.95rem; margin-bottom: 20px; line-height: 1.5; }
  .hero__actions { flex-direction: row; align-items: center; gap: 10px; }
  .hero__actions .btn--lg { padding: 12px 22px; font-size: 0.95rem; }
  .hero__actions .btn--ghost { padding: 10px 16px; font-size: 0.85rem; }
  .hero__scroll { display: none; }

  .trust-bar { padding: 10px 0; position: relative; z-index: 2; margin-top: -38px; background: rgba(18, 40, 64, 0.7); backdrop-filter: blur(6px); }
  .trust-bar__inner { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; gap: 8px; justify-content: flex-start; padding: 0 16px; scrollbar-width: none; }
  .trust-bar__inner::-webkit-scrollbar { display: none; }
  .trust-bar__item { font-size: 0.75rem; }
  .trust-bar__sep { font-size: 0.7rem; }

  .section { padding: 56px 0; }

  .nav__toggle {
    display: block;
  }

  .header__cta {
    display: none;
  }

  .nav__list {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 4px;
    z-index: 200;
  }

  .nav__link {
    color: var(--text);
    font-size: 1.05rem;
  }

  .nav__link:hover,
  .nav__link--active {
    color: var(--blue);
    background: rgba(43, 126, 193, 0.08);
  }

  .nav__list.open {
    display: flex;
  }

  .mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 0 4px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
  }

  .mobile-actions .btn--primary {
    color: var(--white);
  }

  .mobile-actions svg {
    width: 16px;
    height: 16px;
  }

  .info-bar {
    font-size: 0.7rem;
  }

  .info-bar span {
    display: none;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .page-header {
    padding: 36px 0;
  }

  .trust-bar__item {
    font-size: 0.72rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature {
    padding: 24px 16px;
  }

  .cta-banner h2 {
    font-size: 1.75rem;
  }

  .cta-banner {
    padding: 56px 0;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .area-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.65rem; }
  .hero__actions .btn--lg { padding: 10px 18px; font-size: 0.88rem; }
  .hero__actions .btn--ghost { padding: 9px 14px; font-size: 0.8rem; }
  .hero__badge { font-size: 0.78rem; padding: 6px 14px; }
}
