/* =====================================================
   HIIFA — Cleaning & Hygiene Services
   Premium UK cleaning company · Housekeep-grade visual
   ===================================================== */

:root {
  --navy: #061829;
  --blue: #10374A;
  --teal-dark: #165668;
  --teal: #005D5C;
  --white: #FFFFFF;
  --off-white: #F7F9FA;
  --border: #E6ECEF;
  --text: #52616B;
  --gold: #F5B942;

  --font: "Manrope", "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --radius: 18px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(6, 24, 41, 0.06);
  --shadow-md: 0 14px 40px rgba(6, 24, 41, 0.12);
  --shadow-lg: 0 24px 60px rgba(6, 24, 41, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --card-radius: 24px;
  --card-border: 1px solid #d8e1e5;
  --card-shadow: 0 8px 24px rgba(6, 24, 41, 0.06);
  --card-shadow-hover: 0 16px 40px rgba(6, 24, 41, 0.10);
  --card-transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }

h1, h2, h3, h4 {
  color: var(--navy);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
}
h1 { font-size: clamp(2.6rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.22rem; font-weight: 700; }
h4 { font-size: 0.95rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(80px, 9vw, 118px) 0; }

svg.lucide { width: 20px; height: 20px; flex-shrink: 0; }

.card-base {
  border-radius: var(--card-radius);
  border: var(--card-border);
  box-shadow: var(--card-shadow);
  background: var(--white);
  transition: var(--card-transition);
}

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

.section-head { max-width: 720px; margin: 0 auto 58px; text-align: center; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.section-title { margin-bottom: 14px; }
.section-subtitle { font-size: 1.08rem; max-width: 650px; margin: 0 auto; }
.section-head-light h2 { color: var(--white); }
.section-head-light p { color: rgba(255, 255, 255, 0.66); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition: background-color 0.22s, color 0.22s, border-color 0.22s,
              box-shadow 0.28s var(--ease), transform 0.28s var(--ease);
}
.btn .lucide { width: 18px; height: 18px; }

.btn-primary { background: var(--teal); color: var(--white); box-shadow: 0 6px 18px rgba(0, 93, 92, 0.24); }
.btn-primary:hover { background: #047170; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0, 93, 92, 0.34); }

.btn-outline { background: var(--white); color: var(--navy); border-color: var(--border); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn-light { background: var(--white); color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(6, 24, 41, 0.3); }

.btn-ghost-light { border-color: rgba(255, 255, 255, 0.45); color: var(--white); background: rgba(255, 255, 255, 0.06); backdrop-filter: blur(4px); }
.btn-ghost-light:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.14); transform: translateY(-2px); }

.btn-sm { padding: 11px 22px; font-size: 0.9rem; }
.btn-lg { padding: 17px 34px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--teal);
}
.text-link .lucide { width: 17px; height: 17px; transition: transform 0.28s var(--ease); }
.text-link:hover .lucide { transform: translateX(5px); }

/* =====================================================
   HEADER — Housekeep-rhythm: logo far left, nav close
   after it, actions far right, transparent over hero
   ===================================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
}

.header-inner {
  width: 100%;
  height: 92px;
  padding: 0 28px;
  display: flex;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  height: 54px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: 88px;
  flex: 0 0 auto;
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  opacity: 0.96;
  transition: opacity 0.2s;
}

.main-nav a:hover {
  opacity: 1;
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-login {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 24px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  line-height: 1;
  transition: background-color 0.2s;
}

.header-quote {
  color: #ffffff;
  background: #165668;
  border: 1px solid #165668;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  padding: 15px 24px;
  border-radius: 3px;
  line-height: 1;
  transition: background-color 0.2s, border-color 0.2s;
}

.header-login:hover {
  background: rgba(255, 255, 255, 0.12);
}

.header-quote:hover {
  background: #005D5C;
  border-color: #005D5C;
}

/* =====================================================
   HERO — full-width, image-led
   ===================================================== */
.hero {
  position: relative;
  min-height: 760px;
  margin-top: 0;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg,
      rgba(6, 24, 41, 0.78) 0%,
      rgba(6, 24, 41, 0.50) 42%,
      rgba(6, 24, 41, 0.10) 100%),
    url("assets/images/hero-team.jpg");
  background-size: cover;
  background-position: center;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 220px;
  padding-bottom: 96px;
}

.hero-content h1 {
  color: var(--white);
  max-width: 680px;
  margin-bottom: 20px;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 34px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.98rem;
  margin-bottom: 22px;
}
.hero-rating-word { font-weight: 800; }
.hero-rating-note { font-weight: 600; opacity: 0.88; }
.hero-stars { display: inline-flex; gap: 3px; }
.hero-stars .lucide { width: 18px; height: 18px; color: var(--gold); fill: var(--gold); }

/* Quote box — Housekeep-style search bar */
.quote-box {
  display: flex;
  align-items: stretch;
  gap: 8px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(6, 24, 41, 0.28);
  padding: 8px;
  max-width: 560px;
  min-height: 72px;
}
.quote-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 8px 0 14px;
  min-width: 0;
}
.quote-input .lucide { width: 20px; height: 20px; color: var(--teal); }
.quote-input input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
}
.quote-input input::placeholder { color: #93A3AC; font-weight: 500; }
.quote-btn { flex-shrink: 0; border-radius: 6px; padding: 0 28px; }

#heroPostcodeInput.is-error { outline: 2px solid #ef4444; outline-offset: 2px; }

.hero-quote-error {
  margin-top: 10px;
  color: #ffdddd;
  font-size: 14px;
  font-weight: 600;
  min-height: 1px;
}

.quote-note {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 16px;
}

/* =====================================================
   TRUST STRIP
   ===================================================== */
.trust { background: var(--white); border-bottom: 1px solid var(--border); }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px 30px;
  padding-block: 26px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--blue);
}
.trust-item .lucide { color: var(--teal); width: 22px; height: 22px; }

