﻿/* =============================================================================
   Five Stars Cleaning Services — green & gold brand
   ============================================================================= */

:root {
  --brand: #0b4a32;
  --brand-dark: #083628;
  --brand-deeper: #05251a;
  --ink: #041c14;
  --accent: #f5c400;
  --accent-hover: #ffd84a;
  --white: #ffffff;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --soft: rgba(255, 255, 255, 0.58);
  --line: rgba(255, 255, 255, 0.16);
  --gold: #f5c400;
  --gold-bright: #ffd84a;
  --gold-dim: #c9a000;
  --black: #083628;
  --black-deep: #041c14;
  --font-display: "Manrope", system-ui, sans-serif;
  --font-sans: "Manrope", system-ui, sans-serif;
  --nav-h: 5.5rem;
  --max: 1100px;
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Remove old decorative chrome */
.bg-glow,
.frame-left,
.frame-right,
.gold-corner,
.cursor {
  display: none !important;
}

body.has-custom-cursor,
body.has-custom-cursor * {
  cursor: auto !important;
}

html {
  scroll-padding-top: calc(var(--nav-h) + 0.75rem);
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page {
  background:
    radial-gradient(ellipse 100% 60% at 50% -20%, rgba(245, 196, 0, 0.18), transparent 55%),
    linear-gradient(180deg, #041c14 0%, #083628 42%, #0b4a32 100%);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ========== NAV ========== */
.nav {
  height: var(--nav-h) !important;
  background: rgba(18, 22, 58, 0.88) !important;
  border-bottom: 1px solid transparent !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: none !important;
}

.nav.scrolled {
  background: rgba(18, 22, 58, 0.97) !important;
  border-bottom-color: var(--line) !important;
}

.nav-inner {
  max-width: var(--max);
}

.nav-brand {
  display: inline-flex !important;
  align-items: center;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0.15rem 0 !important;
}

.nav-brand img {
  height: 4.35rem !important;
  width: auto !important;
  max-width: 17rem !important;
  object-fit: contain !important;
  filter: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.nav-mobile-top .nav-brand img {
  height: 3.6rem !important;
  max-width: 14rem !important;
  background: transparent !important;
}

.nav-links {
  gap: 1.35rem !important;
}

.nav-links a {
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  color: var(--soft) !important;
}

.nav-links a::after {
  display: none !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white) !important;
}

.nav-cta.btn,
.nav .btn-sm {
  min-height: 2.4rem;
  padding: 0.55rem 1rem !important;
  border-radius: var(--radius) !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
}

.nav-toggle {
  border: 1px solid var(--line) !important;
  color: var(--white) !important;
  border-radius: var(--radius);
}

.nav-mobile-panel {
  background: #05251a !important;
}

.nav-mobile-links a {
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid var(--line);
  text-transform: none;
  letter-spacing: 0;
}

/* ========== BUTTONS ========== */
.btn {
  min-height: 3rem;
  padding: 0.8rem 1.35rem !important;
  border-radius: var(--radius) !important;
  font-family: var(--font-sans) !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  border-width: 1px !important;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease !important;
  filter: none !important;
}

.btn:hover {
  filter: none !important;
}

.btn-primary,
.btn.btn-primary {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
  box-shadow: none !important;
}

.btn-primary:hover,
.btn.btn-primary:hover {
  background: var(--accent-hover) !important;
  border-color: var(--accent-hover) !important;
  transform: translateY(-1px) !important;
}

.btn-ghost,
.btn.btn-ghost {
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #fff !important;
}

.btn-ghost:hover,
.btn.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: #fff !important;
  transform: translateY(-1px) !important;
}

.btn-whatsapp {
  background: #25d366 !important;
  border-color: #25d366 !important;
  color: #053018 !important;
}

/* ========== HERO ========== */
.hero,
.hero.hero-services {
  min-height: 100svh;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: left !important;
  padding:
    calc(var(--nav-h) + clamp(3.5rem, 8vw, 6rem))
    clamp(1.5rem, 8vw, 7.5rem)
    clamp(4.5rem, 8vw, 6.5rem)
    clamp(1.5rem, 8vw, 7.5rem) !important;
  box-sizing: border-box;
}

.hero.is-content-left,
.hero.is-content-center,
.hero.is-content-right {
  justify-content: flex-start !important;
  text-align: left !important;
  padding-left: clamp(1.5rem, 8vw, 7.5rem) !important;
  padding-right: clamp(1.5rem, 8vw, 7.5rem) !important;
}

.hero-overlay {
  background:
    linear-gradient(105deg,
      rgba(8, 11, 28, 0.92) 0%,
      rgba(12, 16, 42, 0.78) 34%,
      rgba(18, 22, 58, 0.42) 58%,
      rgba(18, 22, 58, 0.18) 78%,
      rgba(10, 14, 36, 0.4) 100%),
    linear-gradient(180deg, rgba(8, 11, 28, 0.28) 0%, rgba(8, 11, 28, 0.18) 45%, rgba(8, 11, 28, 0.62) 100%) !important;
}

.hero-slider .hero-slide img {
  object-position: 68% center !important;
}

.hero-content {
  width: min(100%, 36rem) !important;
  max-width: 36rem !important;
  margin: 0 !important;
  margin-left: max(0px, calc((100vw - min(100vw, 1180px)) / 2)) !important;
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0;
}

.hero-welcome,
.eyebrow {
  display: inline-flex !important;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.5rem !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}

.eyebrow::before,
.eyebrow::after {
  display: none !important;
}

.hero-welcome-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #8b95e0;
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-display) !important;
  font-size: clamp(2.4rem, 5.4vw, 4.1rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.02 !important;
  margin: 0 0 2rem !important;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.25) !important;
  max-width: 12ch !important;
  color: #fff !important;
  text-transform: uppercase !important;
}

.hero h1 .accent,
.hero h1 .gold,
.hero h1 .accent-line {
  color: #fff !important;
}

.hero-lede {
  display: none !important;
}

.hero-actions {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0.95rem !important;
  justify-content: flex-start !important;
  margin: 0 0 2.15rem !important;
}

.hero.is-content-left .hero-actions,
.hero.is-content-center .hero-actions,
.hero.is-content-right .hero-actions {
  justify-content: flex-start !important;
}

.hero-actions .btn {
  display: inline-flex !important;
  align-items: center;
  gap: 0.6rem;
  min-height: 3.2rem;
  padding: 0.9rem 1.55rem !important;
  border-radius: 12px !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
}

.hero-actions .btn svg {
  width: 1.1rem;
  height: 1.1rem;
}

.hero-actions .btn-primary {
  background: var(--brand) !important;
  border-color: var(--brand) !important;
  color: #fff !important;
  box-shadow: 0 14px 32px rgba(11, 74, 50, 0.38);
}

.hero-actions .btn-primary:hover {
  background: var(--brand-dark) !important;
  border-color: var(--brand-dark) !important;
}

.hero-actions .btn-ghost {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.72) !important;
  color: #fff !important;
  backdrop-filter: blur(4px);
}

.hero-actions .btn-ghost:hover {
  border-color: #fff !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

.hero-trust {
  display: grid !important;
  gap: 0.85rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-left: 0 !important;
  font-size: 0.98rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.01em;
}

.hero-trust li::before {
  display: none !important;
}

.hero-trust li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand);
  flex-shrink: 0;
}

.hero-tagline {
  display: none !important;
}

.hero-dots {
  left: clamp(1.5rem, 8vw, 7.5rem) !important;
  right: auto !important;
  bottom: clamp(1.5rem, 3vw, 2.25rem) !important;
  justify-content: flex-start !important;
  gap: 0.45rem !important;
  z-index: 3;
  margin-left: max(0px, calc((100vw - min(100vw, 1180px)) / 2));
}

