:root {
  --navy-900: #0d2642;
  --navy-800: #12365f;
  --navy-700: #1a4a7d;
  --sky-100: #e8f3ff;
  --sky-200: #d5e9fb;
  --sky-300: #c2dcf5;
  --gray-50: #f7f9fc;
  --gray-100: #edf1f6;
  --gray-300: #c8d3e0;
  --text-900: #102235;
  --text-700: #3b5065;
  --white: #ffffff;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 10px 30px rgba(16, 34, 53, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text-900);
  background:
    radial-gradient(1400px 700px at 90% -10%, #cae2f8 0%, transparent 56%),
    radial-gradient(900px 500px at 8% 26%, #eef6ff 0%, transparent 60%),
    linear-gradient(180deg, #f7fbff 0%, #eff6fd 100%);
  line-height: 1.65;
}

.container {
  width: min(1120px, calc(100% - 2.2rem));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(232, 243, 255, 0.3) 100%);
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(224, 238, 251, 0.75) 0%, rgba(239, 246, 253, 0.9) 100%);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.section-head {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-head h2 {
  margin: 0 0 0.8rem;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  color: var(--navy-900);
}

.section-head p {
  margin: 0;
  color: var(--text-700);
}

.page-title {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy-900);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 250, 255, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-100);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.brand {
  text-decoration: none;
  color: var(--navy-900);
  font-weight: 800;
  font-size: 1.07rem;
  letter-spacing: 0.2px;
}

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-btn {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-300);
  border-radius: 14px;
  background: #eef5fd;
  cursor: pointer;
  margin-left: auto;
  box-shadow: 0 6px 16px rgba(16, 34, 53, 0.08);
}

.nav-toggle-btn:hover,
.nav-toggle-btn:focus-visible {
  border-color: var(--navy-700);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle-icon {
  width: 20px;
  display: grid;
  gap: 4px;
}

.nav-toggle-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--navy-900);
  transition: transform 0.2s ease, opacity 0.2s ease, width 0.2s ease;
}

.nav-toggle:checked + .nav-toggle-btn .nav-toggle-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle:checked + .nav-toggle-btn .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-toggle:checked + .nav-toggle-btn .nav-toggle-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--text-700);
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--navy-700);
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-outline {
  margin-left: 0.4rem;
  border-color: var(--gray-300);
  color: var(--navy-800);
  background: var(--white);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--navy-700);
  color: var(--navy-700);
}

.btn-solid {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  color: var(--white);
}

.btn-solid:hover,
.btn-solid:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(18, 54, 95, 0.3);
}

.btn-ghost {
  border-color: var(--gray-300);
  color: var(--navy-800);
  background: #eef5fd;
}

.btn-small {
  width: 100%;
  margin-top: auto;
}

.hero {
  padding: 5.2rem 0 4.3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.6rem;
  align-items: stretch;
}

.hero-content h1 {
  margin: 0;
  line-height: 1.1;
  font-size: clamp(2rem, 6vw, 3.3rem);
  font-family: "Outfit", sans-serif;
  color: var(--navy-900);
}

.eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 800;
  color: var(--navy-700);
  font-size: 0.76rem;
}

.subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-700);
  margin-top: 0.9rem;
  margin-bottom: 0.9rem;
}

