/* Richard Seerane & Associates — Brand: logo blue, cyan accent */
:root {
  --cyan: #00c8e8;
  --blue: #004aad;
  --blue-dark: #003580;
  --blue-light: #1a6fd4;
  --grey: #7e7e7e;
  --grey-dark: #4a4a4a;
  --grey-light: #a8a8a8;
  --grey-bg: #f4f5f7;
  --white: #ffffff;
  --cream: #fafbfc;
  --text: #2c2c2c;
  --shadow: 0 8px 32px rgba(0, 74, 173, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', 'Segoe UI', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--blue-dark); }

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(126, 126, 126, 0.15);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow); }

/* Transparent nav on home hero (matches prive-home-staffing pattern) */
.site-header--hero {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: none;
}

.site-header--hero .nav-main a {
  color: rgba(255, 255, 255, 0.88);
}

.site-header--hero .nav-main a:hover,
.site-header--hero .nav-main a.active {
  color: var(--white);
}

.site-header--hero .nav-main a::after {
  background: rgba(255, 255, 255, 0.85);
}

.site-header--hero .nav-toggle span {
  background: var(--white);
}

.site-header--hero .header-cta {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.site-header--hero .header-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transform: none;
  box-shadow: none;
}

.site-header--hero.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(126, 126, 126, 0.15);
}

.site-header--hero.scrolled .nav-main a {
  color: var(--grey-dark);
}

.site-header--hero.scrolled .nav-main a:hover,
.site-header--hero.scrolled .nav-main a.active {
  color: var(--blue);
}

.site-header--hero.scrolled .nav-main a::after {
  background: var(--blue);
}

.site-header--hero.scrolled .nav-toggle span {
  background: var(--grey-dark);
}

.site-header--hero.scrolled .header-cta {
  background: var(--blue);
  color: var(--white);
  border-color: transparent;
}

.site-header--hero.scrolled .header-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 74, 173, 0.35);
}

.logo-link {
  display: inline-grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  justify-items: start;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.logo-link img,
.logo-img {
  grid-area: 1 / 1;
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.site-header:not(.site-header--hero) .logo-img--light {
  display: none;
}

.site-header--hero .logo-img--light {
  visibility: visible;
  opacity: 1;
}

.site-header--hero .logo-img--dark {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.site-header--hero.scrolled .logo-img--light {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.site-header--hero.scrolled .logo-img--dark {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .logo-img { transition: none; }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 2rem;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-main a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-dark);
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0;
}

.nav-main a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width var(--transition);
}

.nav-main a:hover,
.nav-main a.active { color: var(--blue); }

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

/* Services dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle .nav-chevron {
  display: inline-block;
  font-size: 0.55rem;
  margin-left: 0.2rem;
  vertical-align: middle;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-chevron,
.nav-dropdown:focus-within .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 240px;
  list-style: none;
  background: var(--white);
  border: 1px solid rgba(126, 126, 126, 0.15);
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  padding: 0.4rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 1100;
  pointer-events: none;
}

@media (hover: hover) {
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.15rem;
  font-size: 0.68rem;
  white-space: nowrap;
  color: var(--grey-dark);
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: rgba(0, 74, 173, 0.08);
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 74, 173, 0.35);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}

/* Use on light/white section backgrounds (not hero or CTA banners) */
.btn-outline-dark {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-outline-dark:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn-grey {
  background: var(--grey-bg);
  color: var(--blue);
}

.btn-grey:hover { background: #e8ecf2; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--grey-dark);
  transition: var(--transition);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── HOME PAGE (client reference layout) ── */
.site-header--home {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(126, 126, 126, 0.12);
}

.site-header--home .nav-main a { color: var(--grey-dark); }
.site-header--home .nav-main a:hover,
.site-header--home .nav-main a.active { color: var(--blue); }
.site-header--home .nav-main a::after { background: var(--blue); }

body[data-page="home"] { padding-top: 0; }

.home-hero {
  position: relative;
  min-height: 420px;
  height: min(52vh, 520px);
  margin-top: 72px;
  overflow: hidden;
}

.home-hero-slider {
  position: absolute;
  inset: 0;
}

.home-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.home-hero-slide.active { opacity: 1; }

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 53, 128, 0.55) 0%,
    rgba(0, 74, 173, 0.82) 100%
  );
}

.home-hero-title-wrap {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
}

.home-hero-title {
  font-size: clamp(1.35rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-hero-title span {
  display: block;
  font-weight: 700;
  margin-top: 0.35rem;
}

.home-hero-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.home-hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.home-hero-dot.active,
.home-hero-dot:hover {
  background: var(--white);
  border-color: var(--white);
}

.home-intro {
  position: relative;
  z-index: 5;
  margin-top: -4.5rem;
  padding-bottom: 3rem;
}

.intro-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border-radius: 4px;
  overflow: hidden;
}

.intro-form-panel {
  background: #1a1a1a;
  color: var(--white);
  padding: 2rem 2rem 2.25rem;
}

.intro-form-panel h2 {
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.intro-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.intro-form input,
.intro-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.intro-form input::placeholder,
.intro-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.intro-form input:focus,
.intro-form textarea:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 2px rgba(26, 111, 212, 0.35);
}

.intro-form textarea { resize: vertical; min-height: 100px; }

.btn-send {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.85rem;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
}

.btn-send:hover { background: var(--blue-dark); }

.intro-about-panel {
  background: var(--white);
  padding: 2rem 2.25rem;
}

.intro-about-panel h2 {
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.intro-about-panel p {
  font-size: 0.88rem;
  color: var(--grey-dark);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.intro-about-link {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue);
}

.company-services {
  background: var(--grey-bg);
  padding-bottom: 3rem;
}

.company-services-banner {
  position: relative;
  padding: 3.5rem 1.5rem;
  text-align: center;
  background: url('../images/hero-2.jpg') center/cover no-repeat;
  margin-bottom: 2.5rem;
}

.company-services-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 25, 0.72);
}

.company-services-banner h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

.service-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Services page — expanded divisions */
.services-expanded {
  margin-top: 2rem;
}

.service-section {
  scroll-margin-top: 100px;
  padding: 2.75rem 0;
  border-top: 1px solid rgba(126, 126, 126, 0.12);
}

.service-section:first-child {
  padding-top: 0;
  border-top: none;
}

.service-section-header {
  margin-bottom: 1.5rem;
}

.service-section-header h2 {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue-dark);
  margin-bottom: 0.65rem;
}