.hero-dots button {
  width: 1.65rem !important;
  height: 3px !important;
  border: none !important;
  border-radius: 2px !important;
  background: rgba(255, 255, 255, 0.28) !important;
  transform: none !important;
}

.hero-dots button[aria-selected="true"] {
  width: 2.6rem !important;
  background: var(--brand) !important;
  transform: none !important;
}

/* ========== SECTIONS ========== */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 !important;
}

.section-head {
  text-align: left !important;
  max-width: 40rem !important;
  margin: 0 0 2.25rem !important;
  margin-inline: 0 !important;
}

.section-head h2 {
  display: block !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #ff8f93 !important;
  margin-bottom: 0.65rem !important;
}

.section-head h2::before,
.section-head h2::after {
  display: none !important;
}

.section-head .title {
  font-family: var(--font-display) !important;
  font-size: clamp(1.7rem, 3.8vw, 2.35rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.15 !important;
  color: #fff !important;
  margin-bottom: 0.65rem !important;
}

.section-head p {
  color: var(--muted) !important;
  font-weight: 500 !important;
  font-size: 1rem !important;
}

/* ========== ABOUT (showcase layout) ========== */
.about-showcase {
  background: #f4f5f8 !important;
  color: var(--ink);
  padding-block: clamp(3.5rem, 7vw, 5.5rem) !important;
}

.about-showcase .container.about-grid,
.about-showcase .about-grid {
  display: grid !important;
  gap: clamp(2rem, 4vw, 3.25rem) !important;
  align-items: center !important;
  max-width: 1120px;
}

@media (min-width: 900px) {
  .about-showcase .about-grid {
    grid-template-columns: 0.92fr 1.08fr !important;
    gap: 3.5rem !important;
  }
}

.about-visual {
  position: relative;
  margin: 0;
  min-height: 0 !important;
  display: block !important;
}

.about-showcase .about-photo {
  margin: 0 !important;
  border: none !important;
  overflow: hidden !important;
  background: #dfe3ec !important;
  border-radius: 22px !important;
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  top: auto !important;
  width: 100% !important;
  justify-self: stretch !important;
  z-index: auto !important;
  box-shadow: 0 18px 40px rgba(18, 22, 58, 0.12);
}

.about-showcase .about-photo img,
.about-showcase .about-visual img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  border-radius: inherit !important;
  filter: none !important;
  transform: none !important;
  transition: transform 0.55s var(--ease);
}

.about-showcase .about-photo:hover img {
  transform: scale(1.03) !important;
  filter: none !important;
}

.about-showcase .about-photo-main {
  position: relative !important;
  aspect-ratio: 4 / 5 !important;
  max-height: 34rem !important;
  min-height: 22rem;
}

.about-award-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: 7.25rem;
  height: 7.25rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 30px rgba(18, 22, 58, 0.18);
  display: grid;
  place-items: center;
  z-index: 2;
}

.about-award-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: about-award-spin 18s linear infinite;
}

.about-award-ring text {
  fill: #1a1f3d;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-award-core {
  position: relative;
  z-index: 1;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
}

.about-award-core svg {
  width: 1.35rem;
  height: 1.35rem;
}

@keyframes about-award-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .about-award-ring {
    animation: none;
  }
}

.about-copy {
  color: var(--ink);
}

.about-copy .section-head {
  text-align: left !important;
  display: none;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  background: #ebecef;
  color: #5c6280;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-heading {
  margin: 0 0 1rem !important;
  color: var(--ink) !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.85rem, 3.6vw, 2.65rem) !important;
  font-weight: 800 !important;
  line-height: 1.18 !important;
  letter-spacing: -0.02em !important;
  max-width: 18ch;
}

.about-heading::before,
.about-heading::after {
  display: none !important;
}

.about-body {
  color: #5f6580 !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  line-height: 1.7 !important;
  margin-bottom: 1.35rem !important;
  max-width: 38rem;
}

.about-body p {
  color: inherit !important;
  margin: 0 0 0.85rem !important;
  font-weight: 500 !important;
}

.about-body p:last-child {
  margin-bottom: 0 !important;
}

.about-body strong {
  color: var(--ink) !important;
  font-weight: 700;
}

.about-mid {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .about-mid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.5rem;
  }
}

.about-incluye {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  gap: 0.85rem !important;
}

.about-incluye-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.7rem !important;
  justify-content: flex-start !important;
  text-align: left !important;
  flex-direction: row !important;
}

.about-incluye-icon {
  flex: 0 0 auto;
  width: 2.15rem !important;
  height: 2.15rem !important;
  margin-top: 0;
  display: grid;
  place-items: center;
  color: #fff !important;
  border: none !important;
  background: linear-gradient(145deg, var(--brand), var(--brand-dark)) !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 18px rgba(11, 74, 50, 0.28);
}

.about-incluye-item:nth-child(2n) .about-incluye-icon {
  background: linear-gradient(145deg, var(--accent), #b4171c) !important;
  box-shadow: 0 8px 18px rgba(245, 196, 0, 0.25);
}

.about-incluye-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.about-incluye-text {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.about-incluye-text strong {
  color: var(--ink) !important;
  font-family: var(--font-sans) !important;
  font-size: 0.98rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
}

.about-incluye-text span {
  display: none;
}

.about-showcase .about-photo-accent {
  position: relative !important;
  left: auto !important;
  bottom: auto !important;
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  max-height: 12rem !important;
  min-height: 9rem;
  box-shadow: 0 14px 32px rgba(18, 22, 58, 0.1) !important;
}

.about-name {
  color: var(--ink) !important;
  font-size: 1.15rem !important;
  margin: 0 0 0.2rem !important;
}

.about-role {
  color: var(--accent) !important;
  margin-bottom: 1rem !important;
}

.about-role::before,
.about-role::after {
  background: var(--accent) !important;
}

.about-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0 !important;
}

.about-cta.btn,
.about-showcase .btn-accent {
  display: inline-flex !important;
  align-items: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem !important;
  border-radius: 999px !important;
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  box-shadow: 0 10px 24px rgba(245, 196, 0, 0.28);
}

.about-cta.btn:hover,
.about-showcase .btn-accent:hover {
  background: var(--accent-hover) !important;
  border-color: var(--accent-hover) !important;
  color: #fff !important;
}

.about-cta svg {
  width: 1rem;
  height: 1rem;
}

.about-showcase .btn-ghost {
  border-radius: 999px !important;
  color: var(--ink) !important;
  border-color: rgba(18, 22, 58, 0.18) !important;
  background: transparent !important;
}

.about-showcase .btn-ghost:hover {
  border-color: var(--brand) !important;
  color: var(--brand) !important;
}

.about-awards {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.about-awards-label {
  color: #6a7088;
  font-size: 0.9rem;
  font-weight: 700;
}

.about-award-icons {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.about-award-icon {
  width: 2.85rem;
  height: 2.85rem;
  color: var(--brand);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 18px rgba(18, 22, 58, 0.08);
  border: 1px solid rgba(11, 74, 50, 0.18);
  transition: transform 0.25s var(--ease), color 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease;
}

.about-award-icon:nth-child(2) {
  color: var(--accent);
  border-color: rgba(245, 196, 0, 0.22);
}

.about-award-icon:nth-child(4) {
  color: var(--brand-dark);
}

.about-award-icon:hover {
  transform: translateY(-2px);
  color: var(--accent);
  border-color: rgba(245, 196, 0, 0.35);
  box-shadow: 0 12px 22px rgba(18, 22, 58, 0.12);
}

.about-award-icon svg {
  width: 100%;
  height: 100%;
}

/* Kill legacy absolute stacking from styles.css */
.about-showcase .about-photos,
.about-showcase .about-visual {
  position: relative !important;
  min-height: 0 !important;
  display: block !important;
  grid-template-columns: none !important;
}

@media (min-width: 800px) {
  .about-showcase .about-photo-main {
    width: 100% !important;
    justify-self: stretch !important;
    aspect-ratio: 4 / 5 !important;
    max-height: 34rem !important;
  }

  .about-showcase .about-photo-accent {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    width: 100% !important;
  }
}

@media (max-width: 639px) {
  .about-showcase .about-photo-main {
    max-height: 26rem !important;
    min-height: 18rem;
  }

  .about-award-badge {
    width: 5.75rem;
    height: 5.75rem;
  }

  .about-heading {
    max-width: none;
  }

  .about-showcase .about-photo-accent {
    max-height: none !important;
  }
}

/* ========== WHY US ========== */
.why-us.why-us-photo,
.why-us {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #0c1028 !important;
  padding-block: clamp(4rem, 8vw, 6.25rem) !important;
}

.why-us-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.why-us-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.08) brightness(0.78);
}

.why-us-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(8, 11, 28, 0.88) 0%,
      rgba(12, 16, 42, 0.72) 38%,
      rgba(18, 22, 58, 0.55) 68%,
      rgba(12, 16, 42, 0.7) 100%),
    linear-gradient(180deg, rgba(8, 11, 28, 0.35) 0%, rgba(8, 11, 28, 0.15) 40%, rgba(8, 11, 28, 0.78) 100%);
}

