@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Roboto:wght@400;700&display=swap");

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", "Roboto", Arial, sans-serif;
  color: var(--text-color);
  background: radial-gradient(circle at top, #f0f4ff 0%, #ffffff 60%);
  line-height: 1.65;
  overflow-x: hidden;
}

/* VARIABLES */
:root {
  --header-height: 120px;
  --header-height-condensed: 90px;
  --primary-color: #0056d6;
  --secondary-color: #ffc107;
  --accent-color: #00c4ff;
  --text-color: #1f2933;
  --muted-text: #5f6c7b;
  --light-bg: #f8f9fa;
  --dark-bg: #1c2431;
  --white: #ffffff;
  --about-bg: #e3f2fd;
  --services-bg: #fff8e1;
  --card-shadow: 0 15px 45px rgba(16, 42, 67, 0.1);
}

/* HEADER & NAVIGATION */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background-color: var(--white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 0;
  transition: height 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  backdrop-filter: blur(0px);
}

.header.header-condensed {
  height: var(--header-height-condensed);
  padding: 0.1rem 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.3rem 1rem;
  width: 100%;
}

#logo-img {
  height: 120px;
  width: auto;
  transition: height 0.3s ease;
  border-radius: 20px;
}

.header.header-condensed #logo-img {
  height: 85px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

/* Default nav links styling for desktop */
.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: scale(1.03);
}

.nav-link.active {
  background-color: var(--primary-color);
  color: var(--white) !important;
  border-bottom: 2px solid var(--secondary-color);
}

/* Header Social Links (within navigation) */
.nav-links li.social-link a {
  /* Match the normal text color for nav links: */
  color: var(--primary-color);
  padding: 0.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links li.social-link a .material-icons {
  vertical-align: middle;
  font-size: 1.2rem;
}

/* Hover color can match the other nav links' hover color */
.nav-links li.social-link a:hover {
  color: var(--text-color);
  transform: scale(1.1);
}

section {
  scroll-margin-top: calc(var(--header-height) + 10px);
}

/* HERO SECTION */
.hero-section {
  min-height: 90vh;
  background:
    linear-gradient(120deg, rgba(0, 39, 102, 0.8), rgba(0, 136, 204, 0.75)),
    url("assets/laundryrow.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 3rem 1.5rem;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
  max-width: 1100px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.hero-content h2 {
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-content .tagline {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.btn-cta {
  display: inline-block;
  text-align: center;
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 170px;
  padding: 0.85rem 1.75rem;
  background-color: var(--secondary-color);
  color: var(--text-color);
}

.btn-cta.primary {
  box-shadow: var(--card-shadow);
}

.btn-cta.ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  padding: 0.85rem 1.75rem;
  box-shadow: none;
}

.btn-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.hero-highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-highlights li {
  background-color: rgba(255, 255, 255, 0.24);
  padding: 0.6rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 32px rgba(0, 24, 64, 0.14);
  backdrop-filter: blur(6px);
  font-size: 0.95rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: floatUp 0.9s ease both;
}

.hero-highlights li:hover {
  background-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}

.hero-highlight-link-item {
  padding: 0;
}

.hero-highlight-link {
  display: block;
  padding: 0.6rem 1rem;
  color: inherit;
  text-decoration: none;
}

.hero-highlight-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.75);
  outline-offset: 2px;
  border-radius: 12px;
}

.hero-spotlight-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.1rem;
  padding: 0.95rem 1.1rem;
  border-radius: 18px;
  color: var(--white);
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
    linear-gradient(90deg, rgba(255, 193, 7, 0.18), rgba(0, 196, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 40px rgba(0, 24, 64, 0.22);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  animation: floatUp 1s ease 0.15s both;
}

.hero-spotlight-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.18) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.hero-spotlight-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 45px rgba(0, 24, 64, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-spotlight-link:hover::before {
  transform: translateX(120%);
}

.hero-spotlight-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--secondary-color);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-spotlight-icon .material-icons {
  font-size: 1.8rem;
}

.hero-spotlight-copy,
.hero-spotlight-action {
  position: relative;
  z-index: 1;
}

.hero-spotlight-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.hero-spotlight-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.78);
}

.hero-spotlight-title {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero-spotlight-action {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 600;
  white-space: nowrap;
}

.hero-spotlight-action .material-icons {
  font-size: 1.1rem;
}

.hero-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 1.75rem;
  flex: 1 1 280px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
  animation: floatUp 0.9s ease 0.1s both;
}