/* =====================================================
   HOW IT WORKS
   ===================================================== */
.how {
  position: relative;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--off-white) 100%);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.process-grid::before {
  display: none;
}

.process-card {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 36px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #dce6ea;
  box-shadow: 0 14px 40px rgba(6, 24, 41, 0.06);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.process-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--card-radius) - 1px);
  background: linear-gradient(145deg, rgba(0, 93, 92, 0.08), transparent 42%);
  opacity: 0;
  transition: opacity 0.32s var(--ease);
  pointer-events: none;
}
.process-card:hover {
  transform: none;
  border-color: rgba(0, 93, 92, 0.46);
  box-shadow: var(--card-shadow-hover);
}
.process-card:hover::after { opacity: 1; }

.process-top {
  display: block;
  min-height: 0;
  margin: 0;
}
.process-number,
.process-num {
  display: block;
  font-size: 74px;
  line-height: 0.9;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(22, 86, 104, 0.45);
  letter-spacing: 0;
  margin: 0 0 42px;
}
.process-icon {
  position: absolute;
  top: 36px;
  right: 36px;
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #f0f6f6;
  color: #165668;
  border: 0;
  box-shadow: none;
  transition: background-color 0.25s var(--ease);
}
.process-icon .lucide { width: 27px; height: 27px; color: #165668; stroke-width: 2.2; }
.process-card:hover .process-icon { transform: none; background: #f0f6f6; }
.process-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.25;
  min-height: 32px;
  color: #061829;
}
.process-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #52616B;
}

/* =====================================================
   SERVICES — image-led cards
   ===================================================== */
.services {
  background:
    linear-gradient(180deg, var(--white) 0%, #fbfcfc 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid #dce6ea;
  border-radius: var(--card-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  height: 100%;
  box-shadow: 0 14px 40px rgba(6, 24, 41, 0.06);
  transition: var(--card-transition);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 93, 92, 0.34);
  box-shadow: var(--card-shadow-hover);
}

.service-media {
  position: relative;
  height: 230px;
  min-height: 230px;
  max-height: 230px;
  flex: 0 0 auto;
  overflow: hidden;
  background: linear-gradient(150deg, var(--teal-dark), var(--navy));
  border-radius: var(--card-radius) var(--card-radius) 0 0;
}
.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 24, 41, 0) 54%, rgba(6, 24, 41, 0.18) 100%);
  pointer-events: none;
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.94) contrast(1.03);
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-media img { transform: scale(1.05); }
.service-media-left img { object-position: center 62%; }   /* House — gloved hands + spray */
.service-media-center img { object-position: center 44%; } /* Deep — masked cleaner + suit */
.service-media-room img { object-position: center 60%; }   /* End of tenancy — squeegee + glove */
.service-media-right img { object-position: center 38%; }  /* Airbnb — pillow + hands */
.service-media-office img { object-position: center 55%; } /* Office — chairs + table */

