:root {
  --brand-surface: linear-gradient(135deg, #0b1324 0%, #111827 60%, #0f172a 100%);
}

/* Soft orange edge fade for white sections */
.edge-fade {
  position: relative;
  overflow: hidden;
}

/* Preserve sticky positioning when combined with Tailwind's `sticky` utility */
.edge-fade.sticky {
  position: sticky;
}

.edge-fade::before,
.edge-fade::after {
  display: none;
  content: none;
}

/* Elevated gradient treatment for header CTAs */
.cta-call {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  border: none;
  border-radius: 624.9375rem;
  background: linear-gradient(115deg, #f97316 0%, #ec4899 45%, #f97316 90%);
  background-size: 220% 220%;
  color: #fff;
  box-shadow: 0 0.625rem 1.875rem -0.75rem rgba(236, 72, 153, 0.6), 0 0 0 0.0625rem rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, box-shadow 220ms ease, background-position 7s ease;
}

.cta-call::after {
  content: "";
  position: absolute;
  inset: -0.25rem;
  border-radius: 624.9375rem;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.35), transparent 55%);
  opacity: 0;
  filter: blur(0.5rem);
  transition: opacity 160ms ease, transform 200ms ease;
  z-index: -1;
}

.cta-call:hover,
.cta-call:focus-visible {
  background-position: 60% 40%;
  transform: translateY(-0.125rem) scale(1.01);
  box-shadow: 0 1rem 2.375rem -0.875rem rgba(236, 72, 153, 0.7), 0 0 0 0.125rem rgba(249, 115, 22, 0.25);
}

.cta-call:hover::after,
.cta-call:focus-visible::after {
  opacity: 1;
  transform: scale(1.04);
}

.cta-call:focus-visible {
  outline: none;
}



/* Fixed side-by-side layout for contact section */
.contact-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Service tiles on contact section */
.service-tiles {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(13.75rem, 1fr));
}

.service-tile {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: 1.375rem;
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 0.875rem 2.375rem -1.5rem rgba(15, 23, 42, 0.35);
  border: 0.0625rem solid #e2e8f0;
}

.service-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.75rem;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.08);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.service-icon--salmon {
  background: #f97316;
  color: #fff;
}

.service-icon--navy {
  background: linear-gradient(135deg, #0b1324, #111b32);
  color: #e2e8f0;
  box-shadow: inset 0 0 0 0.125rem #0f172a, 0 0 0 0.0625rem rgba(255, 255, 255, 0.14);
}

.service-tile h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.35rem;
}

.service-tile p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #0f172a;
  text-decoration: none;
}

.service-link:hover {
  color: #f97316;
}

/* Contact form theme */
.contact-form {
  background: #f8fafc;
  color: #0f172a;
  border: 0.0625rem solid #e2e8f0;
  box-shadow: 0 1.875rem 5rem -3.4375rem rgba(0, 0, 0, 0.35), inset 0 0.0625rem 0 rgba(255, 255, 255, 0.8);
}

.contact-form h4 {
  color: #0f172a;
}

.contact-form p,
.contact-form label {
  color: #475569;
}

.contact-form a {
  color: #0f172a;
}

.contact-form a:hover {
  color: #f97316;
}

.contact-field {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  border-radius: 0.875rem;
  border: 0.0625rem solid #e2e8f0;
  background: #ffffff;
  padding: 0.85rem 0.95rem;
  font-size: 0.95rem;
  color: #0f172a;
  box-shadow: inset 0 0.0625rem 0 rgba(255, 255, 255, 0.9);
}

.contact-field:focus {
  outline: 0.125rem solid rgba(249, 115, 22, 0.6);
  outline-offset: 0.125rem;
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(249, 115, 22, 0.12);
}

.contact-field::placeholder {
  color: #94a3b8;
}

.contact-submit {
  background: linear-gradient(120deg, #f97316, #ec4899 60%, #f97316);
  color: #fff;
  padding: 0.9rem 1.25rem;
  border-radius: 624.9375rem;
  font-weight: 700;
  border: none;
  box-shadow: 0 1.125rem 2.1875rem -1rem rgba(236, 72, 153, 0.5), 0 0 0 0.0625rem rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, box-shadow 220ms ease, background-position 7s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  transform: translateY(-0.125rem);
  box-shadow: 0 1.5rem 2.5rem -1.25rem rgba(236, 72, 153, 0.6), 0 0 0 0.125rem rgba(249, 115, 22, 0.25);
  background-position: 60% 40%;
  outline: none;
}

.footer-theme {
  background: var(--brand-surface);
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
}

/* Testimonial Marquee Animation */
/* Testimonial Marquee Animation */
#testimonial-track {
  width: max-content;
  cursor: grab;
  touch-action: pan-y;
  /* Allow vertical scroll but handle horizontal in JS */
}

#testimonial-track:active {
  cursor: grabbing;
}