/* ==========================================================================
   Tara Expedition Palawan — Design System
   Pixel-perfect match to provided UI mockup
   ========================================================================== */
@import url("animations.css");

:root {
  /* Brand colors */
  --teal-primary: #005b5b;
  --teal-dark: #004040;
  --teal-light: #1b7a73;
  --orange-accent: #ff8c00;
  --orange-deep: #f39200;
  --navy-dark: #1a2b3c;
  --navy-boat: #0d1f33;
  --cream-bg: #f9f7f2;
  --cream-alt: #fdfaf3;
  --grey-section: #f4f4f4;
  --white: #ffffff;
  --text-muted: #6b7280;
  --border-light: #e5e7eb;

  /* Typography */
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Montserrat", "Segoe UI", Arial, sans-serif;
  --font-script: "Great Vibes", "Dancing Script", cursive;

  /* Spacing */
  --section-py: 3.5rem;
  --container-max: 1200px;
  --nav-height: 88px;
  --radius-btn: 6px;
  --radius-card: 12px;
  --shadow-card: 0 4px 24px rgba(26, 43, 60, 0.08);
  --shadow-card-hover: 0 12px 32px rgba(26, 43, 60, 0.14);
  --transition: 0.28s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--navy-dark);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

a:hover {
  color: var(--teal-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.2;
}

.font-script {
  font-family: var(--font-script);
  font-weight: 400;
}

.text-teal { color: var(--teal-primary) !important; }
.text-navy { color: var(--navy-dark) !important; }
.bg-cream { background-color: var(--cream-bg) !important; }
.bg-grey-section { background-color: var(--grey-section) !important; }

/* ---------- Loading Screen ---------- */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#page-loader .loader-logo {
  width: 160px;
  animation: loaderPulse 1.4s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(0.97); }
}

/* ---------- Buttons ---------- */
.btn-tara {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-btn);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.btn-tara-teal {
  background: var(--teal-primary);
  color: var(--white);
}

.btn-tara-teal:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 91, 91, 0.35);
}

.btn-tara-orange {
  background: var(--orange-accent);
  color: var(--white);
  padding: 0.85rem 2.25rem;
  font-size: 14px;
}

.btn-tara-orange:hover {
  background: #e67e00;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.btn-tara-outline {
  background: transparent;
  color: var(--teal-primary);
  border: 2px solid var(--teal-primary);
}

.btn-tara-outline:hover {
  background: var(--teal-primary);
  color: var(--white);
}

/* ---------- Header / Navbar ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(26, 43, 60, 0.06);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(26, 43, 60, 0.1);
}

.site-header .navbar {
  padding: 0.65rem 0;
  min-height: var(--nav-height);
}


.site-header .nav-link {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-dark);
  padding: 0.5rem 0.85rem !important;
  position: relative;
}

.site-header .nav-link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--teal-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
  transform: scaleX(1);
}

.site-header .nav-link.active {
  color: var(--teal-primary);
}

.site-header .btn-book-nav {
  padding: 0.55rem 1.35rem;
  font-size: 12px;
}

.navbar-toggler {
  border-color: var(--teal-primary);
  padding: 0.35rem 0.55rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 91, 91, 0.25);
}

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section:not(.parallax-section)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.78) 42%,
    rgba(255, 255, 255, 0.15) 72%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.hero-title {
  font-size: clamp(2.25rem, 4.5vw, 3.35rem);
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
  color: var(--navy-dark);
}

.hero-script {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: var(--teal-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero-desc {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 1.75rem;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin-bottom: 2rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero-feature-icon {
  width: 44px;
  height: 44px;
  border: 2px solid var(--teal-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-feature-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-dark);
  max-width: 120px;
  line-height: 1.35;
}

.hero-badge {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--teal-primary);
  border: 3px dashed rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem;
  margin-left: auto;
  box-shadow: 0 8px 32px rgba(0, 91, 91, 0.35);
}

.hero-badge p {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
  line-height: 1.5;
}

.hero-badge .badge-arrows {
  font-size: 1.25rem;
  margin: 0.25rem 0;
}

/* ---------- Section Headers ---------- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header-wavy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.section-header-wavy::before,
.section-header-wavy::after {
  content: "";
  flex: 1;
  max-width: 120px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12'%3E%3Cpath fill='none' stroke='%23005b5b' stroke-width='1.5' d='M0 6 Q15 0 30 6 T60 6 T90 6 T120 6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.section-title {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  color: var(--teal-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
}

.section-header-decor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.decor-lines {
  display: flex;
  gap: 5px;
}

.decor-lines span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--orange-accent);
  transform: skewX(-25deg);
  border-radius: 1px;
}

.section-header-decor .section-title {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  letter-spacing: 0.06em;
  color: var(--teal-primary);
  text-transform: uppercase;
}

/* ---------- Route Cards ---------- */
.routes-section {
  padding: var(--section-py) 0;
}

