/* ==========================================================================
   Appliance Experts — Core Stylesheet
   Design tokens + global layout + shared components
   ========================================================================== */

:root {
  /* Color tokens */
  --navy-900: #0A2036;
  --navy-800: #0F2D4C;
  --navy-700: #163C63;
  --navy-600: #1F4E7D;
  --orange-600: #DD6710;
  --orange-500: #F4791F;
  --orange-400: #FF9142;
  --orange-100: #FFF1E4;
  --white: #FFFFFF;
  --gray-50: #F6F8FA;
  --gray-100: #EDF1F5;
  --gray-200: #DDE4EC;
  --gray-300: #C4CEDA;
  --ink: #12202F;
  --ink-muted: #57697C;
  --success: #1E8E5A;
  --danger: #C53030;

  /* Type */
  --font-display: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Shadow */
  --sh-sm: 0 2px 8px rgba(10, 32, 54, 0.08);
  --sh-md: 0 12px 30px rgba(10, 32, 54, 0.12);
  --sh-lg: 0 24px 60px rgba(10, 32, 54, 0.18);

  /* Spacing scale */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;

  --container-w: 1200px;
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.15;
  margin: 0 0 var(--sp-4);
}

p {
  margin: 0 0 var(--sp-4);
  color: var(--ink-muted);
}

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}

section {
  position: relative;
}

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Type scale ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--orange-600);
  margin-bottom: var(--sp-3);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--orange-500);
  display: inline-block;
}

h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

.section-head {
  max-width: 680px;
  margin-bottom: var(--sp-7);
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lede {
  font-size: 1.08rem;
  color: var(--ink-muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(244, 121, 31, 0.35);
}

.btn-primary:hover {
  background: var(--orange-600);
  box-shadow: 0 14px 30px rgba(244, 121, 31, 0.42);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--navy-700);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .5);
}

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

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

.btn-call:hover {
  background: var(--navy-900);
}

.btn-wa {
  background: #25D366;
  color: var(--white);
}

.btn-wa:hover {
  background: #1EBE5A;
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 11px 20px;
  font-size: .92rem;
}

/* ---------- Header ---------- */
.top-strip {
  background: var(--navy-900);
  color: #DCE6F0;
  font-size: .85rem;
}

.top-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
}

.top-strip a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-strip .ts-right {
  display: flex;
  gap: var(--sp-5);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy-900);
}

.brand .mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-400);
  flex-shrink: 0;
}

.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink-muted);
  font-size: .68rem;
  letter-spacing: .03em;
}

.main-nav ul {
  display: flex;
  gap: var(--sp-6);
  align-items: center;
}

.main-nav a {
  font-weight: 600;
  font-size: .96rem;
  color: var(--navy-800);
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--orange-500);
  transition: width .2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a.active {
  color: var(--orange-600);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy-900);
  margin: 5px 0;
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  padding: var(--sp-8) 0 var(--sp-9);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(9, 26, 45, .94) 15%, rgba(10, 32, 54, .82) 50%, rgba(10, 32, 54, .55) 100%);
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: var(--sp-8);
  align-items: start;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--sp-5);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: .82rem;
  font-weight: 600;
}

.hero-badge svg,
.hero-badge i {
  width: 16px;
  font-size: 16px;
  color: var(--orange-400);
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--sp-4);
  line-height: 1.4em;
}

.hero h1 span {
  color: var(--orange-400);
}

.hero .lede {
  color: #D7E1EC;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: var(--sp-6) 0;
}

.hero-benefits {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
  margin-top: var(--sp-6);
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .92rem;
  color: #E7EDF4;
}

.hero-benefits li svg,
.hero-benefits li i {
  width: 20px;
  font-size: 20px;
  color: var(--orange-400);
  flex-shrink: 0;
}

.dispatch-ticker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(9, 26, 45, .55);
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 10px 16px;
  border-radius: var(--r-pill);
  margin-top: var(--sp-5);
  font-size: .88rem;
}