.hero-content p {
  max-width: 66ch;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.hero-panel {
  background:
    radial-gradient(160% 120% at 0% 0%, #2a5a8e 0%, transparent 48%),
    linear-gradient(160deg, #173c66 0%, #0f2744 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
}

.hero-panel h2 {
  margin-top: 0;
  margin-bottom: 0.9rem;
  font-size: 1.2rem;
}

.hero-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.hero-panel li {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 0.7rem;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.hero-panel strong {
  font-size: 0.95rem;
}

.legal-banner,
.legal-inline,
.legal-text {
  margin-top: 1rem;
  border-left: 4px solid #f0b429;
  background: #fff9e7;
  color: #5f4711;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  font-size: 0.92rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  background: linear-gradient(180deg, #f5faff 0%, #eaf3fc 100%);
  border: 1px solid var(--gray-100);
  border-top: 3px solid #7aa9d8;
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.info-card h3 {
  margin: 0 0 0.65rem;
  color: var(--navy-900);
}

.route-box {
  background: linear-gradient(180deg, #f7fbff 0%, #ecf5fe 100%);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.1rem;
}

.route-box h3 {
  margin: 0 0 0.8rem;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.route-grid div {
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  padding: 0.8rem;
  background: linear-gradient(180deg, #ffffff 0%, #edf4fc 100%);
}

.route-grid span {
  display: block;
  color: var(--text-700);
  font-size: 0.84rem;
}

.route-grid strong {
  font-size: 1rem;
  color: var(--navy-900);
}

.split-content {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.pricing-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: linear-gradient(180deg, #ffffff 0%, #eef5fd 100%);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  box-shadow: var(--shadow-soft);
}

.pricing-card:nth-child(odd) {
  background: linear-gradient(180deg, #f7fbff 0%, #eaf3fc 100%);
}

.pricing-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.pricing-card h3 span {
  color: var(--text-700);
  font-size: 0.9rem;
  font-weight: 600;
}

.price {
  margin: 0;
  color: var(--navy-700);
  font-weight: 700;
  font-size: 0.92rem;
}

.pricing-card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--text-700);
}

.tips-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tip-card {
  background: linear-gradient(180deg, #f8fbff 0%, #edf5fd 100%);
  border: 1px solid var(--gray-100);
  border-left: 4px solid #77a9da;
  border-radius: var(--radius-md);
  padding: 1.15rem;
}

.tip-icon {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  font-size: 1rem;
  margin-bottom: 0.55rem;
}

.tip-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--navy-900);
}

.narrow {
  width: min(900px, calc(100% - 2.2rem));
}

.accordion details {
  background: linear-gradient(180deg, #ffffff 0%, #eff6fd 100%);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  margin-bottom: 0.7rem;
}

.accordion summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy-900);
}

.accordion p {
  margin: 0.8rem 0 0;
  color: var(--text-700);
}

.site-footer {
  padding: 3rem 0 1.5rem;
  background: var(--navy-900);
  color: #d7e4f2;
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1.2fr 1fr 1fr;
}

.site-footer h3,
.site-footer h4 {
  color: var(--white);
  margin-top: 0;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-links a {
  color: #d7e4f2;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
  text-decoration: underline;
}

.legal-block {
  margin-top: 0.9rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.25);
  padding-top: 0.8rem;
}

.contact-form {
  display: grid;
  gap: 0.5rem;
}

.contact-form label {
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #c3d3e4;
}

.footer-bottom {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.88rem;
  color: #b9cde1;
}

/* New footer layout styles */
.footer-content {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 2rem 0;
}

.footer-info .logo-img {
  display: block;
  margin-bottom: 0.8rem;
}

.footer-info p {
  margin: 0 0 0.9rem;
  color: #dbeaf8;
}

.social-icons a {
  display: inline-block;
  margin-right: 0.6rem;
  color: #dbeaf8;
  text-decoration: none;
  font-weight: 700;
}

.footer-links-grid {
  display: flex;
  gap: 1rem;
}

.footer-group h4 {
  margin: 0 0 0.6rem;
  color: var(--white);
}

.footer-group a {
  display: block;
  color: #d7e4f2;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.contact-group p {
  margin: 0.35rem 0;
  color: #d7e4f2;
}

.legal-footer {
  background: rgba(255,255,255,0.03);
  padding: 0.9rem 1rem;
  margin-top: 1rem;
  color: #e6f1fb;
  font-size: 0.92rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.whatsapp-fixed-left {
  position: fixed;
  left: 16px;
  bottom: 18px;
  background: #25D366;
  color: white;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(37,211,102,0.18);
  text-decoration: none;
  font-weight: 700;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-fixed-left i.fa-whatsapp {
  font-size: 20px;
  color: #fff;
  display: inline-block;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-links-grid {
    flex-direction: column;
  }
}

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav-wrap {
    flex-wrap: wrap;
    padding: 0.7rem 0;
  }

  .nav-toggle-btn {
    display: inline-flex;
  }

  .nav-actions {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    gap: 0.8rem;
    padding: 0.75rem 0 0.3rem;
  }

  .nav-toggle:checked ~ .nav-actions {
    display: flex;
  }

  .site-nav {
    order: 2;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    margin-left: 0;
  }

  .site-nav a {
    display: block;
    padding: 0.85rem 1rem;
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #edf5fd 100%);
  }

  .btn-outline {
    width: 100%;
    margin-left: 0;
    padding-block: 0.85rem;
  }

  .hero-grid,
  .split-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .tips-grid,
  .route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .nav-wrap {
    gap: 0.7rem;
  }

  .section {
    padding: 3.8rem 0;
  }

  .hero {
    padding-top: 3.9rem;
  }

  .brand {
    font-size: 0.98rem;
    max-width: 12ch;
    line-height: 1.2;
  }

  .nav-toggle-btn {
    width: 46px;
    height: 46px;
  }

  .card-grid.three,
  .tips-grid,
  .route-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-small {
    width: 100%;
  }

  .site-nav a {
    padding: 0.9rem 1rem;
  }
}