.service-chip {
  position: absolute;
  left: 20px;
  bottom: -26px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(230, 236, 239, 0.9);
  box-shadow: 0 12px 28px rgba(6, 24, 41, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.32s var(--ease), background-color 0.32s var(--ease), border-color 0.32s var(--ease);
}
.service-chip .lucide { width: 24px; height: 24px; color: var(--teal); }
.service-card:hover .service-chip {
  transform: scale(1.06) rotate(-3deg);
  border-color: rgba(0, 93, 92, 0.28);
  background: #f4fbfa;
}

.service-body {
  padding: 34px 34px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-body h3 {
  min-height: 58px;
  margin: 0 0 16px;
  display: flex;
  align-items: flex-start;
  font-size: 24px;
  line-height: 1.2;
}
.service-body p {
  margin: 0;
  max-width: 31ch;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text);
}
.service-body .text-link,
.service-body .btn {
  margin-top: auto;
  padding-top: 28px;
  display: inline-flex;
  align-items: center;
}

.service-card-cta,
.service-card.is-dark,
.service-card.dark,
.service-card--dark {
  isolation: isolate;
  background:
    radial-gradient(380px 220px at 94% 10%, rgba(0, 93, 92, 0.42), transparent 64%),
    linear-gradient(155deg, var(--blue), var(--navy));
  border-color: rgba(255, 255, 255, 0.08);
  min-height: 520px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 230px;
}
.service-cta-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent);
  pointer-events: none;
  z-index: -1;
}
.service-card-cta .service-body {
  position: relative;
  z-index: 1;
  padding: 34px 34px 30px;
}
.service-card-cta h3 {
  min-height: 58px;
  margin: 0 0 16px;
  color: var(--white);
  font-size: 24px;
  line-height: 1.2;
}
.service-card-cta p { color: rgba(255, 255, 255, 0.72); }
.service-chip-dark {
  position: absolute;
  top: -28px;
  left: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
  margin: 0;
}
.service-chip-dark .lucide { color: #8FD6D0; }
.service-card-cta .btn { align-self: flex-start; }

/* =====================================================
   BENEFITS — split
   ===================================================== */
.benefits { background: var(--off-white); }
.benefits-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: center;
}
.benefits-visual { position: relative; }
.benefits-visual img {
  width: 100%;
  aspect-ratio: 4 / 4.5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.benefits-tag {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.benefits-tag .lucide { width: 18px; height: 18px; color: var(--teal); }

.benefits-copy h2 { margin-bottom: 16px; }
.benefits-intro { font-size: 1.1rem; margin-bottom: 34px; }

.benefits-list { display: grid; gap: 22px; margin-bottom: 36px; }
.benefits-list li { display: flex; gap: 16px; align-items: flex-start; }
.check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 93, 92, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.check .lucide { width: 15px; height: 15px; color: var(--teal); stroke-width: 3; }
.benefits-list strong { display: block; color: var(--navy); font-size: 1.02rem; font-weight: 700; margin-bottom: 3px; }
.benefits-list span:not(.check) { font-size: 0.93rem; }

/* =====================================================
   PACKAGES
   ===================================================== */
.packages {
  background:
    linear-gradient(180deg, #fbfcfc 0%, var(--white) 100%);
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.package-card {
  position: relative;
  background: var(--white);
  border: var(--card-border);
  border-radius: var(--card-radius);
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  height: 100%;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transition: var(--card-transition);
}
.package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 93, 92, 0.34);
  box-shadow: var(--card-shadow-hover);
}
.package-card.is-active {
  border-color: var(--teal);
  background:
    linear-gradient(180deg, rgba(0, 93, 92, 0.055), rgba(255, 255, 255, 0) 42%),
    var(--white);
  box-shadow: 0 22px 52px rgba(0, 93, 92, 0.14);
}

.package-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.package-label {
  display: inline-block;
  min-height: 24px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.package-card h3 {
  min-height: 58px;
  margin: 0 0 18px;
  font-size: 1.08rem;
}
.package-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
}
.package-card li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
}
.package-card li .lucide { width: 15px; height: 15px; color: var(--teal); margin-top: 4px; stroke-width: 3; }
.package-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 24px;
}
.package-card .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  padding: 12px 16px;
  font-size: 0.88rem;
  min-height: 46px;
}
.package-card.is-active .package-view {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(0, 93, 92, 0.24);
}
.package-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  min-height: 42px;
  color: var(--teal);
  font-weight: 800;
  font-size: 0.88rem;
  transition: color 0.22s;
}
.package-quote:hover { color: #047170; }

.package-featured {
  border-color: rgba(0, 93, 92, 0.55);
}
.package-flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.package-details {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
  gap: 0;
  overflow: hidden;
  border: var(--card-border);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 24px 58px rgba(6, 24, 41, 0.12);
}
.package-details-copy {
  min-height: 360px;
  background:
    radial-gradient(520px 260px at 88% 0%, rgba(0, 93, 92, 0.38), transparent 66%),
    linear-gradient(155deg, var(--blue), var(--navy));
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: rgba(255, 255, 255, 0.78);
}
.package-detail-label {
  display: inline-block;
  margin-bottom: 14px;
  color: #8fd6d0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.package-detail-title {
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 14px;
}
.package-detail-desc {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}
.package-detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.package-details-checklist {
  min-height: 360px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(247, 249, 250, 0.88), rgba(255, 255, 255, 0.96));
}
.package-details-checklist h4 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.package-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.package-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  min-height: 52px;
  padding: 15px;
  border: 1px solid rgba(230, 236, 239, 0.9);
  border-radius: 14px;
  background: var(--white);
  color: var(--blue);
  font-size: 0.94rem;
  font-weight: 700;
}
.package-detail-list .lucide {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--teal);
  stroke-width: 3;
}