.service-section-desc {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.65;
  max-width: 52rem;
}

.service-section-list {
  list-style: none;
  margin-bottom: 1.75rem;
}

.service-section-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.35rem;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(126, 126, 126, 0.12);
  color: var(--grey-dark);
}

.service-section-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.service-section-list--cols {
  columns: 2;
  column-gap: 2.5rem;
}

.service-section-list--cols li {
  break-inside: avoid;
}

.service-section-note {
  margin-top: 2.5rem;
  padding: 1.75rem 1.5rem;
  background: #1a1a1a;
  color: var(--white);
  border-radius: 4px;
}

.service-section-note h3 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
}

.service-section-note .other-services-list li {
  color: rgba(255, 255, 255, 0.88);
}

.service-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem 1.75rem;
  background: var(--white);
  border: 1px solid rgba(126, 126, 126, 0.15);
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

button.service-category { width: 100%; }

.service-category:hover,
.service-category:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
  outline: none;
}

.service-category-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 74, 173, 0.12), rgba(0, 74, 173, 0.22));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--blue);
}

.service-category-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-category h3 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.65rem;
  color: var(--blue);
}

.service-category p {
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.service-category-cta {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.service-category--other {
  background: #1a1a1a;
  color: var(--white);
  cursor: default;
  align-items: flex-start;
  text-align: left;
}

.service-category--other:hover {
  transform: none;
  box-shadow: none;
}

.service-category--other h3 {
  color: var(--white);
  width: 100%;
  text-align: center;
  margin-bottom: 1.25rem;
}

.other-services-list {
  list-style: disc;
  padding-left: 1.25rem;
  width: 100%;
}

.other-services-list li {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.45rem;
  line-height: 1.5;
}

.accent-bar {
  height: 28px;
  background: var(--cyan);
  width: 100%;
}

.home-brand-block {
  padding: 4rem 1.5rem 5rem;
  text-align: center;
  background: var(--white);
}

.home-brand-name {
  font-size: clamp(1.5rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.home-brand-tagline {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--grey);
  font-weight: 400;
  margin-bottom: 1.75rem;
}

.home-brand-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  font-size: 0.82rem;
}

.home-brand-contact a {
  color: var(--blue);
  font-weight: 500;
}

.home-brand-contact span { color: var(--grey-light); }

.site-footer--compact {
  padding: 1.5rem 0;
  background: #1a2332;
}

.site-footer--compact .footer-bottom {
  border-top: none;
  padding-top: 0;
  margin: 0;
}

/* Service detail modal */
.service-modal[hidden] { display: none; }

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.service-modal-panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(85vh, 640px);
  overflow-y: auto;
  background: var(--white);
  padding: 2rem 2rem 2.25rem;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.service-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--grey-bg);
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--grey-dark);
}