.hero-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.hero-hours {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-hours-status {
  margin-bottom: 0.55rem;
  font-weight: 800;
}

.hero-hours-status.is-open {
  color: #d1ffd4;
  animation: open-status-ripple 2.4s ease-in-out infinite;
}

.hero-hours-status.is-closed {
  color: #ffd0d0;
}

@keyframes open-status-ripple {
  0%,
  100% {
    transform: translateY(0);
    letter-spacing: 0.015em;
    text-shadow: 0 0 0.15rem rgba(209, 255, 212, 0.28), 0 0 0.4rem rgba(255, 255, 255, 0.22);
  }
  50% {
    transform: translateY(-0.5px);
    letter-spacing: 0.035em;
    text-shadow: 0 0 0.45rem rgba(209, 255, 212, 0.55), 0 0 0.9rem rgba(255, 255, 255, 0.28);
  }
}

.hero-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.hero-pill {
  background-color: rgba(255, 255, 255, 0.18);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.hero-card-list {
  list-style: none;
}

.hero-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.hero-card-list .material-icons {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-top: 0.1rem;
}

/* HERO CARDS */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
  flex: 1 1 440px;
}

.hero-content {
  flex: 1 1 340px;
}

.info-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 1.75rem;
  flex: 1 1 280px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
  animation: floatUp 0.9s ease 0.1s both;
}

.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

/* Availability v2 (clearer) */
.availability-card .availability-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.availability-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
}

.availability-card.availability-state-good .availability-pill {
  color: #d8ffe0;
  border-color: rgba(209, 255, 212, 0.45);
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.42),
    rgba(255, 255, 255, 0.12)
  );
  background-size: 220% 100%;
  animation: availability-pill-shimmer 2.8s ease-in-out infinite;
}

@keyframes availability-pill-shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.availability-pill {
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  flex-shrink: 0;
}

.availability-pill.pill--loading {
  opacity: 0.9;
}

.availability-pill.pill--good {
  background: rgba(255, 255, 255, 0.14);
}

.availability-pill.pill--ok {
  background: rgba(255, 255, 255, 0.12);
}

.availability-pill.pill--busy {
  background: rgba(255, 255, 255, 0.1);
}

.availability-pill.pill--down {
  background: rgba(255, 255, 255, 0.08);
}