/* =====================================================
   WHY CHOOSE HIIFA — trust cards
   ===================================================== */
.why { background: var(--off-white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}
.why-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
  border-radius: var(--card-radius);
  background: var(--white);
  border: 1px solid #dce6ea;
  box-shadow: 0 14px 40px rgba(6, 24, 41, 0.06);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 93, 92, 0.46);
  box-shadow: var(--card-shadow-hover);
}
.why-icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #f0f6f6;
  color: var(--teal-dark);
  margin-bottom: 24px;
  transition: background-color 0.25s var(--ease);
}
.why-card:hover .why-icon { background: rgba(0, 93, 92, 0.12); }
.why-icon .lucide { width: 28px; height: 28px; color: var(--teal-dark); stroke-width: 2.2; }
.why-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--navy);
}
.why-card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--text);
}

/* =====================================================
   REVIEWS — dark navy
   ===================================================== */
.reviews {
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(0, 93, 92, 0.28), transparent 60%),
    var(--navy);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}
.review,
.review-card,
.testimonial-card {
  position: relative;
  min-height: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.review:hover,
.review-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.16);
}

.review-quote {
  position: absolute;
  top: 18px;
  right: 28px;
  font-size: 5rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.stars,
.review-stars,
.testimonial-stars {
  min-height: 24px;
  display: flex;
  gap: 4px;
  margin-bottom: 22px;
}
.stars .lucide { width: 16px; height: 16px; color: var(--gold); fill: var(--gold); }
.review p,
.review-card p,
.testimonial-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.7;
}
.review footer,
.review-author,
.testimonial-author {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.review footer strong { display: block; color: var(--white); font-size: 0.96rem; }
.review footer span:not(.review-avatar) { font-size: 0.82rem; color: rgba(255, 255, 255, 0.55); }

/* =====================================================
   AREAS
   ===================================================== */
.areas { background: var(--white); }
.areas-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.areas-copy h2 { margin-bottom: 14px; }
.areas-copy p { font-size: 1.06rem; margin-bottom: 28px; max-width: 440px; }

.areas-tags { display: flex; flex-wrap: wrap; gap: 11px; }
.area-tag {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--off-white);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--blue);
  transition: border-color 0.22s, color 0.22s, transform 0.25s var(--ease);
}
.area-tag:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

/* =====================================================
   FAQ
   ===================================================== */
.faq { background: var(--off-white); }
.faq-inner { max-width: 820px; }
.faq-list { display: grid; gap: 14px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.28s, box-shadow 0.28s;
}
.faq-item.active { border-color: rgba(0, 93, 92, 0.4); box-shadow: var(--shadow-md); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  padding: 24px 28px;
  font-weight: 800;
  font-size: 1.06rem;
  color: var(--navy);
}
.faq-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 93, 92, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}
.faq-icon .lucide { color: var(--teal); width: 18px; height: 18px; transition: transform 0.32s var(--ease); }
.faq-item.active .faq-icon { background: var(--teal); }
.faq-item.active .faq-icon .lucide { color: var(--white); transform: rotate(180deg); }

.faq-a { height: 0; overflow: hidden; }
.faq-a p { padding: 0 28px 26px; font-size: 0.98rem; max-width: 680px; }
.faq-a a { color: var(--teal); font-weight: 700; }
.faq-a a:hover { text-decoration: underline; }

/* =====================================================
   FINAL CTA
   ===================================================== */
