/* GOOGLE_FONT: <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Commissioner:wght@100;200;300&display=swap"> */

/* Footer nav links */
.sflink { color: #575757; text-decoration: none; transition: color 0.2s; }
.sflink:hover { color: #f68189 !important; }

/* Services dropdown — CSS-only, no JS */
.nav-services-dropdown { position: relative !important; }
.nav-services-list { display: none; position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid #eee; box-shadow: 0 4px 12px rgba(0,0,0,.08); list-style: none; margin: 0; padding: 8px 0; min-width: 240px; z-index: 9999; }
.nav-services-dropdown:hover .nav-services-list { display: block !important; }
.nav-services-list li a { display: block; padding: 8px 20px; color: #575757; text-decoration: none; font-size: 14px; white-space: nowrap; }
.nav-services-list li a:hover { color: #f68189 !important; background: #fafafa; }

:root {
  --color-bg: #ffffff;
  --color-text: #575757;
  --color-accent: #f68189;
  --color-muted: #75ded5;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Commissioner', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

h1 {
  font-size: 1.75rem;
}

h2 {
  font-size: 1.375rem;
}

h3 {
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }
}

.container {
  width: 100%;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
  }
}

.section {
  padding: 48px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 64px 0;
  }
}

.section__title {
  margin-bottom: 24px;
  font-weight: 600;
}

.card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 24px;
}

.card__price {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 1.125rem;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.stats__item {
  text-align: center;
  min-width: 140px;
}

.stats__number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 8px;
  padding: 20px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
  padding: 12px 0;
}

.nav a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--color-accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  transition: color 0.2s ease;
}

.footer {
  padding: 32px 16px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-muted);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Static slider fallback — no JS */
.t-slds {
    visibility: visible !important;
    overflow: visible !important;
    height: auto !important;
}
.t-slds__container {
    overflow: visible !important;
    height: auto !important;
}
.t-slds__items-wrapper {
    overflow: visible !important;
    flex-wrap: wrap !important;
    height: auto !important;
    transform: none !important;
}
.t-slds__item {
    float: none !important;
    width: 100% !important;
    flex: 0 0 100% !important;
    overflow: visible !important;
    opacity: 1 !important;
}
.t-slds__arrow_wrapper,
.t-slds__bullet-nav-wrapper,
.t-slds__bullet-nav {
    display: none !important;
}