.service-modal-panel h2 {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue-dark);
  padding-right: 2rem;
  margin-bottom: 0.75rem;
}

.service-modal-desc {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.service-modal-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-modal-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.35rem;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(126, 126, 126, 0.12);
  color: var(--grey-dark);
}

.service-modal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

body.modal-open { overflow: hidden; }

/* ── HERO SLIDER (legacy — inner pages) ── */
body[data-page="home"] .hero-slider {
  margin-top: 0;
}

.hero-slider {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg { transform: scale(1); }

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 53, 128, 0.92) 0%,
    rgba(0, 74, 173, 0.75) 45%,
    rgba(0, 74, 173, 0.4) 100%
  );
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 2rem 0;
}

/* Match header .container edges (logo left → CTA right) */
.hero-slide-content > .container {
  width: min(1200px, 92vw);
  max-width: min(1200px, 92vw);
  margin-inline: auto;
  flex-shrink: 0;
}

.hero-watermark {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: clamp(12rem, 24vw, 20rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
  z-index: 2;
  user-select: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, auto);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  width: 100%;
}

.hero-intro {
  min-width: 0;
  max-width: 640px;
  padding-top: 5.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grey-light);
}

.hero-badge-dot.blue { background: #6eb3ff; }

.hero-slider h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.hero-slider h1 em {
  font-style: italic;
  color: var(--white);
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-dots {
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.hero-dot.active,
.hero-dot:hover {
  background: var(--white);
  border-color: var(--white);
  transform: scale(1.15);
}

.hero-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}

.hero-arrow:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}

.hero-stats-rail {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
  max-width: 168px;
  justify-self: end;
  align-self: center;
}

.hero-stat-card {
  padding: 1.1rem 1.35rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
  text-align: left;
  transition: background 0.25s, border-color 0.25s;
}

.hero-stat-card:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-stat-card .hero-stat-num {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1.1;
}

.hero-stat-card .hero-stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 0.2rem;
  display: block;
}

.hero-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.75rem;
  padding: 0.75rem 1.15rem 0.75rem 0.85rem;
  background: rgba(37, 211, 102, 0.92);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.hero-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

.hero-whatsapp:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
  background: #20bd5a;
}

body[data-page="home"] .whatsapp-float {
  display: none;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  margin-top: 72px;
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 53, 128, 0.9), rgba(0, 74, 173, 0.72));
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  font-size: 1rem;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.breadcrumb a { color: rgba(255, 255, 255, 0.85); }
.breadcrumb a:hover { color: var(--white); }

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--grey);
  font-size: 1rem;
  max-width: 580px;
  line-height: 1.75;
}

.section { padding: 5.5rem 0; }

.section-alt { background: var(--grey-bg); }

.section-header {
  margin-bottom: 3rem;
}

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

.section-header.center .section-sub { margin: 0 auto; }

/* ── FLAT ICONS ── */
.icon-flat {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8f0fa, #d4e4f7);
  border-radius: 10px;
  margin-bottom: 1.25rem;
  color: var(--blue);
}

.icon-flat svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(126, 126, 126, 0.12);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

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

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

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

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.65;
}

/* ── IMAGE SHOWCASE SLIDER ── */
.showcase-slider {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
}

.showcase-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

.showcase-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0, 53, 128, 0.9));
  color: white;
}

.showcase-caption h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.showcase-caption p { font-size: 0.85rem; opacity: 0.85; }

.showcase-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.showcase-nav.prev { left: 1rem; }
.showcase-nav.next { right: 1rem; }

/* ── WHY SECTION ── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--blue);
  text-align: center;
}

.floating-badge .num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  display: block;
}

.floating-badge span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey);
}

.why-list { list-style: none; margin-top: 2rem; }

.why-list li {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(126, 126, 126, 0.15);
}

.why-check {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(0, 74, 173, 0.1);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.why-check svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

.why-list h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.25rem; }
.why-list p { font-size: 0.85rem; color: var(--grey); }

/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}

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

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 53, 128, 0.94), rgba(0, 74, 173, 0.88));
}

.cta-banner .container { position: relative; z-index: 2; }

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── SERVICES PAGE ── */
.service-detail-grid {
  display: grid;
  gap: 2rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(126, 126, 126, 0.1);
  transition: box-shadow var(--transition);
}

