/* ============================================
   REPOINTING PROPERTY MAINTENANCE
   Master Design System — Luxury UK Masonry Architecture
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --navy: #17324D;
  --navy-dark: #0e2236;
  --navy-light: #1e4060;
  --orange: #F26B21;
  --orange-hover: #e05a10;
  --orange-light: rgba(242, 107, 33, 0.1);
  --white: #ffffff;
  --off-white: #F8F9FA;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 5.5rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(23, 50, 77, 0.06);
  --shadow-lg: 0 12px 32px rgba(23, 50, 77, 0.08);
  --shadow-xl: 0 20px 48px rgba(23, 50, 77, 0.12);
  --shadow-glow: 0 0 32px rgba(242, 107, 33, 0.2);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 200ms;
  --duration-normal: 350ms;
  --duration-slow: 500ms;

  /* Layout */
  --container-max: 1240px;
  --nav-height: 80px;
  --banner-height: 40px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--gray-700);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--duration-fast) var(--ease-out);
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-primary);
}

/* ---------- Utility Classes ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.section--gray {
  background-color: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(242, 107, 33, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 750;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--gray-600);
  max-width: 600px;
  line-height: 1.7;
}

.text-accent {
  color: var(--orange);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 650;
  border-radius: var(--radius-full);
  transition: all var(--duration-fast) var(--ease-out);
  position: relative;
  overflow: hidden;
  user-select: none;
}

.btn * {
  pointer-events: none;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(242, 107, 33, 0.3);
}

.btn--primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242, 107, 33, 0.4);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn--outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ---------- Developer Demo Signature Bar ---------- */
.dev-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--banner-height);
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0 16px;
  font-size: 0.8125rem;
  z-index: 10005;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.dev-banner__inner {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.dev-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  box-shadow: none;
}

.dev-banner__badge i {
  color: var(--white);
  font-size: 0.7rem;
}

.dev-banner__text {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  font-size: 0.8125rem;
}

.dev-banner__author {
  display: inline;
  color: var(--orange);
  font-weight: 700;
  background: none;
  border: none;
  padding: 0;
  margin-left: 2px;
  box-shadow: none;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: var(--banner-height);
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out);
  background: transparent;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid var(--gray-200);
}

.nav__inner {
  max-width: var(--container-max);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 1001;
}

.nav__logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter var(--duration-normal) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

.nav__logo:hover .nav__logo-img {
  transform: scale(1.05);
}

.nav.scrolled .nav__logo-img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(26%) saturate(2250%) hue-rotate(187deg) brightness(92%) contrast(92%);
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav__logo-brand {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 750;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color var(--duration-normal) var(--ease-out);
}

.nav.scrolled .nav__logo-brand {
  color: var(--navy);
}

.nav__logo-sub {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--duration-fast) var(--ease-out);
  position: relative;
}

.nav.scrolled .nav__link {
  color: var(--gray-700);
}

.nav__link:hover {
  color: var(--orange) !important;
}

.nav__cta {
  padding: 10px 22px;
  font-size: 0.875rem;
  font-weight: 650;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(242, 107, 33, 0.3);
}

.nav__cta:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(242, 107, 33, 0.4);
}

/* Mobile Menu Button */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  z-index: 1001;
}

.nav__hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--duration-fast) var(--ease-out);
}

.nav.scrolled .nav__hamburger span {
  background: var(--navy);
}

.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Hero Section Split Grid ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  transform: scale(1.05);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 34, 54, 0.94) 0%, rgba(23, 50, 77, 0.8) 50%, rgba(14, 34, 54, 0.85) 100%);
  z-index: 2;
}

.hero__snow-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.hero__container {
  position: relative;
  z-index: 3;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  padding-top: calc(var(--nav-height) + var(--banner-height) + 2.5rem);
  padding-bottom: 4rem;
  width: 100%;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero__copy {
  text-align: left;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(10px);
}

.hero__badge i {
  color: #38bdf8;
  font-size: 0.95rem;
  animation: spinIcon 10s linear infinite;
  display: inline-block;
}

@keyframes spinIcon {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 750;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-xl);
}

.hero__title span {
  color: var(--orange);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}

