/* ---------- Custom properties ---------- */
:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f4f6f5;
  --color-surface: #ffffff;
  --color-border: #e4e7e6;
  --color-text: #131a1f;
  --color-text-muted: #566069;
  --color-primary: #0d3b4f;
  --color-primary-light: #135a76;
  --color-accent: #f2a71b;
  --color-whatsapp: #25d366;
  --color-whatsapp-dark: #1da851;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(13, 59, 79, 0.08);
  --shadow-md: 0 8px 28px rgba(13, 59, 79, 0.14);
  --container-width: 1120px;
  --header-height: 64px;
}

/* ---------- Reset ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 600;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 56px 0;
}

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

.section-title {
  font-size: 1.75rem;
  margin-bottom: 0.4em;
}

.section-subtitle {
  color: var(--color-text-muted);
  max-width: 640px;
  margin-bottom: 2rem;
}

.section-header {
  text-align: center;
  margin: 0 auto 2.5rem;
  max-width: 680px;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:active {
  transform: scale(0.97);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.btn-whatsapp:hover {
  background: var(--color-whatsapp-dark);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-primary);
}

.btn-block {
  width: 100%;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
}

.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55em;
  text-decoration: none;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text);
}

.nav-desktop a:hover {
  color: var(--color-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-actions .lang-switch,
.header-actions .btn-whatsapp,
.header-actions .icon-btn {
  display: none;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-primary);
  text-decoration: none;
  flex-shrink: 0;
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}

.lang-switch {
  gap: 0.25rem;
  background: var(--color-bg-alt);
  border-radius: 999px;
  padding: 3px;
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-muted);
  padding: 6px 11px;
  border-radius: 999px;
  text-transform: uppercase;
}

.lang-switch a[aria-current="true"] {
  background: var(--color-primary);
  color: #fff;
}

.lang-flag {
  width: 18px;
  height: 13px;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
  display: block;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  background: #fff;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 12px 20px 20px;
  border-bottom: 1px solid var(--color-border);
  background: #fff;
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.9rem;
  padding-top: 16px;
}

.nav-mobile-actions .lang-switch {
  align-self: center;
}

.nav-mobile-actions .lang-switch a {
  padding: 6px 14px;
}

.nav-mobile-actions .btn-whatsapp {
  width: 100%;
}

.call-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  text-decoration: none;
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  justify-content: center;
}

.call-link svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.call-link:hover {
  color: var(--color-primary);
}

.hero-cta-row {
  align-items: center;
}

/* ---------- Hero ---------- */
.hero {
  padding: 48px 0 40px;
  background:
    radial-gradient(circle at 15% 20%, rgba(242, 167, 27, 0.16), transparent 45%),
    linear-gradient(180deg, #eef5f6 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 2.9rem);
  color: var(--color-primary);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 46ch;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 420px;
}

.img-placeholder {
  background: linear-gradient(135deg, #d9e6ea, #c3d6db);
  color: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
}

.img-placeholder svg {
  width: 42px;
  height: 42px;
  opacity: 0.6;
}

/* ---------- Trust badge ---------- */
.trust-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 8px 16px;
  margin-top: 1.5rem;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}

.trust-bar .stars {
  color: var(--color-accent);
  letter-spacing: 1px;
}

.trust-bar svg,
.testimonial-rating svg,
.google-badge > svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.google-badge:hover {
  box-shadow: var(--shadow-md);
}

.google-badge-text {
  display: flex;
  align-items: center;
  gap: 0.4em;
}

.google-badge .stars {
  color: var(--color-accent);
  letter-spacing: 1px;
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0;
  text-decoration: none;
  color: inherit;
  display: block;
  overflow: hidden;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

a.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-photo {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.service-card-body {
  padding: 1.5rem;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-bg-alt);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4em;
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.93rem;
  margin-bottom: 0;
}

/* ---------- Areas ---------- */
.areas-card {
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  gap: 1.5rem;
}

.areas-card h2 {
  color: #fff;
}

.areas-card p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.area-pills li {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
}

/* ---------- Why grid ---------- */
.why-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.why-item h3 {
  font-size: 1rem;
  margin-bottom: 0.3em;
}

.why-item p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.why-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.75rem;
}

.testimonial-card .stars {
  color: var(--color-accent);
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ---------- Booking steps ---------- */
.steps-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  counter-reset: step;
}

.step-item {
  position: relative;
  padding-left: 3rem;
}

.step-item::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.step-item h3 {
  font-size: 1rem;
  margin-bottom: 0.3em;
}

.step-item p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  cursor: pointer;
}

.faq-question .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  transition: transform 0.2s ease;
}

.faq-item[data-open="true"] .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  color: var(--color-text-muted);
  padding-bottom: 1.1rem;
  margin: 0;
}

/* ---------- CTA banner (used on service pages) ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}

.cta-banner h2 {
  color: #fff;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 50ch;
  margin: 0 auto 1.5rem;
}

/* ---------- Route / option cards ---------- */
.route-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.route-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  background: var(--color-surface);
}

.route-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-bg-alt);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.route-icon svg {
  width: 20px;
  height: 20px;
}

.route-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3em;
}

.route-card p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.page-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 380px;
  display: block;
}

.option-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.option-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  background: var(--color-surface);
}

.option-card .img-placeholder {
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  min-height: 160px;
}

.option-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}

/* ---------- Page hero (service pages) ---------- */
.page-hero {
  padding: 40px 0 32px;
  background: linear-gradient(180deg, #eef5f6 0%, #ffffff 100%);
  text-align: center;
}

.page-hero h1 {
  color: var(--color-primary);
  font-size: clamp(1.9rem, 5vw, 2.6rem);
}

.page-hero p {
  color: var(--color-text-muted);
  max-width: 56ch;
  margin: 0 auto 1.5rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.footer-brand {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.9rem;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
}

.footer-col a {
  text-decoration: none;
  color: inherit;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
}

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 0.5em;
  background: var(--color-whatsapp);
  color: #fff;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  font-weight: 700;
  font-size: 0.92rem;
}

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

.whatsapp-float .label {
  display: none;
}

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .whatsapp-float .label {
    display: inline;
  }
}

@media (min-width: 760px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .header-actions .lang-switch,
  .header-actions .btn-whatsapp,
  .header-actions .icon-btn {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }

  section {
    padding: 80px 0;
  }

  .hero {
    padding: 72px 0 64px;
  }
}
