/* ================================================
   TOURVISOR – Full Responsive Stylesheet
================================================ */
:root {
  --orange: #e87722;
  --blue: #1a73c8;
  --dark: #1a1a2e;
  --text: #333344;
  --muted: #6c757d;
  --light-bg: #f8f9ff;
  --shadow: 0 8px 32px rgba(26, 115, 200, 0.12);
  --radius: 16px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Nunito", sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}

/* ===== NAVBAR ===== */
#mainNav {
  background: transparent;
  transition: all 0.4s ease;
  padding: 1rem 0;
  z-index: 1050;
}
#mainNav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
}

/* Transparent state */
#mainNav:not(.scrolled) .brand-text {
  color: white;
}
#mainNav:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
}
#mainNav:not(.scrolled) .nav-link:hover,
#mainNav:not(.scrolled) .nav-link.active {
  color: white !important;
  background: rgba(255, 255, 255, 0.15);
}
#mainNav:not(.scrolled) .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.6);
}
#mainNav:not(.scrolled) .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Scrolled state */
#mainNav.scrolled .brand-text {
  color: var(--dark);
}
#mainNav.scrolled .nav-link {
  color: var(--dark) !important;
}
#mainNav.scrolled .nav-link:hover,
#mainNav.scrolled .nav-link.active {
  color: var(--orange) !important;
  background: rgba(232, 119, 34, 0.08);
}
#mainNav.scrolled .navbar-toggler {
  border-color: rgba(0, 0, 0, 0.2);
}
#mainNav.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand {
  text-decoration: none;
}
.brand-text {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  transition: color 0.4s;
}
.brand-accent {
  color: var(--orange);
}
.logo-icon {
  background: var(--orange);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.logo-icon.small {
  width: 30px;
  height: 30px;
  font-size: 0.85rem;
}
.nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.4rem 0.75rem !important;
  border-radius: 8px;
  transition: all 0.3s;
  white-space: nowrap;
}

/* Mobile nav collapse always white */
.navbar-collapse {
  transition: all 0.3s;
}
@media (max-width: 991.98px) {
  #mainNav:not(.scrolled) .nav-link {
    color: rgba(14, 13, 13, 1) !important;
  }
  #mainNav:not(.scrolled) .navbar-collapse .nav-link.active {
    color: var(--orange) !important;
    background: rgba(232, 119, 34, 0.08);
  }
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98) !important;
    border-radius: 12px;
    margin-top: 0.6rem;
    padding: 0.8rem 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  }
  .navbar-collapse .nav-link {
    color: var(--dark) !important;
    padding: 0.5rem 0.75rem !important;
  }
  .navbar-collapse .nav-link:hover,
  .navbar-collapse .nav-link.active {
    color: var(--orange) !important;
    background: rgba(232, 119, 34, 0.08);
  }
  .navbar-collapse .btn-primary-custom {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
  }
  #mainNav:not(.scrolled) .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.6);
  }
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 0.55rem 1.4rem;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary-custom:hover {
  background: #cf6a19;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 119, 34, 0.4);
}
.btn-orange {
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 0.55rem 1.4rem;
  font-weight: 700;
  transition: all 0.3s;
}
.btn-orange:hover {
  background: #cf6a19;
  color: white;
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  animation: heroZoom 20s ease-in-out infinite;
}
.hero-slide.active {
  opacity: 1;
}
@keyframes heroZoom {
  0%,
  100% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(1);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 24, 54, 0.78) 0%,
    rgba(20, 24, 54, 0.45) 60%,
    rgba(20, 24, 54, 0.2) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 100px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.1rem;
}
.hero-title em {
  font-style: italic;
  color: var(--orange);
}
.hero-sub {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  user-select: none;
}
.scroll-indicator:hover {
  color: white;
  transform: translateX(-50%) translateY(-4px);
}
.scroll-dot {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 11px;
  position: relative;
}
.scroll-dot::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 7px;
  background: var(--orange);
  border-radius: 2px;
  animation: scrollBounce 1.5s ease infinite;
}
@keyframes scrollBounce {
  0%,
  100% {
    top: 5px;
  }
  50% {
    top: 17px;
  }
}