.hero__free-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.free-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(242, 107, 33, 0.14);
  border: 1px solid rgba(242, 107, 33, 0.3);
  color: var(--orange);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.free-badge i {
  color: #f59e0b;
  font-size: 0.85rem;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: var(--space-3xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__stat-number {
  font-size: 2rem;
  font-weight: 750;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.hero__stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

/* Pure White Hero Quote Form */
.hero__form-wrapper {
  position: relative;
  z-index: 4;
}

.hero-form {
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 10px 30px rgba(242, 107, 33, 0.15);
}

.hero-form:hover {
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.4), 0 12px 36px rgba(242, 107, 33, 0.2);
}

.hero-form__header {
  margin-bottom: var(--space-lg);
  text-align: left;
}

.hero-form__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(242, 107, 33, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.hero-form__badge i {
  color: #f59e0b;
}

.hero-form__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 750;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.hero-form__subtitle {
  font-size: 0.84375rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.hero-form__group {
  margin-bottom: 12px;
}

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

.hero-form__input {
  width: 100%;
  padding: 12px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  color: var(--gray-800);
  font-family: var(--font-primary);
  font-size: 0.875rem;
  transition: all var(--duration-fast) var(--ease-out);
  outline: none;
}

.hero-form__input::placeholder {
  color: var(--gray-400);
}

.hero-form__input:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(242, 107, 33, 0.18);
}

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

.hero-form__submit {
  width: 100%;
  margin-top: 6px;
  padding: 15px 28px;
}

.hero-form__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: var(--space-lg);
  color: #059669;
}

.hero-form__success i {
  font-size: 2.2rem;
}

.hero-form__footer-note {
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--gray-500);
  text-align: center;
}

.hero-form__footer-note i {
  color: var(--orange);
}

/* Custom Select Component (Light Card Theme) */
.custom-select {
  position: relative;
  width: 100%;
  user-select: none;
}

.custom-select__trigger {
  width: 100%;
  padding: 12px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  color: var(--gray-800);
  font-family: var(--font-primary);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}

.custom-select__trigger:hover {
  background: var(--white);
  border-color: rgba(242, 107, 33, 0.4);
}

.custom-select.open .custom-select__trigger {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(242, 107, 33, 0.18);
}

.custom-select__value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--gray-800);
}

.custom-select__value i {
  color: var(--orange);
  font-size: 0.95rem;
}

.custom-select__arrow {
  color: var(--orange);
  font-size: 0.8rem;
  transition: transform var(--duration-fast) var(--ease-out);
}

.custom-select.open .custom-select__arrow {
  transform: rotate(180deg);
}

.custom-select__options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 6px;
  z-index: 100;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15), 0 0 24px rgba(242, 107, 33, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--duration-fast) var(--ease-out);
  max-height: 260px;
  overflow-y: auto;
}

.custom-select.open .custom-select__options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select__option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  color: var(--gray-700);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}

.custom-select__option i:first-child {
  color: var(--gray-400);
  font-size: 0.9rem;
  width: 18px;
  text-align: center;
  transition: color var(--duration-fast) var(--ease-out);
}

.custom-select__option span { flex: 1; }

.custom-select__check {
  color: var(--orange);
  font-size: 0.85rem;
  opacity: 0;
  transform: scale(0.6);
  transition: all var(--duration-fast) var(--ease-out);
}

.custom-select__option:hover {
  background: rgba(242, 107, 33, 0.08);
  color: var(--orange);
}

.custom-select__option:hover i:first-child { color: var(--orange); }

.custom-select__option.active {
  background: rgba(242, 107, 33, 0.12);
  color: var(--orange);
  font-weight: 600;
}

.custom-select__option.active i:first-child { color: var(--orange); }

.custom-select__option.active .custom-select__check {
  opacity: 1;
  transform: scale(1);
}

.custom-select__option.active .custom-select__check {
  opacity: 1;
  transform: scale(1);
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  transform-origin: top;
}

/* ---------- Winter Benefits Section ---------- */
.winter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.winter-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  transition: all var(--duration-normal) var(--ease-out);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.winter-card:hover {
  background: var(--white);
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.winter-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(242, 107, 33, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  transition: all var(--duration-normal) var(--ease-out);
}

.winter-card:hover .winter-card__icon {
  background: var(--orange);
}

.winter-card__icon i {
  font-size: 1.35rem;
  color: var(--orange);
  transition: color var(--duration-normal) var(--ease-out);
}

.winter-card:hover .winter-card__icon i {
  color: var(--white);
}

.winter-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-sm);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.winter-card__desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: var(--space-xl) 0;
  position: relative;
  z-index: 10;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
}