.service-detail:hover { box-shadow: var(--shadow); }

.service-detail-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0, 74, 173, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.service-detail h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.service-detail p { color: var(--grey); font-size: 0.92rem; line-height: 1.75; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  background: var(--white);
}

.process-step h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.82rem; color: var(--grey); }

/* ── ABOUT PAGE ── */
.mission-quote {
  border-left: 4px solid var(--blue);
  padding: 1.5rem 2rem;
  background: var(--grey-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}

.mission-quote p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
}

.mission-quote cite {
  display: block;
  font-size: 0.8rem;
  font-style: normal;
  color: var(--grey);
  margin-top: 0.75rem;
  font-family: var(--font-sans);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border-top: 3px solid var(--blue);
  transition: transform var(--transition);
}

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

.value-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(0, 74, 173, 0.15);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.value-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.85rem; color: var(--grey); }

/* ── REVIEWS PAGE ── */
.rating-hero {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.big-rating {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}

.stars { color: #f5a623; font-size: 1.25rem; letter-spacing: 3px; }

.google-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--grey-dark);
  margin-top: 0.5rem;
  box-shadow: var(--shadow);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(126, 126, 126, 0.1);
  transition: box-shadow var(--transition);
}

.review-card:hover { box-shadow: var(--shadow); }

.review-text {
  font-size: 0.9rem;
  color: var(--grey-dark);
  line-height: 1.7;
  font-style: italic;
  margin: 1rem 0 1.5rem;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.reviewer-name { font-size: 0.88rem; font-weight: 600; }
.reviewer-meta { font-size: 0.72rem; color: var(--grey); }

.reviews-grid--compact {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.review-card--compact {
  padding: 1.25rem 1.5rem;
}

.review-card--compact .review-text {
  font-size: 0.84rem;
  margin: 0.75rem 0 1rem;
}

.review-card--compact .reviewer-avatar {
  width: 34px;
  height: 34px;
  font-size: 0.68rem;
}

.reviews-google-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.partners-section--page {
  padding-top: calc(var(--header-h, 80px) + 3rem);
}

.form-feedback {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.form-feedback--success {
  background: rgba(10, 122, 74, 0.1);
  border: 1px solid rgba(10, 122, 74, 0.3);
  color: #0a7a4a;
}

.form-feedback--error {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.25);
  color: #991b1b;
}

/* Testimonials marquee */
.testimonials-marquee {
  overflow: hidden;
  padding: 1rem 0;
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-card {
  flex-shrink: 0;
  width: 360px;
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--blue);
  box-shadow: var(--shadow);
}

.marquee-card p {
  font-size: 0.88rem;
  color: var(--grey-dark);
  font-style: italic;
  line-height: 1.65;
}

.marquee-card .author {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
}

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: calc(100vh - 72px);
  margin-top: 72px;
}

.contact-info-panel {
  background: linear-gradient(175deg, var(--blue-dark), var(--blue));
  padding: 4rem 3rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/consultation.jpg') center/cover;
  opacity: 0.08;
}

.contact-info-panel > * { position: relative; z-index: 1; }

.contact-info-panel h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.contact-info-panel > p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.contact-item-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.75; }

.contact-item h4 {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.3rem;
}

.contact-item p,
.contact-item a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  text-decoration: none;
  line-height: 1.6;
}

.contact-item a:hover { color: white; }

.contact-hours {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-form-panel {
  padding: 4rem 3.5rem;
  background: var(--cream);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.form-sub { color: var(--grey); font-size: 0.9rem; margin-bottom: 2rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-dark);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(126, 126, 126, 0.3);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.12);
}

.form-group textarea { height: 130px; resize: vertical; }

.form-submit { width: 100%; }

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--grey);
  margin-top: 1rem;
}