.route-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

.route-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.route-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.route-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 43, 60, 0.55) 0%, transparent 55%);
}

.route-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  z-index: 2;
  color: var(--white);
}

.route-card-overlay h3 {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.route-card-overlay .route-arrow {
  color: var(--orange-accent);
  font-size: 1.1rem;
  margin: 0 0.35rem;
}

.route-card-overlay .route-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.95;
}

.route-card-body {
  padding: 1.75rem 1.5rem 2rem;
  text-align: center;
}

.route-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.route-feature {
  text-align: center;
}

.route-feature i {
  font-size: 1.5rem;
  color: var(--teal-primary);
  display: block;
  margin-bottom: 0.4rem;
}

.route-feature span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy-dark);
  line-height: 1.3;
  display: block;
}

/* ---------- Why Travel ---------- */
.why-section {
  padding: var(--section-py) 0;
  background: var(--cream-bg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.why-item {
  text-align: center;
  padding: 0 1.25rem;
  position: relative;
}

.why-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border-light);
}

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-primary);
  font-size: 2rem;
}

.why-item h4 {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-primary);
  margin-bottom: 0.65rem;
}

.why-item p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  background: var(--teal-dark);
  padding: 3.25rem 0;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23ffffff' fill-opacity='0.04' d='M0 60 Q360 20 720 60 T1440 60 V120 H0 Z'/%3E%3Cpath fill='%23ffffff' fill-opacity='0.03' d='M0 80 Q360 40 720 80 T1440 80 V120 H0 Z'/%3E%3C/svg%3E") bottom / cover no-repeat;
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  color: var(--white);
  margin: 0;
  line-height: 1.35;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin: 0;
  max-width: 340px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--cream-bg);
  padding: 4rem 0 0;
}

.site-footer .footer-logo img {
  width: auto;
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-primary);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 13.5px;
  color: var(--navy-dark);
}

.footer-links a:hover {
  color: var(--teal-primary);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  font-size: 13.5px;
}

.footer-contact i {
  color: var(--teal-primary);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.social-icons {
  display: flex;
  gap: 0.65rem;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition);
}

.social-icons a:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: scale(1.08);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-primary) 100%);
  padding: 4rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M0 40 Q360 0 720 40 T1440 40 V80 H0 Z'/%3E%3C/svg%3E") bottom / cover;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0.5rem;
}

.page-hero .breadcrumb {
  justify-content: center;
  margin: 0;
  --bs-breadcrumb-divider-color: rgba(255,255,255,0.6);
}

.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}

.page-hero .breadcrumb-item.active {
  color: var(--white);
}

/* ---------- Cards & Content blocks ---------- */
.content-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  height: 100%;
}

.content-card h3 {
  font-size: 1.35rem;
  color: var(--teal-primary);
  margin-bottom: 1rem;
}

.pricing-card {
  border: 2px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
  height: 100%;
}

.pricing-card.featured {
  border-color: var(--teal-primary);
  box-shadow: var(--shadow-card);
  position: relative;
}

.pricing-card .price {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--teal-primary);
  margin: 1rem 0;
}

.pricing-card .price small {
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.4rem 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border-light);
}

.pricing-features li i {
  color: var(--teal-primary);
  margin-right: 0.5rem;
}

/* ---------- Forms ---------- */
.form-tara .form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy-dark);
}

.form-tara .form-control,
.form-tara .form-select {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-btn);
  padding: 0.65rem 1rem;
  font-size: 14px;
}