.trust-bar__icon {
  width: 32px;
  height: 32px;
  background: rgba(242, 107, 33, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-bar__icon i {
  font-size: 0.95rem;
  color: var(--orange);
}

/* ---------- Services Section ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-normal) var(--ease-out);
}

.service-card:hover {
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(242, 107, 33, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  transition: all var(--duration-normal) var(--ease-out);
}

.service-card:hover .service-card__icon {
  background: var(--orange);
}

.service-card__icon i {
  font-size: 1.35rem;
  color: var(--orange);
  transition: color var(--duration-normal) var(--ease-out);
}

.service-card:hover .service-card__icon i {
  color: var(--white);
}

.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.service-card__desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}

.service-card__link {
  font-size: 0.875rem;
  font-weight: 650;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--duration-fast) var(--ease-out);
}

.service-card:hover .service-card__link {
  gap: 10px;
}

.service-card--dark {
  background: var(--navy);
  border-color: var(--navy);
}

.service-card--dark:hover {
  background: var(--navy-light);
}

.service-card--dark .service-card__icon {
  background: rgba(255, 255, 255, 0.1) !important;
}

.service-card--dark .service-card__icon i {
  color: var(--white);
}

/* ---------- Before & After ---------- */
.comparison {
  position: relative;
  width: 100%;
  max-width: 960px;
  height: 480px;
  margin: var(--space-3xl) auto 0;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  user-select: none;
  border: 1px solid var(--gray-200);
}

.comparison__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison__img--after {
  clip-path: inset(0 50% 0 0);
}

.comparison__slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--white);
  z-index: 5;
  transform: translateX(-50%);
  cursor: ew-resize;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}

.comparison__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
}

.comparison__handle i {
  font-size: 1.1rem;
  color: var(--navy);
}

.comparison__label {
  position: absolute;
  bottom: 20px;
  padding: 8px 18px;
  background: rgba(14, 34, 54, 0.75);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  z-index: 4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.comparison__label--before { left: 20px; }
.comparison__label--after { right: 20px; }

/* ---------- Why Choose Us ---------- */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.feature-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all var(--duration-normal) var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--duration-normal) var(--ease-out);
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.08) rotate(-3deg);
  background: var(--orange);
}

.feature-card__icon i {
  font-size: 1.4rem;
  color: var(--white);
}

.feature-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.feature-card__desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ---------- Process Section ---------- */
.process__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  position: relative;
}

.process__timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}

.process__step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process__number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 auto var(--space-lg);
  transition: all var(--duration-normal) var(--ease-out);
}

.process__step:hover .process__number {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

.process__step-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.process__step-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

/* ---------- Gallery ---------- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: var(--space-md);
  margin-top: var(--space-3xl);
}

.gallery__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery__item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 34, 54, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
  display: flex;
  align-items: flex-end;
  padding: var(--space-xl);
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-title {
  color: var(--white);
  font-size: 1rem;
  font-weight: 650;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal) var(--ease-out);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  transform: scale(0.9);
  transition: transform var(--duration-normal) var(--ease-out);
}

.lightbox.active .lightbox__img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__close i {
  color: var(--white);
  font-size: 1.25rem;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  transition: all var(--duration-normal) var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-lg);
}

.testimonial-card__stars i {
  color: #f59e0b;
  font-size: 0.95rem;
}

.testimonial-card__text {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-card__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-card__location {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* ---------- FAQ ---------- */
.faq__list {
  max-width: 840px;
  margin: var(--space-3xl) auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--duration-fast) var(--ease-out);
}

.faq__item.active {
  border-color: rgba(242, 107, 33, 0.4);
  box-shadow: var(--shadow-md);
}

.faq__question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 1.0625rem;
  font-weight: 650;
  color: var(--navy);
  cursor: pointer;
}

.faq__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--duration-fast) var(--ease-out);
}

.faq__icon i {
  font-size: 0.85rem;
  color: var(--navy);
  transition: transform var(--duration-fast) var(--ease-out);
}

.faq__item.active .faq__icon {
  background: var(--orange);
}

.faq__item.active .faq__icon i {
  transform: rotate(45deg);
  color: var(--white);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq__answer p {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ---------- Contact Section & Footer ---------- */
.cta-section {
  position: relative;
  background: var(--navy-dark);
  padding: var(--space-4xl) 0;
  color: var(--white);
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.cta-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 34, 54, 0.95) 0%, rgba(23, 50, 77, 0.88) 100%);
  z-index: 2;
}

.cta-section__content {
  position: relative;
  z-index: 3;
}

.cta-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.cta-section__copy {
  text-align: left;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 750;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: var(--space-sm) 0 var(--space-md);
}

.cta-section__subtitle {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

.contact-form {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.contact-form__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 750;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.contact-form__group {
  margin-bottom: 14px;
}

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

.contact-form__input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 0.875rem;
  outline: none;
  transition: all var(--duration-fast) var(--ease-out);
}

.contact-form__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.contact-form__input:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(242, 107, 33, 0.2);
}

.contact-form__textarea {
  resize: vertical;
}

.contact-form__submit {
  width: 100%;
  margin-top: 6px;
}

