:root {
  --bg: #f2f6fc;
  --surface: #ffffff;
  --surface-strong: #edf2fb;
  --text: #172131;
  --muted: #5f6e85;
  --primary: #17325f;
  --primary-dark: #0a1830;
  --secondary: #caa43c;
  --accent: #8a6614;
  --border: #dbe4ef;
  --radius: 28px;
  --shadow: 0 24px 54px rgba(15, 23, 42, 0.12);
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, rgba(23, 50, 95, 0.06), transparent 25%),
              linear-gradient(180deg, #f6f9fd 0%, #eef4fb 100%);
  min-height: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

a:hover,
a:focus-visible {
  color: var(--accent);
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background: rgba(255,255,255,0.96);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(23, 50, 95, 0.12);
  backdrop-filter: blur(12px);
}

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

.brand {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  color: var(--text);
  font-weight: 600;
  padding: 0.4rem 0.55rem;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(23, 50, 95, 0.08);
  color: var(--primary);
}

.site-nav a[aria-current="page"]:not(.btn-primary) {
  color: var(--primary);
  background: rgba(23, 50, 95, 0.1);
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
}

.hero {
  padding: 5rem 0 3rem;
  background: radial-gradient(circle at top left, rgba(23, 50, 95, 0.14), transparent 35%),
              linear-gradient(180deg, #eef5ff 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 2.2rem;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.hero-copy h1,
.page-hero h1,
.transport-hero h1,
.cleaning-hero h1,
.contact-hero h1 {
  font-size: clamp(1.9rem, 2.4vw + 0.5rem, 2.85rem);
  line-height: 1.12;
  margin: 0 0 1rem;
}

.hero-copy p,
.page-hero p,
.about-detail p,
.contact-section p,
.service-card p,
.section-header p,
.small-text {
  color: var(--muted);
  line-height: 1.75;
  max-width: 66ch;
}

.hero-actions,
.about-detail .hero-actions,
.page-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
  will-change: transform, box-shadow;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(23, 50, 95, 0.16);
}

.btn:active {
  transform: translateY(0) scale(0.99);
}

.btn-primary,
.btn-secondary {
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 18px 30px rgba(23, 50, 95, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), #050c1a);
}

.btn-secondary {
  background: rgba(23, 50, 95, 0.05);
  color: var(--primary);
  border-color: rgba(23, 50, 95, 0.16);
}

.btn-secondary:hover {
  background: rgba(23, 50, 95, 0.12);
  color: var(--primary-dark);
}

.btn-block {
  width: 100%;
}

.hero-card,
.business-card,
.service-card,
.pricing-card,
.highlight-card,
.contact-card,
.company-highlights > div {
  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  will-change: transform, box-shadow;
}

.business-card:hover,
.service-card:hover,
.pricing-card:hover,
.highlight-card:hover,
.contact-card:hover,
.company-highlights > div:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 50, 95, 0.18);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
}

.hero-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(23, 50, 95, 0.1), transparent 38%);
  pointer-events: none;
}

.hero-card * {
  position: relative;
  z-index: 1;
}

.hero-card h2 {
  margin-top: 0;
  font-size: 1.7rem;
}

.hero-card p {
  margin-bottom: 1.5rem;
}

.lead-form,
.contact-form {
  display: grid;
  gap: 1rem;
}

.lead-form label,
.contact-form label {
  display: grid;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: var(--text);
}

.lead-form input,
.lead-form select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface-strong);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lead-form input:hover,
.lead-form select:hover,
.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  background: #ffffff;
}

.lead-form input:focus,
.lead-form select:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(138, 102, 20, 0.14);
  background: #fff;
}

.contact-form textarea {
  min-height: 160px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.section {
  padding: 4rem 0;
}

.section-header {
  margin-bottom: 2rem;
  text-align: center;
}

.section-label {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
}

.section-header h2 {
  font-size: clamp(2rem, 2.8vw, 3rem);
  margin: 0.4rem 0 1rem;
  line-height: 1.05;
  position: relative;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 4rem;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
  margin: 1.2rem auto 0;
  opacity: 0.9;
}

.business-grid,
.stats-grid,
.services-grid,
.company-highlights {
  display: grid;
  gap: 1.5rem;
}

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

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

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 960px) {
  .services-grid,
  .pricing-grid,
  .business-grid,
  .stats-grid,
  .company-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .services-grid,
  .pricing-grid,
  .business-grid,
  .stats-grid,
  .company-highlights {
    grid-template-columns: 1fr;
  }
}

