/* ─── Variables ─────────────────────────────────────────────────────────── */
:root {
  --orange:     #FA5636;
  --navy:       #1B1B2F;
  --white:      #FFFFFF;
  --light-gray: #F5F5F5;
  --gold:       #C9A84C;
  --body:       #444444;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Inter', 'Lato', Arial, sans-serif;
  --font-label: 'Montserrat', Arial, sans-serif;
}

/* ─── Reset & Base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Typography ────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p  { margin-bottom: 1rem; }

.section-label {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.85rem 1.8rem;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  min-height: 48px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: #e04020;
  border-color: #e04020;
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--orange);
}
.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
}

/* ─── Navigation ────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.nav.scrolled .nav-link { color: var(--navy); }
.nav.scrolled .nav-link:hover { color: var(--orange); }
.nav-logo img { height: 44px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  padding: 0.5rem 0.9rem;
  border-radius: 3px;
  transition: color 0.2s;
  text-transform: uppercase;
}
.nav-link:hover { color: var(--orange); }
.nav-cta { margin-left: 1rem; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-toggle::after {
  content: ' ▾';
  font-size: 0.7em;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  min-width: 200px;
  overflow: hidden;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu { display: block; }
.dropdown-item {
  display: block;
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0.75rem 1.2rem;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
}
.dropdown-item:hover {
  background: var(--light-gray);
  color: var(--orange);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.nav.scrolled .hamburger span { background: var(--navy); }
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  z-index: 999;
}
.nav-mobile.open { display: block; }
.nav-mobile .nav-link {
  display: block;
  color: var(--navy);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--light-gray);
}
.nav-mobile .nav-link:last-child { border: none; }
.mobile-submenu {
  padding-left: 1rem;
}
.mobile-submenu .nav-link {
  font-size: 0.78rem;
  color: var(--body);
}
.nav-mobile .btn { margin-top: 1rem; width: 100%; text-align: center; }

/* ─── Sections ──────────────────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-gray { background: var(--light-gray); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-orange { background: var(--orange); color: var(--white); }
.section-orange h2, .section-orange p { color: var(--white); }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-white { color: var(--white); }

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(27,27,47,0.6) 0%, rgba(27,27,47,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 860px;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-content .subheadline {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}
.hero-content .hero-body {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto 2rem;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}
.hero-scroll span {
  display: block;
  width: 24px; height: 24px;
  border-right: 2px solid rgba(255,255,255,0.7);
  border-bottom: 2px solid rgba(255,255,255,0.7);
  transform: rotate(45deg);
  margin: 0 auto;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─── Hero Slider ───────────────────────────────────────────────────────── */
.hero-slider {
  position: absolute;
  inset: 0;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.slide.active { opacity: 1; }

.slider-dots {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 5;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: 2px solid rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.dot.active {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.25);
}
.dot:hover { background: rgba(255,255,255,0.8); }

/* ─── Page Hero Banner (inner pages) ────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 65vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-hero .hero-content h1 { font-size: clamp(1.8rem, 4vw, 3rem); }

/* ─── Why Ktravo ────────────────────────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.pillar {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}
.pillar:hover { transform: translateY(-4px); }
.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.pillar h3 { color: var(--navy); margin-bottom: 0.75rem; }

/* ─── Service Cards ─────────────────────────────────────────────────────── */
.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.service-card {
  position: relative;
  height: 420px;
  overflow: hidden;
  cursor: pointer;
}
.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-bg { transform: scale(1.06); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,27,47,0.85) 0%, rgba(27,27,47,0.2) 60%);
}
.service-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem;
  z-index: 2;
}
.service-card-content h3 { color: var(--white); margin-bottom: 0.4rem; }
.service-card-content p {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.service-card-link {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.service-card-link::after { content: ' →'; }

/* ─── Numbers ───────────────────────────────────────────────────────────── */
.numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}
.number-item { padding: 2rem; }
.number-value {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--orange);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.number-label {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.4rem;
}
.number-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin: 0; }