.why-us-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
}

.why-us-head {
  margin: 0 0 clamp(2rem, 4vw, 2.75rem);
  max-width: 36rem;
}

.why-us-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.95rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.why-us-heading {
  margin: 0 0 0.85rem !important;
  color: #fff !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.9rem, 3.8vw, 2.75rem) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.025em !important;
  max-width: 16ch;
}

.why-us-heading::before,
.why-us-heading::after {
  display: none !important;
}

.why-us-lede {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 1.05rem !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
  max-width: 38ch;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 900px) {
  .why-us-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
  }
}

.why-item {
  position: relative;
  background: rgba(10, 14, 36, 0.55) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 20px !important;
  padding: 1.65rem 1.4rem 1.55rem !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 1.2rem !important;
  min-height: 100%;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.3s ease, background 0.3s ease, box-shadow 0.35s ease;
}

.why-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--brand), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-item:hover {
  transform: translateY(-6px);
  border-color: rgba(123, 134, 214, 0.5) !important;
  background: rgba(14, 18, 48, 0.78) !important;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.why-item:hover::before {
  opacity: 1;
}

.why-item-icon {
  width: 4.5rem !important;
  height: 4.5rem !important;
  border-radius: 16px;
  color: #fff !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 40%),
    linear-gradient(145deg, var(--brand), var(--brand-dark));
  box-shadow:
    0 14px 32px rgba(11, 74, 50, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  display: grid !important;
  place-items: center !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
}

.why-item-icon svg {
  width: 2.25rem !important;
  height: 2.25rem !important;
}

.why-item-body {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
}

.why-item h3,
.why-item-body h3 {
  margin: 0 !important;
  font-size: 1.12rem !important;
  font-weight: 800 !important;
  color: #fff !important;
  letter-spacing: -0.02em !important;
  line-height: 1.25 !important;
  font-family: var(--font-sans) !important;
}

.why-item p,
.why-item-body p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.94rem !important;
  font-weight: 500 !important;
  line-height: 1.58 !important;
}

@media (max-width: 560px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .why-item {
    padding: 1.45rem 1.25rem !important;
  }

  .why-item-icon {
    width: 4rem !important;
    height: 4rem !important;
  }

  .why-item-icon svg {
    width: 2rem !important;
    height: 2rem !important;
  }

  .why-us-heading {
    max-width: none;
  }
}

/* ========== SERVICES ========== */
.services {
  background: transparent !important;
}

.services-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1.25rem !important;
}

@media (min-width: 700px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (min-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

.service {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  overflow: hidden !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  transition: border-color 0.2s ease, transform 0.2s ease !important;
}

.service:hover {
  border-color: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-3px) !important;
}

.service-photo {
  aspect-ratio: 16 / 10 !important;
  border: none !important;
  margin: 0 !important;
  background: var(--brand-deeper) !important;
}

.service-photo img {
  filter: none !important;
  object-fit: cover;
}

.service:hover .service-photo img {
  filter: none !important;
}

.service-body {
  padding: 1.1rem 1.15rem 1.25rem !important;
  background: transparent !important;
}

.service h3,
.service-body h3 {
  font-size: 1.15rem !important;
  font-weight: 750 !important;
  letter-spacing: -0.015em !important;
  text-transform: none !important;
  color: #fff !important;
  margin: 0 0 0.4rem !important;
}

.service-body p {
  color: var(--muted) !important;
  font-size: 0.92rem !important;
  font-weight: 500 !important;
  margin: 0 !important;
}

.service-more {
  margin-top: 0.85rem !important;
  color: #ff9ea2 !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
}

/* ========== PROCESS ========== */
.process-showcase {
  background: #f4f5f8 !important;
  color: var(--ink);
  padding-block: clamp(3.5rem, 7vw, 5.25rem) !important;
}

.process-showcase .container {
  max-width: 1120px;
}

.process-head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.process-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  background: #ebecef;
  color: #5c6280;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.process-heading {
  margin: 0 auto !important;
  max-width: 18ch;
  color: var(--ink) !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.75rem, 3.4vw, 2.45rem) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em !important;
}

.process-heading::before,
.process-heading::after {
  display: none !important;
}

.process-track {
  position: relative;
  display: grid !important;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .process-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
}

@media (min-width: 980px) {
  .process-track {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    align-items: start;
  }
}

.process-line {
  display: none;
}

@media (min-width: 980px) {
  .process-line {
    display: block;
    position: absolute;
    left: 9%;
    right: 9%;
    top: 3.55rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(245, 196, 0, 0.35), rgba(245, 196, 0, 0.35), transparent);
    z-index: 0;
    pointer-events: none;
  }
}

.process-card {
  position: relative;
  z-index: 1;
  text-align: center;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  display: grid;
  gap: 1.1rem;
  justify-items: center;
}

.process-icon-wrap {
  position: relative;
  width: clamp(6.5rem, 8vw, 7.75rem);
  height: clamp(6.5rem, 8vw, 7.75rem);
}

.process-icon {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(18, 22, 58, 0.06);
  box-shadow:
    0 1px 2px rgba(18, 22, 58, 0.04),
    0 14px 36px rgba(18, 22, 58, 0.1);
  color: #151b3d;
  display: grid;
  place-items: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), color 0.25s ease, border-color 0.25s ease;
}

.process-card:hover .process-icon {
  transform: translateY(-5px);
  border-color: rgba(11, 74, 50, 0.22);
  box-shadow:
    0 1px 2px rgba(18, 22, 58, 0.04),
    0 20px 44px rgba(18, 22, 58, 0.14);
  color: var(--brand);
}

.process-icon svg {
  width: 58%;
  height: 58%;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-num {
  position: absolute;
  top: -0.45rem;
  right: -0.45rem;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(245, 196, 0, 0.38);
  z-index: 2;
  border: 2px solid #fff;
}

.process-card h3 {
  margin: 0;
  color: var(--ink) !important;
  font-family: var(--font-sans) !important;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem) !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  max-width: 16ch;
}

.process-card p {
  margin: 0;
  color: #6a7088 !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  line-height: 1.55 !important;
  max-width: 24ch;
}

