/* ===== CSS VARIABLES ===== */
:root {
  --orange: #E8650A;
  --orange-dark: #C4520A;
  --orange-light: #FF8533;
  --orange-bg: #FFF3E0;
  --orange-pale: #FFF8F0;
  --gold: #FFB300;
  --dark: #1A1A2E;
  --dark-2: #2C2C54;
  --text: #333333;
  --text-light: #666666;
  --text-lighter: #999999;
  --white: #ffffff;
  --border: #E8E8E8;
  --shadow: 0 4px 20px rgba(232, 101, 10, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.3;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .tagline {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232, 101, 10, 0.12);
  padding: 7px 20px;
  border-radius: 50px;
  border: 1px solid rgba(232, 101, 10, 0.25);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
  box-shadow: 0 4px 15px rgba(232, 101, 10, 0.35);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 101, 10, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}

.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  border: 2px solid var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== HEADER / NAVBAR ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 90px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  width: clamp(60px, 8vw, 90px);
  height: clamp(60px, 8vw, 90px);
  object-fit: contain;
  display: block;
}

/* Tablet */
@media (max-width: 1024px) {
  .logo-img {
    width: clamp(55px, 7vw, 80px);
    height: clamp(55px, 7vw, 80px);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .logo-img {
    width: 55px;
    height: 55px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .logo-img {
    width: 48px;
    height: 48px;
  }
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.3px;
}

.logo-text .brand span {
  color: var(--orange);
}

.logo-text .tagline-logo {
  font-size: 0.65rem;
  color: var(--text-lighter);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(232, 101, 10, 0.3);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(232, 101, 10, 0.4) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 20px 40px;
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--orange);
}

/* ===== HERO CAROUSEL ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.carousel-slide.active img {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: var(--white);
  max-width: 580px;
  padding-top: 75px;
}

.slide-content .slide-tag {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.slide-content h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.7;
}

.slide-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.carousel-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

.arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(5px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.arrow-btn.prev-btn {
  left: 20px;
}

.arrow-btn.next-btn {
  right: 20px;
}

.arrow-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--dark);
  padding: 30px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* ===== FEATURED PACKAGES ===== */
.featured-packages {
  padding: 90px 0;
  background: var(--orange-pale);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 44px;
}

.pkg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  position: relative;
}

.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(232, 101, 10, 0.18);
}

.pkg-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.pkg-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pkg-card:hover .pkg-img-wrap img {
  transform: scale(1.08);
}

.pkg-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pkg-badge.bestseller {
  background: var(--gold);
  color: var(--dark);
}

.pkg-body {
  padding: 22px;
}

.pkg-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.pkg-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
}

.pkg-meta .icon {
  color: var(--orange);
  font-size: 0.9rem;
}

.pkg-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.pkg-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.6;
}

.pkg-highlights {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.highlight-tag {
  background: var(--orange-bg);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}

.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.pkg-price {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.pkg-price .from {
  font-size: 0.75rem;
  color: var(--text-lighter);
}

.pkg-price .amount {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--orange);
}

.pkg-price .per {
  font-size: 0.75rem;
  color: var(--text-lighter);
}

.pkg-footer .btn {
  padding: 9px 20px;
  font-size: 0.85rem;
}

.section-cta {
  text-align: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 90px 0;
  background: var(--white);
}


/* ===== WHY CHOOSE US ===== */
.why-us {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(232, 101, 10, 0.06);
}

.why-us .section-header h2 {
  color: white;
}

.why-us .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  background: rgba(232, 101, 10, 0.15);
  border-color: rgba(232, 101, 10, 0.3);
  transform: translateY(-5px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 18px;
  color: white;
}

.feature-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ===== POPULAR DESTINATIONS ===== */
.destinations {
  padding: 90px 0;
  background: var(--white);
}

.dest-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 16px;
}

.dest-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.dest-card:first-child {
  grid-row: span 2;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dest-card:hover img {
  transform: scale(1.1);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 15, 40, 0.82) 0%, rgba(5, 15, 40, 0.35) 45%, transparent 72%);
}

.dest-art {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.55));
  transition: transform 0.4s ease;
  pointer-events: none;
}

.dest-card:hover .dest-art {
  transform: translate(-50%, -65%);
}

.dest-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  color: white;
}