.contact-form__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: var(--space-lg);
  color: #34d399;
}

.contact-form__success i {
  font-size: 2.2rem;
}

/* Footer (White Theme) */
.footer {
  background: var(--white);
  color: var(--gray-600);
  padding: var(--space-4xl) 0 var(--space-xl);
  border-top: 1px solid var(--gray-200);
  position: relative;
}

.footer .nav__logo-brand {
  color: var(--navy) !important;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin: var(--space-md) 0 var(--space-lg);
  max-width: 320px;
}

.footer__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 650;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.footer-badge i {
  color: var(--orange);
  font-size: 0.8rem;
}

.footer__heading {
  font-size: 1.05rem;
  font-weight: 750;
  color: var(--navy);
  margin-bottom: var(--space-xl);
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 10px;
}

.footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}

.footer__links-list {
  list-style: none;
}

.footer__links-list li {
  margin-bottom: 10px;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--gray-600);
  transition: all var(--duration-fast) var(--ease-out);
}

.footer__link i {
  font-size: 0.7rem;
  color: var(--orange);
  transition: transform var(--duration-fast) var(--ease-out);
}

.footer__link:hover {
  color: var(--orange);
  transform: translateX(4px);
}

.footer__link:hover i {
  transform: translateX(2px);
}

.footer__contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  color: var(--navy);
  text-decoration: none;
  transition: all var(--duration-fast) var(--ease-out);
}

.footer-card:hover {
  background: rgba(242, 107, 33, 0.08);
  border-color: rgba(242, 107, 33, 0.3);
  transform: translateY(-2px);
}

.footer-card__icon {
  width: 38px;
  height: 38px;
  background: rgba(242, 107, 33, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  font-size: 0.95rem;
  transition: background var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out);
}

.footer-card:hover .footer-card__icon {
  background: var(--orange);
  color: var(--white);
}

.footer-card__label {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 500;
}

.footer-card__val {
  font-size: 0.84375rem;
  font-weight: 650;
  color: var(--navy);
  word-break: break-all;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--gray-200);
  font-size: 0.8125rem;
}

.footer__copyright {
  color: var(--gray-500);
}

.footer__socials {
  display: flex;
  gap: 14px;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all var(--duration-fast) var(--ease-out);
}

.footer__social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(242, 107, 33, 0.4);
}

/* ---------- UX Floating Controls ---------- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all var(--duration-fast) var(--ease-out);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(242, 107, 33, 0.4);
}

.back-to-top i {
  font-size: 1.05rem;
  color: var(--white);
}

.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0e2236;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 16px;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.mobile-call-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: var(--radius-full);
  font-size: 0.84375rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(242, 107, 33, 0.3);
}

.mobile-call-bar__btn--quote {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

/* ---------- Media Queries ---------- */
@media (max-width: 1024px) {
  .services__grid,
  .features__grid,
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process__timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
  .process__timeline::before { display: none; }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: calc(var(--banner-height) + var(--nav-height));
    right: 0;
    bottom: 0;
    width: 280px;
    background: #0e2236;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-2xl);
    gap: var(--space-xl);
    transform: translateX(100%);
    transition: transform var(--duration-normal) var(--ease-out);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__hamburger {
    display: flex;
  }

  .hero__grid,
  .cta-section__grid,
  .services__grid,
  .features__grid,
  .winter-grid {
    grid-template-columns: 1fr;
  }

  .winter-card--highlight {
    grid-column: span 1;
  }

  .hero__copy,
  .cta-section__copy {
    text-align: center;
  }

  .hero__subtitle,
  .cta-section__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions,
  .hero__free-badges,
  .hero__stats {
    justify-content: center;
  }

  .comparison {
    height: 320px;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery__item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .mobile-call-bar {
    display: flex;
  }

  .back-to-top {
    bottom: 74px;
    right: 18px;
    width: 42px;
    height: 42px;
  }

  .dev-banner {
    font-size: 0.72rem;
    padding: 0 8px;
  }
  .dev-banner__text {
    font-size: 0.72rem;
  }
}

/* ---------- Mobile Sticky Quick Call Bar Styles ---------- */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 10px 14px;
  background: rgba(9, 24, 39, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(242, 107, 33, 0.35);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
  gap: 10px;
}

.mobile-call-bar__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: var(--radius-full);
  font-size: 0.84375rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
  transition: all var(--duration-fast) var(--ease-out);
}

.mobile-call-bar__btn--quote {
  background: linear-gradient(135deg, #F26B21 0%, #d95811 100%);
  box-shadow: 0 4px 14px rgba(242, 107, 33, 0.35);
}

.mobile-call-bar__btn:active {
  transform: scale(0.97);
}