/* legacy selectors neutralized */
#process .process-list,
#process .process-grid,
.process-steps {
  display: contents;
}

#process article.step,
.process-step {
  background: transparent;
  border: none;
  padding: 0;
}

/* ========== FAQ ========== */
.faq-showcase,
.faq.faq-showcase {
  background: #f4f5f9 !important;
  color: var(--ink);
  padding-block: clamp(3.75rem, 7vw, 5.75rem) !important;
}

.faq-layout {
  display: grid;
  gap: 2.25rem;
  align-items: start;
  max-width: 1160px;
}

@media (min-width: 980px) {
  .faq-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 3rem;
  }
}

.faq-pill {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.95rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-heading {
  margin: 0 0 0.9rem !important;
  color: var(--ink) !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.85rem, 3.6vw, 2.7rem) !important;
  font-weight: 800 !important;
  line-height: 1.18 !important;
  letter-spacing: -0.025em !important;
  max-width: 16ch;
}

.faq-heading::before,
.faq-heading::after {
  display: none !important;
}

.faq-lede {
  margin: 0 0 1.5rem !important;
  color: #646a84 !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
  max-width: 40ch;
}

.faq-cta.btn {
  display: inline-flex !important;
  align-items: center;
  gap: 0.55rem;
  min-height: 3rem;
  border-radius: 10px !important;
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
  font-weight: 700 !important;
  box-shadow: 0 12px 28px rgba(245, 196, 0, 0.28);
}

.faq-cta svg {
  width: 1.05rem;
  height: 1.05rem;
}

.faq-list {
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: #fff !important;
  border: 1px solid rgba(18, 22, 58, 0.1) !important;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(18, 22, 58, 0.06);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  font-size: 1rem;
  font-weight: 800;
  color: #1a1f3d;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-q-label,
.faq-a-label {
  color: var(--accent);
  margin-right: 0.25rem;
}

.faq-item[open] summary {
  background: var(--accent);
  color: #fff;
}

.faq-item[open] .faq-q-label {
  color: rgba(255, 255, 255, 0.9);
}

.faq-item-toggle {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(18, 22, 58, 0.06);
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease, transform 0.25s ease;
}

.faq-item[open] .faq-item-toggle {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: rotate(180deg);
}

.faq-item-toggle::before,
.faq-item-toggle::after {
  display: none;
}

.faq-chevron {
  width: 0.95rem;
  height: 0.95rem;
}

.faq-item-answer {
  padding: 1rem 1.15rem 1.2rem;
  background: #fff;
}

.faq-item-answer p {
  margin: 0;
  color: #5f6580 !important;
  font-weight: 500;
  line-height: 1.7;
}

@media (max-width: 620px) {
  .faq-heading {
    max-width: none;
  }
}

/* ========== CONTACT ========== */
.contact-showcase,
.contact.contact-showcase {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #041c14 !important;
  padding-block: clamp(4rem, 8vw, 6.25rem) !important;
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55) contrast(1.05);
  transform: scale(1.04);
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 14, 36, 0.88) 0%, rgba(18, 22, 58, 0.62) 48%, rgba(18, 22, 58, 0.4) 100%);
}

.contact-slash {
  position: absolute;
  inset: -10% -5%;
  background: linear-gradient(115deg, transparent 36%, rgba(245, 196, 0, 0.78) 36.2%, rgba(245, 196, 0, 0.78) 58%, transparent 58.2%);
  opacity: 0.92;
  pointer-events: none;
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
  max-width: 1160px;
}

@media (min-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2.75rem;
  }
}

.contact-pill {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: #ff9ea2;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.contact-heading {
  margin: 0 0 0.85rem !important;
  color: #fff !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.9rem, 3.8vw, 2.75rem) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.025em !important;
  max-width: 16ch;
}

.contact-heading::before,
.contact-heading::after {
  display: none !important;
}

.contact-lede {
  margin: 0 0 1.35rem !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
  max-width: 42ch;
}

.contact-showcase .contact-list {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.contact-showcase .contact-list a,
.contact-showcase .contact-list li > span {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #fff;
  text-decoration: none;
}

.contact-showcase .contact-icon {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  flex: 0 0 auto;
}

.contact-showcase .contact-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.contact-showcase .contact-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

.contact-showcase .contact-value {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
}

.contact-call-btn.btn {
  min-height: 3rem;
  border-radius: 10px !important;
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}

.contact-showcase .estimate-box {
  background: #fff !important;
  border: none !important;
  border-radius: 16px !important;
  padding: 1.5rem 1.35rem 1.4rem !important;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28) !important;
}

.estimate-title {
  margin: 0 0 1.1rem !important;
  color: var(--ink) !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
}

.contact-showcase .contact-form {
  display: grid;
  gap: 0.85rem;
}

.contact-showcase .form-row {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 560px) {
  .contact-showcase .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-showcase .contact-form label {
  display: grid;
  gap: 0.35rem;
  color: #5c6280;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-showcase .contact-form input,
.contact-showcase .contact-form select,
.contact-showcase .contact-form textarea {
  background: #f5f6fa !important;
  border: 1px solid rgba(18, 22, 58, 0.12) !important;
  border-radius: 10px !important;
  color: var(--ink) !important;
  min-height: 2.85rem;
  padding: 0.7rem 0.9rem !important;
  font-size: 0.95rem !important;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
}

.contact-showcase .contact-form textarea {
  min-height: 7rem;
  resize: vertical;
}

.contact-showcase .contact-form input:focus,
.contact-showcase .contact-form select:focus,
.contact-showcase .contact-form textarea:focus {
  border-color: var(--brand) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(11, 74, 50, 0.18);
}

.contact-showcase .contact-form .btn {
  width: 100%;
  justify-content: center;
  min-height: 3.1rem;
  border-radius: 10px !important;
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-showcase .form-note {
  color: #6a7088 !important;
  margin: 0 !important;
  font-size: 0.82rem;
}

/* ========== GALLERY ========== */
/* ========== GALLERY ========== */
#gallery.gallery-showcase,
#gallery.gallery,
.gallery-showcase {
  background: #e9ecf4 !important;
  color: var(--ink);
  padding-block: clamp(3.75rem, 7vw, 5.75rem) !important;
}

.gallery-showcase .container {
  max-width: 1120px;
}

.gallery-head {
  margin: 0 0 1.5rem;
  max-width: 36rem;
}

.gallery-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.95rem;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: #ebecef;
  color: #5c6280;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-heading {
  margin: 0 0 0.7rem !important;
  color: var(--ink) !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.85rem, 3.5vw, 2.55rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.15 !important;
}

.gallery-heading::before,
.gallery-heading::after {
  display: none !important;
}

.gallery-lede {
  margin: 0 !important;
  color: #646a84 !important;
  font-size: 1.02rem !important;
  font-weight: 500 !important;
  line-height: 1.55 !important;
}

.gallery-filters {
  margin-bottom: 1.35rem !important;
}

.filter-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.gallery-showcase .filter-btn,
.gallery-filters button {
  min-height: 2.35rem;
  padding: 0.45rem 1rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(18, 22, 58, 0.12) !important;
  background: #fff !important;
  color: #3a4160 !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-showcase .filter-btn:hover {
  border-color: rgba(11, 74, 50, 0.35) !important;
  color: var(--brand) !important;
}

.gallery-showcase .filter-btn.is-active,
.gallery-filters button.is-active,
.gallery-nav button[aria-pressed="true"] {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(245, 196, 0, 0.25);
}

.gallery-count {
  display: block !important;
  margin: 0 0 1rem !important;
  color: #6a7088 !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
}

.gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 1rem !important;
}

@media (min-width: 800px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.15rem !important;
  }
}