.form-tara .form-control:focus,
.form-tara .form-select:focus {
  border-color: var(--teal-primary);
  box-shadow: 0 0 0 0.2rem rgba(0, 91, 91, 0.15);
}

/* ---------- Blog ---------- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal-primary);
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

/* ---------- FAQ Accordion ---------- */
.accordion-tara .accordion-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-btn) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.accordion-tara .accordion-button {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--navy-dark);
  background: var(--white);
  box-shadow: none;
}

.accordion-tara .accordion-button:not(.collapsed) {
  background: var(--cream-bg);
  color: var(--teal-primary);
}

.accordion-tara .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 91, 91, 0.15);
}

/* ---------- Auth pages ---------- */
.auth-wrapper {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding: 3rem 0;
  background: var(--cream-bg);
}

.auth-card {
  max-width: 440px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 2.5rem;
}

.auth-card .auth-logo {
  width: auto;
  max-width: 240px;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
}

/* ---------- Dashboard ---------- */
.dashboard-sidebar {
  background: var(--teal-dark);
  min-height: calc(100vh - var(--nav-height));
  padding: 2rem 0;
}

.dashboard-sidebar .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
  padding: 0.65rem 1.5rem;
  border-left: 3px solid transparent;
}

.dashboard-sidebar .nav-link:hover,
.dashboard-sidebar .nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--orange-accent);
}

.dashboard-stat {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.dashboard-stat h3 {
  font-size: 2rem;
  color: var(--teal-primary);
  margin: 0;
}

@media (max-width: 991.98px) {
  .dashboard-sidebar {
    position: fixed;
    left: -100%;
    top: var(--nav-height);
    width: 260px;
    z-index: 1020;
    transition: left var(--transition);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
  }

  .dashboard-sidebar.is-open {
    left: 0;
  }
}

/* ---------- 404 ---------- */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}

.error-page h1 {
  font-size: 8rem;
  color: var(--teal-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ---------- Tables ---------- */
.table-tara {
  font-size: 14px;
}

.table-tara thead th {
  background: var(--teal-primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  padding: 0.85rem 1rem;
}

.table-tara tbody td {
  padding: 0.85rem 1rem;
  vertical-align: middle;
}

/* ---------- Tabs ---------- */
.nav-tabs-tara {
  border-bottom: 2px solid var(--border-light);
}

.nav-tabs-tara .nav-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: none;
  padding: 0.75rem 1.25rem;
}

.nav-tabs-tara .nav-link.active {
  color: var(--teal-primary);
  border-bottom: 2px solid var(--teal-primary);
  margin-bottom: -2px;
  background: transparent;
}

/* ---------- Alerts ---------- */
.alert-tara {
  border-radius: var(--radius-btn);
  border: none;
  font-size: 14px;
}

.alert-tara-success {
  background: rgba(0, 91, 91, 0.1);
  color: var(--teal-dark);
}

.alert-tara-warning {
  background: rgba(255, 140, 0, 0.12);
  color: #b35f00;
}

/* ---------- Modals ---------- */
.modal-tara .modal-header {
  border-bottom: 1px solid var(--border-light);
  background: var(--cream-bg);
}

.modal-tara .modal-title {
  font-size: 1.25rem;
  color: var(--teal-primary);
}

/* ---------- Responsive ---------- */
@media (max-width: 1199.98px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .why-item:not(:last-child)::after {
    display: none;
  }

  .why-item {
    padding: 0 0.75rem;
  }
}

@media (max-width: 991.98px) {
  :root {
    --section-py: 4rem;
    --nav-height: 72px;
  }

  .site-header .navbar-brand img {
    max-height: 65px;        width: auto;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-badge {
    margin: 2rem auto 0;
  }

  .route-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-banner .row > div {
    text-align: center !important;
    margin-bottom: 1.25rem;
  }

  .cta-banner p {
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }

  .route-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .section-header-wavy::before,
  .section-header-wavy::after {
    max-width: 50px;
  }

  .footer-col {
    margin-bottom: 2rem;
  }
}

@media (max-width: 575.98px) {
  .btn-tara {
    width: 100%;
  }

  .hero-badge {
    width: 170px;
    height: 170px;
  }
}
