/* ════════════════════════════════════════════
   TrustFix — Brand Design System
   Navy #0B1F3A · Orange #F36C21 · Grey #F7F8FA
   ════════════════════════════════════════════ */

:root {
  --navy: #0B1F3A;
  --navy-dark: #071527;
  --navy-soft: #132e52;
  --orange: #F36C21;
  --orange-dark: #d95a14;
  --grey: #F7F8FA;
  --white: #ffffff;
  --text: #3c4a5e;
  --text-light: #8a96a6;
  --line: #e6e9ef;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 40px rgba(11, 31, 58, 0.10);
  --shadow-lg: 0 24px 64px rgba(11, 31, 58, 0.16);
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 800;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--orange); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; }
.btn--lg { padding: 17px 36px; font-size: 16px; }
.btn--block { width: 100%; justify-content: center; }

.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 10px 28px rgba(243, 108, 33, 0.35); }
.btn--primary:hover { background: var(--navy-dark); box-shadow: 0 10px 28px rgba(11, 31, 58, 0.35); transform: translateY(-2px); }

.btn--ghost { background: rgba(255, 255, 255, 0.1); color: #fff; border-color: rgba(255, 255, 255, 0.55); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: #fff; color: var(--navy); border-color: #fff; transform: translateY(-2px); }

.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { background: var(--navy-dark); color: #fff; transform: translateY(-2px); }

.btn--outline { background: transparent; color: var(--navy); border-color: var(--line); justify-content: center; }
.btn--outline:hover { background: var(--navy-dark); border-color: var(--navy-dark); color: #fff; }

.btn--whatsapp { background: #25D366; color: #fff; box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35); }
.btn--whatsapp:hover { background: #1da851; box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45); transform: translateY(-2px); }

/* ─── Header top (logo + info blocks) ─── */
.header-top { background: var(--white); }
.header-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo__img { height: 48px; width: auto; display: block; }
.logo__mark { display: inline-flex; width: 44px; height: 44px; flex-shrink: 0; }
.logo__mark svg { width: 100%; height: 100%; }
.logo__text { font-family: var(--font-head); font-size: 27px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; }
.logo__text em { font-style: normal; color: var(--orange); }

.header-info { display: flex; gap: 52px; }
.info-block { display: flex; align-items: center; gap: 14px; }
.info-block__icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  background: var(--orange);
  border-radius: 10px;
  display: grid;
  place-items: center;
  transition: background 0.3s;
}
.info-block__icon svg { width: 24px; height: 24px; fill: #fff; }
a.info-block:hover .info-block__icon { background: var(--navy); }
.info-block__text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.info-block__text span { font-size: 14px; color: var(--text-light); }

/* ─── Navbar (full-width colour bar) ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  transition: box-shadow 0.3s;
}
.navbar.is-scrolled { box-shadow: 0 8px 30px rgba(11, 31, 58, 0.30); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 24px; }

.nav { display: flex; align-items: center; }
.nav__item { position: relative; display: flex; align-items: center; }
.nav__item:not(:last-child)::after {
  content: "❖";
  font-size: 9px;
  color: rgba(243, 108, 33, 0.85);
  margin: 0 22px;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15.5px;
  color: #fff;
  padding: 8px 0;
  transition: color 0.2s;
}
.nav__link:hover, .nav__link.is-active { color: var(--orange); }
.nav__caret { width: 11px; height: 11px; fill: currentColor; transition: transform 0.25s var(--ease); }
.nav__item--drop:hover .nav__caret { transform: rotate(180deg); }

/* Services dropdown */
.nav__sub {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 250px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  z-index: 120;
}
.nav__sub::before { content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }
.nav__item--drop:hover .nav__sub { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__sub li a {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}
.nav__sub li a:hover { background: var(--grey); color: var(--orange); padding-left: 22px; }

.navbar__actions { display: flex; align-items: center; gap: 16px; }
.navbar__cta { padding: 12px 26px; font-size: 14.5px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 26px; height: 3px; background: #fff; border-radius: 2px; transition: all 0.3s var(--ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0 250px;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: heroZoom 14s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(7, 21, 39, 0.92) 0%, rgba(11, 31, 58, 0.72) 45%, rgba(11, 31, 58, 0.25) 100%);
}
.hero__content { position: relative; z-index: 2; width: 100%; }

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--orange);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.kicker-line { width: 46px; height: 2.5px; background: var(--orange); border-radius: 2px; display: inline-block; }

.hero__title {
  color: #fff;
  font-size: clamp(42px, 6.2vw, 76px);
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  max-width: 720px;
}
.hero__sub {
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(15px, 1.6vw, 19px);
  margin-bottom: 16px;
  max-width: 660px;
}
.hero__sub .dot { color: var(--orange); margin: 0 6px; }
.hero__desc { color: rgba(255, 255, 255, 0.75); font-size: 17px; max-width: 560px; margin-bottom: 38px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Floating stats */
.hero__stats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  margin-left: auto;
  margin-right: auto;
  z-index: 3;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: var(--shadow-lg);
  padding: 34px 20px;
  gap: 12px;
}
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  height: 56px; width: 1px;
  background: var(--line);
}
.stat__num, .stat__plus {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(30px, 3.4vw, 44px);
  color: var(--navy);
}
.stat__plus { color: var(--orange); }
.stat__label { display: block; font-size: 14px; color: var(--text-light); margin-top: 4px; font-weight: 500; }

/* Trust badges (replaces numeric stats) */
.stat--trust { padding: 0 8px; }
.stat__ic {
  width: 50px; height: 50px;
  margin: 0 auto 12px;
  border-radius: 14px;
  background: rgba(243, 108, 33, 0.12);
  display: grid;
  place-items: center;
}
.stat__ic svg { width: 26px; height: 26px; fill: var(--orange); }
.stat__title {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--navy);
  line-height: 1.2;
}

/* ─── Sections ─── */
.section { padding: 110px 0; }
.section--grey { background: var(--grey); }
.section--navy { background: var(--navy); }
.section--navy .section-title { color: #fff; }
.section--navy .section-sub { color: rgba(255, 255, 255, 0.65); }

.section-head { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(243, 108, 33, 0.10);
  border: 1px solid rgba(243, 108, 33, 0.25);
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.section-kicker--light { background: rgba(243, 108, 33, 0.18); }
.section-title { font-size: clamp(30px, 4vw, 44px); letter-spacing: -1px; margin-bottom: 18px; }
.section-sub { color: var(--text-light); font-size: 17px; }

/* ─── Service Cards ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card__media:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card__media { position: relative; height: 190px; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.08); }
.service-card__icon {
  position: absolute;
  left: 22px; top: 162px;
  z-index: 2;
  width: 56px; height: 56px;
  background: var(--orange);
  border-radius: 14px;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(243, 108, 33, 0.4);
  transition: background 0.3s;
}
.service-card:hover .service-card__icon { background: var(--navy); }
.service-card__icon svg { width: 26px; height: 26px; fill: #fff; }
.service-card__body { padding: 44px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.service-card__body h3 { font-size: 19px; margin-bottom: 10px; }
.service-card__body p { font-size: 14.5px; color: var(--text-light); margin-bottom: 16px; }
.service-card__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; }
.service-card__tags li {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  background: var(--grey);
  border: 1px solid var(--line);
  padding: 4px 12px;
  border-radius: 50px;
}
.service-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--orange);
  transition: gap 0.3s var(--ease), color 0.2s;
}
.service-card__link svg { width: 16px; height: 16px; }
.service-card__link:hover { color: var(--navy); gap: 13px; }

/* ─── About ─── */
.about {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__media { position: relative; }
.about__img-main { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 88%; aspect-ratio: 4/4.4; object-fit: cover; }
.about__img-float {
  position: absolute;
  right: 0; bottom: -40px;
  width: 46%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 8px solid var(--grey);
  box-shadow: var(--shadow-lg);
}
.about__badge {
  position: absolute;
  top: 28px; right: 14px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(243, 108, 33, 0.45);
}
.about__badge-num { font-family: var(--font-head); font-weight: 800; font-size: 34px; line-height: 1; }
.about__badge-ic { width: 40px; height: 40px; flex-shrink: 0; display: grid; place-items: center; }
.about__badge-ic svg { width: 36px; height: 36px; fill: #fff; }
.about__badge-text { font-size: 13px; font-weight: 600; line-height: 1.3; }
.about__content .section-title { margin: 14px 0 20px; }
.about__content > p { margin-bottom: 26px; }

.checklist { display: grid; gap: 14px; margin-bottom: 34px; }
.checklist li { display: flex; align-items: center; gap: 13px; font-weight: 500; color: var(--navy); }
.check {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(243, 108, 33, 0.12);
  position: relative;
}
.check::after {
  content: "";
  position: absolute;
  left: 8px; top: 4.5px;
  width: 6px; height: 11px;
  border: solid var(--orange);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.about__cta { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.about__call { display: flex; align-items: center; gap: 13px; }
.about__call-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--navy);
  display: grid;
  place-items: center;
  transition: background 0.3s;
}
.about__call:hover .about__call-icon { background: var(--orange); }
.about__call-icon svg { width: 22px; height: 22px; fill: #fff; }
.about__call small { display: block; color: var(--text-light); font-size: 12.5px; }
.about__call strong { font-family: var(--font-head); color: var(--navy); font-size: 17px; }

/* ─── Why Choose Us ─── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.why-card {
  background: var(--grey);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 28px;
  text-align: center;
  transition: all 0.4s var(--ease);
}
.why-card:hover { background: var(--navy); transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.why-card__icon {
  width: 68px; height: 68px;
  margin: 0 auto 22px;
  border-radius: 18px;
  background: rgba(243, 108, 33, 0.12);
  display: grid;
  place-items: center;
  transition: background 0.3s;
}
.why-card:hover .why-card__icon { background: var(--orange); }
.why-card__icon svg { width: 30px; height: 30px; fill: var(--orange); transition: fill 0.3s; }
.why-card:hover .why-card__icon svg { fill: #fff; }
.why-card h3 { font-size: 18px; margin-bottom: 10px; transition: color 0.3s; }
.why-card p { font-size: 14.5px; color: var(--text-light); transition: color 0.3s; }
.why-card:hover h3 { color: #fff; }
.why-card:hover p { color: rgba(255, 255, 255, 0.7); }

/* ─── Process ─── */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.process-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: all 0.4s var(--ease);
}
.process-step:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(243, 108, 33, 0.5); transform: translateY(-6px); }
.process-step__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--orange);
  display: block;
  margin-bottom: 16px;
}
.process-step h3 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.process-step p { color: rgba(255, 255, 255, 0.6); font-size: 14.5px; }

/* ─── Projects ─── */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/4.6;
  display: block;
  box-shadow: var(--shadow);
}
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.project-card:hover img { transform: scale(1.08); }
.project-card__overlay {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background: linear-gradient(180deg, rgba(11, 31, 58, 0) 35%, rgba(7, 21, 39, 0.92) 100%);
}
.project-card__cat {
  align-self: flex-start;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.project-card__overlay h3 { color: #fff; font-size: 20px; margin-bottom: 8px; }
.project-card__overlay p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.45s var(--ease);
}
.project-card:hover .project-card__overlay p { max-height: 80px; opacity: 1; }

/* ─── AMC ─── */
.amc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.amc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s var(--ease);
}
.amc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.amc-card--featured {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.amc-card--featured:hover { transform: scale(1.03) translateY(-8px); }
.amc-card__ribbon {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(243, 108, 33, 0.4);
}
.amc-card h3 { font-size: 23px; margin-bottom: 6px; }
.amc-card--featured h3 { color: #fff; }
.amc-card__tag { color: var(--orange); font-family: var(--font-head); font-weight: 600; font-size: 14px; margin-bottom: 24px; }
.amc-card ul { display: grid; gap: 13px; margin-bottom: 32px; flex: 1; }
.amc-card ul li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  color: var(--text);
}
.amc-card--featured ul li { color: rgba(255, 255, 255, 0.8); }
.amc-card ul li::before {
  content: "";
  position: absolute;
  left: 4px; top: 5px;
  width: 6px; height: 11px;
  border: solid var(--orange);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.amc-card .btn { justify-content: center; }

/* ─── Testimonials ─── */
.testi-slider { max-width: 820px; margin: 0 auto; overflow: hidden; }
.testi-track { display: flex; transition: transform 0.6s var(--ease); }
.testi {
  flex: 0 0 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 50px 56px;
  text-align: center;
  box-shadow: var(--shadow);
}
.testi__stars { color: var(--orange); font-size: 22px; letter-spacing: 4px; margin-bottom: 22px; }
.testi blockquote {
  font-family: var(--font-head);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 26px;
}
.testi figcaption strong { display: block; font-family: var(--font-head); color: var(--navy); font-size: 16px; }
.testi figcaption span { color: var(--text-light); font-size: 14px; }

.testi-dots { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.testi-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: #cfd6e0;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.testi-dots button.is-active { background: var(--orange); width: 30px; border-radius: 6px; }

/* ─── CTA Strip (split-colour banner) ─── */
.cta-strip {
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange) 50%, var(--navy) 50%, var(--navy) 100%);
  padding: 90px 0;
}
.cta-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 10px solid #fff;
  box-shadow: 0 30px 70px rgba(7, 21, 39, 0.35);
}
.cta-box__left {
  background: var(--navy);
  padding: 64px 56px;
  display: flex;
  align-items: center;
}
.cta-box__left h2 {
  color: #fff;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.2;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.25);
}
.cta-box__left h2 span { display: block; font-size: 0.62em; color: var(--orange); margin-top: 6px; }
.cta-box__right {
  background: var(--orange);
  padding: 64px 56px;
  display: flex;
  align-items: center;
}
.cta-mini {
  display: flex;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 7px;
  box-shadow: 0 14px 36px rgba(7, 21, 39, 0.25);
}
.cta-mini input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 12px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy);
}
.cta-mini input::placeholder { color: var(--text-light); }
.cta-mini__btn {
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s;
}
.cta-mini__btn:hover { background: var(--orange-dark); }

/* ─── Contact ─── */
.contact { display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: start; }
.contact__info .section-title { margin: 14px 0 18px; }
.contact__info > p { margin-bottom: 32px; }
.contact__list { display: grid; gap: 22px; }
.contact__list li { display: flex; align-items: center; gap: 16px; }
.contact__icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(243, 108, 33, 0.12);
  display: grid;
  place-items: center;
}
.contact__icon svg { width: 23px; height: 23px; fill: var(--orange); }
.contact__list small { display: block; color: var(--text-light); font-size: 12.5px; }
.contact__list strong { font-family: var(--font-head); color: var(--navy); font-size: 16.5px; }