.business-card,
.service-card,
.pricing-card,
.highlight-card,
.contact-card {
  padding: 1.75rem;
}

.business-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.business-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  background: var(--primary);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.transport-card .business-tag {
  background: var(--primary);
}

.cleaning-card .business-tag {
  background: var(--accent);
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.feature-list li {
  padding-left: 1.6rem;
  position: relative;
  color: var(--muted);
}

.feature-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-item {
  padding: 2rem;
  text-align: center;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.stat-item strong {
  display: block;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-card {
  padding: 1.5rem;
}

.pricing-card strong {
  display: block;
  margin-bottom: 0.8rem;
}

.pricing-card span {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
}

.contact-grid,
.about-grid {
  display: grid;
  gap: 2rem;
}

.contact-grid {
  grid-template-columns: 1.15fr 0.95fr;
}

.contact-details,
.contact-form-wrapper {
  background: transparent;
}

.contact-info-card {
  margin-top: 1.5rem;
  padding: 1.5rem;
}

.contact-info-card h4 {
  margin: 0 0 0.75rem;
}

.contact-info-card a,
.contact-info-card p {
  color: var(--muted);
}

.contact-card {
  padding: 1.75rem;
}

.bank-details .bank-card {
  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  color: var(--muted);
}

.bank-details ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.bank-details li strong {
  color: var(--text);
}

/* Pricing tabs */
.pricing-tabs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.pricing-tabs .tab {
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}

.pricing-tabs .tab.active {
  background: linear-gradient(90deg, rgba(23,50,95,1) 0%, rgba(10,24,48,1) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(23,50,95,0.2);
}

.pricing-panel {
  margin-top: 1rem;
}

.pricing-card h4 {
  margin: 0 0 0.5rem;
}

.pricing-card strong {
  display: block;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-card .muted {
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.pricing-card.popular {
  border: 2px solid rgba(202, 164, 60, 0.3);
  background: linear-gradient(135deg, rgba(255,248,230,0.6), rgba(255,255,255,0.6));
}

.price-badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary-dark);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  float: right;
  margin-top: -0.5rem;
}

.pricing-card .checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.pricing-card.wide-card {
  grid-column: span 2;
}

@media (max-width: 960px) {
  .pricing-card.wide-card {
    grid-column: auto;
  }
}

.contact-callout {
  padding: 0;
}

.contact-card.contact-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-card.contact-card h2 {
  margin-top: 0;
}

.company-highlights {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-section {
  padding-bottom: 6rem;
}

.site-footer {
  background: radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.9), #0a1830 35%);
  color: #cbd5e1;
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-footer h3,
.site-footer h4 {
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.site-footer a {
  display: block;
  color: #cbd5e1;
  margin-bottom: 0.55rem;
  transition: color 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ffffff;
}

.managed-by {
  text-align: center;
  color: #94a3b8;
  font-size: 0.95rem;
  padding: 0.85rem 0 0.25rem;
}

.managed-by a {
  color: #ffffff;
}

.managed-by a {
  color: #cbd5e1;
  text-decoration: underline;
}

/* Opaque by default so it covers the very first paint (no JS-dependent flash);
   only fades away once .hidden is added after the new page is ready. Scoped to
   .js so a no-JS visitor never gets stuck behind a permanently opaque overlay. */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  background: #0a1830;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
  z-index: 9999;
}

.js .page-transition-overlay {
  opacity: 1;
  pointer-events: all;
}

.page-transition-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.chatbot-widget {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 10000;
  font-family: inherit;
}

.chatbot-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  box-shadow: 0 18px 35px rgba(14, 94, 255, 0.18);
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chatbot-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(14, 94, 255, 0.22);
}

.chatbot-panel {
  width: min(360px, calc(100vw - 2rem));
  max-height: 500px;
  display: none;
  flex-direction: column;
  background: #0a1830;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 1rem;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.35);
  color: #e2e8f0;
  overflow: hidden;
}

.chatbot-widget.open .chatbot-panel {
  display: flex;
}

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

.chatbot-header h3 {
  margin: 0;
  font-size: 1rem;
}

.chatbot-close {
  border: none;
  background: transparent;
  color: #cbd5e1;
  font-size: 1.25rem;
  cursor: pointer;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  margin: 1rem 0;
  display: grid;
  gap: 0.85rem;
}

.chatbot-message {
  padding: 0.85rem 1rem;
  border-radius: 18px;
  line-height: 1.5;
}

.chatbot-message.user {
  background: rgba(14, 94, 255, 0.14);
  color: #ffffff;
  justify-self: end;
}

.chatbot-message.bot {
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  justify-self: start;
}

.chatbot-form {
  display: flex;
  gap: 0.75rem;
}

.chatbot-form input {
  flex: 1;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.chatbot-form input::placeholder {
  color: rgba(255,255,255,0.6);
}

.chatbot-form button {
  border: none;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  padding: 0 1.25rem;
  cursor: pointer;
}

.chatbot-form button:hover {
  background: var(--primary-dark);
}

.form-alert {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.form-alert.success {
  display: block;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.form-alert.error {
  display: block;
  background: #fce7f3;
  border: 1px solid #f9a8d4;
  color: #9d174d;
}

@media (max-width: 960px) {
  .hero-grid,
  .contact-grid,
  .business-grid,
  .stats-grid,
  .pricing-grid,
  .company-highlights {
    grid-template-columns: 1fr;
  }

  .site-nav {
    display: none;
  }

  .site-nav.show {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    position: absolute;
    top: 80px;
    right: 1rem;
    left: 1rem;
    background: var(--surface);
    padding: 1rem 1.25rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    z-index: 25;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .business-card,
  .service-card,
  .pricing-card,
  .highlight-card,
  .contact-card {
    padding: 1.5rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 3rem;
  }

  .hero-copy h1,
  .page-hero h1,
  .transport-hero h1,
  .cleaning-hero h1,
  .contact-hero h1 {
    font-size: 2.2rem;
  }

  .site-header {
    padding: 0 0.5rem;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .hero-card,
  .contact-form-wrapper,
  .contact-card {
    border-radius: 1.5rem;
  }
}

/* ============================================================
   Phase 2 — visual life: icons, card media, photo heroes, reveal
   ============================================================ */

/* Card icons (service/feature tiles) */
.card-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 1.1rem;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(23, 50, 95, 0.14), rgba(23, 50, 95, 0.04));
  box-shadow: inset 0 0 0 1px rgba(23, 50, 95, 0.1);
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

.card-icon.teal {
  color: var(--secondary);
  background: linear-gradient(135deg, rgba(202, 164, 60, 0.16), rgba(202, 164, 60, 0.04));
  box-shadow: inset 0 0 0 1px rgba(202, 164, 60, 0.12);
}

.card-icon.accent {
  color: var(--accent);
  background: linear-gradient(135deg, rgba(138, 102, 20, 0.18), rgba(138, 102, 20, 0.05));
  box-shadow: inset 0 0 0 1px rgba(138, 102, 20, 0.16);
}

/* Photo on top of business cards */
.business-card {
  overflow: hidden;
}

.card-media {
  margin: -1.75rem -1.75rem 1.35rem;
  height: 190px;
  overflow: hidden;
  position: relative;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.business-card:hover .card-media img {
  transform: scale(1.06);
}

/* Stat tiles get an icon + lift */
.stat-item {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.1);
}

.stat-icon {
  display: inline-flex;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.stat-icon svg {
  width: 30px;
  height: 30px;
}

/* Service cards: icon sits above the heading */
.service-card h3 {
  margin-top: 0;
}

.service-card ul {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Photographic hero (transport / cleaning / about / contact) */
.media-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.media-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.media-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, rgba(11, 42, 94, 0.94) 0%, rgba(23, 50, 95, 0.8) 55%, rgba(202, 164, 60, 0.62) 100%);
}

.media-hero.cleaning-hero::after {
  background: linear-gradient(115deg, rgba(58, 42, 10, 0.92) 0%, rgba(202, 164, 60, 0.82) 55%, rgba(23, 50, 95, 0.6) 100%);
}

.media-hero .eyebrow {
  color: #d7e6ff;
}

.media-hero h1 {
  color: #fff;
}

.media-hero p {
  color: rgba(255, 255, 255, 0.92);
}

.media-hero .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.media-hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* Scroll-reveal (opt-in via .js so no-JS shows everything) */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js .reveal[data-delay="1"] { transition-delay: 0.08s; }
.js .reveal[data-delay="2"] { transition-delay: 0.16s; }
.js .reveal[data-delay="3"] { transition-delay: 0.24s; }
.js .reveal[data-delay="4"] { transition-delay: 0.32s; }
.js .reveal[data-delay="5"] { transition-delay: 0.40s; }

/* ============================================================
   Phase 3 — trust & conversion sections
   ============================================================ */

/* Alternating tinted section for rhythm */
.section.tint {
  background: linear-gradient(180deg, rgba(23, 50, 95, 0.04), rgba(202, 164, 60, 0.04));
}

/* How it works — numbered steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.step {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.75rem;
}

.step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  margin-bottom: 1.1rem;
}

.step h3 { margin: 0 0 0.5rem; }
.step p { margin: 0; color: var(--muted); line-height: 1.7; }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stars {
  color: var(--secondary);
  letter-spacing: 2px;
  font-size: 1.05rem;
}

.testimonial blockquote {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

.testimonial .author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
}

.testimonial .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  flex: none;
}

.testimonial .author strong { display: block; }
.testimonial .author span { color: var(--muted); font-size: 0.9rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

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

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

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--text);
}

.trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--secondary);
  flex: none;
}

/* Highlight cards with icons (safety) */
.highlight-card .card-icon { margin-bottom: 0.9rem; }
.highlight-card h3 { margin: 0 0 0.5rem; }
.highlight-card p { color: var(--muted); line-height: 1.7; margin: 0; }

/* Service-area chips */
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.area-chips span {
  background: rgba(23, 50, 95, 0.07);
  border: 1px solid rgba(23, 50, 95, 0.14);
  color: var(--primary);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
}

/* FAQ accordion (native <details>) */
.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.4rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  line-height: 1;
  color: var(--primary);
  transition: transform 0.25s ease;
  flex: none;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-body {
  padding: 0 1.4rem 1.3rem;
  color: var(--muted);
  line-height: 1.75;
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 10000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px) scale(1.05);
  color: #fff;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg { width: 30px; height: 30px; }

@media (max-width: 960px) {
  .steps-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   Design polish — typography, navigation, headings, footer
   ============================================================ */

/* Keep a steady 16px base so the UI never looks zoomed */
@media (min-width: 768px) {
  :root { font-size: 16px; }
}

/* Refined heading rhythm */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--text);
}

.hero-copy h1,
.page-hero h1,
.media-hero h1 {
  font-weight: 800;
  letter-spacing: -0.025em;
}

.hero-copy p,
.page-hero p,
.media-hero p {
  font-size: 1.02rem;
}
.hero-copy {
  margin-top: 0%;

}
/* Eyebrow + section label as pill badges */
.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.15rem;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  background: rgba(23, 50, 95, 0.09);
  color: var(--primary);
}

.section-label {
  background: rgba(138, 102, 20, 0.12);
  color: var(--accent);
}

.media-hero .eyebrow {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

/* Section headings — gradient accent rule */
.section-header h2 {
  font-size: clamp(2rem, 2.6vw, 2.85rem);
  letter-spacing: -0.02em;
}

.section-header h2::after {
  width: 3.4rem;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 1;
}

.section-header p {
  margin-left: auto;
  margin-right: auto;
}

/* Header & navigation */
.header-inner {
  padding: 1.15rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: 0.01em;
}

.brand-logo {
  height: 46px;
  width: auto;
  aspect-ratio: 1536 / 700;
  object-fit: cover;
  object-position: top;
}

.site-nav {
  gap: 1.35rem;
}

.site-nav a {
  font-size: 0.97rem;
}

.site-nav a.btn-primary,
.site-nav a.btn-primary:hover,
.site-nav a.btn-primary:focus-visible {
  color: #fff;
  padding: 0.62rem 1.25rem;
}

/* ---- Footer redesign ---- */
.site-footer {
  background: radial-gradient(circle at top left, rgba(23, 50, 95, 0.2), transparent 42%),
              linear-gradient(180deg, #0a1830 0%, #060d1c 100%);
  color: #cbd5e1;
  padding: 4.5rem 0 0;
}

.footer-grid {
  grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.footer-logo-badge {
  display: inline-flex;
  background: #ffffff;
  padding: 0.65rem 0.85rem;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.footer-logo-img {
  height: 68px;
  width: auto;
  display: block;
}

.footer-brand p {
  color: #94a3b8;
  line-height: 1.75;
  max-width: 36ch;
  margin: 0 0 1.5rem;
}

.footer-brand .btn-primary {
  box-shadow: 0 14px 26px rgba(23, 50, 95, 0.35);
}

.footer-col h4 {
  color: #fff;
  font-size: 1.02rem;
  margin: 0 0 1.1rem;
}

.footer-col a,
.footer-col p {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #94a3b8;
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: #ffffff;
}

.footer-col svg {
  width: 17px;
  height: 17px;
  flex: none;
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.5rem 0;
  font-size: 0.9rem;
  color: #94a3b8;
  text-align: center;
}

.footer-bottom-inner a {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .footer-bottom-inner {
    justify-content: center;
  }
}

/* ============================================================
   Upgrade pass — compact heroes, richer sections & CTAs
   ============================================================ */

/* Heroes sit closer to the navbar so CTAs are above the fold */
.hero {
  padding: 3rem 0 3.25rem;
}

.media-hero {
  padding-top: 2.6rem;
  padding-bottom: 4rem;
  min-height: auto;
}

.media-hero .container > h1 {
  max-width: 24ch;
}

.media-hero .hero-actions {
  margin-top: 1.5rem;
}

/* Balanced 2-card service layout (no empty third column) */
.services-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 880px;
  margin: 0 auto;
}

@media (max-width: 760px) {
  .services-grid.two-col {
    grid-template-columns: 1fr;
  }
}

/* Feature lists become check-badge cards */
.feature-list li {
  padding: 0.95rem 1.1rem 0.95rem 3.1rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.feature-list li:hover {
  transform: translateX(3px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.09);
}

.feature-list li::before {
  content: '✓';
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Service cards: a touch more depth + accent top edge on hover */
.service-card {
  position: relative;
}

/* Call-to-action bands become a bold gradient panel */
.contact-callout .contact-card {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 55%, var(--secondary) 120%);
  border: none;
  color: #fff;
  padding: 2.75rem;
  gap: 1.75rem;
  flex-wrap: wrap;
  box-shadow: 0 28px 60px rgba(23, 50, 95, 0.28);
  overflow: hidden;
}

.contact-callout .contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 45%);
  pointer-events: none;
}

.contact-callout .contact-card > * {
  position: relative;
}

.contact-callout .contact-card h2 {
  color: #fff;
  margin: 0 0 0.5rem;
}

.contact-callout .contact-card p {
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

.contact-callout .contact-card strong {
  color: #fff;
}

.contact-callout .contact-card .btn-primary {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  flex: none;
}

.contact-callout .contact-card .btn-primary:hover {
  background: #eef3ff;
  color: var(--primary-dark);
}

/* About-page "contact-preview" CTA gets the same treatment */
.contact-preview .contact-grid {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 55%, var(--secondary) 120%);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.75rem;
  align-items: center;
  box-shadow: 0 28px 60px rgba(23, 50, 95, 0.28);
}

.contact-preview .contact-grid h2 {
  color: #fff;
  margin-top: 0;
}

.contact-preview .contact-grid p {
  color: rgba(255, 255, 255, 0.92);
}

.contact-preview .contact-grid strong {
  color: #fff;
}

.contact-preview .contact-grid .btn-primary {
  background: #ffffff;
  color: var(--primary);
}

.contact-preview .contact-grid .btn-primary:hover {
  background: #eef3ff;
  color: var(--primary-dark);
}