.dest-label h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.dest-label span {
  font-size: 0.78rem;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 4px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  background: var(--orange-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner .container {
  position: relative;
  z-index: 10;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--orange-pale);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--orange-pale);
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark);
}

.cta-banner p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  margin-bottom: 18px;
}

.footer-brand .logo .brand {
  color: white;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 22px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  cursor: pointer;
}

.social-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.contact-item .ci-icon {
  width: 30px;
  height: 30px;
  background: rgba(232, 101, 10, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item .ci-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: var(--orange);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ===== PAGE HERO (Inner pages) ===== */
.page-hero {
  padding-top: 75px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(232, 101, 10, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 179, 0, 0.08) 0%, transparent 40%);
}

.page-hero-content {
  text-align: center;
  padding: 70px 20px 80px;
  position: relative;
  z-index: 1;
}

.page-hero-content .tagline {
  display: inline-block;
  background: rgba(232, 101, 10, 0.15);
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 50px;
  border: 1px solid rgba(232, 101, 10, 0.25);
  margin-bottom: 20px;
}

.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.page-hero-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 18px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.25);
}

.breadcrumb .current {
  color: var(--orange);
}

/* ===== PACKAGES PAGE ===== */
.packages-page {
  padding: 120px 0 80px;
  background: var(--orange-pale);
}

.packages-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

.filter-btn {
  padding: 9px 20px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: white;
  color: var(--text);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}

.packages-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ===== SERVICES PAGE ===== */
.services-page {
  padding: 120px 0 80px;
  background: white;
}

.services-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}

.service-card {
  background: var(--orange-pale);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(232, 101, 10, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 22px;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(232, 101, 10, 0.25);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.service-feature-item::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  font-size: 0.75rem;
}

/* Airport pickup highlight card */
.service-card--highlight {
  background: linear-gradient(145deg, #fff8f0 0%, #fff3e0 100%);
  border: 2px solid rgba(232, 101, 10, 0.25);
  box-shadow: 0 6px 30px rgba(232, 101, 10, 0.12);
  position: relative;
}

.service-card--highlight:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(232, 101, 10, 0.22);
}

/* ===== PROCESS SECTION ===== */
.process-section {
  padding: 80px 0;
  background: var(--orange-pale);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--orange);
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(232, 101, 10, 0.2);
}

.process-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== ABOUT PAGE ===== */
.about-page {
  padding: 120px 0 80px;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: white;
  padding: 22px 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(232, 101, 10, 0.35);
  text-align: center;
}

.about-img-badge .years {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-img-badge .years-label {
  font-size: 0.8rem;
  opacity: 0.9;
}

.about-text .tagline {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232, 101, 10, 0.12);
  padding: 7px 20px;
  border-radius: 50px;
  border: 1px solid rgba(232, 101, 10, 0.25);
  margin-bottom: 14px;
}

.about-text h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-vals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.val-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.val-icon {
  width: 40px;
  height: 40px;
  background: var(--orange-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
}

.val-text h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.val-text p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* Founder Section */
.founder-section {
  padding: 80px 0;
  background: var(--orange-pale);
}

.founder-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 60px;
  align-items: center;
}

.founder-img-wrap {
  position: relative;
}

.founder-img-wrap img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.founder-quote-card {
  background: var(--orange);
  color: white;
  padding: 22px;
  border-radius: 14px;
  margin-top: -30px;
  margin-right: -20px;
  position: relative;
  box-shadow: 0 10px 30px rgba(232, 101, 10, 0.35);
}

