/* ══════════════════════════════════════════
   SECTIONS — Services, Testimonials, Locations, Booking CTA
══════════════════════════════════════════ */


/* ═══════════════════════════════════════
   SERVICES — 3-card grid on dark background
═══════════════════════════════════════ */

#services {
  background: var(--dark);
  color: var(--cream);
}

#services .section-title {
  color: var(--cream);
}

.services-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 70px;
}

.services-intro-text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(247, 243, 238, 0.55);
  max-width: 380px;
}

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

/* ── Service Card ── */
.service-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 48px 38px;
  border: 1px solid rgba(111, 162, 135, 0.08);
  position: relative;
  overflow: hidden;
  transition: background 0.4s, border-color 0.4s;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(111, 162, 135, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(111, 162, 135, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

/* ── Service Number ── */
.service-number {
  font-family: 'Prompt', sans-serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(111, 162, 135, 0.1);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.4s;
}

.service-card:hover .service-number {
  color: rgba(111, 162, 135, 0.3);
}

/* ── Service Icon ── */
.service-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--gold);
}

/* ── Service Name ── */
.service-name {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 14px;
}

/* ── Service Description ── */
.service-desc {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(247, 243, 238, 0.45);
}

/* ── Service Arrow (revealed on hover) ── */
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s, transform 0.3s;
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

.service-arrow span {
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: block;
}


/* ═══════════════════════════════════════
   TESTIMONIALS — Dark bg, gold accents
═══════════════════════════════════════ */

#testimonials {
  background: var(--dark);
  padding: 100px 60px;
}

.testimonials-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

#testimonials .section-tag {
  justify-content: center;
}

#testimonials .section-tag::before {
  display: none;
}

#testimonials .section-title {
  color: var(--cream);
}

.testimonial-slider {
  position: relative;
  margin-top: 60px;
}

.testimonial {
  display: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.testimonial.active {
  display: block;
  opacity: 1;
}

/* ── Quote ── */
.testimonial-quote {
  font-family: 'Prompt', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 36px;
}

/* ── Author ── */
.testimonial-author {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Navigation Dots ── */
.testimonial-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 40px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(111, 162, 135, 0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.4);
}


/* ═══════════════════════════════════════
   LOCATIONS — Cream bg, gold accents
═══════════════════════════════════════ */

#locations {
  background: var(--cream);
  padding: 100px 60px;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
}

/* ── Location Card ── */
.location-card {
  background: var(--warm-white);
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.location-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width 0.5s ease;
}

.location-card:hover::after {
  width: 100%;
}

/* ── Location Number ── */
.location-num {
  font-family: 'Prompt', sans-serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(111, 162, 135, 0.5);
  line-height: 1;
  margin-bottom: 24px;
}

/* ── Location Name ── */
.location-name {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 16px;
}

/* ── Address ── */
.location-address {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--brown-light);
  margin-bottom: 32px;
}

/* ── Hours ── */
.location-hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--brown-mid);
}

.hours-row span:first-child {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-light);
}

/* ── Map CTA link ── */
.location-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  transition: gap 0.3s;
}

.location-cta span {
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: block;
  transition: width 0.3s;
}

.location-cta:hover {
  gap: 18px;
}

.location-cta:hover span {
  width: 36px;
}


/* ═══════════════════════════════════════
   BOOKING CTA — Gradient verde-escuro
═══════════════════════════════════════ */

#booking {
  background: linear-gradient(
    135deg,
    #003330 0%,
    #00534c 50%,
    #003330 100%
  );
  padding: 130px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#booking::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle 600px at 50% 50%, rgba(111, 162, 135, 0.08), transparent);
}

/* ── Booking Title ── */
.booking-title {
  font-family: 'Prompt', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 24px;
}

.booking-title em {
  font-style: italic;
  color: var(--gold-light);
}

/* ── Booking Subtitle ── */
.booking-sub {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(247, 243, 238, 0.5);
  margin-bottom: 52px;
  letter-spacing: 0.05em;
}

/* ── Quick Service Picks ── */
.booking-quick-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.bqp-btn {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.65);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(111, 162, 135, 0.2);
  padding: 10px 22px;
  cursor: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  text-decoration: none;
}

.bqp-btn:hover {
  background: rgba(111, 162, 135, 0.12);
  color: var(--gold-light);
  border-color: rgba(111, 162, 135, 0.45);
}

/* ── Booking Button ── */
.booking-btn {
  display: inline-block;
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dark);
  background: var(--gold);
  padding: 18px 56px;
  border: none;
  cursor: none;
  transition: background 0.3s, transform 0.2s, letter-spacing 0.3s;
}

.booking-btn:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  letter-spacing: 0.35em;
}

/* ── Contact Info ── */
.booking-contacts {
  display: flex;
  gap: 50px;
  justify-content: center;
  margin-top: 64px;
  padding-top: 52px;
  border-top: 1px solid rgba(111, 162, 135, 0.15);
}

.booking-contact-item {
  text-align: center;
}

.bci-label {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.bci-value {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(247, 243, 238, 0.7);
}
