@charset "utf-8";

:root {
  --navy: #003366;
  --navy-dark: #012850;
  --sand: #f8f9fa;
  --white: #ffffff;
  --ink: #10263a;
  --text: #2a3d4f;
  --muted: #607183;
  --line: rgba(0, 51, 102, 0.12);
  --aqua: #00a8c5;
  --sky: #1d9bf0;
  --green: #24a06b;
  --shadow: 0 18px 50px rgba(0, 51, 102, 0.12);
  --shadow-soft: 0 10px 30px rgba(16, 38, 58, 0.08);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
  --page-gutter: 2rem;
  --font-sans: "Inter", sans-serif;
  --font-serif: "Playfair Display", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.7;
  background:
    radial-gradient(circle at top left, rgba(0, 168, 197, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
summary {
  font: inherit;
}

::selection {
  background: rgba(0, 168, 197, 0.18);
  color: var(--navy);
}

.container {
  width: min(calc(100% - var(--page-gutter)), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 6px 30px rgba(0, 51, 102, 0.06);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.1;
  color: var(--navy);
}

.brand-copy small {
  margin-top: 0.15rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8ca0b3;
}

/* Header logo sizing: prevent global img width:100% from stretching header logo */
.site-header .logo {
  display: inline-flex;
  align-items: center;
}

.site-header .logo-img {
  width: auto;
  max-width: 140px;
  height: auto;
  display: block;
}

@media (max-width: 720px) {
  .site-header .logo-img { max-width: 110px; }
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.primary-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #5f6f80;
  transition: color 0.2s ease, transform 0.2s ease;
}

.primary-nav a:hover {
  color: var(--navy);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(0, 51, 102, 0.14);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu {
  border-top: 1px solid rgba(15, 38, 58, 0.06);
  background: var(--white);
}

.mobile-nav {
  width: min(calc(100% - var(--page-gutter)), var(--max-width));
  margin: 0 auto;
  padding: 1rem 0 1.25rem;
  display: grid;
  gap: 0.45rem;
}

.mobile-nav a {
  border-radius: 18px;
  padding: 0.9rem 1rem;
  font-size: 0.96rem;
  font-weight: 600;
  color: #5b6c7d;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav a:hover {
  background: rgba(0, 51, 102, 0.04);
  color: var(--navy);
}

.mobile-cta {
  justify-content: center;
  margin-top: 0.2rem;
}

.hero-section {
  position: relative;
  min-height: 88vh;
  overflow: clip;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 25, 50, 0.18) 0%, rgba(0, 25, 50, 0.75) 100%);
}

.hero-shell {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
}

.hero-content {
  width: min(100%, 760px);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(0, 51, 102, 0.08);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.section-kicker {
  background: transparent;
  border-color: rgba(0, 51, 102, 0.08);
  color: var(--aqua);
  padding-left: 0;
  padding-right: 0;
}

.section-kicker.light {
  color: rgba(255, 255, 255, 0.75);
}

.hero-content h1,
.section-intro h2,
.section-headline h2,
.two-column h2,
.final-cta h2,
.footer-brand {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-content h1 {
  margin-top: 1.2rem;
  font-size: clamp(3rem, 7vw, 5.25rem);
  line-height: 1.02;
  color: #fff;
}

.hero-lead {
  max-width: 700px;
  margin: 1.25rem 0 0;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: #0a4b79;
}

.btn-accent {
  background: linear-gradient(135deg, var(--aqua), var(--sky));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-accent:hover {
  filter: brightness(1.02);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-soft);
}

.btn-light:hover {
  background: #f3f8fb;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-block {
  width: 100%;
}

.header-cta {
  margin-left: auto;
}

.hero-stats,
.card-grid,
.footer-grid,
.two-column {
  display: grid;
}

.hero-stats {
  margin-top: 1.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.stat-card {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.stat-card span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.stat-card strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
}

.content-section {
  padding: 5rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.72);
}

.section-intro,
.section-headline,
.two-column,
.final-cta-inner,
.footer-grid {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.section-intro {
  margin-bottom: 2rem;
}

.section-intro.center {
  text-align: center;
}

.section-intro.narrow,
.section-intro.center.narrow {
  width: min(100%, 820px);
}

.section-intro h2,
.section-headline h2,
.two-column h2,
.final-cta h2 {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.12;
  color: var(--navy);
}

.section-intro p,
.section-headline p,
.two-column p,
.final-cta p,
.site-footer p {
  color: var(--muted);
}

.card-grid {
  gap: 1rem;
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.places-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.place-card,
.note-panel,
.faq-item,
.surface-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.info-card,
.note-panel,
.surface-card {
  padding: 1.5rem;
}

.info-card h3,
.place-copy h3,
.note-panel h3,
.faq-item summary,
.footer-grid h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 800;
  color: var(--navy);
}

.info-card h3,
.note-panel h3,
.surface-card h3 {
  font-size: 1.55rem;
}

.info-card p,
.surface-card p {
  margin: 0.85rem 0 0;
  font-size: 0.96rem;
  color: var(--muted);
}

.icon-badge {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
}

.icon-badge svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-badge i {
  font-size: 1.2rem;
  line-height: 1;
}

.accent-sky { background: rgba(29, 155, 240, 0.1); color: var(--sky); }
.accent-aqua { background: rgba(0, 168, 197, 0.1); color: var(--aqua); }
.accent-green { background: rgba(36, 160, 107, 0.1); color: var(--green); }
.accent-navy { background: rgba(0, 51, 102, 0.1); color: var(--navy); }

.section-headline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section-headline > div {
  max-width: 760px;
}

.section-headline p {
  max-width: 760px;
  margin-top: 0.85rem;
}

.place-card {
  overflow: hidden;
}

.place-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.place-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.place-card:hover .place-image img {
  transform: scale(1.04);
}

.place-copy {
  padding: 1.25rem 1.4rem 1.4rem;
}

.place-copy h3 {
  font-size: 1.65rem;
}

.place-copy p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.tall-card {
  min-height: 100%;
}

.wide-card {
  grid-column: span 1;
}

.two-column {
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
  gap: 1.5rem;
  align-items: start;
}

.note-panel {
  position: relative;
  overflow: hidden;
}

.note-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 168, 197, 0.12), transparent 65%);
  pointer-events: none;
}

.check-list {
  margin: 1.2rem 0 1.4rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.check-list li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--aqua);
}

.faq-list {
  width: min(100%, 850px);
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  padding: 1rem 1.2rem;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-size: 1.05rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--sand);
  color: var(--aqua);
  font-size: 1.15rem;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.faq-item[open] summary span {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.final-cta {
  padding: 4rem 0;
  background: linear-gradient(90deg, var(--navy) 0%, #0b4b79 55%, var(--sky) 100%);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.final-cta h2 {
  color: #fff;
}

.final-cta p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.85);
}

.cta-actions {
  margin-top: 0;
  flex-shrink: 0;
}

.site-footer {
  padding: 3.25rem 0 1.25rem;
  border-top: 1px solid rgba(0, 51, 102, 0.12);
  background: rgba(248, 249, 250, 0.92);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
}

.footer-brand {
  display: inline-block;
  font-size: 2rem;
  color: var(--navy);
}

.site-footer h3 {
  margin-bottom: 0.8rem;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.footer-links a,
.social-links a {
  color: var(--muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover,
.social-links a:hover {
  color: var(--navy);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-links a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-note {
  margin-top: 1rem;
  font-weight: 600;
  color: #6c7d8f;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0, 51, 102, 0.12);
  color: #758594;
  font-size: 0.95rem;
}

/* Custom footer layout for new partial */
.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}
.footer-info .logo-img {
  width: 173px;
  height: auto;
  display: block;
  margin-bottom: 0.9rem;
}
.footer-info p {
  margin: 0.4rem 0 1rem;
  color: var(--muted);
}
.social-icons {
  display: flex;
  gap: 0.6rem;
}
.social-icons a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-soft);
}
.footer-links-grid {
  display: flex;
  gap: 1.2rem;
}
.footer-group h4 {
  margin: 0 0 0.6rem 0;
  font-size: 0.95rem;
  color: var(--navy);
}
.footer-group a {
  display: block;
  color: var(--muted);
  padding: 0.28rem 0;
  font-weight: 600;
}
.contact-group p { margin: 0.35rem 0; color: var(--muted); }

/* WhatsApp fixed button */
.whatsapp-fixed-left {
  position: fixed;
  left: 18px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.18);
  z-index: 1200;
}
.whatsapp-fixed-left i { font-size: 1.25rem; }

@media (max-width: 900px) {
  .footer-content { grid-template-columns: 1fr; }
  .footer-links-grid { flex-direction: column; }
  .footer-group a { padding: 0.45rem 0; }
}

@media (max-width: 1080px) {
  .primary-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .four-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .places-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wide-card {
    grid-column: span 2;
  }

  .two-column,
  .final-cta-inner,
  .footer-grid,
  .section-headline {
    grid-template-columns: 1fr;
    display: grid;
  }

  .final-cta-inner {
    align-items: start;
  }

  .section-headline {
    gap: 1rem;
  }
}

@media (max-width: 720px) {
  :root {
    --page-gutter: 4rem;
  }

  .hero-shell.container,
  .content-section .container,
  .site-footer .container,
  .mobile-nav {
    padding-inline: 0.2rem;
  }

  .site-header {
    backdrop-filter: blur(12px);
  }

  .header-inner {
    min-height: 68px;
    gap: 0.65rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .mobile-nav {
    padding: 0.75rem 0 1rem;
    gap: 0.4rem;
  }

  .mobile-nav a {
    padding: 0.85rem 0.95rem;
  }

  .hero-shell {
    min-height: 84vh;
    padding: 4rem 0 2.9rem;
  }

  .hero-content h1 {
    font-size: clamp(2.55rem, 12vw, 3.75rem);
  }

  .hero-lead {
    line-height: 1.75;
  }

  .content-section {
    padding: 3.6rem 0;
  }

  .section-intro {
    margin-bottom: 1.4rem;
  }

  .section-intro h2,
  .section-headline h2,
  .two-column h2,
  .final-cta h2 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
    line-height: 1.16;
  }

  .info-card,
  .note-panel,
  .surface-card {
    padding: 1.2rem;
    border-radius: 22px;
  }

  .place-copy {
    padding: 1.05rem 1.1rem 1.15rem;
  }

  .hero-stats,
  .four-up,
  .places-grid,
  .two-up {
    grid-template-columns: 1fr;
  }

  .wide-card {
    grid-column: auto;
  }

  .button-row,
  .cta-actions {
    width: 100%;
  }

  .button-row .btn,
  .cta-actions .btn,
  .section-headline .btn,
  .note-panel .btn {
    width: 100%;
  }

  .section-headline {
    align-items: start;
  }

  .faq-item {
    padding: 0.9rem 0.95rem;
    border-radius: 20px;
  }

  .faq-item summary {
    font-size: 0.98rem;
    gap: 0.7rem;
  }

  .faq-item summary span {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .final-cta {
    padding: 3.1rem 0;
  }

  .final-cta-inner {
    padding: 1.25rem;
    border-radius: 24px;
    gap: 1.2rem;
  }

  .site-footer {
    padding: 2.5rem 0 1rem;
  }

  .footer-content {
    gap: 1rem;
  }

  .whatsapp-fixed-left {
    left: 12px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 430px) {
  :root {
    --page-gutter: 4.5rem;
  }

  .hero-shell.container,
  .content-section .container,
  .site-footer .container,
  .mobile-nav {
    padding-inline: 0.25rem;
  }

  .hero-content h1 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .btn {
    min-height: 46px;
    padding: 0.82rem 1rem;
    font-size: 0.92rem;
  }
}