.founder-quote-card .quote-text {
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.founder-quote-card .quote-name {
  font-weight: 700;
  font-size: 0.85rem;
  opacity: 0.9;
}

.founder-info h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.founder-info .designation {
  font-size: 0.9rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 20px;
}

.founder-info p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.founder-achievements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.achievement-item {
  background: white;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(232, 101, 10, 0.1);
  display: flex;
  gap: 12px;
  align-items: center;
}

.ach-icon {
  font-size: 1.5rem;
}

.ach-text .num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.ach-text .label {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* Difference section */
.difference-section {
  padding: 80px 0;
  background: white;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.diff-card {
  background: var(--orange-pale);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(232, 101, 10, 0.08);
  display: flex;
  gap: 20px;
  transition: var(--transition);
}

.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.diff-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  flex-shrink: 0;
}

.diff-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.diff-content p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== CONTACT PAGE ===== */
.contact-page {
  padding: 120px 0;
  background: var(--orange-pale);
}

.contact-page .section-header .tagline {
  background: rgba(232, 101, 10, 0.12);
  color: var(--orange);
  padding: 7px 20px;
  border-radius: 50px;
  border: 1px solid rgba(232, 101, 10, 0.25);
  margin-bottom: 20px;
}

.contact-layout {
  display: block;
}

.contact-form-box {
  max-width: 860px;
  margin: 0 auto;
}

.qc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.qc-card {
  background: var(--orange-pale);
  border: 1px solid rgba(232, 101, 10, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.qc-card:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.10);
  transform: translateY(-5px);
}

.contact-info h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.contact-info>p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.cdetail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cdetail-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(232, 101, 10, 0.25);
}

.cdetail-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
  font-family: 'Poppins', sans-serif;
}

.cdetail-text p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.5;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  font-family: 'Poppins', sans-serif;
  width: fit-content;
}

.whatsapp-btn:hover {
  background: #1DA851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.contact-form-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-box h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: white;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 101, 10, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 15px 30px;
  font-size: 1rem;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-lighter);
  margin-top: 12px;
}

.success-msg {
  display: none;
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  border-radius: 10px;
  padding: 14px 20px;
  color: #2E7D32;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
  align-items: center;
  gap: 10px;
}

.success-msg.show {
  display: flex;
}

/* ===== ALL TESTIMONIALS PAGE section ===== */
.all-testimonials {
  padding: 80px 0;
  background: white;
}

.testimonials-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .navbar {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .packages-grid,
  .testimonials-grid,
  .packages-full-grid,
  .services-grid-full,
  .testimonials-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat-item:nth-child(even) {
    border-bottom: none;
  }

  .dest-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }

  .dest-card:first-child {
    grid-row: auto;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-vals {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-img-wrap img {
    height: 350px;
  }

  .about-img-badge {
    right: 0;
  }

  .founder-grid {
    grid-template-columns: 1fr;
  }

  .founder-img-wrap img {
    height: 300px;
  }

  .founder-quote-card {
    margin: 0;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .qc-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {

  .packages-grid,
  .testimonials-grid,
  .packages-full-grid,
  .services-grid-full,
  .testimonials-full-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slide-content {
    left: 20px;
    right: 20px;
  }

  .slide-content h1 {
    font-size: 1.8rem;
  }

  .dest-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 160px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-vals {
    grid-template-columns: 1fr;
  }

  .founder-achievements {
    grid-template-columns: 1fr;
  }

  .carousel-dots {
    bottom: 20px;
  }

  .arrow-btn {
    width: 36px;
    height: 36px;
  }

  .arrow-btn.prev-btn {
    left: 10px;
  }

  .arrow-btn.next-btn {
    right: 10px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .navbar {
    height: 65px;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .slide-actions {
    flex-direction: column;
  }

  .contact-form-box {
    padding: 24px;
  }
}

/* ===== PKG FOOTER SINGLE BTN ===== */
.pkg-footer.single-btn {
  justify-content: flex-end;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ===== QUOTE POPUP ===== */
.quote-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.quote-popup-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.quote-popup {
  background: white;
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  padding: 36px 32px 32px;
  position: relative;
  transform: translateY(40px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}

.quote-popup-overlay.show .quote-popup {
  transform: translateY(0) scale(1);
}

.quote-popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-lighter);
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s;
}

.quote-popup-close:hover {
  background: var(--bg-light);
  color: var(--dark);
}

.quote-popup-header {
  margin-bottom: 20px;
}

.quote-popup-header .pop-tag {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.quote-popup-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 6px;
  font-family: 'Poppins', sans-serif;
}

.quote-popup-header p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

.popup-form .form-group {
  margin-bottom: 14px;
}

.popup-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
  font-family: 'Poppins', sans-serif;
}

.popup-form input,
.popup-form select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: 'Open Sans', sans-serif;
  color: var(--dark);
  background: white;
  transition: border-color 0.2s;
  outline: none;
  box-sizing: border-box;
}

.popup-form input:focus,
.popup-form select:focus {
  border-color: var(--orange);
}

.popup-form .popup-submit {
  width: 100%;
  padding: 14px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  transition: background 0.2s, transform 0.15s;
}

.popup-form .popup-submit:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

.popup-dismiss {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-lighter);
  margin-top: 12px;
  cursor: pointer;
  transition: color 0.2s;
}

.popup-dismiss:hover {
  color: var(--text);
}

@media (max-width: 520px) {
  .quote-popup {
    padding: 28px 20px 24px;
  }

  .quote-popup-header h3 {
    font-size: 1.2rem;
  }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  filter: drop-shadow(0 6px 18px rgba(37, 211, 102, 0.45));
  transition: var(--transition);
}

.wa-float:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 10px 24px rgba(37, 211, 102, 0.55));
}