.final-cta { padding: clamp(80px, 9vw, 118px) 0; background: var(--white); }
.final-cta-inner {
  background:
    radial-gradient(640px 320px at 88% 8%, rgba(0, 93, 92, 0.4), transparent 62%),
    linear-gradient(150deg, var(--blue), var(--navy) 62%);
  border-radius: 28px;
  padding: clamp(48px, 6vw, 76px) clamp(32px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.final-cta-copy h2 { color: var(--white); margin-bottom: 12px; }
.final-cta-copy p { color: rgba(255, 255, 255, 0.78); font-size: 1.08rem; max-width: 480px; }
.final-cta-actions { display: flex; flex-direction: column; gap: 13px; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { background: var(--navy); color: rgba(255, 255, 255, 0.6); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr 0.9fr;
  gap: 42px;
  padding-block: 70px 46px;
}
.footer-logo {
  height: 68px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}
.footer-brand p { font-size: 0.94rem; max-width: 320px; line-height: 1.7; }

.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 800;
}
.footer-col a {
  font-size: 0.94rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: #8FD6D0; }
.footer-col .lucide { width: 15px; height: 15px; color: #8FD6D0; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  padding-bottom: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.84rem;
}

.footer-company {
  padding-bottom: 24px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* =====================================================
   FLOATING WHATSAPP
   ===================================================== */
.whatsapp-fab {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
  transition: transform 0.28s var(--ease);
}
.whatsapp-fab:hover { transform: translateY(-3px) scale(1.04); }
.whatsapp-fab .lucide { width: 27px; height: 27px; color: var(--white); }

/* =====================================================
   A11Y
   ===================================================== */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

.package-card:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 20px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .packages-grid { grid-template-columns: repeat(3, 1fr); }
  .package-card { min-height: 410px; }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .hero { min-height: 660px; }
  .hero-content { padding-top: 150px; padding-bottom: 72px; }
  .hero-bg {
    background-image:
      linear-gradient(180deg,
        rgba(6, 24, 41, 0.78) 0%,
        rgba(6, 24, 41, 0.55) 55%,
        rgba(6, 24, 41, 0.68) 100%),
      url("assets/images/hero-team.jpg");
    background-position: center 25%;
  }

  .benefits-grid { grid-template-columns: 1fr; gap: 44px; }
  .benefits-visual img { aspect-ratio: 16 / 11; object-position: center 20%; }
  .packages-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .package-card { min-height: 410px; }
  .package-details { grid-template-columns: 1fr; }
  .package-details-copy,
  .package-details-checklist { min-height: 320px; }
  .package-detail-list { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .areas-inner { grid-template-columns: 1fr; gap: 38px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .final-cta-actions { width: 100%; }

}

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

  .process-card {
    min-height: 260px;
  }
}

/* Mobile header */
@media (max-width: 900px) {
  .header-inner {
    height: 72px;
    padding: 0 20px;
  }

  .brand-logo {
    height: 42px;
  }

  .main-nav,
  .header-login {
    display: none;
  }

  .header-quote {
    padding: 12px 18px;
  }
}

@media (max-width: 560px) {
  body { font-size: 15.5px; }
  /* Clear the floating WhatsApp button so it doesn't cover the legal line */
  .footer-company { padding-bottom: 84px; }
  .hero { min-height: 620px; }
  .hero-container { padding: 0 20px; }
  .hero-content { padding-top: 132px; }
  .hero-rating { flex-wrap: wrap; gap: 10px; }
  .hero-rating-note { width: 100%; margin-top: -4px; }
  .hero-content h1 { font-size: clamp(2.15rem, 9vw, 2.6rem); }
  .hero-sub { font-size: 1.05rem; }

  .quote-box { flex-direction: column; min-height: 0; }
  .quote-input { padding: 14px 8px 10px 12px; }
  .quote-btn { width: 100%; padding: 15px 20px; }

  .trust-row { justify-content: flex-start; gap: 14px 26px; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 38px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  .process-card { min-height: 260px; }
  .process-card p { max-width: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .service-card,
  .service-card-cta { min-height: 520px; }
  .service-media {
    height: 230px;
    min-height: 230px;
    max-height: 230px;
  }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card { min-height: 410px; }
  .package-details-copy,
  .package-details-checklist {
    min-height: 0;
    padding: 34px 30px;
  }
  .package-detail-actions .btn { width: 100%; }
  .final-cta-actions .btn { width: 100%; }
  .final-cta-inner { text-align: left; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .whatsapp-fab { width: 54px; height: 54px; right: 18px; bottom: 18px; }
}