@media (min-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

.gallery-item {
  margin: 0 !important;
  border: none !important;
  border-radius: 18px !important;
  background: transparent !important;
  overflow: hidden !important;
  cursor: zoom-in;
  box-shadow: 0 14px 34px rgba(18, 22, 58, 0.1);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(18, 22, 58, 0.16);
  outline: none;
  border-color: transparent !important;
}

.gallery-item .gallery-thumb {
  position: relative;
  aspect-ratio: 4 / 3 !important;
  overflow: hidden;
  background: #d8dce8;
  border-radius: 18px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: none !important;
  transition: transform 0.55s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: none !important;
}

.gallery-item-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(10, 14, 36, 0.82) 100%);
  pointer-events: none;
}

.gallery-item figcaption {
  position: absolute !important;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1rem 1rem 1.05rem !important;
  background: transparent !important;
}

.gallery-item figcaption span {
  display: inline-flex !important;
  margin-bottom: 0.35rem !important;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(245, 196, 0, 0.92);
  color: #fff !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.gallery-item figcaption strong {
  display: block !important;
  color: #fff !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
  line-height: 1.25 !important;
  margin: 0 !important;
}

.gallery-item figcaption p {
  display: none !important;
}

.gallery-zoom-hint {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  inset: auto 0.85rem auto auto !important;
  width: 2.4rem !important;
  height: 2.4rem !important;
  border-radius: 999px !important;
  border: none !important;
  background: rgba(255, 255, 255, 0.95) !important;
  color: var(--ink) !important;
  opacity: 0;
  transform: translateY(6px) scale(0.95);
  box-shadow: 0 8px 20px rgba(18, 22, 58, 0.18);
  z-index: 3;
}

.gallery-item:hover .gallery-zoom-hint,
.gallery-item:focus-visible .gallery-zoom-hint {
  opacity: 1;
  transform: none;
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

.gallery-more-btn.btn,
.gallery-actions .btn {
  min-height: 2.9rem;
  padding: 0.7rem 1.4rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(18, 22, 58, 0.16) !important;
  background: #fff !important;
  color: var(--ink) !important;
  font-weight: 700 !important;
  text-transform: none !important;
  letter-spacing: 0.01em !important;
}

.gallery-more-btn.btn:hover,
.gallery-actions .btn:hover {
  border-color: var(--brand) !important;
  color: var(--brand) !important;
}

.gallery-empty-msg {
  text-align: center;
  color: #6a7088 !important;
  padding: 2rem 1rem;
  border: 1px dashed rgba(18, 22, 58, 0.16) !important;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ========== REVIEWS / COMMENTS ========== */
.comments-showcase,
.comments.comments-showcase {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 18%, rgba(11, 74, 50, 0.35), transparent 42%),
    radial-gradient(circle at 88% 80%, rgba(245, 196, 0, 0.12), transparent 40%),
    #041c14 !important;
  padding-block: clamp(4rem, 8vw, 6.25rem) !important;
}

.comments-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.comments-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.25rem;
  align-items: center;
  max-width: 1160px;
}

@media (min-width: 960px) {
  .comments-layout {
    grid-template-columns: minmax(240px, 0.78fr) 1.42fr;
    gap: 2.5rem 3rem;
  }
}

.comments-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.1rem;
  padding: 0.35rem 0.85rem 0.35rem 0.55rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.comments-badge svg {
  width: 1.15rem;
  height: 1.15rem;
}

.comments-heading {
  margin: 0 0 0.9rem !important;
  color: #fff !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.9rem, 3.8vw, 2.75rem) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.025em !important;
  max-width: 12ch;
}

.comments-heading span {
  color: var(--accent);
}

.comments-heading::before,
.comments-heading::after {
  display: none !important;
}

.comments-lede {
  margin: 0 0 1.5rem !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  line-height: 1.55 !important;
  max-width: 34ch;
}

.comments-cta.btn {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  min-height: 3rem;
  border-radius: 10px !important;
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
  font-weight: 700 !important;
  box-shadow: 0 12px 28px rgba(245, 196, 0, 0.3);
}

.comments-cta svg {
  width: 1rem;
  height: 1rem;
}

.comments-showcase .comments-carousel {
  position: relative;
  padding: 0.5rem 0 0 !important;
  min-width: 0;
}

.comments-showcase .comments-viewport {
  overflow: hidden;
  padding: 0.75rem 0.35rem 0.5rem 0.15rem;
}

.comments-showcase .comments-track {
  display: flex;
  align-items: stretch;
  gap: 1.15rem;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.comments-showcase .comment-card {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
}

@media (min-width: 760px) {
  .comments-showcase .comment-card {
    flex: 0 0 calc(50% - 0.575rem);
  }
}

.comment-card-inner {
  position: relative;
  height: 100%;
  min-height: 12.5rem;
  background: #fff;
  border-radius: 18px;
  padding: 1.45rem 1.35rem 1.4rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  border-left: 3px solid var(--accent);
  overflow: hidden;
}

.comment-quote {
  position: absolute;
  right: 1rem;
  bottom: 0.35rem;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(245, 196, 0, 0.12);
  pointer-events: none;
}

.comment-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 0.95rem;
}