/* ===== STATS ===== */
.stats-strip {
  background: var(--blue);
  padding: 2.5rem 0;
}
.stat-item {
  color: white;
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: white;
}
.stat-plus {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--orange);
}
.stat-item p {
  margin: 0.3rem 0 0;
  font-size: 0.85rem;
  opacity: 0.85;
  font-weight: 600;
}

/* ===== SECTIONS ===== */
.section-pad {
  padding: 5rem 0;
}
.bg-light-custom {
  background: var(--light-bg);
}
.section-tag {
  display: inline-block;
  background: rgba(232, 119, 34, 0.12);
  color: var(--orange);
  border-radius: 50px;
  padding: 0.3rem 1rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--dark);
  margin-top: 0.5rem;
  line-height: 1.2;
}
.section-sub {
  color: var(--muted);
  font-size: clamp(0.92rem, 1.8vw, 1.05rem);
  max-width: 540px;
  margin: 0.8rem auto 0;
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: all 0.4s;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transform: scaleX(0);
  transition: transform 0.4s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--orange), #f0a060);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1.1rem;
  transition: all 0.3s;
  flex-shrink: 0;
}
.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}
.service-card h5 {
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}
.service-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
.service-link {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  margin-top: 0.8rem;
  display: inline-block;
  transition: all 0.3s;
}
.service-link:hover {
  color: var(--orange);
}

/* ===== DESTINATION CARDS (homepage) ===== */
.dest-card {
  border-radius: var(--radius);
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s;
}
.dest-card:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 30, 0.88) 0%,
    rgba(10, 10, 30, 0.2) 55%,
    transparent 100%
  );
  transition: all 0.4s;
}
.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 1.4rem;
  color: white;
}
.dest-tag {
  background: var(--orange);
  color: white;
  border-radius: 50px;
  padding: 0.18rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
  display: inline-block;
}
.dest-info h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0.25rem 0;
}
.dest-info p {
  font-size: 0.82rem;
  opacity: 0.85;
  margin-bottom: 0.6rem;
}

/* ===== WHY SECTION ===== */
.why-section {
  background: white;
}
.why-image-grid {
  position: relative;
  height: 460px;
}
.why-img {
  border-radius: 18px;
  object-fit: cover;
  position: absolute;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}
.why-img-1 {
  width: 65%;
  height: 320px;
  top: 0;
  left: 0;
}
.why-img-2 {
  width: 56%;
  height: 260px;
  bottom: 0;
  right: 0;
  border: 5px solid white;
}
.why-badge-float {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-28%, -30%);
  background: var(--orange);
  color: white;
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 32px rgba(232, 119, 34, 0.4);
  font-size: 1.6rem;
  z-index: 2;
}
.why-badge-float span {
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.2;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.why-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.why-dot {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(26, 115, 200, 0.1);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.92rem;
  margin-top: 2px;
}
.why-item strong {
  font-size: 0.97rem;
  color: var(--dark);
  display: block;
}
.why-item p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0.1rem 0 0;
}

/* ===== VALUE CARDS ===== */
.value-card {
  background: white;
  border-radius: 16px;
  padding: 1.8rem 1.4rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
  height: 100%;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin: 0 auto 1rem;
}

/* ===== CTA ===== */
.cta-section {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1920&q=80");
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 115, 200, 0.88),
    rgba(26, 30, 60, 0.88)
  );
}
.cta-content {
  position: relative;
  z-index: 1;
  color: white;
}
.cta-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 0.7rem;
}
.cta-content p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  opacity: 0.9;
}