/* ─── Testimonials ──────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial {
  background: var(--white);
  border-radius: 6px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--orange);
  opacity: 0.15;
  position: absolute;
  top: -0.5rem; left: 1rem;
  line-height: 1;
}
.testimonial p {
  font-style: italic;
  color: var(--body);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.testimonial-author {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.04em;
  margin: 0;
}

/* ─── CTA Banner ────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--orange);
  padding: 5rem 2rem;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.9); margin-bottom: 2rem; font-size: 1.05rem; }

/* ─── Two-column text/photo ─────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col-photo {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.two-col-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ─── Values Grid ───────────────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--white);
  border-radius: 6px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-left: 4px solid var(--orange);
}
.value-card h3 {
  color: var(--orange);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.value-card p { margin: 0; font-size: 0.9rem; }

/* ─── Destination Cards ─────────────────────────────────────────────────── */
.destination-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.destination-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.destination-card:hover { transform: translateY(-4px); }
.destination-card-photo {
  height: 220px;
  background-size: cover;
  background-position: center;
}
.destination-card-body { padding: 1.5rem; background: var(--white); }
.destination-card-body h3 { margin-bottom: 0.4rem; font-size: 1.1rem; }
.destination-card-body .region {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.destination-card-body p { font-size: 0.85rem; margin: 0; }

/* ─── Fast Facts ────────────────────────────────────────────────────────── */
.fast-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.fast-fact {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border-radius: 6px;
  padding: 1.25rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.fast-fact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.fast-fact-text strong {
  display: block;
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.fast-fact-text span { font-size: 0.9rem; color: var(--body); }

/* ─── Service Section (Services page) ──────────────────────────────────── */
.service-section {
  padding: 0;
}
.service-banner {
  height: 55vh;
  min-height: 320px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.service-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.service-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,27,47,0.85) 0%, rgba(27,27,47,0.2) 70%);
}
.service-banner-text {
  position: relative;
  z-index: 2;
  padding: 2.5rem 3rem;
  max-width: 700px;
}
.service-banner-text h2 { color: var(--white); margin-bottom: 0.3rem; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.service-banner-text .tagline {
  font-family: var(--font-head);
  font-style: italic;
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin: 0;
}
.service-body { padding: 4rem 0; }
.service-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.service-desc p { margin-bottom: 1rem; }
.service-inclusions h4 {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 1rem;
}
.service-inclusions ul { padding-left: 0; }
.service-inclusions li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}
.service-inclusions li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.who-for {
  background: var(--light-gray);
  border-radius: 6px;
  padding: 1.5rem;
  margin-top: 2rem;
}
.who-for h4 {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.who-for ul { padding: 0; }
.who-for li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
}
.who-for li::before { content: '→'; color: var(--orange); font-weight: 700; }
.service-cta-box {
  background: var(--light-gray);
  border-left: 4px solid var(--orange);
  border-radius: 4px;
  padding: 2rem;
  margin-top: 2rem;
  text-align: center;
}
.service-cta-box p {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-style: italic;
}
.service-cta-box small {
  color: var(--body);
  font-size: 0.85rem;
  display: block;
  margin-bottom: 1.25rem;
}
.service-divider {
  height: 4px;
  background: linear-gradient(to right, var(--orange), var(--gold));
}

/* ─── Contact ───────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-form-wrap h2 { margin-bottom: 0.5rem; }
.contact-form-wrap > p { color: var(--body); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--body);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-info-wrap { padding-top: 1rem; }
.contact-info-wrap h2 { margin-bottom: 1.5rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-info-text strong { display: block; font-size: 0.85rem; color: var(--navy); margin-bottom: 0.2rem; }
.contact-info-text a { color: var(--body); transition: color 0.2s; }
.contact-info-text a:hover { color: var(--orange); }
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: 3px;
  margin-top: 1rem;
  transition: background 0.2s;
}
.whatsapp-btn:hover { background: #1da856; color: var(--white); }
.response-box {
  background: var(--light-gray);
  border-radius: 6px;
  padding: 1.5rem;
  margin-top: 2rem;
  font-size: 0.88rem;
}
.response-box strong { color: var(--navy); }
.social-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--body);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.social-link:hover { color: var(--orange); }
.social-link .icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* ─── Footer ────────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 40px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.85rem; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { padding: 0; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.footer-tagline {
  font-family: var(--font-head);
  font-style: italic;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* ─── WhatsApp Float ────────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  background: #25D366;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}

/* ─── Dividers / Utilities ──────────────────────────────────────────────── */
.divider-orange {
  height: 3px;
  width: 60px;
  background: var(--orange);
  margin: 1rem auto 2rem;
}
.divider-orange.left { margin-left: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .pillars { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  .service-card { height: 300px; }
  .numbers { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col.reverse { direction: ltr; }
  .values-grid { grid-template-columns: 1fr; }
  .destination-cards { grid-template-columns: 1fr 1fr; }
  .fast-facts { grid-template-columns: 1fr; }
  .service-body-grid { grid-template-columns: 1fr; gap: 2rem; }
  .service-banner-text { padding: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .destination-cards { grid-template-columns: 1fr; }
  .hero { min-height: 90vh; }
  .page-hero { height: 50vh; }
}