.dispatch-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #37D67A;
  box-shadow: 0 0 0 rgba(55, 214, 122, .6);
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(55, 214, 122, .55);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(55, 214, 122, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(55, 214, 122, 0);
  }
}

#dispatch-text {
  font-weight: 600;
  color: #EAF1F8;
}

/* Quick quote card */
.quote-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--sh-lg);
  color: var(--ink);
}

.quote-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.15rem;
}

.quote-card .sub {
  font-size: .88rem;
  color: var(--ink-muted);
  margin-bottom: var(--sp-5);
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy-800);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--gray-200);
  font-family: inherit;
  font-size: .96rem;
  background: var(--gray-50);
  transition: border-color .15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange-500);
  background: var(--white);
}

.field textarea {
  resize: vertical;
  min-height: 90px;
}

.field .req {
  color: var(--orange-600);
}

.form-note {
  font-size: .76rem;
  color: var(--ink-muted);
  margin-top: 10px;
  text-align: center;
}

.form-status {
  margin-top: 12px;
  font-size: .9rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  display: none;
}

.form-status.show {
  display: block;
}

.form-status.success {
  background: #E7F7EE;
  color: var(--success);
}

.form-status.error {
  background: #FBEAEA;
  color: var(--danger);
}

/* ---------- Benefits bar ---------- */
.benefits-bar {
  background: var(--navy-900);
  padding: var(--sp-6) 0;
}

.benefits-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.benefit-item .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(244, 121, 31, .16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-item .icon svg,
.benefit-item .icon i {
  width: 24px;
  font-size: 24px;
  color: var(--orange-400);
}

.benefit-item strong {
  display: block;
  font-size: .98rem;
}

.benefit-item span {
  font-size: .8rem;
  color: #B9C6D4;
}

/* ---------- Generic sections ---------- */
.section {
  padding: var(--sp-9) 0;
}

.section.alt {
  background: var(--gray-50);
}

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

.section.navy p {
  color: #C6D3E0;
}

.section.navy h2 {
  color: var(--white);
}

/* ---------- Service cards ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--gray-100);
  transition: transform .22s ease, box-shadow .22s ease;
}

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

.service-card .thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.service-card:hover .thumb img {
  transform: scale(1.06);
}

.service-card .body {
  padding: var(--sp-5);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.service-card p {
  font-size: .92rem;
  margin-bottom: 14px;
}

.service-card .link {
  font-weight: 700;
  color: var(--orange-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .9rem;
}

.service-card .link svg,
.service-card .link i {
  width: 16px;
  font-size: 16px;
  transition: transform .2s ease;
}

.service-card:hover .link svg {
  transform: translateX(4px);
}

/* ---------- Why choose / feature list ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: var(--sp-8);
  align-items: center;
}

.feature-row.reverse {
  grid-template-columns: .9fr 1.1fr;
}

.feature-row.reverse .feature-media {
  order: 2;
}

.feature-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
}

.feature-list {
  margin-top: var(--sp-5);
}

.feature-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list .num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--orange-100);
  color: var(--orange-600);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .9rem;
}

.feature-list h4 {
  margin: 0 0 4px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-900);
}

.feature-list p {
  margin: 0;
  font-size: .9rem;
}

/* ---------- Process ---------- */
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  position: relative;
}

.process-step {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-5);
  box-shadow: var(--sh-sm);
  text-align: left;
}

.process-step .step-no {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.1rem;
  color: var(--navy-100, var(--gray-200));
  -webkit-text-stroke: 1.5px var(--navy-700);
  color: transparent;
  display: block;
  margin-bottom: 10px;
}

.process-step h3 {
  font-size: 1.05rem;
}

.process-step p {
  font-size: .9rem;
  margin: 0;
}

/* ---------- Brands ---------- */
.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5);
  align-items: center;
  justify-content: center;
}