.wa-float-btn {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.wa-float-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.wa-float-label {
  background: #25D366;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0 16px 0 12px;
  height: 44px;
  border-radius: 0 22px 22px 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
  margin-left: -8px;
  clip-path: inset(0 0 0 8px);
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width 0.4s ease, opacity 0.3s ease, clip-path 0.4s ease;
  pointer-events: none;
}

.wa-float:hover .wa-float-label {
  max-width: 180px;
  opacity: 1;
  clip-path: inset(0);
  pointer-events: auto;
}

.wa-float-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.4;
  animation: wa-pulse 2.4s ease-out infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }

  70% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@media (max-width: 600px) {
  .wa-float {
    bottom: 20px;
    right: 16px;
  }

  .wa-float-btn {
    width: 52px;
    height: 52px;
  }

  .wa-float-pulse {
    width: 52px;
    height: 52px;
  }

  .wa-float-label {
    display: none;
  }
}

/* ===== TESTIMONIALS V2 ===== */

.testi-heading-accent {
  color: var(--orange);
}

.testi-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.testi-card-v2 {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  padding: 28px 24px 22px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testi-card-v2:hover {
  box-shadow: 0 10px 36px rgba(232, 101, 10, 0.18);
  transform: translateY(-5px);
}

.testi-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.testi-stars-v2 {
  display: flex;
  gap: 2px;
}

.testi-stars-v2 span {
  color: #f5a623;
  font-size: 1.05rem;
}

.testi-stars-v2 span.star-dim {
  color: #ddd;
}

.testi-deco-quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.5rem;
  color: rgba(232, 101, 10, 0.13);
  line-height: 1;
  margin-top: -10px;
  user-select: none;
  flex-shrink: 0;
}

.testi-body-v2 {
  font-size: 0.91rem;
  color: #444;
  line-height: 1.78;
  font-style: italic;
  flex: 1;
}

.testi-footer-v2 {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #f2f2f2;
  margin-top: auto;
}

.testi-avatar-v2 {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.testi-name-v2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--dark);
}

.testi-trip-v2 {
  font-size: 0.77rem;
  color: var(--text-lighter);
  margin-top: 3px;
}

.btn-testi-read-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border: 2px solid var(--orange);
  border-radius: 999px;
  color: var(--orange);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.93rem;
  text-decoration: none;
  transition: var(--transition);
  background: transparent;
}

.btn-testi-read-all:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 101, 10, 0.35);
}

@media (max-width: 900px) {
  .testi-grid-v2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 580px) {
  .testi-grid-v2 {
    grid-template-columns: 1fr;
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 90px 0;
  background: var(--orange-pale);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: rgba(232, 101, 10, 0.2);
}

.faq-item summary {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item p {
  margin-top: 16px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ===== PACKAGE DETAILS PAGE ===== */
.pd-hero {
  padding-top: 100px;
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.pd-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: 0;
}

.pd-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 16, 40, 0.9) 0%, rgba(16, 16, 40, 0.4) 60%, transparent 100%);
  z-index: 1;
}

.pd-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.pd-hero-content {
  max-width: 800px;
}

.pd-badge-row {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.pd-badge {
  background: var(--orange);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pd-badge.duration-badge {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}

.pd-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.pd-hero-subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  font-weight: 400;
}

.pd-content-section {
  padding: 60px 0 90px;
  background: var(--orange-pale);
}

.pd-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.pd-main-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border);
}

.pd-section-block {
  margin-bottom: 40px;
}

.pd-section-block:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.pd-section-block h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid var(--orange-bg);
  padding-bottom: 10px;
}