.availability-metrics {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.availability-metric {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  padding: 12px;
}

.metric-label {
  font-weight: 700;
  opacity: 0.95;
}

.metric-main {
  margin-top: 8px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.metric-num {
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.metric-of {
  font-size: 1rem;
  font-weight: 700;
  opacity: 0.85;
}

.metric-sub {
  margin-top: 6px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.metric-bar {
  margin-top: 10px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.metric-bar-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  transition: width 250ms ease;
}

.availability-meta {
  margin-top: 10px;
  font-size: 0.85rem;
  opacity: 0.85;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.availability-meta-line {
  display: block;
  line-height: 1.25;
}

.availability-status-state {
  font-weight: 700;
}

.availability-dot {
  margin: 0 8px;
}

.availability-error {
  margin-top: 10px;
  font-size: 0.9rem;
  opacity: 0.95;
}

@media (max-width: 900px) {
  .hero-cards {
    grid-template-columns: 1fr;
  }

  .availability-metrics {
    grid-template-columns: 1fr;
  }
}

/* Optional Coming Soon Styles */
.hero-section.coming-soon {
  text-align: left;
}

/* CONTENT SECTIONS */
.content-section {
  padding: 5rem 1rem;
}

#about.content-section {
  background-color: var(--about-bg);
}

#services.content-section {
  background-color: var(--services-bg);
}

.bg-light {
  background-color: var(--light-bg);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.content-section h2 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.section-lead {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--muted-text);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent-color);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.4rem;
}

/* PROMO SIGNUP */
.promo-embed-section {
  background:
    linear-gradient(135deg, rgba(255, 248, 225, 0.9), rgba(240, 248, 255, 0.96)),
    radial-gradient(circle at 20% 20%, rgba(255, 193, 7, 0.18), transparent 32%);
  padding: 3.5rem 1rem;
}

.promo-embed-layout {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(220px, 0.5fr) minmax(580px, 1fr);
  align-items: start;
  max-width: 1280px;
}

.promo-embed-copy h2 {
  font-size: 2.1rem;
  line-height: 1.15;
  text-align: left;
  margin-bottom: 0.5rem;
}

.promo-offer-copy {
  font-size: 0.98rem;
  margin: 0 0 1rem;
  text-align: left;
}

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

.promo-facts li {
  align-items: center;
  display: flex;
  gap: 0.55rem;
  color: var(--text-color);
  font-size: 0.95rem;
  font-weight: 600;
}

.promo-facts .material-icons {
  color: var(--primary-color);
  font-size: 1.1rem;
}

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

.promo-detail {
  background: var(--white);
  border: 1px solid rgba(0, 86, 214, 0.12);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(16, 42, 67, 0.07);
  padding: 1rem;
}

.promo-detail h3 {
  color: var(--primary-color);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.promo-detail p {
  color: var(--muted-text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.promo-card {
  background: var(--white);
  border: 1px solid rgba(0, 86, 214, 0.1);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  color: var(--text-color);
  padding: 1.2rem;
}

.promo-card h2 {
  font-size: 1.25rem;
  line-height: 1.2;
  margin: 0 0 0.25rem;
  text-align: left;
}

.promo-card > p {
  font-size: 0.98rem;
  margin-bottom: 0;
}

.promo-signup-card {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.promo-form {
  display: grid;
  gap: 0.7rem 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0.85rem;
}

.promo-field {
  display: grid;
  gap: 0.25rem;
}

.promo-check,
#promo-turnstile,
.promo-actions,
.promo-verification-panel,
.promo-alert {
  grid-column: 1 / -1;
}

.promo-field label,
.promo-check {
  font-size: 0.88rem;
  font-weight: 600;
}

.promo-field input {
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  color: var(--text-color);
  font: inherit;
  min-height: 40px;
  padding: 0.55rem 0.7rem;
  width: 100%;
}

.promo-field input:focus {
  border-color: var(--primary-color);
  outline: 3px solid rgba(0, 86, 214, 0.16);
}

.promo-check {
  align-items: flex-start;
  display: grid;
  gap: 0.55rem;
  grid-template-columns: auto 1fr;
  line-height: 1.35;
}

.promo-check input {
  margin-top: 0.2rem;
}

.promo-actions {
  display: grid;
  gap: 0.75rem;
}

.promo-submit {
  background: var(--primary-color);
  border: 0;
  border-radius: 6px;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  min-height: 44px;
  padding: 0.7rem 1rem;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.promo-submit:hover:not(:disabled) {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.promo-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.promo-alert {
  border-radius: 6px;
  font-weight: 600;
  margin-top: 1rem;
  padding: 0.75rem;
}

.promo-alert[data-variant="error"] {
  background: #fee2e2;
  color: #991b1b;
}

.promo-alert[data-variant="success"] {
  background: #dcfce7;
  color: #166534;
}

.promo-alert[data-variant="info"] {
  background: #e0f2fe;
  color: #075985;
}

.promo-verification-panel {
  border-top: 1px solid #e2e8f0;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
}

.about-highlight-card {
  background-color: var(--white);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
}

.about-highlight-heading {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  color: var(--muted-text);
  margin-bottom: 0.75rem;
}

.about-highlight-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.about-highlight-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  color: var(--muted-text);
  font-size: 0.95rem;
}

.about-highlight-list .material-icons {
  color: var(--primary-color);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
}

.stat {
  background-color: #f0f4ff;
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted-text);
}

.stat span {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-color);
}

.about-highlight-card,
.value-list li,
.stat {
  animation: floatUp 0.85s ease both;
}

.value-list {
  list-style: none;
  margin-top: 1.5rem;
  text-align: left;
}

.value-list li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 2rem;
  transition: transform 0.2s ease;
}

.value-list li:hover {
  transform: scale(1.02);
}

.value-list .bullet-icon {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
}

/* SERVICES */
.services-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding-top: 15px;
}

.service-block {
  background: linear-gradient(135deg, #f8fbff 0%, #cfe0ff 100%);
  border-radius: 18px;
  padding: 2.5rem;
  flex: 1 1 calc(33.333% - 1rem);
  max-width: 550px;
  text-align: left;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: floatUp 0.9s ease both;
}

.service-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

#mending-alterations {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.icon-wrapper img {
  max-width: 80px;
  margin-bottom: 1rem;
}

.icon-wrapper .service-icon {
  display: inline-block;
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-block h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.service-tagline {
  margin: 0.25rem 0 0.9rem;
  font-weight: 600;
  color: var(--text-color);
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  color: var(--text-color);
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 86, 214, 0.12);
  box-shadow: 0 6px 16px rgba(0, 86, 214, 0.08);
  font-weight: 600;
  max-width: 100%;
  line-height: 1.3;
  white-space: normal;
}

.service-pill.rate {
  background: rgba(0, 86, 214, 0.08);
  color: var(--primary-color);
  border-color: rgba(0, 86, 214, 0.25);
}

.service-pill .material-icons {
  font-size: 1.15rem;
  color: var(--primary-color);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
}

.service-link::after {
  content: "→";
  transition: transform 0.3s ease;
}

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

.amenities-bar {
  margin-top: 3rem;
  background: linear-gradient(120deg, rgba(0, 56, 95, 0.95), rgba(0, 130, 200, 0.85));
  color: var(--white);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  animation: floatUp 0.9s ease 0.1s both;
}

.amenities-title {
  font-weight: 600;
  letter-spacing: 0.05em;
}

.amenities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.amenity-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background-color: rgba(255, 255, 255, 0.12);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.amenity-pill .material-icons {
  font-size: 1rem;
  color: var(--secondary-color);
}

.amenity-pill:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.bulleted-list {
  text-align: left;
  margin-top: 1.5rem;
}

.bulleted-list li {
  margin-bottom: 0.5rem;
}

.fancy-bullets {
  list-style: none;
  padding-left: 0;
}

.fancy-bullets li {
  position: relative;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  transition: transform 0.2s ease;
}

.fancy-bullets li:hover {
  transform: scale(1.02);
}

.fancy-bullets .bullet-icon {
  position: absolute;
  left: 0;
  top: 0.2rem;
  font-size: 1.2rem;
  color: #2e7d32;
}

/* WHY CHOOSE US */
.why-reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.reason-item {
  background-color: var(--white);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.reason-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.reason-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.reason-item {
  animation: floatUp 0.9s ease both;
}

/* HIGHLIGHTS */
.highlights-gradient {
  background: linear-gradient(140deg, #eaf3ff 0%, #fef9ee 100%);
}

.dexterpay-gradient {
  background: linear-gradient(145deg, #f3f9ff 0%, #ffffff 42%, #fff7e6 100%);
}

.dexterpay-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: start;
}

.dexterpay-intro-card {
  background: linear-gradient(160deg, #003153, #0a6fdc);
  color: var(--white);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 25px 60px rgba(10, 55, 90, 0.32);
  animation: floatUp 0.9s ease both;
}

.dexterpay-intro-card .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.dexterpay-intro-card h2 {
  text-align: left;
  margin-bottom: 0.85rem;
  color: var(--white);
}

.dexterpay-lead {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.4rem;
}

.dexterpay-number-card {
  display: inline-flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 220px;
  margin-bottom: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.dexterpay-number-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.74);
}

.dexterpay-number-value {
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0.04em;
}

.dexterpay-actions-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.dexterpay-text-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.dexterpay-text-link:hover {
  text-decoration: underline;
}

.dexterpay-note {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

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

.dexterpay-step-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  animation: floatUp 0.9s ease both;
}

.dexterpay-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 86, 214, 0.14), rgba(0, 196, 255, 0.24));
  color: var(--primary-color);
  font-weight: 700;
}

.dexterpay-step-card h3 {
  margin-bottom: 0.45rem;
  color: var(--primary-color);
}

.dexterpay-step-card p {
  color: var(--muted-text);
}

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

.feature-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: floatUp 0.9s ease both;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  align-items: start;
  gap: 2rem;
  margin-top: 2rem;
}

.faq-accordion {
  max-width: 800px;
  margin: 0;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid #e1e7ef;
  background-color: var(--white);
  margin-bottom: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.faq-item[open] summary {
  border-bottom: 1px solid #eef2f7;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--text-color);
}

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

.faq-item p {
  padding: 0 1.5rem;
  color: var(--muted-text);
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  overflow: hidden;
  transition: max-height 0.55s ease-in, opacity 0.45s ease-in,
    transform 0.45s ease-in, padding 0.55s ease-in;
}

.faq-item[open] p {
  padding: 0 1.5rem 1.5rem;
  max-height: 320px;
  opacity: 1;
  transform: translateY(0);
  transition-timing-function: ease-out;
}

.faq-item:not([open]) p {
  transition-timing-function: ease-in;
}

.faq-item.is-closing p {
  padding: 0 1.5rem;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.faq-help-card {
  background: linear-gradient(160deg, #003153, #0a6fdc);
  color: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 25px 60px rgba(10, 55, 90, 0.4);
}

.faq-help-card h3 {
  margin-bottom: 0.75rem;
}

.faq-help-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.faq-help-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.faq-help-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.faq-help-list .material-icons {
  font-size: 1.2rem;
}

.faq-help-card .btn-cta {
  background-color: var(--secondary-color);
  color: #1b2333;
}

.faq-item,
.faq-help-card {
  animation: floatUp 0.9s ease both;
}

.about-gradient {
  background: linear-gradient(120deg, #e3f2fd 0%, #ffffff 100%);
}

.services-gradient {
  background: linear-gradient(120deg, #fff8e1 0%, #ffffff 100%);
}

.why-gradient {
  background: linear-gradient(120deg, #e3f2fd 0%, #ffffff 100%);
}

.contact-gradient {
  background: linear-gradient(120deg, #e3f2fd 0%, #ffffff 100%);
}

/* CONTACT */
.contact-cta {
  margin: 1.5rem 0 2rem;
  background-color: rgba(0, 86, 214, 0.08);
  border: 1px solid rgba(0, 86, 214, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.contact-cta p {
  flex: 1;
  margin: 0;
  color: var(--text-color);
}

.contact-cta .btn-cta {
  flex-shrink: 0;
  min-width: auto;
}

.contact-card,
.contact-cta {
  animation: floatUp 0.9s ease both;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0 3rem;
}

.contact-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  text-align: left;
}

.contact-icon {
  font-size: 2rem;
  color: var(--primary-color);
}

.contact-card a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.map-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Use a padding-bottom to enforce a 16:9 aspect ratio (56.25% = 9/16 * 100) */
  padding-bottom: 56.25%;
  margin: 2rem 0;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* CONTACT FORM */
form#contactForm {
  max-width: 600px;
  margin: 2rem auto;
  text-align: left;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-group textarea {
  resize: vertical;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: var(--dark-bg);
  color: var(--white);
}

.footer-inner p {
  margin-bottom: 1rem;
}

.footer-inner p a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
}

.footer-inner p a:hover {
  color: #ffd740;
}

/* Mobile Navigation: Hamburger & Accordion */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 992px) {
  .why-reasons {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dexterpay-layout {
    grid-template-columns: 1fr;
  }
  .promo-embed-layout {
    grid-template-columns: 1fr;
  }
  .promo-signup-card {
    position: static;
  }
}

@media (max-width: 768px) {
  #logo-img {
    height: 100px;
  }
  .header.header-condensed #logo-img {
    height: 80px;
  }
  .navbar {
    /* Keep the row layout so logo stays left and hamburger on right */
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  /* Hide nav-links by default on mobile */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  /* When active, show with slide-down animation */
  .nav-links.active {
    display: flex;
    animation: slideDown 0.3s ease-out;
  }
  /* Show the hamburger button */
  .hamburger {
    display: block;
  }
  /* Service blocks full width */
  .service-block {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-inner {
    flex-direction: column;
  }

  .amenities-bar {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .dexterpay-steps-grid {
    grid-template-columns: 1fr;
  }

  .promo-embed-section {
    padding: 2.75rem 1rem;
  }

  .promo-embed-copy h2 {
    font-size: 1.85rem;
  }

  .promo-form {
    grid-template-columns: 1fr;
  }

  .promo-detail-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: start;
    gap: 0.5rem 1rem;
    padding: 1.5rem;
  }
  .feature-icon {
    margin-bottom: 0;
  }
  .feature-card h3 {
    margin: 0;
    font-size: 1.1rem;
  }
  .feature-card p {
    grid-column: 2 / -1;
    margin: 0.35rem 0 0;
    font-size: 0.98rem;
  }
}

/* Animation keyframes for mobile accordion */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .why-reasons {
    grid-template-columns: 1fr;
  }
  .hero-highlights {
    flex-direction: column;
  }
  .hero-spotlight-link {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-spotlight-action {
    white-space: normal;
  }
  .contact-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Social Links in Footer */
.social-links {
  margin-top: 1rem;
  text-align: center;
}

.social-links a {
  display: inline-block;
  margin: 0 10px;
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a .material-icons {
  vertical-align: middle;
  margin-right: 4px;
}

.social-links a:hover {
  color: #ffb300;
  transform: scale(1.05);
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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