/* ===== FOOTER ===== */
.footer {
  background: #0f0f1a;
  padding: 4rem 0 0;
  color: #aaa;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-brand .brand-text {
  color: white;
  font-size: 1.4rem;
}
.footer-heading {
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--orange);
}
.footer-contact {
  list-style: none;
  padding: 0;
}
.footer-contact li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
  color: #aaa;
}
.footer-contact i {
  color: var(--orange);
  margin-top: 3px;
  min-width: 14px;
  font-size: 0.85rem;
}
.social-links {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  color: #aaa;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s;
  text-decoration: none;
}
.social-links a:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 3rem;
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.85rem;
  margin: 0;
}

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #25d366;
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  animation: waPulse 2s ease infinite;
  transition: transform 0.3s;
}
.whatsapp-float:hover {
  color: white;
  transform: scale(1.12);
}
@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 4px 36px rgba(37, 211, 102, 0.7);
  }
}
.back-top {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  background: var(--blue);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(26, 115, 200, 0.3);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.back-top.show {
  opacity: 1;
  pointer-events: all;
}
.back-top:hover {
  color: white;
  background: var(--orange);
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  padding: 9rem 0 3.5rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #1a73c8 100%);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1920&q=80")
    center/cover;
  opacity: 0.15;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}
.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 0.7rem;
}
.page-hero p {
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  opacity: 0.85;
  max-width: 480px;
  margin: 0 auto;
}
.breadcrumb-custom {
  margin-top: 0.8rem;
  font-size: 0.88rem;
}
.breadcrumb-custom a {
  color: var(--orange);
  text-decoration: none;
}
.breadcrumb-custom span {
  color: rgba(255, 255, 255, 0.6);
}

/* ===== ANIMATIONS ===== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.8s ease forwards;
}
.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CONTACT PAGE ===== */
.contact-info-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
  height: 100%;
}
.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--orange), #f0a060);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}
.contact-info-card h6 {
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}
.contact-info-card p,
.contact-info-card a {
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
  margin: 0;
  line-height: 1.5;
}
.contact-info-card a:hover {
  color: var(--orange);
}
.map-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ===== DESTINATIONS PAGE ===== */
.filter-btn {
  border: 2px solid #e0e0e0;
  background: white;
  color: var(--text);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}