.pd-section-block h3 span {
  color: var(--orange);
}

.pd-overview-text {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-light);
}

.pd-highlights-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pd-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 550;
}

.pd-highlight-item::before {
  content: '✦';
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: 800;
}

/* Timeline/Itinerary */
.pd-itinerary-timeline {
  position: relative;
  padding-left: 32px;
  margin-top: 24px;
}

.pd-itinerary-timeline::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 11px;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange) 0%, rgba(232, 101, 10, 0.15) 100%);
}

.pd-itinerary-day {
  position: relative;
  margin-bottom: 30px;
}

.pd-itinerary-day:last-child {
  margin-bottom: 0;
}

.pd-day-dot {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 3px rgba(232, 101, 10, 0.2);
}

.pd-day-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.pd-day-number {
  background: var(--orange-bg);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
}

.pd-day-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
}

.pd-day-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* Inclusions & Exclusions */
.pd-inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.pd-inc-col,
.pd-exc-col {
  padding: 20px;
  border-radius: 12px;
}

.pd-inc-col {
  background: rgba(46, 204, 113, 0.05);
  border: 1px solid rgba(46, 204, 113, 0.15);
}

.pd-exc-col {
  background: rgba(231, 76, 60, 0.05);
  border: 1px solid rgba(231, 76, 60, 0.15);
}

.pd-inc-col h4,
.pd-exc-col h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pd-inc-col h4 {
  color: #27ae60;
}

.pd-exc-col h4 {
  color: #c0392b;
}

.pd-inc-exc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pd-inc-exc-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text);
}

.pd-inc-col .pd-inc-exc-item::before {
  content: '✓';
  color: #27ae60;
  font-weight: 700;
}

.pd-exc-col .pd-inc-exc-item::before {
  content: '×';
  color: #c0392b;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 0.9;
}

/* Sidebar Booking Card */
.pd-sidebar-sticky {
  position: sticky;
  top: 90px;
}

.pd-booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.pd-price-panel {
  text-align: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.pd-price-label {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pd-price-value {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin: 6px 0 2px;
}

.pd-price-unit {
  font-size: 0.8rem;
  color: var(--text-lighter);
}

.pd-booking-form h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.pd-booking-form .form-group {
  margin-bottom: 14px;
}

.pd-booking-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 6px;
}

.pd-booking-form input,
.pd-booking-form select,
.pd-booking-form textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-family: inherit;
  transition: var(--transition);
}

.pd-booking-form input:focus,
.pd-booking-form select:focus,
.pd-booking-form textarea:focus {
  border-color: var(--orange);
  outline: none;
  box-shadow: 0 0 0 3px var(--orange-bg);
}

.pd-submit-btn {
  width: 100%;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.pd-submit-btn:hover {
  background: #d85705;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 101, 10, 0.3);
}

.pd-whatsapp-btn {
  width: 100%;
  background: #25d366;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.pd-whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.pd-trust-badge {
  background: #fdf5f0;
  border: 1px dashed rgba(232, 101, 10, 0.25);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pd-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
}

.pd-trust-item span {
  font-size: 1.1rem;
}

/* Mobile Quick CTA */
.pd-mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 14px 20px;
  box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.1);
  z-index: 100;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pd-mobile-price {
  display: flex;
  flex-direction: column;
}

.pd-mobile-price span {
  font-size: 0.75rem;
  color: var(--text-lighter);
  text-transform: uppercase;
}

.pd-mobile-price h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-top: 2px;
}

.pd-mobile-btn {
  flex-grow: 1;
  background: var(--orange);
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .pd-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pd-sidebar-sticky {
    position: static;
  }
}

@media (max-width: 768px) {
  .pd-main-card {
    padding: 24px;
  }

  .pd-inc-exc-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pd-highlights-list {
    grid-template-columns: 1fr;
  }

  .pd-hero {
    height: 380px;
  }

  .pd-content-section {
    padding: 30px 0 100px;
  }

  .pd-mobile-cta-bar {
    display: flex;
  }

  .transit-grid {
    grid-template-columns: 1fr !important;
  }

  .associated-pkg-card {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 12px !important;
  }

  .associated-pkg-card div {
    text-align: left !important;
    width: 100%;
  }
}