.map-embed {
  margin-top: 0;
  height: 320px;
  background: var(--grey-bg);
  border-top: 1px solid rgba(126, 126, 126, 0.15);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── FOOTER ── */
.site-footer {
  background: #1a2332;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 1rem;
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-col h5 {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 0.55rem; }

.footer-col a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.78rem; color: rgba(255, 255, 255, 0.35); }

.footer-credit {
  flex-basis: 100%;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.25rem;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-credit a:hover { color: rgba(255, 255, 255, 0.85); }

.bbbee-badge {
  background: rgba(0, 74, 173, 0.25);
  border: 1px solid rgba(0, 74, 173, 0.5);
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: #6eb3ff;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s;
}

.whatsapp-float:hover { transform: scale(1.08); }

.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* Keep inline headings readable */
.intro-about-panel p strong { color: var(--blue-dark); }

/* Strategic partners */
.partners-section {
  padding: 3rem 0 4rem;
  background: var(--grey-bg);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
  list-style: none;
  margin-top: 2rem;
  align-items: center;
  justify-items: center;
}

.partners-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 72px;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(126, 126, 126, 0.12);
  border-radius: 6px;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

.partners-grid a:hover {
  border-color: rgba(0, 74, 173, 0.25);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.partners-grid img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .partners-grid a { min-height: 64px; padding: 0.85rem; }
  .partners-grid img { max-height: 44px; }
}

.partners-section--credit {
  padding-top: 2rem;
  border-top: 1px solid rgba(126, 126, 126, 0.12);
}

/* Credit rehabilitation page */
.credit-callout {
  background: linear-gradient(145deg, var(--blue-dark), var(--blue));
  color: var(--white);
  padding: 2rem 1.75rem;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}

.credit-callout-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.75rem;
}

.credit-callout-stat {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.credit-callout-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.credit-callout-note {
  font-size: 0.82rem;
  line-height: 1.65;
  opacity: 0.88;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
}

.credit-callout-note strong { color: var(--white); }

.credit-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.5rem;
  list-style: none;
  margin-top: 1.5rem;
}

.credit-services-grid li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text);
}

.credit-services-grid li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.credit-video-section { padding-top: 2rem; }

.credit-video-wrap {
  max-width: 880px;
  margin: 2rem auto 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #0a0a0a;
}

.credit-video-wrap video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
}

.credit-reviews-grid { margin-top: 1.5rem; }

.credit-reviews-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

a.service-category {
  text-decoration: none;
  width: 100%;
}