.contact__form {
  background: var(--grey);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px;
  display: grid;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact__form label {
  display: grid;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.contact__form textarea { resize: vertical; }
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(243, 108, 33, 0.12);
}
.form-note { color: #1d8a4e; font-weight: 600; font-size: 15px; text-align: center; }
.form-note--error { color: #c0392b; }

/* ─── Footer ─── */
.footer {
  background-color: #0c1018;
  background-image: radial-gradient(rgba(255, 255, 255, 0.055) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  color: rgba(255, 255, 255, 0.65);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1.15fr 1.25fr;
  gap: 48px;
  padding: 95px 24px 70px;
}
.footer__col h4 {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 26px;
}
.footer__col h4 em { font-style: normal; color: var(--orange); }
.footer__col h4::after {
  content: "";
  display: block;
  width: 50px; height: 3px;
  background: var(--orange);
  margin-top: 12px;
}
.footer__brand p { font-size: 14.5px; line-height: 1.9; margin-bottom: 28px; }
.footer__btn { display: inline-flex; width: auto; align-self: flex-start; padding: 13px 30px; font-size: 14px; }
.footer__col > a:not(.footer__btn) { display: block; padding: 7px 0; font-size: 14.5px; transition: color 0.2s, padding-left 0.25s var(--ease); }
.footer__col > a:not(.footer__btn):hover { color: var(--orange); padding-left: 6px; }
.footer__hours li { padding: 7px 0; font-size: 14.5px; }
.footer__contact-line { font-size: 14.5px; padding: 6px 0; line-height: 1.7; }
.footer__contact-line a { transition: color 0.2s; }
.footer__contact-line a:hover { color: var(--orange); }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
  width: 42px; height: 42px;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  transition: background 0.3s, transform 0.3s;
}
.footer__social a svg { width: 18px; height: 18px; fill: #fff; }
.footer__social a:hover { background: var(--orange); transform: translateY(-3px); }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 24px 0; font-size: 13.5px; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer__bottom-links { display: flex; align-items: center; gap: 12px; text-transform: uppercase; letter-spacing: 0.5px; font-size: 12.5px; }
.footer__bottom-links span { color: var(--orange); }
.footer__bottom-links a { transition: color 0.2s; }
.footer__bottom-links a:hover { color: var(--orange); }

/* ─── WhatsApp Float ─── */
.wa-float {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
  z-index: 90;
  transition: transform 0.3s var(--ease);
  animation: waPulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes waPulse {
  0% { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ─── Reveal animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }
.reveal[data-delay="4"] { transition-delay: 0.48s; }
.reveal[data-delay="5"] { transition-delay: 0.6s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg img { animation: none; }
}

/* ════════════ Responsive ════════════ */
@media (max-width: 1080px) {
  .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about, .contact { grid-template-columns: 1fr; gap: 64px; }
  .about__media { max-width: 560px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .info-block--hide-md { display: none; }
  .header-info { gap: 32px; }
  .nav__link:not(:last-child)::after { margin: 0 14px; }
  .cta-box__left, .cta-box__right { padding: 44px 36px; }
}

@media (max-width: 860px) {
  .header-info { display: none; }
  .header-top__inner { padding-top: 16px; padding-bottom: 16px; }
  .navbar__cta { display: none; }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(330px, 84vw);
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 104px 34px 36px;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    z-index: 99;
    box-shadow: -20px 0 60px rgba(7, 21, 39, 0.4);
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__item { display: block; }
  .nav__item:not(:last-child)::after { content: none; }
  .nav__link { color: #fff; font-size: 18px; padding: 11px 0; }
  .nav__caret { display: none; }
  .nav__sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    background: transparent;
    box-shadow: none;
    padding: 0 0 8px 14px;
  }
  .nav__sub::before { display: none; }
  .nav__sub li a { color: rgba(255, 255, 255, 0.62); font-size: 14.5px; padding: 7px 0; border-radius: 0; font-weight: 500; }
  .nav__sub li a:hover { background: transparent; color: var(--orange); padding-left: 6px; }
  .nav-toggle { position: relative; z-index: 100; }
  .nav-toggle.is-open span { background: #fff; }

  .cta-box { grid-template-columns: 1fr; }
  .cta-strip { background: var(--navy); padding: 70px 0; }

  .hero { padding-bottom: 60px; min-height: auto; }
  .hero__stats {
    position: static;
    transform: none;
    grid-template-columns: repeat(2, 1fr);
    border-radius: var(--radius);
    margin-top: 70px;
    gap: 28px 12px;
  }
  .stat:nth-child(2)::after { display: none; }

  .process-grid, .projects-grid, .amc-grid { grid-template-columns: 1fr; }
  .amc-card--featured { transform: none; }
  .amc-card--featured:hover { transform: translateY(-8px); }
  .section { padding: 80px 0; }
  .testi { padding: 38px 26px; }
}

@media (max-width: 560px) {
  .topbar__item--hide-sm { display: none; }
  .services-grid, .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 28px 22px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .about__img-float { border-width: 5px; }
}

/* ════════════════════════════════════════════
   About Page
   ════════════════════════════════════════════ */

/* ─── Page hero / breadcrumb banner ─── */
.page-hero {
  position: relative;
  padding: 118px 0 104px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(7, 21, 39, 0.94) 0%, rgba(11, 31, 58, 0.80) 55%, rgba(11, 31, 58, 0.50) 100%);
}
.page-hero__content { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(34px, 5vw, 58px); letter-spacing: -1.2px; margin-bottom: 14px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.78); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: var(--orange); font-size: 9px; }
.breadcrumb .current { color: var(--orange); }

/* ─── Intro reuses .about; reversed columns + 2-col checklist ─── */
.about--rev { grid-template-columns: 1fr 1.05fr; }
.about--rev .about__img-float { right: auto; left: 0; }
.about--rev .about__badge { right: 14px; left: auto; }
.checklist--2col { grid-template-columns: 1fr 1fr; gap: 14px 26px; }

/* ─── Framed section heading (tools icon + cursive sub) ─── */
.framed-head { text-align: center; max-width: 660px; margin: 0 auto 60px; }
.framed-head__box {
  position: relative;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 34px 50px 30px;
}
.framed-head__icon {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -55%);
  background: var(--navy);
  padding: 0 16px;
  line-height: 1;
}
.framed-head__icon svg { width: 30px; height: 30px; fill: var(--orange); display: block; }
.framed-head__title {
  color: #fff;
  font-size: clamp(27px, 3.6vw, 40px);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
.framed-head__sub {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translate(-50%, 52%);
  background: var(--navy);
  padding: 0 18px;
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: 25px;
  color: var(--orange);
  white-space: nowrap;
}
.framed-head__desc { color: rgba(255, 255, 255, 0.6); font-size: 16px; margin-top: 34px; }
/* Light-section variant cut colour */
.section:not(.section--navy) .framed-head__icon,
.section:not(.section--navy) .framed-head__sub { background: var(--white); }
.section:not(.section--navy) .framed-head__title { color: var(--navy); }
.section:not(.section--navy) .framed-head__box { border-color: var(--line); }
.section:not(.section--navy) .framed-head__desc { color: var(--text-light); }

/* ─── Success rate stats band (on .section--navy) ─── */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.stat-card { text-align: center; position: relative; padding: 6px 10px; }
.stat-card__icon {
  height: 78px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-card__icon svg { width: 60px; height: 60px; fill: #fff; }
.stat-card__bar {
  position: relative;
  display: block;
  width: 74%;
  height: 2px;
  margin: 0 auto 20px;
  background: var(--orange);
}
.stat-card__bar::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px var(--navy);
}
.stat-card__num,
.stat-card__title {
  font-family: var(--font-head);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.stat-card__num { font-size: clamp(32px, 4vw, 44px); }
.stat-card__title { display: block; font-size: clamp(18px, 2vw, 22px); }
.stat-card__plus { color: var(--orange); }
.stat-card__label {
  display: block;
  margin-top: 10px;
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

/* ─── Inspiring story tabs (folder style) ─── */
.tabs { display: flex; justify-content: flex-start; gap: 4px; flex-wrap: wrap; margin-bottom: 0; padding-left: 6px; position: relative; z-index: 2; }
.tab-btn {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  background: var(--orange);
  border: none;
  padding: 16px 52px 18px 28px;
  margin-right: -14px;
  border-radius: 8px 8px 0 0;
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 100%, 0 100%);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.tab-btn:hover { background: var(--orange-dark); }
.tab-btn.is-active {
  z-index: 3;
  background: var(--white);
  color: var(--orange);
  box-shadow: inset 0 3px 0 var(--orange);
}
.tab-panels {
  position: relative;
  z-index: 1;
  border: 1px solid var(--orange);
  border-radius: 0 8px 8px 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 52px;
}
.tab-panel { display: none; }
.tab-panel.is-active {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 54px;
  align-items: center;
  animation: tabFade 0.45s var(--ease);
}
@keyframes tabFade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.tab-panel__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; }
.tab-panel__body h3 {
  position: relative;
  font-size: clamp(24px, 3vw, 30px);
  padding-bottom: 16px;
  margin-bottom: 22px;
}
.tab-panel__body h3::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 130px; height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange) 30%, var(--line) 30%, var(--line) 100%);
}
.tab-panel__body p { margin-bottom: 24px; }

/* Brush-icon feature list (tab panels) */
.feature-list { display: grid; gap: 18px; }
.feature-list li { display: flex; align-items: center; gap: 16px; color: var(--text); font-size: 15.5px; font-weight: 500; }
.feature-list__ic {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--orange);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(243, 108, 33, 0.35);
}
.feature-list__ic svg { width: 17px; height: 17px; fill: #fff; }

/* ─── Our Specials (offset-icon cards, on .section--navy) ─── */
.specials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px 64px; }
.special2 { display: flex; align-items: center; gap: 30px; }
.special2--r { text-align: right; }
.special2__icon {
  width: 92px; height: 92px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  display: grid;
  place-items: center;
  transition: border-color 0.3s, background 0.3s;
}
.special2--l .special2__icon { align-self: flex-start; }
.special2--r .special2__icon { align-self: flex-end; }
.special2:hover .special2__icon { border-color: var(--orange); background: var(--orange); }
.special2__icon svg { width: 36px; height: 36px; fill: #fff; }
.special2__text {
  flex: 1;
  border-top: 1px solid rgba(243, 108, 33, 0.5);
  border-bottom: 1px solid rgba(243, 108, 33, 0.5);
  padding: 22px 0;
}
.special2__text h3 {
  color: #fff;
  font-family: var(--font-head);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}
.special2__text h3 span { display: block; font-weight: 400; font-size: 17px; color: rgba(255, 255, 255, 0.85); }
.special2__text p { color: rgba(255, 255, 255, 0.55); font-size: 14px; margin-top: 12px; }

/* ─── Recent Blog ─── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.blog-card__media { position: relative; height: 210px; overflow: hidden; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-card:hover .blog-card__media img { transform: scale(1.08); }
.blog-card__date {
  position: absolute;
  left: 18px; top: 18px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  text-align: center;
  border-radius: 10px;
  padding: 9px 13px;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(243, 108, 33, 0.4);
}
.blog-card__date strong { display: block; font-size: 20px; font-weight: 800; }
.blog-card__date span { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.blog-card__body { padding: 26px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card__cat { font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.blog-card__body h3 { font-size: 18px; line-height: 1.35; margin-bottom: 12px; }
.blog-card__body p { font-size: 14.5px; color: var(--text-light); margin-bottom: 18px; }
.blog-card .service-card__link { margin-top: auto; }

/* ─── Our Partners ─── */
.partners-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.partner {
  display: grid;
  place-items: center;
  padding: 34px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.partner:hover { box-shadow: var(--shadow); transform: translateY(-5px); border-color: rgba(243, 108, 33, 0.4); }
.partner span { font-family: var(--font-head); font-weight: 800; font-size: 21px; color: var(--navy); letter-spacing: -0.5px; }
.partner span em { font-style: normal; color: var(--orange); }

/* ─── Expert Team ─── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.team-card { text-align: center; }
.team-card__media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.team-card__media img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 0.6s var(--ease); }
.team-card:hover .team-card__media img { transform: scale(1.06); }
.team-card__social {
  position: absolute;
  left: 0; right: 0; bottom: -70px;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  background: linear-gradient(180deg, transparent, rgba(7, 21, 39, 0.88));
  transition: bottom 0.4s var(--ease);
}
.team-card:hover .team-card__social { bottom: 0; }
.team-card__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  transition: background 0.3s, transform 0.3s;
}
.team-card__social a:hover { background: var(--orange); transform: translateY(-3px); }
.team-card__social svg { width: 16px; height: 16px; fill: #fff; }
.team-card h3 { font-size: 18px; margin: 20px 0 4px; }
.team-card > span { color: var(--orange); font-family: var(--font-head); font-weight: 600; font-size: 14px; }
.team-card p { font-size: 13.5px; color: var(--text-light); margin-top: 8px; }

/* ─── CTA actions (about page) ─── */
.cta-actions { display: flex; flex-direction: column; gap: 14px; width: 100%; }

/* ─── About responsive ─── */
@media (max-width: 1080px) {
  .specials-grid { grid-template-columns: 1fr; gap: 30px; }
  .special2--r { text-align: left; flex-direction: row-reverse; }
  .special2--r .special2__icon,
  .special2--l .special2__icon { align-self: center; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about--rev { grid-template-columns: 1fr; }
  .tab-panel.is-active { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 860px) {
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 40px 12px; }
  .stat-card:nth-child(2)::after { display: none; }
  .stat-card:not(:last-child)::after { right: -6px; }
  .partners-row { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 90px 0 78px; }
}
@media (max-width: 560px) {
  .checklist--2col { grid-template-columns: 1fr; }
  .blog-grid, .team-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr; gap: 36px; }
  .special2, .special2--r { flex-direction: column; text-align: center; gap: 20px; }
  .special2--r .special2__icon,
  .special2--l .special2__icon { align-self: center; }
  .special2__text { padding: 20px 0; }
  .framed-head__box { padding: 30px 26px 28px; }
  .framed-head__sub { font-size: 21px; }
  .tab-btn { padding: 14px 40px 16px 22px; font-size: 15px; }
  .tab-panels { padding: 32px 24px; }
}

/* ════════════════════════════════════════════
   Services Page
   ════════════════════════════════════════════ */

/* Framed-head cut-colour on grey sections */
.section.section--grey .framed-head__icon,
.section.section--grey .framed-head__sub { background: var(--grey); }

/* ─── Popular Services grid ─── */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.svc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.svc-card__media { height: 215px; overflow: hidden; }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.svc-card:hover .svc-card__media img { transform: scale(1.08); }
.svc-card__body { padding: 26px 24px 30px; display: flex; flex-direction: column; flex: 1; }
.svc-card__body h3 { font-size: 20px; margin-bottom: 10px; }
.svc-card__body p { color: var(--text-light); font-size: 14.5px; margin-bottom: 22px; }
.svc-card__btn { align-self: flex-start; margin-top: auto; padding: 11px 22px; font-size: 13.5px; }

/* ─── Our Services categories (light washed-image cards, slanted base) ─── */
.svc-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.svc-cat {
  position: relative;
  min-height: 400px;
  display: flex;
  overflow: hidden;
  background: var(--grey);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  transition: transform 0.4s var(--ease);
}
.svc-cat:nth-child(even) { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%); }
.svc-cat:hover { transform: translateY(-6px); }
.svc-cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.svc-cat:hover img { transform: scale(1.06); }
.svc-cat::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(255, 255, 255, 0.85);
  transition: background 0.4s var(--ease);
}
.svc-cat:hover::after { background: rgba(255, 255, 255, 0.74); }
.svc-cat__inner { position: relative; z-index: 2; margin: auto; text-align: center; padding: 40px 30px; }
.svc-cat__inner h3 {
  color: var(--navy);
  font-size: 27px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.svc-cat__tag {
  display: block;
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
  margin-bottom: 18px;
}
.svc-cat__tag i { color: var(--orange); font-style: normal; margin: 0 5px; }
.svc-cat__inner p {
  color: var(--text);
  font-size: 14.5px;
  margin: 0 auto 24px;
  max-width: 290px;
}
.svc-cat__btn { padding: 12px 26px; font-size: 13.5px; }

/* ─── Easy Search (wide tab panels + rooms) ─── */
.tabs--center { justify-content: center; padding-left: 0; }
.tab-panels--wide { border-radius: 8px; }
.tab-panel--block.is-active { display: block; animation: tabFade 0.45s var(--ease); }
.rooms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 38px 30px; }
.room h4 { font-size: 17px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.room-list { display: grid; gap: 11px; }
.room-list li { position: relative; padding-left: 22px; font-size: 14px; color: var(--text); }
.room-list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 5px;
  width: 6px; height: 6px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  transform: rotate(45deg);
}

/* ─── Quote band ─── */
.quote-band { position: relative; padding: 120px 0; overflow: hidden; }
.quote-band__bg { position: absolute; inset: 0; }
.quote-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.quote-band__overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(7, 21, 39, 0.9), rgba(11, 31, 58, 0.78)); }
.quote-band__inner { position: relative; z-index: 2; max-width: 920px; margin: 0 auto; text-align: center; padding: 0 24px; }
.quote-band h2 {
  color: #fff;
  font-size: clamp(23px, 3.1vw, 37px);
  line-height: 1.3;
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 30px 44px;
  margin-bottom: 32px;
}
.quote-band__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Why Choose Us (image + accordion) ─── */
.why2 { display: grid; grid-template-columns: 1fr 1.08fr; gap: 60px; align-items: center; }
.why2__media { position: relative; }
.why2__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4 / 4.2; object-fit: cover; }
.why2__badge {
  position: absolute;
  right: -18px; bottom: 30px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(243, 108, 33, 0.45);
}
.why2__badge-num { font-family: var(--font-head); font-weight: 800; font-size: 32px; line-height: 1; }
.why2__badge-text { font-size: 13px; font-weight: 600; line-height: 1.3; }
.why2__content h3 { font-size: clamp(23px, 2.6vw, 30px); line-height: 1.3; margin-bottom: 16px; }
.why2__content > p { color: var(--text); margin-bottom: 22px; }

.accordion { margin-bottom: 30px; border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 18px 2px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--navy);
  transition: color 0.2s;
}
.acc-item.is-open .acc-head,
.acc-head:hover { color: var(--orange); }
.acc-ico { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.acc-ico::before, .acc-ico::after { content: ""; position: absolute; background: var(--orange); border-radius: 2px; }
.acc-ico::before { left: 0; top: 9px; width: 20px; height: 2px; }
.acc-ico::after { left: 9px; top: 0; width: 2px; height: 20px; transition: transform 0.3s var(--ease); }
.acc-item.is-open .acc-ico::after { transform: scaleY(0); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.acc-item.is-open .acc-body { max-height: 220px; }
.acc-body p { padding: 0 2px 18px; color: var(--text-light); font-size: 15px; }

/* ─── Services responsive ─── */
@media (max-width: 1080px) {
  .svc-grid, .svc-cats { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .why2 { grid-template-columns: 1fr; gap: 48px; }
  .why2__media { max-width: 540px; }
}
@media (max-width: 560px) {
  .svc-grid, .svc-cats { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; gap: 28px; }
  .quote-band h2 { padding: 24px 22px; }
  .why2__badge { right: 12px; }
}

/* ════════════════════════════════════════════
   Single Service Page
   ════════════════════════════════════════════ */
.page-hero--sm { padding: 92px 0 84px; }

.svc-layout { display: grid; grid-template-columns: 330px 1fr; gap: 50px; align-items: start; }
.svc-side { display: grid; gap: 30px; }

/* Sidebar — services nav */
.svc-nav { display: grid; gap: 9px; }
.svc-nav__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  transition: all 0.25s var(--ease);
}
.svc-nav__item:hover { border-color: var(--line); border-left-color: var(--orange); color: var(--orange); transform: translateX(3px); }
.svc-nav__item.is-active { background: var(--grey); border-left-color: var(--orange); color: var(--orange); }
.svc-nav__num {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 6px;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
}

/* Sidebar — Bookings Open box */
.side-box { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.booking__head { background: var(--orange); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 18px; padding: 16px 22px; }
.booking__body {
  background: var(--navy);
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  padding: 24px 22px;
}
.booking__body ul { display: grid; gap: 13px; margin-bottom: 22px; }
.booking__body li { position: relative; padding-left: 22px; font-size: 14px; color: rgba(255, 255, 255, 0.82); }
.booking__body li::before { content: ""; position: absolute; left: 2px; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.booking__btn { width: 100%; justify-content: center; }

/* Sidebar — cards (Quick Contact, Downloads) */
.side-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; }
.side-card__title { font-size: 19px; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.side-card__title::after { content: ""; display: block; width: 40px; height: 3px; background: var(--orange); margin-top: 14px; }

.side-form { display: grid; gap: 12px; }
.side-form input, .side-form select, .side-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  background: var(--grey);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.side-form textarea { resize: vertical; min-height: 92px; }
.side-form input:focus, .side-form select:focus, .side-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(243, 108, 33, 0.12);
}
.side-form .btn { width: 100%; justify-content: center; margin-top: 2px; }

.downloads { display: grid; gap: 12px; }
.download {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  background: var(--grey);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s, transform 0.25s;
}
.download:hover { border-color: var(--orange); transform: translateX(3px); }
.download__pdf { background: #e23b2e; color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 10px; letter-spacing: 0.5px; padding: 6px 7px; border-radius: 4px; }
.download > span:nth-child(2) { flex: 1; font-size: 13.5px; font-weight: 600; color: var(--navy); }
.download__dl { width: 34px; height: 34px; border-radius: 8px; background: var(--navy); display: grid; place-items: center; transition: background 0.25s; }
.download__dl svg { width: 16px; height: 16px; fill: #fff; }
.download:hover .download__dl { background: var(--orange); }

/* Main content */
.svc-main__title { font-size: clamp(26px, 3vw, 34px); margin-bottom: 22px; }
.svc-main__img { width: 100%; aspect-ratio: 16 / 9.4; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 28px; }
.svc-main > p { margin-bottom: 18px; color: var(--text); }
.svc-main h3 { font-size: 22px; margin: 32px 0 18px; }

.grounded { display: grid; grid-template-columns: 1fr 300px; gap: 34px; align-items: start; margin-bottom: 24px; }
.grounded__list { display: grid; gap: 15px; }
.grounded__list li { position: relative; padding-left: 26px; font-size: 14.5px; color: var(--text); }
.grounded__list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 6px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(243, 108, 33, 0.14);
}
.grounded__quote { position: relative; background: var(--white); border: 1.5px solid var(--orange); padding: 26px 24px; font-size: 14px; color: var(--text); }
.grounded__quote::before { content: ""; position: absolute; inset: 9px -9px -9px 9px; border: 1.5px solid rgba(11, 31, 58, 0.18); z-index: -1; }
.grounded__quote p { margin: 0; }

.svc-banner {
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  margin: 26px 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.45;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.45);
  outline: 2px dashed rgba(255, 255, 255, 0.5);
  outline-offset: -8px;
}

/* Pricing coupons */
.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 20px; }
.coupon { border: 2px dashed var(--navy); border-radius: 8px; overflow: hidden; text-align: center; background: var(--white); }
.coupon__top { padding: 30px 24px 26px; }
.coupon__price { font-family: var(--font-head); font-weight: 800; color: var(--navy); font-size: clamp(34px, 4vw, 44px); line-height: 1; }
.coupon__price span { font-size: 0.5em; color: var(--orange); }
.coupon__for { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: 16px; margin: 12px 0 20px; }
.coupon__note { font-size: 12px; color: var(--text-light); margin-top: 16px; line-height: 1.5; }
.coupon__foot { background: var(--orange); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 14px; padding: 13px; }

/* Single service responsive */
@media (max-width: 980px) {
  .svc-layout { grid-template-columns: 1fr; gap: 40px; }
  .svc-side { order: 2; grid-template-columns: 1fr 1fr; align-items: start; }
  .svc-nav { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .svc-side { grid-template-columns: 1fr; }
  .grounded { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
}

/* ─── AMC tailored-plans note ─── */
.amc-note {
  text-align: center;
  margin-top: 38px;
  font-size: 15.5px;
  color: var(--text-light);
}
.amc-note a { color: var(--orange); font-weight: 700; }
.amc-note a:hover { text-decoration: underline; }

/* ─── Areas We Cover page ─── */
.inline-link { color: var(--orange); font-weight: 700; }
.inline-link:hover { text-decoration: underline; }
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.areas-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 36px;
  box-shadow: var(--shadow);
}
.areas-card__head { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.areas-card__icon {
  width: 56px; height: 56px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--orange);
  display: grid;
  place-items: center;
}
.areas-card__icon svg { width: 26px; height: 26px; fill: #fff; }
.areas-card__head h3 { font-size: 24px; margin-bottom: 2px; }
.areas-card__head span { font-size: 14px; color: var(--text-light); font-weight: 500; }
.areas-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.areas-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: var(--text);
  font-weight: 500;
}
.areas-list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 6px;
  width: 6px; height: 11px;
  border: solid var(--orange);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

@media (max-width: 860px) {
  .areas-grid { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .areas-list { grid-template-columns: 1fr; }
}