.brand-chip {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 16px 26px;
  font-weight: 700;
  color: var(--navy-800);
  font-family: var(--font-display);
  font-size: .95rem;
  box-shadow: var(--sh-sm);
}

/* ---------- Areas preview / cards ---------- */
.area-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  border: 1px solid var(--gray-200);
  transition: border-color .2s ease, transform .2s ease;
}

.area-card:hover {
  border-color: var(--orange-400);
  transform: translateY(-3px);
}

.area-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-900);
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.area-card h4 svg,
.area-card h4 i {
  width: 18px;
  font-size: 18px;
  color: var(--orange-500);
  flex-shrink: 0;
}

.area-card ul {
  font-size: .88rem;
  color: var(--ink-muted);
}

.area-card ul li {
  padding: 3px 0;
}

/* ---------- Testimonials ---------- */
.testi-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--gray-100);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testi-stars {
  color: var(--orange-500);
  letter-spacing: 2px;
  margin-bottom: var(--sp-3);
  font-size: 1rem;
}

.testi-card p.quote {
  color: var(--ink);
  font-style: italic;
  flex: 1;
}

.testi-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: var(--sp-4);
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy-100, var(--gray-200));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-800);
  background: var(--orange-100);
  flex-shrink: 0;
}

.testi-foot strong {
  display: block;
  font-size: .92rem;
  color: var(--navy-900);
}

.testi-foot span {
  font-size: .8rem;
  color: var(--ink-muted);
}

.placeholder-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: var(--gray-100);
  padding: 3px 8px;
  border-radius: var(--r-pill);
  margin-top: 10px;
}

/* ---------- Stats ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  text-align: center;
}

.stat {
  padding: var(--sp-5);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--orange-400);
  font-weight: 700;
}

.stat span {
  font-size: .88rem;
  color: #C6D3E0;
}

/* ---------- FAQ accordion ---------- */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-900);
}

.faq-q .plus {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange-100);
  color: var(--orange-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: transform .25s ease;
}

.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-a p {
  padding-bottom: 20px;
  margin: 0;
}

.faq-item.open .faq-a {
  max-height: 400px;
}

/* ---------- Service page detail sections ---------- */
.svc-detail {
  scroll-margin-top: 120px;
  padding: var(--sp-9) 0;
  border-bottom: 1px solid var(--gray-200);
}

.svc-detail:nth-of-type(even) {
  background: var(--gray-50);
}

.svc-head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: var(--sp-7);
  align-items: center;
  margin-bottom: var(--sp-7);
}

.svc-head img {
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
}

.svc-body-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--sp-7);
}

.svc-block {
  margin-bottom: var(--sp-6);
}

.svc-block h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy-800);
}

.check-list li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  font-size: .94rem;
}

.check-list svg,
.check-list i {
  width: 18px;
  font-size: 18px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.svc-sidebar {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--gray-100);
  position: sticky;
  top: calc(var(--header-h) + 24px);
  height: max-content;
}

.svc-sidebar h4 {
  font-size: 1rem;
  margin-bottom: 14px;
}

.svc-sidebar .btn {
  margin-bottom: 10px;
}

.svc-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: var(--sp-5) 0;
}

.svc-jump a {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 9px 16px;
  border-radius: var(--r-pill);
  font-size: .85rem;
  font-weight: 600;
}

.svc-jump a:hover {
  border-color: var(--orange-400);
  color: var(--orange-600);
}