.filter-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.dest-grid-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  background: white;
  height: 100%;
}
.dest-grid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}
.dest-grid-img {
  height: 210px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s;
}
.dest-grid-card:hover .dest-grid-img {
  transform: scale(1.05);
}
.dest-grid-body {
  padding: 1.1rem 1.3rem 1.3rem;
}
.dest-grid-body h5 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--dark);
  font-size: 1.05rem;
}
.dest-grid-body .price {
  color: var(--orange);
  font-weight: 800;
  font-size: 0.97rem;
}
.dest-grid-body .meta {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ===== SERVICES PAGE ===== */
.service-detail-img {
  border-radius: 18px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.service-number {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(232, 119, 34, 0.1);
  line-height: 1;
  position: absolute;
  top: -1.5rem;
  left: 0;
}

/* ===== ABOUT PAGE ===== */
.about-stat-box {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
}
.about-stat-num {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  font-weight: 900;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Large tablets / small laptops */
@media (max-width: 991.98px) {
  .section-pad {
    padding: 4rem 0;
  }
  .why-image-grid {
    height: 380px;
  }
  .why-img-1 {
    width: 68%;
    height: 260px;
  }
  .why-img-2 {
    width: 58%;
    height: 220px;
  }
  .cta-section {
    background-attachment: scroll;
  }
}

/* Tablets */
@media (max-width: 767.98px) {
  .section-pad {
    padding: 3rem 0;
  }
  .stats-strip {
    padding: 2rem 0;
  }
  .hero-content {
    padding-top: 90px;
    padding-bottom: 80px;
  }
  .hero-sub {
    font-size: 0.95rem;
  }
  .hero-btns .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
  }
  .dest-card {
    height: 260px;
  }
  /* WHY section: stack image grid nicely on tablet */
  .why-image-grid {
    height: 300px;
    margin-bottom: 2rem;
  }
  .why-img-1 {
    width: 66%;
    height: 220px;
  }
  .why-img-2 {
    width: 55%;
    height: 185px;
  }
  .why-badge-float {
    padding: 0.7rem 0.9rem;
    font-size: 1.3rem;
  }
  .why-badge-float span {
    font-size: 0.72rem;
  }
  /* Footer */
  .footer {
    padding: 3rem 0 0;
  }
  .footer-brand {
    margin-bottom: 0.5rem;
  }
  /* CTA buttons stacking */
  .cta-section {
    padding: 4rem 0;
  }
  /* Page hero */
  .page-hero {
    padding: 8rem 0 3rem;
  }
  /* Services detail page */
  .flex-md-row-reverse {
    flex-direction: column !important;
  }
}

/* Mobile phones */
@media (max-width: 575.98px) {
  .section-pad {
    padding: 2.5rem 0;
  }
  .hero-content {
    padding-top: 80px;
    padding-bottom: 70px;
  }
  .hero-title {
    font-size: 1.85rem;
    line-height: 1.2;
  }
  .hero-badge {
    font-size: 0.78rem;
    padding: 0.3rem 0.85rem;
  }
  .hero-sub {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }
  .hero-btns {
    gap: 0.6rem;
  }
  .hero-btns .btn {
    font-size: 0.88rem;
    padding: 0.48rem 1.1rem;
  }
  .scroll-indicator {
    bottom: 1rem;
  }
  /* Stats */
  .stat-num {
    font-size: 1.8rem;
  }
  .stat-plus {
    font-size: 1.3rem;
  }
  .stat-item p {
    font-size: 0.78rem;
  }
  /* Section headers */
  .section-title {
    font-size: 1.5rem;
  }
  .section-sub {
    font-size: 0.9rem;
  }
  /* Service cards */
  .service-card {
    padding: 1.4rem;
  }
  .service-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
  /* Destination cards */
  .dest-card {
    height: 230px;
  }
  .dest-info {
    padding: 1rem 1.1rem;
  }
  .dest-info h4 {
    font-size: 1.1rem;
  }
  /* Why section – collapse image grid on mobile, show simple stacked */
  .why-image-grid {
    height: 240px;
    margin-bottom: 1.8rem;
  }
  .why-img-1 {
    width: 70%;
    height: 190px;
  }
  .why-img-2 {
    width: 55%;
    height: 165px;
  }
  .why-badge-float {
    padding: 0.6rem 0.8rem;
    font-size: 1.1rem;
    gap: 0.4rem;
  }
  .why-badge-float span {
    font-size: 0.68rem;
  }
  /* CTA */
  .cta-section {
    padding: 3rem 0;
  }
  .cta-content h2 {
    font-size: 1.5rem;
  }
  .cta-content p {
    font-size: 0.9rem;
  }
  /* Footer */
  .footer {
    padding: 2.5rem 0 0;
  }
  .footer-heading {
    margin-top: 0.5rem;
  }
  .footer-contact li {
    font-size: 0.84rem;
  }
  .footer-bottom {
    margin-top: 2rem;
  }
  /* Page hero */
  .page-hero {
    padding: 7rem 0 2.5rem;
  }
  .page-hero h1 {
    font-size: 1.7rem;
  }
  .page-hero p {
    font-size: 0.9rem;
  }
  /* Floating buttons — smaller on mobile */
  .whatsapp-float {
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
    right: 1rem;
    bottom: 1rem;
  }
  .back-top {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
    right: 1rem;
    bottom: 4.5rem;
  }
  /* Contact cards */
  .contact-info-card {
    padding: 1.1rem;
    gap: 0.8rem;
  }
  .contact-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 1.1rem;
  }
  /* Destinations filter */
  .filter-btn {
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
  }
  /* Dest grid */
  .dest-grid-img {
    height: 185px;
  }
  /* Value cards */
  .value-card {
    padding: 1.4rem 1rem;
  }
  .value-icon {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .hero-title {
    font-size: 1.6rem;
  }
  .brand-text {
    font-size: 1.3rem;
  }
  .stat-num {
    font-size: 1.6rem;
  }
  .why-image-grid {
    height: 200px;
  }
  .why-img-1 {
    height: 160px;
  }
  .why-img-2 {
    height: 140px;
  }
}