.comments-showcase .comment-person {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.comments-showcase .comment-author {
  color: var(--ink) !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

.comments-showcase .comment-role {
  color: var(--accent) !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
}

.comments-showcase .comment-stars {
  color: var(--accent);
  letter-spacing: 0.08em;
  font-size: 0.88rem;
  margin-top: 0.25rem;
  line-height: 1;
}

.comments-showcase .comment-avatar {
  width: 3.35rem !important;
  height: 3.35rem !important;
  border-radius: 50% !important;
  border: 3px solid var(--brand) !important;
  display: grid !important;
  place-items: center !important;
  color: #fff !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  box-shadow: 0 8px 18px rgba(18, 22, 58, 0.2);
  object-fit: cover;
  flex: 0 0 auto;
  margin-top: -1.55rem;
  background: linear-gradient(145deg, var(--brand), var(--brand-dark)) !important;
}

.comments-showcase .comment-avatar.tone-a { background: linear-gradient(145deg, #0b4a32, #083628) !important; }
.comments-showcase .comment-avatar.tone-b { background: linear-gradient(145deg, #5a63b5, #3a428c) !important; }
.comments-showcase .comment-avatar.tone-c { background: linear-gradient(145deg, #f5c400, #a88600) !important; }
.comments-showcase .comment-avatar.tone-d { background: linear-gradient(145deg, #2f6f8f, #1d4a61) !important; }

.comments-showcase .comment-text {
  margin: 0;
  color: #3a4160 !important;
  font-size: 0.96rem !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.comments-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.comments-showcase .comments-nav {
  position: static !important;
  width: 2.5rem !important;
  height: 2.5rem !important;
  border-radius: 50% !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
  background: transparent !important;
  color: #fff !important;
  display: grid !important;
  place-items: center !important;
  transform: none !important;
  box-shadow: none !important;
}

.comments-showcase .comments-nav:hover {
  border-color: var(--accent) !important;
  background: rgba(245, 196, 0, 0.15) !important;
}

.comments-showcase .comments-nav svg {
  width: 1rem;
  height: 1rem;
}

.comments-showcase .comments-dots {
  position: static !important;
  display: flex;
  gap: 0.4rem;
  margin: 0;
}

.comments-showcase .comments-dots button {
  width: 0.55rem !important;
  height: 0.55rem !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.28) !important;
  border: none !important;
  transition: width 0.25s ease, background 0.25s ease !important;
}

.comments-showcase .comments-dots button[aria-selected="true"] {
  width: 1.45rem !important;
  border-radius: 999px !important;
  background: var(--accent) !important;
}

@media (max-width: 759px) {
  .comments-heading { max-width: none; }
  .comments-showcase .comment-avatar { margin-top: -0.75rem; }
}

/* ========== FOOTER ========== */
.footer,
.footer.footer-pro {
  background: #0c1028 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 0 0 5.75rem !important;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0 1.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-subscribe {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  flex: 1 1 22rem;
  max-width: 36rem;
  background: #fff;
  border-radius: 10px;
  padding: 0.35rem 0.35rem 0.35rem 0.95rem;
}

.footer-subscribe input {
  flex: 1 1 10rem;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  min-height: 2.6rem;
}

.footer-subscribe button {
  appearance: none;
  border: 0;
  border-radius: 8px;
  min-height: 2.6rem;
  padding: 0.55rem 1.1rem;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.footer-subscribe .form-note {
  flex: 1 1 100%;
  margin: 0.15rem 0.35rem 0.2rem;
  color: #5f6580;
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 0.55rem;
}

.footer-social a {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 8px;
  background: #fff;
  color: var(--accent);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.footer-social svg {
  width: 1.05rem;
  height: 1.05rem;
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
  padding: 2rem 0 1.75rem;
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr;
    gap: 1.5rem;
  }
}

.footer-logo {
  display: inline-block;
  margin: 0 0 0.85rem;
  line-height: 0;
}

.footer-logo img {
  display: block;
  height: 5rem;
  width: auto;
  max-width: 16rem;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
}

.footer-tagline {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: var(--gold) !important;
  letter-spacing: -0.01em;
  margin: 0 0 0.55rem !important;
}

.footer-area {
  color: rgba(255, 255, 255, 0.62) !important;
  margin: 0 !important;
  font-weight: 500;
  line-height: 1.6;
  max-width: 34ch;
}

.footer-col h3 {
  margin: 0 0 0.9rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
}

.footer-links,
.footer-services,
.footer-contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-links a,
.footer-services a,
.footer-contact a,
.footer-contact li {
  font-size: 0.92rem !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.68) !important;
  text-decoration: none;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.footer-links a:hover,
.footer-services a:hover,
.footer-contact a:hover {
  color: #fff !important;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-ico {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--accent);
  flex: 0 0 auto;
  margin-top: 0.15rem;
}

.footer-ico svg {
  width: 100%;
  height: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
  padding: 0.95rem 0;
}

.footer-legal {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 0.82rem;
  text-align: center;
}

@media (max-width: 899px) {
  .footer,
  .footer.footer-pro {
    padding: 0 0 calc(6.75rem + env(safe-area-inset-bottom, 0px)) !important;
  }

  .footer .container {
    width: min(100% - 2.5rem, var(--max)) !important;
  }

  .footer-top {
    flex-direction: column;
    align-items: stretch;
    gap: 0.95rem;
    padding: 1.35rem 0 1.25rem;
  }

  .footer-subscribe {
    flex: 1 1 auto;
    max-width: none;
    width: 100%;
    border-radius: 12px;
    padding: 0.4rem;
    gap: 0.45rem;
  }

  .footer-subscribe input {
    flex: 1 1 auto;
    min-width: 0;
    padding-inline: 0.7rem;
    font-size: 0.92rem;
  }

  .footer-subscribe button {
    flex: 0 0 auto;
    min-height: 2.75rem;
    padding-inline: 1rem;
    border-radius: 10px;
  }

  .footer-social {
    justify-content: flex-start;
    gap: 0.65rem;
  }

  .footer-social a {
    width: 2.75rem;
    height: 2.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem 1.5rem;
    padding: 1.65rem 0 1.45rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-tagline {
    font-size: 1.1rem !important;
    text-transform: none;
    letter-spacing: -0.015em;
  }

  .footer-area {
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .footer-col h3 {
    margin-bottom: 0.75rem;
    font-size: 0.98rem;
  }

  .footer-links,
  .footer-services,
  .footer-contact ul {
    gap: 0.4rem;
    justify-items: start;
    text-align: left;
  }

  .footer-links a,
  .footer-services a,
  .footer-contact a,
  .footer-contact li {
    font-size: 0.9rem !important;
    min-height: 2.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }

  .footer-contact li {
    align-items: flex-start;
    min-height: auto;
    padding: 0.2rem 0;
    width: 100%;
  }

  .footer-contact .footer-ico {
    margin-top: 0.28rem;
  }

  .footer-bottom {
    padding: 0.9rem 0 1.1rem;
  }

  .footer-legal {
    font-size: 0.78rem;
    line-height: 1.45;
    padding-inline: 0.25rem;
  }

  .back-to-top {
    right: 0.65rem !important;
    bottom: calc(7.25rem + env(safe-area-inset-bottom, 0px)) !important;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 999px;
    background: var(--accent);
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(245, 196, 0, 0.35);
    gap: 0 !important;
    justify-content: center;
  }

  .back-to-top-line {
    display: none !important;
  }

  .back-to-top > span:last-child {
    writing-mode: horizontal-tb !important;
    transform: none !important;
    font-size: 0 !important;
    width: 1.1rem;
    height: 1.1rem;
    background: no-repeat center / contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 14 6-6 6 6'/%3E%3C/svg%3E");
  }
}

@media (max-width: 560px) {
  .footer .container {
    width: min(100% - 2.75rem, var(--max)) !important;
  }

  .footer-subscribe {
    flex-direction: column;
    align-items: stretch;
    padding: 0.55rem;
  }

  .footer-subscribe input {
    width: 100%;
    min-height: 2.85rem;
    padding-inline: 0.85rem;
    text-align: left;
  }

  .footer-subscribe button {
    width: 100%;
    min-height: 2.95rem;
  }

  .footer-social {
    justify-content: flex-start;
    padding-left: 0.1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 1.35rem 0 1.2rem;
  }

  .footer-brand,
  .footer-col {
    padding: 1.15rem 0.15rem 1.2rem;
  }

  .footer-col + .footer-col,
  .footer-brand + .footer-col {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-links,
  .footer-services {
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem 1.25rem;
    padding-right: 0.35rem;
  }

  .footer-contact ul {
    gap: 0.7rem;
    padding-right: 0.25rem;
  }

  .footer-links a,
  .footer-services a {
    padding-right: 0.25rem;
  }
}

/* ========== MOBILE ========== */
@media (max-width: 899px) {
  .mobile-dock {
    background: rgba(18, 22, 58, 0.96) !important;
    border: 1px solid var(--line) !important;
    border-radius: 14px !important;
    backdrop-filter: blur(12px);
  }

  .hero {
    min-height: 92svh !important;
    padding-top: calc(var(--nav-h) + 2.75rem) !important;
    padding-bottom: 4.75rem !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .hero.is-content-left,
  .hero.is-content-center,
  .hero.is-content-right {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .hero-content {
    margin-left: 0 !important;
    width: min(100%, 34rem) !important;
  }

  .hero h1 {
    max-width: 13ch !important;
    font-size: clamp(2.15rem, 10vw, 2.85rem) !important;
    margin-bottom: 1.65rem !important;
  }

  .hero-welcome,
  .eyebrow {
    margin-bottom: 1.2rem !important;
  }

  .hero-actions {
    margin-bottom: 1.75rem !important;
  }

  .hero-dots {
    left: 1.5rem !important;
    margin-left: 0 !important;
    bottom: 1.75rem !important;
  }

  .about-includes {
    grid-template-columns: 1fr;
  }

  .nav-brand img {
    height: 2.25rem !important;
    max-width: 9.5rem !important;
  }
}

@media (max-width: 560px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== SERVICES SHOWCASE (carousel) ========== */
.services-showcase {
  background: #f4f5f8 !important;
  color: #15171f;
  border-top: none !important;
}

.services-showcase .container {
  max-width: 1180px;
}

.services-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.services-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: #e8eaef;
  color: #3a3f4d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.services-heading {
  margin: 0;
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #12141c;
}

.services-nav {
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
}

.services-nav-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: none;
  background: #171a24;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.services-nav-btn svg {
  width: 1.15rem;
  height: 1.15rem;
}

.services-nav-btn:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.services-track-wrap {
  margin-inline: calc(50% - 50vw);
  padding-left: max(1rem, calc(50vw - 590px));
  width: 100vw;
}

.services-track {
  display: flex;
  gap: 1.15rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.25rem 1rem 0.75rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.services-track::-webkit-scrollbar {
  display: none;
}

.service-card {
  position: relative;
  flex: 0 0 min(78vw, 320px);
  height: min(62vw, 430px);
  border-radius: 22px;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  border: none;
  background: #d9dde7;
  box-shadow: 0 18px 40px rgba(18, 22, 40, 0.12);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

@media (min-width: 900px) {
  .service-card {
    flex-basis: 340px;
    height: 460px;
  }
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(18, 22, 40, 0.18);
  outline: none;
}

.service-card-media {
  position: absolute;
  inset: 0;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease);
}

.service-card:hover .service-card-media img {
  transform: scale(1.05);
}

.service-card-panel {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 0.95rem 0.95rem 1.05rem;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(18, 22, 40, 0.14);
  opacity: 1;
  transform: none;
  transition: opacity 0.25s ease, transform 0.25s var(--ease);
}

.service-card:hover .service-card-panel,
.service-card:focus-visible .service-card-panel,
.service-card.is-active .service-card-panel {
  opacity: 1;
  transform: none;
}

/* Always show panel on touch devices */
@media (hover: none) {
  .service-card-panel {
    opacity: 1;
    transform: none;
  }
}

.service-card-copy {
  min-width: 0;
  flex: 1;
}

.service-card-cat {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.service-card-copy h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #15171f;
  line-height: 1.2;
}

.service-card-copy p {
  display: none;
}

.service-card-plus {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.service-card-plus svg {
  width: 1.1rem;
  height: 1.1rem;
}

/* Override old dark service styles inside showcase */
.services-showcase .services-grid,
.services-showcase .section-head {
  display: none;
}

@media (max-width: 720px) {
  .services-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-heading {
    max-width: 18ch;
  }

  .services-track-wrap {
    margin-inline: -1rem;
    padding-left: 1rem;
    width: auto;
  }

  .service-card {
    flex-basis: min(82vw, 300px);
    height: 400px;
  }
}

/* ========== NEWSLETTER (modal + banner) ========== */
.newsletter-modal .modal-backdrop {
  background: rgba(8, 11, 28, 0.72) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.newsletter-dialog {
  width: min(440px, calc(100vw - 2rem)) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45) !important;
  background: transparent !important;
}

.newsletter-close.modal-close,
.newsletter-dialog .modal-close {
  top: 1rem !important;
  right: 1rem !important;
  width: 2.25rem !important;
  height: 2.25rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.85) !important;
  display: grid !important;
  place-items: center !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

.newsletter-close svg {
  width: 0.95rem;
  height: 0.95rem;
}

.newsletter-form {
  padding: 2.35rem 2rem 1.85rem !important;
  gap: 0 !important;
  background:
    radial-gradient(ellipse 80% 55% at 100% 0%, rgba(11, 74, 50, 0.38), transparent 55%),
    radial-gradient(ellipse 60% 45% at 0% 100%, rgba(245, 196, 0, 0.12), transparent 50%),
    linear-gradient(165deg, #1a2148 0%, #041c14 100%) !important;
}

.newsletter-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin: 0 0 1.25rem;
  color: #fff;
  background: linear-gradient(145deg, var(--brand), var(--brand-dark));
  box-shadow: 0 12px 28px rgba(11, 74, 50, 0.35);
}

.newsletter-icon svg {
  width: 1.55rem;
  height: 1.55rem;
}

.newsletter-eyebrow {
  margin: 0 0 0.65rem !important;
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  padding-right: 2.5rem;
}

.newsletter-form h3 {
  margin: 0 0 0.75rem !important;
  color: #fff !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.55rem, 3.5vw, 1.95rem) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em !important;
  padding-right: 2rem;
}

.newsletter-copy {
  margin: 0 0 1.5rem !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.98rem !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
}

.newsletter-field,
.newsletter-form label.newsletter-field {
  display: grid !important;
  gap: 0.45rem !important;
  margin: 0 0 1rem !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.55) !important;
}

.newsletter-form input[type="email"] {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.9rem 1.05rem !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 12px !important;
  color: #fff !important;
  font-size: 0.98rem !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.newsletter-form input[type="email"]:focus {
  border-color: rgba(11, 74, 50, 0.85) !important;
  box-shadow: 0 0 0 3px rgba(11, 74, 50, 0.22);
  outline: none;
}

.newsletter-submit.btn,
.newsletter-form .newsletter-submit {
  width: 100% !important;
  justify-content: center !important;
  gap: 0.55rem;
  min-height: 3.2rem !important;
  margin: 0.15rem 0 1rem !important;
  border-radius: 12px !important;
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
  font-weight: 700 !important;
  box-shadow: 0 12px 28px rgba(245, 196, 0, 0.32);
}

.newsletter-submit svg {
  width: 1.05rem;
  height: 1.05rem;
}

.newsletter-submit:hover {
  background: var(--accent-hover) !important;
  border-color: var(--accent-hover) !important;
}

.newsletter-form .form-note {
  margin: 0 0 0.85rem !important;
  text-align: left !important;
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.8rem !important;
  line-height: 1.5 !important;
}

.newsletter-dismiss {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.25rem 0;
  text-align: left;
  width: fit-content;
}

.newsletter-dismiss:hover {
  color: #fff;
}

/* Page banner */
.newsletter-band {
  padding-top: 0.5rem !important;
  padding-bottom: clamp(3rem, 6vw, 4.5rem) !important;
}

.newsletter-banner {
  gap: 2rem 2.75rem !important;
  padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.5rem, 3.5vw, 2.75rem) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 20px !important;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(11, 74, 50, 0.28), transparent 55%),
    radial-gradient(ellipse at 100% 50%, rgba(245, 196, 0, 0.1), transparent 45%),
    linear-gradient(135deg, #1a2148 0%, #041c14 100%) !important;
}

.newsletter-banner-copy h2 {
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 0.65rem !important;
}

.newsletter-banner-eyebrow {
  margin: 0 0 0.55rem !important;
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
}

.newsletter-banner-text {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  line-height: 1.55 !important;
  max-width: 32ch;
}

.newsletter-banner-copy h2 span {
  color: #ff8a8e !important;
}

.newsletter-banner-field {
  border-color: rgba(255, 255, 255, 0.14) !important;
  background: rgba(0, 0, 0, 0.28) !important;
  padding: 0.35rem 0.35rem 0.35rem 1.1rem !important;
}

.newsletter-banner-btn {
  background: var(--accent) !important;
  color: #fff !important;
  border-radius: 999px !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  font-size: 0.85rem !important;
  padding: 0.75rem 0.9rem 0.75rem 1.15rem !important;
}

.newsletter-banner-btn-icon {
  background: rgba(0, 0, 0, 0.28) !important;
}

.newsletter-terms {
  color: rgba(255, 255, 255, 0.62) !important;
}

@media (max-width: 560px) {
  .newsletter-form {
    padding: 2rem 1.35rem 1.55rem !important;
  }

  .newsletter-dialog {
    width: min(100%, calc(100vw - 1.25rem)) !important;
  }
}

/* ========== MODALS (unified) ========== */
.modal {
  padding: clamp(0.85rem, 3vw, 1.5rem) !important;
  z-index: 90 !important;
}

.modal-backdrop {
  background: rgba(8, 11, 28, 0.72) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.modal-dialog {
  width: min(480px, calc(100vw - 1.5rem)) !important;
  max-height: min(90svh, 760px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 18px !important;
  background: linear-gradient(165deg, #1a2148 0%, #041c14 100%) !important;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5) !important;
  overflow: hidden !important;
}

.modal-close,
.video-close {
  top: 0.85rem !important;
  right: 0.85rem !important;
  width: 2.35rem !important;
  height: 2.35rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  background: rgba(10, 14, 36, 0.72) !important;
  color: #fff !important;
  font-size: 0 !important;
  line-height: 0 !important;
  display: grid !important;
  place-items: center !important;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease !important;
}

.modal-close svg,
.video-close svg {
  width: 0.95rem;
  height: 0.95rem;
}

.modal-close:hover,
.video-close:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

/* Subtle scrollbars inside modals */
.modal-dialog,
.service-dialog,
.service-modal-body,
.comment-form {
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 196, 0, 0.55) transparent;
}

.modal-dialog::-webkit-scrollbar,
.service-dialog::-webkit-scrollbar,
.service-modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-dialog::-webkit-scrollbar-track,
.service-dialog::-webkit-scrollbar-track,
.service-modal-body::-webkit-scrollbar-track {
  background: transparent;
}

.modal-dialog::-webkit-scrollbar-thumb,
.service-dialog::-webkit-scrollbar-thumb,
.service-modal-body::-webkit-scrollbar-thumb {
  background: rgba(245, 196, 0, 0.45);
  border-radius: 999px;
}

/* ===== Service modal ===== */
.service-dialog {
  width: min(560px, calc(100vw - 1.5rem)) !important;
  max-height: min(92svh, 840px) !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
}

.service-modal .modal-close {
  top: 0.75rem !important;
  right: 0.75rem !important;
  z-index: 5;
}

.service-modal-media {
  position: relative;
  width: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: 16 / 10;
  background: #0e1230 !important;
  border-bottom: none !important;
  overflow: hidden !important;
  flex: 0 0 auto;
}

.service-modal-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3.5rem;
  background: linear-gradient(180deg, transparent, rgba(18, 22, 58, 0.85));
  pointer-events: none;
}

.service-modal-media img {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

.service-modal-body {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1 1 auto;
  overflow: hidden;
}

.service-modal-content {
  padding: 1.25rem 1.25rem 0.75rem !important;
  overflow: auto;
  flex: 1 1 auto;
  min-height: 0;
}

.service-modal-label {
  display: inline-flex;
  margin-bottom: 0.55rem !important;
  color: #ff8a8e !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
}

.service-modal-content h3 {
  margin: 0 0 0.65rem !important;
  color: #fff !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.35rem, 3vw, 1.85rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.2 !important;
}

.service-modal-summary {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.98rem !important;
  font-weight: 500 !important;
  line-height: 1.55 !important;
  margin-bottom: 0.85rem !important;
}

.service-modal-details {
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 0.92rem !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
  margin-bottom: 0.5rem !important;
  white-space: pre-line;
}

.service-modal-footer {
  flex: 0 0 auto;
  padding: 0.85rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(18, 22, 58, 0.2), rgba(10, 14, 36, 0.65));
}

.service-modal-actions {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0.7rem !important;
}

.service-modal-actions .btn {
  width: 100% !important;
  min-height: 3rem !important;
  border-radius: 12px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700 !important;
  text-transform: none !important;
  letter-spacing: 0.01em !important;
}

.service-modal-actions .btn svg {
  width: 1.1rem;
  height: 1.1rem;
}

.service-modal .btn-whatsapp {
  background: #25d366 !important;
  border-color: #25d366 !important;
  color: #053018 !important;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.25);
}

.service-modal .service-call-btn,
.service-modal .btn-primary.service-call-btn {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(245, 196, 0, 0.28);
}

.service-modal-note {
  margin: 0.7rem 0 0 !important;
  text-align: center !important;
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 0.78rem !important;
}

@media (max-width: 520px) {
  .service-modal-actions {
    grid-template-columns: 1fr !important;
  }

  .service-modal-media {
    aspect-ratio: 16 / 11;
  }
}

/* ===== Comment / review modal ===== */
#comment-modal .modal-dialog {
  width: min(460px, calc(100vw - 1.5rem)) !important;
  overflow: auto !important;
}

.comment-form {
  padding: 1.75rem 1.45rem 1.5rem !important;
  gap: 0.95rem !important;
}

.comment-form-title {
  color: #ff8a8e !important;
  font-size: 0.74rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  margin-bottom: 0.25rem !important;
}

.comment-form label,
.comment-form .rating-field {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.1em !important;
}

.comment-form input,
.comment-form textarea,
.comment-form select {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 12px !important;
  color: #fff !important;
  min-height: 2.9rem;
}

.comment-form input:focus,
.comment-form textarea:focus,
.comment-form select:focus {
  border-color: rgba(11, 74, 50, 0.9) !important;
  box-shadow: 0 0 0 3px rgba(11, 74, 50, 0.22);
}

.comment-form .btn {
  border-radius: 12px !important;
  min-height: 3.1rem;
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}

.rating-stars:has(input[value="1"]:checked) label:nth-child(-n + 1) .star,
.rating-stars:has(input[value="2"]:checked) label:nth-child(-n + 2) .star,
.rating-stars:has(input[value="3"]:checked) label:nth-child(-n + 3) .star,
.rating-stars:has(input[value="4"]:checked) label:nth-child(-n + 4) .star,
.rating-stars:has(input[value="5"]:checked) label:nth-child(-n + 5) .star,
.rating-stars:has(label:nth-child(1):hover) label:nth-child(-n + 1) .star,
.rating-stars:has(label:nth-child(2):hover) label:nth-child(-n + 2) .star,
.rating-stars:has(label:nth-child(3):hover) label:nth-child(-n + 3) .star,
.rating-stars:has(label:nth-child(4):hover) label:nth-child(-n + 4) .star,
.rating-stars:has(label:nth-child(5):hover) label:nth-child(-n + 5) .star {
  color: var(--accent) !important;
}

/* ===== Gallery lightbox ===== */
.lightbox-dialog {
  width: min(980px, calc(100vw - 1.5rem)) !important;
  max-height: min(92svh, 900px) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #0e1230 !important;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55) !important;
}

.lightbox .modal-close {
  top: 0.85rem !important;
  right: 0.85rem !important;
  background: rgba(10, 14, 36, 0.75) !important;
}

.lightbox-nav {
  width: 2.75rem !important;
  height: 2.75rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  background: rgba(10, 14, 36, 0.7) !important;
  color: #fff !important;
}

.lightbox-nav:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}

.lightbox-figure img {
  border-radius: 0 !important;
}

.lightbox-figure figcaption {
  background: linear-gradient(180deg, transparent, rgba(8, 11, 28, 0.92)) !important;
}

.lightbox-figure figcaption span {
  color: #ff8a8e !important;
}

/* ===== Video modal ===== */
.video-modal {
  z-index: 96 !important;
}

.video-close {
  top: -0.65rem !important;
  right: -0.35rem !important;
}

.video-frame {
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  overflow: hidden !important;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55) !important;
}