@media (max-width: 768px) {
  .credit-services-grid { grid-template-columns: 1fr; }
  .credit-callout-stat { font-size: 2rem; }
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .intro-card {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .home-intro { margin-top: -2.5rem; }

  .service-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-stats-rail {
    max-width: none;
    width: 100%;
    justify-self: stretch;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: stretch;
    gap: 0.5rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-intro {
    padding-top: 4.5rem;
    max-width: none;
  }

  .hero-stat-card {
    flex: 1 1 calc(33.333% - 0.35rem);
    min-width: 0;
    padding: 0.75rem 0.5rem;
    text-align: center;
  }

  .hero-stat-card .hero-stat-num { font-size: 1.25rem; }

  .hero-watermark { display: none; }

  .hero-slide-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 53, 128, 0.88) 0%,
      rgba(0, 74, 173, 0.82) 55%,
      rgba(0, 74, 173, 0.65) 100%
    );
  }

  .split-section { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { width: min(1200px, 90vw); }

  .home-hero {
    margin-top: 64px;
    height: min(45vh, 400px);
    min-height: 320px;
  }

  .home-intro {
    margin-top: -1.5rem;
    padding-bottom: 2rem;
  }

  .intro-form-panel,
  .intro-about-panel {
    padding: 1.5rem 1.35rem;
  }

  .service-categories-grid {
    grid-template-columns: 1fr;
  }

  .service-section-list--cols {
    columns: 1;
  }

  .company-services-banner {
    padding: 2.5rem 1rem;
  }

  .home-brand-block {
    padding: 2.5rem 1rem 3rem;
  }

  .nav-main.open {
    max-height: 70vh;
    overflow-y: auto;
  }

  .site-header--home .nav-main.open a {
    font-size: 0.72rem;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0.5rem 0.75rem;
    min-width: 0;
    display: none;
  }

  .nav-main.open .nav-dropdown .nav-dropdown-menu,
  .nav-main.open .nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu a {
    padding: 0.45rem 0;
    font-size: 0.72rem;
  }

  .header-inner {
    gap: 1rem;
    padding: 0.65rem 0;
  }

  .logo-link img,
  .logo-img { height: 42px; }

  .nav-main, .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-main.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    gap: 1rem;
  }

  .site-header--hero .nav-main.open {
    background: rgba(0, 53, 128, 0.97);
  }

  .site-header--hero .nav-main.open a {
    color: rgba(255, 255, 255, 0.9);
  }

  .site-header--hero.scrolled .nav-main.open {
    background: var(--white);
  }

  .site-header--hero.scrolled .nav-main.open a {
    color: var(--grey-dark);
  }

  /* Hero: grid-stacked slides so content sets height (fixes absolute + height:auto collapse) */
  .hero-slider {
    display: grid;
    height: auto;
    min-height: 0;
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
  }

  .hero-slide {
    grid-area: 1 / 1;
    position: relative;
    inset: auto;
    width: 100%;
    z-index: 0;
    pointer-events: none;
  }

  .hero-slide.active {
    z-index: 2;
    pointer-events: auto;
  }

  .hero-slide-bg,
  .hero-slide-overlay {
    position: absolute;
    inset: 0;
  }

  .hero-slide-content {
    position: relative;
    z-index: 2;
    height: auto;
    min-height: min(100svh, 100dvh);
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5.25rem 0 5.75rem;
  }

  .hero-slide-content > .container {
    width: 100%;
    max-width: 100%;
  }

  .hero-intro {
    padding-top: 0;
  }

  .hero-layout {
    gap: 1.25rem;
  }

  .hero-badge {
    font-size: 0.62rem;
    padding: 0.4rem 0.85rem;
    letter-spacing: 0.08em;
    max-width: 100%;
    white-space: normal;
    text-align: left;
    line-height: 1.4;
  }

  .hero-slider h1 {
    font-size: clamp(1.75rem, 7.5vw, 2.35rem);
    margin-bottom: 1rem;
  }

  .hero-lead {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 0.85rem 1.25rem;
  }

  .hero-stats-rail {
    flex-wrap: nowrap;
    gap: 0.4rem;
  }

  .hero-stat-card {
    flex: 1 1 0;
    padding: 0.65rem 0.35rem;
  }

  .hero-stat-card .hero-stat-num { font-size: 1.1rem; }

  .hero-stat-card .hero-stat-label {
    font-size: 0.55rem;
    letter-spacing: 0.06em;
    line-height: 1.3;
  }

  .hero-whatsapp {
    margin-top: 1rem;
    padding: 0.65rem;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    justify-content: center;
  }

  .hero-whatsapp span { display: none; }

  .hero-controls {
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    gap: 0.75rem;
    width: calc(100% - 2rem);
    max-width: 320px;
    justify-content: center;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .section { padding: 3.5rem 0; }

  .page-hero {
    min-height: 260px;
  }

  .page-hero .container {
    padding: 2.5rem 0;
  }

  .page-hero h1 {
    font-size: clamp(1.65rem, 6vw, 2rem);
  }

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

  .service-card { padding: 1.5rem; }

  .service-detail {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .split-section { gap: 2rem; }

  .showcase-caption {
    padding: 1.25rem;
  }

  .showcase-caption h3 {
    font-size: 1.1rem;
  }

  .showcase-nav.prev { left: 0.5rem; }
  .showcase-nav.next { right: 0.5rem; }

  .cta-banner { padding: 3rem 0; }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    padding: 0 0.5rem;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 2.5rem 1.5rem;
  }

  .contact-info-panel h2 {
    font-size: 1.6rem;
  }

  .reviews-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .floating-badge {
    right: 0.75rem;
    bottom: -0.75rem;
    padding: 1rem 1.15rem;
  }

  .floating-badge .num { font-size: 1.5rem; }

  .marquee-card { width: min(360px, 85vw); }

  .whatsapp-float {
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    right: max(1rem, env(safe-area-inset-right, 0px));
  }

  .rating-hero {
    gap: 1.25rem;
    margin-top: 1.25rem;
  }

  .page-hero .big-rating {
    font-size: 3rem;
    color: var(--white);
  }

  .page-hero .google-pill {
    font-size: 0.72rem;
  }
}

@media (max-width: 480px) {
  .hero-slide-content {
    padding: 4.75rem 0 5.25rem;
  }

  .hero-stats-rail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.35rem;
  }

  .hero-stat-card {
    flex: none;
    padding: 0.55rem 0.25rem;
  }

  .hero-stat-card .hero-stat-num { font-size: 1rem; }

  .hero-stat-card .hero-stat-label {
    font-size: 0.5rem;
  }

  .hero-dot {
    width: 8px;
    height: 8px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide-bg { transition: none; }
  .hero-slide { transition: opacity 0.3s ease, visibility 0.3s; }
}