/* ---------- Gallery / lightbox ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}

.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  aspect-ratio: 1/1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 32, 54, .55), transparent 55%);
  opacity: 0;
  transition: opacity .2s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item .cap {
  position: absolute;
  left: 14px;
  bottom: 12px;
  color: var(--white);
  font-weight: 600;
  font-size: .85rem;
  opacity: 0;
  transition: opacity .2s ease;
}

.gallery-item:hover .cap {
  opacity: 1;
}

.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 16, 28, .94);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lb-overlay.open {
  display: flex;
}

.lb-overlay img {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
}

.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .3);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.lb-close {
  top: 24px;
  right: 24px;
}

.lb-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lb-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lb-caption {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  color: #C6D3E0;
  font-size: .9rem;
}

/* ---------- Contact / forms page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: var(--sp-8);
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--gray-100);
  margin-bottom: var(--sp-5);
}

.contact-info-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
}

.contact-info-card h3 svg,
.contact-info-card h3 i {
  width: 22px;
  font-size: 22px;
  color: var(--orange-500);
}

.hours-table {
  width: 100%;
  font-size: .92rem;
}

.hours-table td {
  padding: 6px 0;
  border-bottom: 1px dashed var(--gray-200);
}

.map-embed {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 340px;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  font-weight: 600;
  border: 1px solid var(--gray-300);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: #B9C6D4;
  padding-top: var(--sp-9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--sp-7);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: var(--sp-4);
}

.site-footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  margin-bottom: var(--sp-4);
}

.site-footer ul li {
  padding: 6px 0;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-5) 0;
  font-size: .85rem;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  background: var(--orange-500);
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 600;
  display: none;
  background: var(--white);
  box-shadow: 0 -6px 20px rgba(10, 32, 54, .15);
  padding: 10px;
  gap: 10px;
}

.sticky-mobile-cta a {
  flex: 1;
}

/* ---------- Floating buttons ---------- */
.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 610;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fab {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-md);
  transition: transform .2s ease;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.fab.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fab:hover {
  transform: scale(1.08);
}

.fab.fab-call {
  background: var(--orange-500);
  color: var(--white);
}

.fab.fab-wa {
  background: #25D366;
  color: var(--white);
}

.fab svg,
.fab i {
  width: 26px;
  font-size: 26px;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px var(--sp-5);
  font-size: .85rem;
  color: var(--ink-muted);
}

.breadcrumbs a:hover {
  color: var(--orange-600);
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  padding: var(--sp-8) 0 var(--sp-7);
}

.page-hero h1 {
  color: var(--white);
}

.page-hero p {
  color: #C6D3E0;
  max-width: 640px;
}

/* ---------- Fade-in scroll animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Thank you page ---------- */
.ty-wrap {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: var(--sp-9) var(--sp-5);
}

.ty-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #E7F7EE;
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-6);
}

.ty-icon svg,
.ty-icon i {
  width: 44px;
  font-size: 44px;
}

.ty-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--sp-6);
}

/* ---------- Misc utility ---------- */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy-800);
}

.trust-badge svg,
.trust-badge i {
  width: 20px;
  font-size: 20px;
  color: var(--orange-500);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange-500);
  color: #fff;
  padding: 12px 18px;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

/* ---------- Media overlay card (image + text overlay) ---------- */
.media-overlay {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  min-height: 480px;
  height: 100%;
}

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

.media-overlay-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-6);
  background: linear-gradient(0deg, rgba(9, 26, 45, .92) 10%, rgba(9, 26, 45, .75) 55%, rgba(9, 26, 45, .75) 100%);
  color: var(--white);
}

.media-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 121, 31, .18);
  border: 1px solid rgba(244, 121, 31, .5);
  color: var(--orange-400);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 14px;
  width: fit-content;
}

.media-overlay-content h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.media-overlay-content p {
  color: #D7E1EC;
  margin-bottom: 16px;
}

.media-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: .92rem;
  color: #EAF1F8;
}

.media-points i {
  color: var(--orange-400);
}

@media (max-width: 900px) {
  .media-overlay {
    min-height: 340px;
  }
}

.area-card .nearby {
  font-size: .86rem;
  color: var(--ink-muted);
  margin: 0;
}

/* ---------- Brand logo grid ---------- */
.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.brand-logo-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
  transition: transform .2s ease, box-shadow .2s ease;
}

.brand-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.brand-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter .25s ease, opacity .25s ease;
}


@media (min-width: 641px) {
  .brand-logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 901px) {
  .brand-logo-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}