@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS VARIABLES  */
:root {
  --orange: #F97316;
  --orange-dark: #C2410C;
  --orange-mid: #FB923C;
  --orange-light: #FFF7ED;
  --orange-soft: #FFEDD5;
  --orange-border: #FED7AA;
  --orange-shadow: rgba(249, 115, 22, 0.20);
  --orange-shadow-strong: rgba(249, 115, 22, 0.40);

  /* Text colours */
  --text: #0F0A05;
  --text2: #44403C;
  --text-muted: #78716C;
  --white: #ffffff;
  --bg: #FFFBF5;

  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-ui: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-pad: 80px 5%;
  --section-pad-sm: 50px 5%;

  /* Border radius */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  /* Transitions */
  --ease: 0.3s ease;
  --ease-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  max-width: 100vw;
  line-height: 1.6;
}

.f-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.f-brand-row .fbn {
  margin-bottom: 0;
}
.f-logo-small {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.15);
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* TYPOGRAPHY HELPERS */
.sl {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.st {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}

.ss {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 600px;
}

.sh {
  margin-bottom: 48px;
}

.sh.c {
  text-align: center;
}

.sh.c .ss {
  margin: 0 auto;
}

/*SECTION WRAPPER */
section {
  padding: var(--section-pad);
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  padding: 0 5%;
}

/* BUTTONS  */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.83rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 40px;
  transition: all var(--ease);
  box-shadow: 0 6px 22px var(--orange-shadow-strong);
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--orange-shadow-strong);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--orange);
  font-family: var(--font-ui);
  font-size: 0.83rem;
  font-weight: 700;
  padding: 13px 27px;
  border-radius: 40px;
  border: 2px solid var(--orange);
  transition: all var(--ease);
  cursor: pointer;
}

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

/* FADE-UP ON SCROLL ANIMATION */
.fu {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fu.vis {
  opacity: 1;
  transform: translateY(0);
}

/* NAVIGATION  */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5%;
  background: transparent;
  backdrop-filter: blur(0);
  transition: all var(--ease-slow);
}

/* Scrolled state */
nav.sc {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  padding: 12px 5%;
  border-bottom: 1px solid var(--orange-border);
  box-shadow: 0 2px 24px var(--orange-shadow);
}

header {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-ic {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.2);
  transition: border-color var(--ease-slow);
  flex-shrink: 0;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-ic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-ic i {
  font-size: 1.3rem;
  color: var(--orange);
}

nav.sc .logo-ic {
  border-color: var(--orange-border);
}

.logo-tx span:first-child {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.8px;
  line-height: 1;
  transition: color var(--ease-slow);
}

.logo-tx span:last-child {
  display: block;
  font-family: var(--font-body);
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 3px;
  transition: color var(--ease-slow);
}

.logo img {
  width: 60px;
  height: 60px;
}

.logo h1 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}

nav.sc .logo-tx span:first-child {
  color: var(--orange);
}

nav.sc .logo-tx span:last-child {
  color: var(--text-muted);
}

/* Nav links */
.nl {
  display: flex;
  gap: 26px;
  list-style: none;
}

.nl a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--ease);
}

/* Animated underline */
.nl a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: width var(--ease);
}

nav.sc .nl a {
  color: var(--text2);
}

nav.sc .nl a::after {
  background: var(--orange);
}

.nl a:hover,
.nl a.active {
  color: var(--white);
}

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

.nl a:hover::after,
.nl a.active::after {
  width: 100%;
}

/* Nav CTA button */
.ncta {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 30px;
  backdrop-filter: blur(8px);
  transition: all var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

nav.sc .ncta {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-color: transparent;
  box-shadow: 0 4px 16px var(--orange-shadow-strong);
}

.ncta:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

nav.sc .ncta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px var(--orange-shadow-strong);
}

/* Hamburger (mobile) */
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.ham span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--ease);
}

nav.sc .ham span {
  background: var(--orange);
}

/* Mobile menu */
.mob-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 16px 5% 22px;
  border-top: 2px solid var(--orange-border);
  z-index: 999;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

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

.mob-menu a {
  color: var(--text2);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 11px 0;
  border-bottom: 1px solid var(--orange-soft);
  display: block;
  transition: color var(--ease);
}

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

/* â”€â”€â”€ AWARDS STRIP   */
.aw-s {
  background: var(--text);
  padding: 18px 5%;
  overflow: hidden;
}

.aw-in {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.awi {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.awi i {
  color: var(--orange);
  font-size: 1rem;
}

/* â”€â”€â”€ FOOTER  */
footer {
  background: #0A0603;
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 5% 0;
  font-size: 0.83rem;
}

.fgg {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fgg > div:first-child {
  flex: 2 1 320px;
}

.fgg > div:not(:first-child) {
  flex: 1 1 140px;
}

/* Footer brand column */
.fbn {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.fbp {
  font-size: 0.8rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
}

/* Footer social icons */
.fsoc {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.fsb {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: all var(--ease);
}

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

/* Footer columns */
.fc h4 {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

/* .fc ul {
  display: flex;
  flex: 1 1 220px;   /* responsive flexible width */
.fc ul {
  min-width: 200px;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
}

*/ .fc ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.fc a,
.fc li {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  transition: color var(--ease);
}

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

/* Footer bottom bar */
.fbot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  flex-wrap: wrap;
  gap: 10px;
}

/* Certification badges in footer */
.cbg {
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: var(--orange-mid);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* â”€â”€â”€ PAGE HERO  */
.page-hero {
  background: linear-gradient(135deg, var(--text) 0%, #2D1A07 60%, var(--orange-dark) 100%);
  padding: 100px 5% 52px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12), transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.page-hero .breadcrumb {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--ease);
}

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

.page-hero .breadcrumb span:last-child {
  color: var(--orange-mid);
}

.page-hero .sl {
  color: var(--orange-mid);
}

.page-hero .st {
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.page-hero .ss {
  color: rgba(255, 255, 255, 0.65);
}

/* â”€â”€â”€ SECTION STYLES */
.bg-white {
  background: var(--white);
}

.bg-light {
  background: var(--bg);
}

.bg-orange {
  background: var(--orange-soft);
}

.cgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cc {
  background: var(--white);
  border: 1.5px solid var(--orange-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all var(--ease);
  text-decoration: none;
  color: inherit;
}

.cc:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px var(--orange-shadow);
}

.cic {
  font-size: 2rem;
  margin-bottom: 4px;
}

.ct {
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.cd {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* â”€â”€â”€ DETAIL SECTION */
.detail-s {
  padding: var(--section-pad);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.detail-card {
  background: var(--white);
  border: 1.5px solid var(--orange-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow var(--ease);
}

.detail-card:hover {
  box-shadow: 0 8px 28px var(--orange-shadow);
}

.detail-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--orange-soft);
}

.detail-card-icon {
  font-size: 1.8rem;
}

.detail-card-title {
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.detail-card-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
}

.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text2);
  line-height: 1.5;
}

.detail-list li i {
  color: var(--orange);
  font-size: 0.4rem;
  margin-top: 6px;
  flex-shrink: 0;
}

/* â”€â”€â”€ DESTINATION GRID  */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.dest-card {
  background: var(--white);
  border: 1.5px solid var(--orange-border);
  border-radius: var(--radius);
  padding: 20px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all var(--ease);
  text-decoration: none;
  color: inherit;
}

.dest-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--orange-shadow);
}

.dest-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.dest-name {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.dest-info {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.dest-price {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
}

/* â”€â”€â”€ PACKAGES PAGE TABS */
.pkg-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.ptab {
  background: var(--white);
  border: 1.5px solid var(--orange-border);
  color: var(--text2);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--ease);
  user-select: none;
}

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

/* Package cards grid */
.pkg-grid,
.tour-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.pkg-card {
  background: var(--white);
  border: 1.5px solid var(--orange-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px var(--orange-shadow);
  border-color: var(--orange);
}

.pc-photo {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--orange);
}

.pc-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pkg-card:hover .pc-photo img {
  transform: scale(1.05);
}

.pc-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pc-badge.hot {
  background: var(--orange);
  color: var(--white);
}

.pc-badge.amber {
  background: #F59E0B;
  color: var(--white);
}

.pc-badge.blue {
  background: #3B82F6;
  color: var(--white);
}

.pc-badge.green {
  background: #10B981;
  color: var(--white);
}

.pc-rating {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  color: #FCD34D;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.pc-dest {
  position: absolute;
  bottom: 12px;
  left: 14px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pc-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pc-title {
  font-family: var(--font-ui);
  font-size: 0.97rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}

.pc-hi {
  display: flex;
  flex-direction: column;
  gap: 7px;
  list-style: none;
}

.pc-hi li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.76rem;
  color: var(--text2);
  line-height: 1.5;
}

.pc-hi li i {
  color: var(--orange);
  font-size: 0.75rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.pc-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pc-meta span {
  background: var(--orange-light);
  color: var(--orange);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px 22px;
  border-top: 1px solid var(--orange-soft);
  margin-top: auto;
}

.pc-price-lbl {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 2px;
}

.pc-price {
  font-family: var(--font-ui);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--orange);
}

.pc-price sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pc-book {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 30px;
  transition: all var(--ease);
  box-shadow: 0 4px 14px var(--orange-shadow);
}

.pc-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px var(--orange-shadow-strong);
  color: var(--white);
}

/* â”€â”€â”€ GALLERY PAGE */
.gal-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-light);
  border: 1.5px solid var(--orange-border);
  color: var(--orange);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.gal-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}

.gf-pill {
  background: var(--bg);
  border: 1.5px solid var(--orange-border);
  color: var(--text2);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--ease);
  user-select: none;
}

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

.gg {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}

.gi {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--orange);
}

.gi img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gi:hover img {
  transform: scale(1.08);
}

.gi-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 20px 12px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  transform: translateY(100%);
  transition: transform var(--ease);
}

.gi:hover .gi-label {
  transform: translateY(0);
}

.gov {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(249, 115, 22, 0.25);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--ease);
}

.gi:hover .gov {
  opacity: 1;
}

.gov-inner {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1rem;
  transform: scale(0.8);
  transition: transform var(--ease);
}

.gi:hover .gov-inner {
  transform: scale(1);
}

/* Lightbox */
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.93);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lb-overlay.open {
  display: flex;
}

.lb-box {
  position: relative;
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.lb-box img {
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  transition: opacity 0.2s ease;
  margin: 0 auto;
  max-width: 100%;
}

.lb-close {
  position: absolute;
  top: -44px;
  right: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color var(--ease);
  background: none;
  border: none;
}

.lb-close:hover {
  color: var(--white);
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-nav:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.lb-prev {
  left: -60px;
}

.lb-next {
  right: -60px;
}

.lb-caption {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* â”€â”€â”€ WHY US PAGE */
.wgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}

.wc {
  background: var(--white);
  border: 1.5px solid var(--orange-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--ease);
}

.wc:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px var(--orange-shadow);
}

.wic {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.wic i {
  font-size: 1.1rem;
  color: var(--white);
}

.wtt {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.wd {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Numbers section */
.nums-s {
  background: linear-gradient(135deg, var(--text) 0%, #2D1A07 100%);
  padding: var(--section-pad);
  text-align: center;
}

.nums-s .st,
.nums-s .sl {
  color: var(--white);
}

.nums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 160px), 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 32px auto 0;
}

.num-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: var(--radius);
  padding: 28px 16px;
  transition: background var(--ease);
}

.num-card:hover {
  background: rgba(249, 115, 22, 0.1);
}

.num-n {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--orange-mid);
  line-height: 1;
  margin-bottom: 8px;
}

.num-l {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.5px;
}

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 18px var(--orange-shadow);
  transition: transform var(--ease);
}

.step-card:hover {
  transform: translateY(-4px);
}

.step-num {
  position: absolute;
  top: -12px;
  left: 24px;
  width: 28px;
  height: 28px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.step-title {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* â”€â”€â”€ REVIEWS PAGE */
.rating-box {
  background: var(--white);
  border: 1.5px solid var(--orange-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
}

.rating-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.rating-stars {
  font-size: 1.5rem;
  color: #F59E0B;
  margin: 8px 0;
  letter-spacing: 4px;
}

.rating-sub {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.rating-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-align: left;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bar-lbl {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  width: 24px;
  flex-shrink: 0;
}

.bar-track {
  flex: 1;
  height: 6px;
  background: var(--orange-soft);
  border-radius: 6px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 6px;
}

.bar-pct {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  color: var(--text-muted);
  width: 30px;
  flex-shrink: 0;
}

.trgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 20px;
}

.trc {
  background: var(--white);
  border: 1.5px solid var(--orange-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--ease);
}

.trc:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 26px var(--orange-shadow);
  transform: translateY(-3px);
}

.tr-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--orange-light);
  color: var(--orange);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.trs {
  color: #F59E0B;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.trtx {
  font-size: 0.82rem;
  color: var(--text2);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 16px;
}

.trau {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--orange-soft);
}

.trav {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.trn {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

.trt {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* â”€â”€â”€ GOOGLE REVIEW CTA â”€â”€â”€ */
.google-review-cta {
  margin-top: 48px;
  background: linear-gradient(135deg, #0A0603 0%, #1a0f05 50%, #2D1A07 100%);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}

.google-review-cta::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15), transparent 70%);
  top: -100px;
  right: -80px;
  pointer-events: none;
}

.google-review-cta::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 133, 244, 0.08), transparent 70%);
  bottom: -80px;
  left: -60px;
  pointer-events: none;
}

.gr-content {
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.gr-left {
  flex: 1;
}

.gr-center {
  justify-content: center;
}

.gr-title-sm {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.gr-google-text {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}

.gr-highlights {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.gr-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 18px;
  border-radius: 30px;
  transition: all var(--ease);
}

.gr-highlight-item:hover {
  background: rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-2px);
}

.gr-highlight-item i {
  color: var(--orange);
  font-size: 0.9rem;
}

.gr-highlight-item span {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.gr-qr-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #4285F4, #1a73e8);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.gr-icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.gr-stars {
  color: #F59E0B;
  font-size: 1.2rem;
  letter-spacing: 3px;
}

.gr-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
}

.gr-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 500px;
}

.gr-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.gr-btn {
  background: linear-gradient(135deg, #4285F4, #1a73e8) !important;
  box-shadow: 0 6px 22px rgba(66, 133, 244, 0.35) !important;
}

.gr-btn:hover {
  box-shadow: 0 12px 32px rgba(66, 133, 244, 0.5) !important;
}

.gr-btn-outline {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: var(--white) !important;
}

.gr-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: var(--orange) !important;
  color: var(--orange) !important;
}

.gr-right {
  flex-shrink: 0;
}

.gr-qr-wrapper {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  transition: transform var(--ease);
}

.gr-qr-wrapper:hover {
  transform: translateY(-4px) scale(1.02);
}

.gr-qr-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 8px;
}

.gr-qr-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.gr-qr-label i {
  color: var(--orange);
}

/* Google Review CTA responsive */
@media (max-width: 768px) {
  .google-review-cta {
    padding: 32px 24px;
  }

  .gr-content {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .gr-icon-row {
    justify-content: center;
  }

  .gr-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .gr-buttons {
    justify-content: center;
  }

  .gr-highlights {
    justify-content: center;
  }

  .gr-qr-img {
    width: 150px;
    height: 150px;
  }
}

.plat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.plat-card {
  background: var(--white);
  border: 1.5px solid var(--orange-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--ease);
}

.plat-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 26px var(--orange-shadow);
}

.plat-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.plat-name {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.plat-rating {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 5px;
}

.plat-count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* â”€â”€â”€ CONTACT PAGE  */
.cwp {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.ci-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ci-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border: 1.5px solid var(--orange-border);
  border-radius: var(--radius);
  transition: all var(--ease);
  text-decoration: none;
  color: inherit;
}

.ci-card:hover {
  border-color: var(--orange);
  transform: translateX(4px);
  box-shadow: 0 6px 20px var(--orange-shadow);
}

.ci-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.ci-lbl {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.ci-val {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.cf {
  background: var(--white);
  border: 1.5px solid var(--orange-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 6px 30px var(--orange-shadow);
}

.cft {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--orange-soft);
}

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

.fg {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.fg label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text2);
}

.fg input,
.fg select,
.fg textarea {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--orange-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  outline: none;
  transition: border-color var(--ease);
  width: 100%;
}

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

.fg textarea {
  min-height: 100px;
  resize: vertical;
}

.bsub {
  width: 100%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 15px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: all var(--ease);
  box-shadow: 0 6px 22px var(--orange-shadow-strong);
  margin-top: 8px;
}

.bsub:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--orange-shadow-strong);
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 24px;
  max-width: 620px;
  margin: 0 auto;
  justify-content: center;
}

.staff-card {
  background: var(--white);
  border: 1.5px solid var(--orange-border);
  border-radius: 20px;
  padding: 36px 28px 28px;
  text-align: center;
  transition: all var(--ease);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.07);
  position: relative;
  overflow: hidden;
}

.staff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  border-radius: 20px 20px 0 0;
}

.staff-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 14px 36px var(--orange-shadow);
}

.staff-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--orange-soft);
  border: 2.5px solid var(--orange-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
}

.staff-name {
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}

.staff-role {
  font-size: 0.74rem;
  color: var(--orange);
  font-weight: 600;
  font-family: var(--font-ui);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.staff-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 30px;
  transition: all var(--ease);
  box-shadow: 0 4px 14px var(--orange-shadow);
}

.staff-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px var(--orange-shadow-strong);
  color: var(--white);
}

/* â”€â”€â”€ RESPONSIVE BREAKPOINTS */
@media (max-width: 1060px) {

  /* .fgg {
    grid-template-columns: 1fr 1fr;
  } */
  /* .fgg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
 } */
  .fgg {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    text-align: center;
  }
}

@media (max-width: 960px) {

  .nl,
  .ncta {
    display: none;
  }

  .ham {
    display: flex;
  }

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

  [style*="grid-template-columns:280px"] {
    display: block !important;
  }

  .rating-box {
    margin-bottom: 28px;
  }
}

@media (max-width: 700px) {
  section {
    padding: var(--section-pad-sm);
  }

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

  /* .fgg {
    grid-template-columns: 1fr;
  } */
  .fgg {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
  }

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

  .lb-prev {
    left: -10px;
  }

  .lb-next {
    right: -10px;
  }
}

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: brightness(0.87) saturate(1.3) contrast(1.06);
  transform: scale(1);
  transition: transform 9s ease-in-out;
}

.hero-slide.active img {
  transform: scale(1.08);
}

.hero-dots {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 200px;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  /* FIXED */
  opacity: 0.6;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-dot.active {
  background: #FB923C;
  opacity: 1;
  transform: scale(1.2);
}

/* SINGLE CLEAN MEDIA QUERY */
@media (max-width: 600px) {

  .hero-dots {
    bottom: 65px;
    gap: 10px;
    max-width: 140px;
  }

  .hero-dot {
    width: 4px;
    /* FINAL mobile size */
    height: 4px;
    opacity: 0.7;
  }

  .hero-dot.active {
    transform: scale(1.2);
  }

}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.40) 50%,
      rgba(0, 0, 0, 0.15) 100%);
  z-index: 1;
}

.hero-color-wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(110, 35, 5, .5) 0%, transparent 38%);
  pointer-events: none;
}

.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 210px;
  z-index: 2;
  background: linear-gradient(to top, #fff 0%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1340px;
  margin: auto;
  width: 100%;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-left {
  padding-top: 30px;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  animation: fadeInDown .8s .1s ease both;
}

.hero-logo-ring {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2.5px solid rgba(251, 146, 60, .85);
  padding: 4px;
  background: rgba(0, 0, 0, .4);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 0 6px rgba(251, 146, 60, .2), 0 8px 32px rgba(0, 0, 0, .5);
  overflow: hidden;
  flex-shrink: 0;
  transition: .4s;
}

.hero-logo-ring:hover {
  transform: scale(1.06);
  box-shadow: 0 0 0 8px rgba(251, 146, 60, .3), 0 12px 40px rgba(0, 0, 0, .6);
}

.hero-logo-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hero-brand-text {
  display: flex;
  flex-direction: column;
}

.hero-brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  line-height: 1;
}

.hero-brand-name span {
  color: #FB923C;
  text-shadow: 0 0 20px rgba(251, 146, 60, .6);
}

.hero-brand-tagline {
  font-family: 'Inter', sans-serif;
  font-size: .62rem;
  color: rgba(255, 255, 255, .6);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 6px;
}

.hero-jd-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(251, 146, 60, .18);
  border: 1.5px solid rgba(251, 146, 60, .55);
  color: #FB923C;
  font-family: 'Poppins', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 30px;
  backdrop-filter: blur(6px);
  letter-spacing: .5px;
  margin-top: 10px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 4.8vw, 4.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .6);
  animation: fadeInUp .9s .3s ease both;
}

.hero-headline em {
  font-style: italic;
  color: #FB923C;
  text-shadow: 0 0 32px rgba(251, 146, 60, .55);
}

.hero-dest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  animation: fadeInUp .9s .4s ease both;
}

.hero-dest-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .82);
  font-family: 'Poppins', sans-serif;
  font-size: .65rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}

.hero-dest-tag i {
  color: #FB923C;
  font-size: .6rem;
}

.hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: .93rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 30px;
  animation: fadeInUp .9s .45s ease both;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  animation: fadeInUp .9s .55s ease both;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #F97316, #DC4E00);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 40px;
  transition: all .3s ease;
  box-shadow: 0 6px 28px rgba(249, 115, 22, .55);
  text-decoration: none;
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(249, 115, 22, .65);
  color: #fff;
}

.hero-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, .15);
  border: 1.5px solid rgba(37, 211, 102, .55);
  color: #4ade80;
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 40px;
  transition: all .3s ease;
  backdrop-filter: blur(8px);
  text-decoration: none;
}

.hero-btn-wa:hover {
  background: rgba(37, 211, 102, .28);
  transform: translateY(-3px);
  color: #4ade80;
}

.hero-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .35);
  color: rgba(255, 255, 255, .85);
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 40px;
  transition: all .3s ease;
  backdrop-filter: blur(8px);
  text-decoration: none;
}

.hero-btn-call:hover {
  background: rgba(255, 255, 255, .2);
  transform: translateY(-3px);
  color: #fff;
}

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  animation: fadeInUp .9s .65s ease both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-right: 28px;
}

.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 4px;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, .18);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #FB923C;
  line-height: 1;
}

.stat-lbl {
  font-family: 'Poppins', sans-serif;
  font-size: .61rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-right {
  position: relative;
  height: 500px;
  animation: fadeInUp .9s .4s ease both;
}

.hero-right::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, .18) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  transition: transform .5s cubic-bezier(.34, 1.4, .64, 1), box-shadow .4s ease;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.18) brightness(.9);
  transition: transform .8s cubic-bezier(.25, .46, .45, .94);
}

.hero-card:hover img {
  transform: scale(1.07);
}

.hero-card-1 {
  width: 65%;
  height: 430px;
  right: 0;
  top: 10px;
  z-index: 3;
  border-radius: 26px;
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, .1),
    0 2px 0 rgba(255, 255, 255, .07) inset,
    0 24px 55px rgba(0, 0, 0, .60),
    0 65px 100px rgba(0, 0, 0, .38),
    0 0 70px rgba(249, 115, 22, .10);
  animation: cardFloat1 10s ease-in-out infinite;
}

.hero-card-1:hover {
  transform: translateY(-8px) rotate(-1.5deg) scale(1.01) !important;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .72), 0 0 90px rgba(249, 115, 22, .18) !important;
}

@keyframes cardFloat1 {

  0%,
  100% {
    transform: translateY(0) rotate(-1.5deg);
  }

  50% {
    transform: translateY(-18px) rotate(-1.5deg);
  }
}

.hc1-rating-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  color: #1a1a1a;
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  padding: 7px 14px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .22);
}

.hc1-rating-badge i {
  color: #F59E0B;
  font-size: .7rem;
}

.hc1-price-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 10;
  background: linear-gradient(135deg, #F97316, #DC4E00);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: .74rem;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 30px;
  box-shadow: 0 6px 22px rgba(249, 115, 22, .65);
  letter-spacing: .3px;
}

.hero-card-2 {
  width: 46%;
  height: 175px;
  left: 2%;
  bottom: 6px;
  z-index: 6;
  border-radius: 22px;
  border: 2.5px solid rgba(255, 255, 255, .24);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, .16) inset,
    0 18px 46px rgba(0, 0, 0, .78),
    0 55px 88px rgba(0, 0, 0, .44),
    0 0 30px rgba(249, 115, 22, .12);
  animation: cardFloat2 10s 3.5s ease-in-out infinite;
}

.hero-card-2:hover {
  transform: translateY(-6px) rotate(2deg) scale(1.03) !important;
  box-shadow: 0 32px 70px rgba(0, 0, 0, .84), 0 0 50px rgba(249, 115, 22, .20) !important;
}

@keyframes cardFloat2 {

  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }

  50% {
    transform: translateY(-11px) rotate(2deg);
  }
}

.hc2-pin {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: 1.5px solid rgba(255, 255, 255, .30);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FB923C;
  font-size: .82rem;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .35);
}

.scroll-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255, 255, 255, .55);
  font-size: 1.4rem;
  animation: bounce 2.2s ease-in-out infinite;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.scroll-arrow span {
  font-family: 'Poppins', sans-serif;
  font-size: .54rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: .55;
  }

  50% {
    transform: translateX(-50%) translateY(9px);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* â”€â”€ TOUR STRIP â”€â”€ */
.tour-strip {
  padding: 80px 5%;
  background: var(--bg);
}

.tour-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.tour-strip-card {
  background: var(--white);
  border: 1.5px solid var(--orange-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
}

.tour-strip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px var(--orange-shadow);
  border-color: var(--orange);
}

.tsc-photo {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.tsc-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
  filter: saturate(1.12);
}

.tour-strip-card:hover .tsc-photo img {
  transform: scale(1.07);
}

.tsc-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-ui);
  font-size: .65rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 2;
}

.tsc-body {
  padding: 18px 20px;
}

.tsc-title {
  font-family: var(--font-ui);
  font-size: .92rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.tsc-meta {
  font-size: .75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.tsc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tsc-price {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--orange);
}

.tsc-price span {
  font-size: .68rem;
  color: var(--text-muted);
  font-weight: 400;
}

.tsc-arrow {
  width: 36px;
  height: 36px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: .85rem;
  transition: all var(--ease);
}

.tour-strip-card:hover .tsc-arrow {
  background: var(--orange);
  color: var(--white);
}

/* â”€â”€ HOME WHY â”€â”€ */
.home-why {
  padding: 90px 5%;
  background: linear-gradient(180deg, #ffffff, #fff5eb);
}

.home-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: auto;
}

.hw-card {
  background: white;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  transition: 0.35s;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #ffe2c8;
}

.hw-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(255, 120, 0, 0.25);
  border-color: #ff9c4d;
}

@media (min-width: 960px) {
  .home-why-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .home-why-grid .hw-card:nth-child(1) {
    grid-column: 1 / span 2;
  }

  .home-why-grid .hw-card:nth-child(2) {
    grid-column: 3 / span 2;
  }

  .home-why-grid .hw-card:nth-child(3) {
    grid-column: 5 / span 2;
  }

  .home-why-grid .hw-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .home-why-grid .hw-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

.hw-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px auto;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  box-shadow: 0 12px 25px rgba(255, 120, 0, 0.35);
  transition: all .35s ease;
}

.hw-card:hover .hw-icon {
  transform: rotate(6deg) scale(1.12);
}

.hw-title {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
  letter-spacing: .3px;
}

.hw-desc {
  font-size: .82rem;
  color: #666;
  line-height: 1.7;
}

/* â”€â”€ HOME REVIEWS â”€â”€ */
.home-reviews {
  padding: 80px 5%;
  background: var(--bg);
}

.review-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* â”€â”€ HOME CTA â”€â”€ */
.home-cta {
  background: linear-gradient(135deg, #0F0A05 0%, #2D1A07 45%, #7C2D12 100%);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.home-cta::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, .18), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.home-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.home-cta .sl {
  color: #FB923C;
}

.home-cta .st {
  color: var(--white);
}

.home-cta .ss {
  color: rgba(255, 255, 255, .6);
  margin: 0 auto 38px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* â”€â”€ NOTIFICATION POPUP â”€â”€ */
.notif-popup {
  position: fixed;
  bottom: 104px;
  left: 24px;
  z-index: 800;
  background: var(--white);
  border: 1.5px solid var(--orange-border);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 300px;
  animation: slideInLeft .5s ease both, fadeOut .5s ease 6s both;
}

.notif-icon {
  width: 36px;
  height: 36px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: .95rem;
  flex-shrink: 0;
}

.notif-text {
  font-family: var(--font-ui);
  font-size: .72rem;
  color: var(--text);
}

.notif-text strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
}

.notif-text span {
  color: var(--text-muted);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    pointer-events: none;
  }
}

/* â”€â”€ FLOATING SIDE CONTACT BAR â”€â”€ */
.side-contact {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9999;
  transition: transform .3s ease;
}

.side-contact.hidden {
  transform: translateY(-50%) translateX(-50px);
}

.side-toggle {
  position: absolute;
  right: -22px;
  top: 0;
  width: 28px;
  height: 48px;
  background: #fff;
  border: none;
  border-radius: 0 8px 8px 0;
  color: #333;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 0 10px rgba(0, 0, 0, 0.2);
  transition: all .2s ease;
}

.side-label {
  background: #6a0dad;
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  padding: 12px 8px;
  width: 40px;
}

.side-btn {
  width: 40px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
}

.side-btn:hover {
  opacity: .85;
}

.side-wa {
  background: #25D366;
}

.side-call {
  background: #7B2FBE;
}

/* â”€â”€ HERO RESPONSIVE â”€â”€ */
@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .hero-right {
    display: none;
  }

  .hero-headline {
    font-size: 3rem;
  }
}

@media (max-width: 600px) {
  .hero-stats {
    gap: 18px;
  }

  .hero-headline {
    font-size: 2.4rem;
  }

  .hero-btn-primary,
  .hero-btn-wa,
  .hero-btn-call {
    font-size: .78rem;
    padding: 11px 18px;
  }
}

/* â”€â”€ PACKAGES PAGE â”€â”€ */
body.packages-page nav {
  background: linear-gradient(120deg, #1a0c02, #3b1504, #b53b0a);
}

body.packages-page nav:not(.sc) .nl a,
body.packages-page nav:not(.sc) .ncta {
  color: rgba(255, 255, 255, .9);
}

body.packages-page nav.sc {
  background: rgba(255, 255, 255, .97);
}

.pkg-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

/* â”€â”€ FILTERS â”€â”€ */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}

.f-btn {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--orange-border);
  background: var(--white);
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}

.f-btn.active,
.f-btn:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

/* â”€â”€ QUICK-FIND DROPDOWN â”€â”€ */
.quick-find-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.quick-find-label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.quick-find-label i {
  color: var(--orange);
}

.quick-find-select {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--orange-border);
  border-radius: 30px;
  padding: 10px 36px 10px 18px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.25s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F97316' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  min-width: 260px;
  box-shadow: 0 2px 12px rgba(249, 115, 22, 0.08);
}

.quick-find-select:focus,
.quick-find-select:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 18px rgba(249, 115, 22, 0.15);
}

/* â”€â”€ DOMESTIC CARD GRID â”€â”€ */
.pkg-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

/* â”€â”€ LONE CARD CENTERING â€” applied via JS â”€â”€
   Sits in middle column (col 2) â€” same size as sibling cards.   */
.lone-card {
  grid-column: 2 / 3 !important;
  width: 100% !important;
  justify-self: stretch !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* â”€â”€ TOUR CARD â”€â”€ */
.tc {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(249, 115, 22, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  /* Fill grid cell */
}

.tc:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.3);
}

/* Unified Grid for all package sections */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  width: 100%;
  padding: 20px 0;
}

.tc-img {
  position: relative;
  height: 220px;
  /* Taller image for better portrait feel */
  overflow: hidden;
}

.tc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.tc:hover .tc-img img {
  transform: scale(1.07);
}

.tc-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .5) 100%);
}

.tc-rank-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  background: linear-gradient(135deg, #F97316, #EA580C);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.tc-star-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(0, 0, 0, .5);
  color: #ffd060;
  backdrop-filter: blur(6px);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tc-loc {
  position: absolute;
  bottom: 10px;
  left: 12px;
  z-index: 2;
  color: white;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.tc-loc i {
  color: #ff8c50;
  font-size: 11px;
}

.tc-body {
  padding: 20px 22px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tc-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0F0A05;
  line-height: 1.3;
  margin-bottom: 12px;
}

.tc-meta-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.tc-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--orange-light);
  color: var(--orange-dark);
  border-radius: 6px;
  padding: 4px 9px;
  font-size: 11.5px;
  font-weight: 600;
}

.tc-tag.green {
  background: #edf7f1;
  color: #1a7a40;
}

.tc-tag.blue {
  background: var(--orange-light);
  color: var(--orange-dark);
}

.tc-tag.purple {
  background: #f5eeff;
  color: #6c3fc5;
}

.tc-incl {
  border-top: 1px solid var(--orange-soft);
  padding: 10px 0 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  flex: 1;
  /* fill remaining body space â†’ footer stays at bottom */
  align-content: start;
  /* items stay top-aligned, don't stretch vertically */
}

.tc-incl-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--text2);
  font-weight: 500;
}

.tc-incl-item i {
  color: var(--orange);
  font-size: 10px;
  flex-shrink: 0;
}

.tc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 22px 20px;
  margin-top: auto;
  border-top: 1px solid rgba(249, 115, 22, 0.08);
}

.tc-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #0F0A05;
  line-height: 1;
}

.tc-price .old-price {
  display: block;
  text-decoration: line-through;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.tc-price strong {
  font-size: 1.2rem;
  font-weight: 800;
  display: block;
  color: #0F0A05;
}

.tc-price .per {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 400;
}

.tc-view-btn {
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 9px 18px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-ui);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .15s, transform .15s;
}

.tc-view-btn:hover {
  background: var(--orange-dark);
  transform: scale(1.03);
}

.tc-discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff3b30;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 3;
}

/* â”€â”€ ONE-DAY SECTION DIVIDER â”€â”€ */
.oneday-section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 64px 0 36px;
}

.oneday-section-line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--orange-border), transparent);
}

.oneday-section-label {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, #fff7f0, #ffffff);
  border: 1.5px solid var(--orange-border);
  border-radius: 50px;
  padding: 14px 30px;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.10);
  white-space: nowrap;
}

.oneday-section-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.38);
}

.oneday-section-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 3px;
}

.oneday-section-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

/* â”€â”€ ONE DAY GRID â”€â”€ */
.oneday-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

/* â”€â”€ INTERNATIONAL SECTION DIVIDER â”€â”€ */
.intl-section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 64px 0 36px;
}

.intl-section-line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--orange-border), transparent);
}

.intl-section-label {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, #fff7f0, #ffffff);
  border: 1.5px solid var(--orange-border);
  border-radius: 50px;
  padding: 14px 30px;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.10);
  white-space: nowrap;
}

.intl-section-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.38);
}

.intl-section-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 3px;
}

.intl-section-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

/* â”€â”€ INTERNATIONAL CARD GRID â”€â”€
   2 cards, centred on page, same width as domestic cards in a 3-col grid.
   We use a max-width that equals 2 columns of the domestic grid.          */
.intl-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
  max-width: calc(66.666% - 7px) !important;
  /* = 2 of 3 cols */
  margin: 0 auto !important;
  align-items: stretch !important;
}

/* Same image height as domestic */
.intl-grid .tc-img {
  height: 195px !important;
}

/* International lone card â€” centre in its 2-col grid */
.intl-grid .lone-card {
  grid-column: 1 / -1 !important;
  max-width: calc(50% - 11px) !important;
  justify-self: center !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* "Flight Extra" note â€” plain style */
.intl-grid .tc-price .old-price {
  background: none !important;
  color: var(--text-muted) !important;
  border-radius: 0 !important;
  padding: 0 !important;
  display: block !important;
  text-decoration: none !important;
  font-size: 0.72rem !important;
  font-weight: 500 !important;
}

/* â”€â”€ MODAL â”€â”€ */
.modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20, 10, 0, .55);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-bg.show {
  display: flex;
}

.modal {
  background: white;
  border-radius: 20px;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
  animation: popIn .25s ease;
}

@keyframes popIn {
  from {
    transform: scale(.93) translateY(20px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.modal-hero {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .1), rgba(0, 0, 0, .6));
}

.modal-hero-text {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 60px;
  z-index: 2;
}

.modal-hero-text h2 {
  font-size: 20px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .4);
}

.modal-hero-text .loc {
  color: rgba(255, 255, 255, .85);
  font-size: 12.5px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(6px);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}

.close-btn:hover {
  background: var(--orange);
}

.m-tabs {
  display: flex;
  border-bottom: 1px solid var(--orange-soft);
  padding: 0 20px;
}

.m-tab {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all .15s;
  white-space: nowrap;
  font-family: var(--font-ui);
}

.m-tab.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.m-panel {
  display: none;
  padding: 20px;
}

.m-panel.active {
  display: block;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.ov-box {
  background: var(--bg);
  border-radius: 10px;
  padding: 12px 14px;
  border: 1px solid var(--orange-border);
}

.ov-box .label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px;
  font-family: var(--font-ui);
}

.ov-box .val {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
}

.ov-box .val i {
  color: var(--orange);
  font-size: 12px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin: 14px 0 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
}

.section-label i {
  color: var(--orange);
}

.chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip {
  padding: 5px 10px;
  border-radius: 7px;
  font-size: 11.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-ui);
}

.chip.orange {
  background: var(--orange-light);
  color: var(--orange-dark);
}

.chip.green {
  background: #edf7f1;
  color: #1a7a40;
}

.gift-box {
  background: linear-gradient(135deg, var(--orange-light), var(--orange-soft));
  border: 1px dashed var(--orange-border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12.5px;
  color: #7a4f00;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
}

.gift-box i {
  color: var(--orange);
  margin-top: 2px;
  flex-shrink: 0;
}

/* Itinerary */
.day-line {
  position: relative;
  padding-left: 36px;
  margin-bottom: 18px;
}

.day-line::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 22px;
  bottom: -12px;
  width: 2px;
  background: var(--orange-soft);
}

.day-line:last-child::before {
  display: none;
}

.day-dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px var(--orange-soft);
  font-family: var(--font-ui);
}

.day-head {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
  font-family: var(--font-ui);
}

.day-head .d-label {
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 5px;
  padding: 2px 7px;
  font-size: 10.5px;
  font-weight: 700;
  font-family: var(--font-ui);
}

.day-desc {
  font-size: 12.5px;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 8px;
}

.stops {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.stop {
  background: var(--orange-soft);
  color: #7a4f1e;
  border-radius: 5px;
  padding: 3px 8px;
  font-size: 11.5px;
  font-weight: 600;
  font-family: var(--font-ui);
}

/* Modal Footer */
.modal-footer {
  position: sticky;
  bottom: 0;
  background: white;
  border-top: 1px solid var(--orange-soft);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0 0 20px 20px;
}

.m-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  font-family: var(--font-ui);
}

.m-price small {
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
}

.book-btn {
  background: var(--orange);
  color: white;
  border: none;
  padding: 11px 22px;
  border-radius: 10px;
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background .15s;
}

.book-btn:hover {
  background: var(--orange-dark);
}

.modal::-webkit-scrollbar {
  width: 5px;
}

.modal::-webkit-scrollbar-thumb {
  background: var(--orange-border);
  border-radius: 10px;
}

/* CONTACT PAGE */
.contact-section {
  padding: 70px 5%;
  background: var(--bg);
}

.map-section {
  padding: 60px 5%;
  background: var(--white);
}

.map-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.map-info-box {
  background: var(--white);
  border: 1.5px solid var(--orange-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.map-info-title {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--orange-soft);
}

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

.map-info-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.map-info-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.map-info-value {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

.map-frame-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--orange-border);
  box-shadow: 0 6px 24px var(--orange-shadow);
  min-height: 340px;
}

.map-frame-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  transition: transform 0.3s ease;
}

.map-frame-wrap:hover iframe {
  transform: scale(1.02);
}

/* ───── RESPONSIVE IMPROVEMENTS ───── */

/* Laptop / Medium screens */
@media (max-width: 1024px) {
  .map-wrap {
    grid-template-columns: 1fr 1.5fr;
    gap: 24px;
  }

  .map-frame-wrap {
    min-height: 300px;
  }

  .map-frame-wrap iframe {
    min-height: 300px;
  }
}

/* Tablet View */
@media (max-width: 768px) {
  .map-wrap {
    grid-template-columns: 1fr;
    /* Stack */
    gap: 20px;
  }

  .map-info-box {
    padding: 22px 18px;
  }

  .map-frame-wrap {
    min-height: 280px;
  }

  .map-frame-wrap iframe {
    min-height: 280px;
  }
}

/* Mobile View */
@media (max-width: 480px) {

  .map-section {
    padding: 40px 4%;
  }

  .map-wrap {
    gap: 16px;
  }

  .map-info-box {
    padding: 18px 14px;
    gap: 16px;
  }

  .map-info-title {
    font-size: 0.9rem;
    padding-bottom: 12px;
  }

  .map-info-item {
    gap: 10px;
  }

  .map-info-icon {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  .map-info-label {
    font-size: 0.65rem;
  }

  .map-info-value {
    font-size: 0.78rem;
  }

  .map-frame-wrap {
    min-height: 240px;
  }

  .map-frame-wrap iframe {
    min-height: 240px;
  }
}

/* ENQUIRY POPUP */
.enq-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.enq-popup.show {
  display: flex;
}

.enq-box {
  background: #fff;
  width: 92%;
  max-width: 420px;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  animation: popup .35s ease;
}

@keyframes popup {
  from {
    transform: scale(.85);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.enq-close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.enq-box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.enq-box input,
.enq-box textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.enq-box button {
  background: #F97316;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BOOKING POPUP
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Overlay */
.booking-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 6, 2, 0.65);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.booking-overlay.show {
  display: flex;
}

/* Main box */
.booking-box {
  display: grid;
  grid-template-columns: 300px 1fr;
  width: 100%;
  max-width: 820px;
  max-height: 92vh;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
  animation: bookingPopIn .3s cubic-bezier(.34, 1.4, .64, 1) both;
}

@keyframes bookingPopIn {
  from {
    transform: scale(.88) translateY(24px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* â”€â”€ Left decorative panel â”€â”€ */
.booking-left {
  background: linear-gradient(160deg, #C2410C 0%, #F97316 50%, #fb923c 100%);
  padding: 40px 28px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.booking-left::before {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  top: -80px;
  right: -80px;
}

.booking-left::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  bottom: -50px;
  left: -50px;
}

.booking-left-inner {
  position: relative;
  z-index: 1;
}

.booking-brand {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}

.booking-left-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}

.booking-left-title em {
  font-style: italic;
  color: #fff3e0;
}

.booking-left-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 24px;
}

.booking-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.booking-perk {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.booking-perk i {
  color: #fff3e0;
  font-size: 0.8rem;
}

.booking-contact-strip {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bcs-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 30px;
  text-decoration: none;
  transition: background .2s;
  backdrop-filter: blur(4px);
}

.bcs-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.bcs-wa {
  background: rgba(37, 211, 102, 0.25);
  border-color: rgba(37, 211, 102, 0.5);
}

.bcs-wa:hover {
  background: rgba(37, 211, 102, 0.42);
}

/* â”€â”€ Right form panel â”€â”€ */
.booking-right {
  background: #fff;
  padding: 36px 32px 28px;
  overflow-y: auto;
  position: relative;
}

.booking-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--orange-border);
  color: var(--text-muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
}

.booking-close:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.booking-form-header {
  margin-bottom: 22px;
}

.booking-form-header h3 {
  font-family: var(--font-ui);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.booking-pkg-label {
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--orange);
  background: var(--orange-light);
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
}

/* Form rows and groups */
.bf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.bf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bf-full {
  margin-bottom: 14px;
}

.bf-group label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 5px;
}

.bf-group label i {
  color: var(--orange);
  font-size: 0.65rem;
}

.bf-group input,
.bf-group select,
.bf-group textarea {
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--orange-border);
  border-radius: 10px;
  padding: 10px 13px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}

.bf-group input:focus,
.bf-group select:focus,
.bf-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.bf-group textarea {
  resize: vertical;
  min-height: 80px;
}

.bf-err {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  color: #e53e3e;
  font-weight: 600;
  min-height: 14px;
}

/* Submit button */
.bf-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 14px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all .25s;
  box-shadow: 0 6px 22px rgba(249, 115, 22, 0.38);
  margin-bottom: 12px;
}

.bf-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.48);
}

.bf-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.bf-privacy {
  text-align: center;
  font-size: 0.68rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.bf-privacy i {
  color: var(--orange);
}

/* â”€â”€ Success state â”€â”€ */
.booking-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  height: 100%;
  min-height: 320px;
}

.bs-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.38);
}

.booking-success h3 {
  font-family: var(--font-ui);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}

.booking-success p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.bs-close-btn {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.38);
  transition: all .2s;
}

.bs-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(249, 115, 22, 0.48);
}

/* â”€â”€ Responsive â”€â”€ */
/* @media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .hero-left {
    max-width: 100%;
  }
  .hero-headline {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }
  .hero-right {
    display: none; /* Hide floating cards on tablet for cleaner look */


.tour-strip-grid,
.home-why-grid,
.intl-grid,
.oneday-grid {
  grid-template-columns: repeat(2, 1fr);
}

/* .fgg {
    grid-template-columns: 1fr 1fr;
  } */
.fgg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}


@media (max-width: 768px) {
  nav {
    padding: 15px 5%;
  }

  .nl,
  .ncta {
    display: none;
    /* Hide on mobile, handled by mob-menu */
  }

  .ham {
    display: flex;
  }

  .hero {
    padding-top: 100px;
    height: auto;
    min-height: 80vh;
  }

  .hero-dest-tags {
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .pkg-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .pkg-cards-grid,
  .home-why-grid,
  .tour-strip-grid,
  .intl-grid,
  .oneday-grid {
    grid-template-columns: 1fr !important;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .pkg-card {
    min-width: 100% !important;
  }

  .fgg {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    text-align: left;
  }

  .fgg > div:first-child {
    flex: 1 1 100%;
  }

  .fgg > div:not(:first-child) {
    flex: 1 1 40%;
  }

  .fbn,
  .fbp,
  .fsoc {
    justify-content: flex-start;
  }

  .fbot {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 680px) {
  .booking-box {
    grid-template-columns: 1fr;
    max-height: 95vh;
  }

  .booking-left {
    display: none;
  }

  .booking-right {
    padding: 28px 20px 24px;
  }

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

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.2rem;
  }

  .st {
    font-size: 1.8rem;
  }

  section {
    padding: 50px 5%;
  }

  .pc-body {
    padding: 16px 16px 0;
  }

  .pc-title {
    font-size: 1rem;
  }

  .pc-foot {
    padding: 12px 16px 16px;
  }

  .pc-price {
    font-size: 1.15rem;
  }

  .hero-btn-primary {
    width: 100%;
    justify-content: center;
  }
}

*/

/* â”€â”€ Refactored Utilities â”€â”€ */
.centered-mt-44 {
  text-align: center;
  margin-top: 44px;
}

.centered-mt-40 {
  text-align: center;
  margin-top: 40px;
}

.hero-italic-orange {
  color: #F0A050;
  font-style: italic;
}

.hero-italic-dark-orange {
  color: #E07B2A;
  font-style: italic;
}

.pkg-section {
  padding: 60px 5% 80px;
  background: var(--bg);
}

.mt-16 {
  margin-top: 16px;
}

.mt-40 {
  margin-top: 40px;
}

.intl-section-icon-gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* â”€â”€ About Page Specific Styles â”€â”€ */
.ab-hero {
  background: linear-gradient(135deg, #2D1205 0%, #7C2D12 55%, #C2410C 100%);
  padding: 100px 5% 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.ab-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(249, 115, 22, 0.18), transparent 65%);
  pointer-events: none;
}

.ab-hero-word {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(80px, 18vw, 180px);
  font-weight: 700;
  font-style: italic;
  color: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  pointer-events: none;
}

.ab-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.ab-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
}

.ab-hero-eyebrow span {
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: rgba(249, 115, 22, 0.7);
}

.ab-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}

.ab-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.team-section {
  background: #FFFBF5;
  padding: 70px 5%;
}

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

.lbl-center {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #F97316;
  margin-bottom: 14px;
}

.lbl-center::before,
.lbl-center::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #F97316;
  border-radius: 2px;
}

.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #0F0A05;
  line-height: 1.2;
  margin-bottom: 12px;
}

.sec-title em {
  color: #C2410C;
  font-style: italic;
}

.sec-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #78716C;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

.founder-featured {
  background: #fff;
  padding: 80px 5%;
  position: relative;
}

.founder-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.founder-image-box {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.founder-image-box img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.8s ease;
}

.founder-image-box:hover img {
  transform: scale(1.05);
}

.founder-info {
  padding: 0 20px;
}

.founder-name-wrap {
  margin-bottom: 25px;
}

.founder-name-wrap h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #0F0A05;
  margin-bottom: 5px;
}

.founder-name-wrap .title {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #F97316;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.founder-story {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #57534E;
  line-height: 1.8;
  margin-bottom: 30px;
}

.founder-story strong {
  color: #0F0A05;
  font-weight: 700;
}

.founder-quote-box {
  background: #FFF7ED;
  padding: 30px;
  border-radius: 20px;
  border-left: 5px solid #F97316;
  margin-bottom: 30px;
  position: relative;
}

.founder-quote-box i {
  font-size: 1.8rem;
  color: #F97316;
  opacity: 0.2;
  position: absolute;
  top: 15px;
  left: 15px;
}

.founder-quote-box p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: #1F2937;
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 1;
}

.founder-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.f-stat {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #F9FAFB;
  padding: 15px 20px;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  transition: all 0.3s ease;
}

.f-stat:hover {
  background: #fff;
  border-color: #F97316;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.1);
}

.f-stat i {
  font-size: 1.4rem;
  color: #F97316;
}

.f-stat-txt strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0F0A05;
}

.f-stat-txt span {
  font-size: 0.75rem;
  color: #78716C;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.person-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.person-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

.person-card:first-child {
  border-top: 4px solid #1E3A8A;
}

.person-card:first-child .person-eyebrow {
  background: #1E3A8A;
}

.person-card:first-child .person-quote {
  border-left-color: #1E3A8A;
  background: #EFF6FF;
}

.person-card:first-child .person-quote i {
  color: #1E3A8A;
}

.person-card:last-child {
  border-top: 4px solid #8B5CF6;
}

.person-card:last-child .person-eyebrow {
  background: #8B5CF6;
}

.person-card:last-child .person-quote {
  border-left-color: #8B5CF6;
  background: #F3E8FF;
}

.person-card:last-child .person-quote i {
  color: #8B5CF6;
}

.person-photo-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.person-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.5s ease;
}

.person-card:hover .person-photo-wrap img {
  transform: scale(1.05);
}

.person-nameplate {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 25px 20px 15px;
  color: white;
}

.person-nameplate h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.person-nameplate p {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  opacity: 0.8;
}

.person-body {
  padding: 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.person-eyebrow {
  display: inline-block;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  width: fit-content;
}

.person-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #44403C;
  margin-bottom: 12px;
}

.person-tagline strong {
  color: #F97316;
}

.person-body p {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #57534E;
  line-height: 1.7;
  margin-bottom: 15px;
}

.person-quote {
  padding: 15px 15px 15px 20px;
  border-radius: 0 10px 10px 0;
  margin: 10px 0 15px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.person-quote i {
  font-size: 1.2rem;
  opacity: 0.5;
}

.person-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  margin: 0;
  color: #1F2937;
}

.person-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.person-tags span {
  background: #F3F4F6;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 500;
  color: #4B5563;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.person-tags span i {
  color: #F97316;
  font-size: 0.65rem;
}

.origin-section {
  background: linear-gradient(135deg, #1F2937, #111827);
  padding: 70px 5%;
  color: white;
  position: relative;
  overflow: hidden;
}

.origin-section::before {
  content: 'à¤°à¤¾à¤® à¤¹à¤¿à¤°à¤¾';
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: min(15vw, 120px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.origin-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.origin-badge {
  display: inline-block;
  background: rgba(249, 115, 22, 0.2);
  color: #FB923C;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.origin-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.origin-text h2 span {
  color: #F97316;
}

.origin-story {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 16px;
  margin: 20px 0;
  border-left: 3px solid #F97316;
}

.origin-story p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}

.origin-story p:last-child {
  margin-bottom: 0;
}

.origin-story strong {
  color: #F97316;
}

.origin-names {
  display: flex;
  gap: 15px;
  margin: 20px 0;
}

.name-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.name-card .name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #F97316;
  margin-bottom: 3px;
}

.name-card .relation {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.origin-quote {
  background: rgba(249, 115, 22, 0.1);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(249, 115, 22, 0.3);
  margin-top: 20px;
}

.origin-quote p {
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.7;
  color: white;
}

.origin-quote .author {
  margin-top: 10px;
  font-weight: 600;
  color: #F97316;
  font-size: 0.8rem;
}

.legacy-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.legacy-card i {
  font-size: 3rem;
  color: #F97316;
  margin-bottom: 20px;
}

.legacy-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: white;
}

.legacy-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 0.88rem;
}

.vm-section {
  padding: 70px 5%;
  background: #FFFBF5;
}

.vm-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.vm-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #FED7AA;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.1);
}

.vm-card.vision {
  border-top: 4px solid #1E3A8A;
}

.vm-card.mission {
  border-top: 4px solid #8B5CF6;
}

.vm-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.vm-icon-box {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
}

.vm-card.vision .vm-icon-box {
  background: linear-gradient(135deg, #1E3A8A, #3B5B9E);
}

.vm-card.mission .vm-icon-box {
  background: linear-gradient(135deg, #8B5CF6, #A78BFA);
}

.vm-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C2410C;
  background: rgba(249, 115, 22, 0.1);
  padding: 3px 10px;
  border-radius: 20px;
}

.vm-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 12px;
}

.vm-card p {
  font-size: 0.85rem;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 12px;
}

.vm-marathi {
  font-size: 0.85rem;
  font-style: italic;
  color: #F97316;
  background: rgba(249, 115, 22, 0.1);
  padding: 10px 12px;
  border-radius: 8px;
  border-left: 3px solid #F97316;
}

.turning-section {
  padding: 70px 5%;
  background: #F3F4F6;
}

.big-quote {
  max-width: 800px;
  margin: 30px auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

.big-quote .qmark {
  font-size: 4rem;
  color: #F97316;
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: serif;
}

.big-quote blockquote {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #1F2937;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.big-quote blockquote em {
  color: #F97316;
}

.q-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #E5E7EB;
  padding-top: 20px;
}

.q-av {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #F97316, #C2410C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

.q-info strong {
  display: block;
  font-size: 0.9rem;
  color: #1F2937;
}

.q-info span {
  font-size: 0.75rem;
  color: #6B7280;
}

.story-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.s-card {
  background: white;
  padding: 20px 15px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #FED7AA;
}

.s-card:hover {
  border-color: transparent;
  transform: translateY(-5px);
  background: linear-gradient(135deg, #F97316, #C2410C);
  color: white;
}

.s-card:hover .s-card-icon {
  background: white;
  color: #F97316;
}

.s-card:hover h4,
.s-card:hover p {
  color: white;
}

.s-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 12px;
  transition: all 0.3s ease;
}

.s-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.s-card p {
  font-size: 0.75rem;
  color: #6B7280;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.awards-section {
  padding: 70px 5%;
  background: linear-gradient(135deg, #1F2937, #111827);
  color: white;
}

.awards-header {
  text-align: center;
  margin-bottom: 40px;
}

.lbl-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #F97316;
  margin-bottom: 14px;
}

.lbl-light::before,
.lbl-light::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #F97316;
  border-radius: 2px;
}

.awards-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
}

.awards-header h2 em {
  color: #F97316;
  font-style: italic;
}

.awards-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.award-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 25px;
  display: flex;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.award-card:hover {
  background: rgba(249, 115, 22, 0.1);
  transform: translateY(-3px);
  border-color: #F97316;
}

.award-trophy {
  font-size: 2rem;
  flex-shrink: 0;
}

.award-year {
  font-size: 0.7rem;
  color: #F97316;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.award-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

.women-achievement {
  max-width: 600px;
  margin: 40px auto 0;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
}

.women-achievement i {
  font-size: 2.5rem;
  color: #8B5CF6;
  margin-bottom: 15px;
}

.women-achievement h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #8B5CF6;
}

.women-achievement p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.rv,
.rv-l,
.rv-r {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.rv.vis,
.rv-l.vis,
.rv-r.vis {
  opacity: 1;
  transform: translateY(0);
}

.rv-l {
  transform: translateX(-20px);
}

.rv-r {
  transform: translateX(20px);
}

@media (max-width: 992px) {
  .team-cards-row {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .origin-content,
  .vm-grid,
  .awards-grid {
    grid-template-columns: 1fr;
  }

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

  .founder-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-image-box img {
    height: 400px;
  }

  .founder-info {
    text-align: center;
    padding: 0;
  }

  .founder-quote-box {
    text-align: left;
  }

  .f-stat {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .story-cards {
    grid-template-columns: 1fr;
  }

  .origin-names {
    flex-direction: column;
  }

  .big-quote {
    padding: 25px;
  }

  .big-quote blockquote {
    font-size: 1rem;
  }
}


/* â”€â”€ Common Utility Classes â”€â”€ */
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.text-center {
  text-align: center !important;
}

.w-full {
  width: 100% !important;
}

.d-flex {
  display: flex !important;
}

.flex-col {
  flex-direction: column !important;
}

.justify-center {
  justify-content: center !important;
}

.items-center {
  align-items: center !important;
}

.mt-8 {
  margin-top: 8px !important;
}

.mt-12 {
  margin-top: 12px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

.mt-32 {
  margin-top: 32px !important;
}

.p-0 {
  padding: 0 !important;
}

.m-0 {
  margin: 0 !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

/* â”€â”€ Footer Logo Optimization â”€â”€ */
.f-logo {
  width: 140px;
  height: auto;
  border-radius: 50%;
  display: block;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.15);
  transition: transform 0.3s ease;
}

.f-logo:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .mob-w-full {
    width: 100% !important;
  }

  .mob-text-center {
    text-align: center !important;
  }

  .f-logo {
    margin: 0 auto;
  }
}


/* ═════════════════════════════════════
   Unified Responsive System
   ═════════════════════════════════════ */

/* Utility visibility helpers */
.hide-mobile {
  display: none;
}

.show-mobile {
  display: block;
}

@media (min-width: 769px) {
  .hide-mobile {
    display: block !important;
  }

  .hide-desktop {
    display: none !important;
  }

  .show-mobile {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .text-mobile-center {
    text-align: center;
  }

  .text-mobile-large {
    font-size: 1.2rem;
  }
}

@media (max-width: 600px) {
  .mt-mobile-0 {
    margin-top: 0 !important;
  }

  .mb-mobile-2 {
    margin-bottom: 0.5rem !important;
  }

  .p-mobile-1 {
    padding: 0.5rem !important;
  }
}

/* Large desktops */
@media (min-width: 1400px) {
  :root {
    --section-pad: 100px 6%;
    --section-pad-sm: 60px 6%;
  }

  html {
    font-size: 17px;
  }

  .container {
    max-width: 1400px;
  }

  .pkg-grid,
  .tour-strip-grid,
  .oneday-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .home-why-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .tc-img {
    height: 240px;
  }
}

/* Desktops and laptops */
@media (min-width: 1025px) and (max-width: 1399px) {
  :root {
    --section-pad: 80px 5%;
    --section-pad-sm: 50px 5%;
  }

  html {
    font-size: 16px;
  }

  .pkg-grid,
  .pkg-cards-grid,
  .tour-strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .intl-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: calc(66.666% - 7px) !important;
  }

  .tc-img {
    height: 220px;
  }
}

/* Tablets and small laptops */
@media (min-width: 768px) and (max-width: 1024px) {
  :root {
    --section-pad: 70px 4.5%;
    --section-pad-sm: 45px 4.5%;
  }

  html {
    font-size: 15.5px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .hero-right {
    display: none;
  }

  .hero-dest-tags,
  .hero-stats,
  .hero-cta,
  .gr-buttons,
  .gr-highlights,
  .gr-icon-row {
    justify-content: center;
  }

  .pkg-grid,
  .pkg-cards-grid,
  .tour-strip-grid,
  .home-why-grid,
  .oneday-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .intl-grid {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
  }

  .lone-card,
  .intl-grid .lone-card {
    grid-column: 1 / -1 !important;
    max-width: 100% !important;
    justify-self: stretch !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .tc-img {
    height: 200px;
  }

  .cwp {
    grid-template-columns: 1fr 1.2fr;
  }

  .map-wrap {
    grid-template-columns: 1fr;
  }

  .booking-box {
    grid-template-columns: 250px 1fr;
  }

  .booking-left {
    padding: 32px 24px;
  }
}

/* Mobile and small tablets */
@media (max-width: 767px) {
  :root {
    --section-pad: 50px 4%;
    --section-pad-sm: 35px 4%;
  }

  html {
    font-size: 14.5px;
  }

  nav {
    padding: 15px 5%;
  }

  .nl,
  .ncta {
    display: none;
  }

  .ham {
    display: flex;
  }

  .hero {
    height: auto;
    min-height: 80vh;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero-right {
    display: none;
  }

  .hero-headline {
    font-size: clamp(2.1rem, 8vw, 3rem);
  }

  .hero-dest-tags,
  .hero-stats,
  .hero-cta,
  .gr-buttons,
  .gr-highlights,
  .gr-icon-row {
    justify-content: center;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-btn-primary,
  .hero-btn-wa,
  .hero-btn-call {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 18px;
  }

  .pkg-grid,
  .pkg-cards-grid,
  .tour-strip-grid,
  .home-why-grid,
  .oneday-grid,
  .intl-grid,
  .review-strip {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
  }

  .lone-card,
  .intl-grid .lone-card {
    grid-column: 1 / -1 !important;
    max-width: 100% !important;
    justify-self: stretch !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .tc-img {
    height: 180px;
  }

  .cwp,
  .map-wrap,
  .frow,
  .bf-row {
    grid-template-columns: 1fr;
  }

  .fgg {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fsoc,
  .fbn,
  .fbp {
    justify-content: center;
  }

  .fbot {
    flex-direction: column;
    text-align: center;
  }

  .booking-box {
    grid-template-columns: 1fr;
    max-height: 95vh;
  }

  .booking-left {
    display: none;
  }

  .booking-right {
    padding: 28px 20px 24px;
  }

  .map-frame-wrap,
  .map-frame-wrap iframe {
    min-height: 260px;
  }

  .side-contact {
    display: none;
  }
}

/* Small phones */
@media (max-width: 480px) {
  :root {
    --section-pad: 40px 4%;
    --section-pad-sm: 30px 4%;
  }

  html {
    font-size: 14px;
  }

  nav {
    padding: 12px 3%;
  }

  .logo-tx span:first-child {
    font-size: 0.75rem;
  }

  .logo-tx span:last-child {
    font-size: 0.4rem;
  }

  section {
    padding: var(--section-pad);
  }

  footer {
    padding: 40px 4% 0;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-content {
    padding: 80px 3% 40px;
    gap: 24px;
  }

  .hero-headline {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .hero-dest-tag {
    font-size: 0.6rem;
    padding: 4px 8px;
  }

  .hero-stat {
    padding-right: 0;
  }

  .hero-stat:not(:last-child)::after {
    display: none;
  }

  .stat-num {
    font-size: 1.4rem;
  }

  .stat-lbl {
    font-size: 0.5rem;
  }

  .sl {
    font-size: 0.65rem;
  }

  .st {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .ss {
    font-size: 0.85rem;
  }

  .btn-primary,
  .btn-outline {
    font-size: 0.75rem;
    padding: 11px 18px;
    gap: 5px;
  }

  .tc-body {
    padding: 14px 16px 0;
  }

  .tc-name {
    font-size: 0.95rem;
  }

  .tc-img {
    height: 160px;
  }

  .tc-footer {
    padding: 12px 16px 14px;
  }

  .tc-price {
    font-size: 1.1rem;
  }

  .hw-card {
    padding: 20px 16px;
  }

  .ci-card {
    padding: 12px 14px;
  }

  .map-info-box {
    padding: 16px 12px;
  }

  .map-frame-wrap,
  .map-frame-wrap iframe {
    min-height: 220px;
  }

  .booking-right {
    padding: 20px 16px 16px;
  }

  .notif-popup {
    left: auto;
    right: 12px;
    bottom: 60px;
    max-width: calc(100% - 24px);
  }
}

/* Accessibility and environment adjustments */
@media (hover: none) and (pointer: coarse) {

  button,
  a,
  .hero-dot {
    min-width: 10px;
    min-height: 10px;
  }

  .btn-primary,
  .btn-outline {
    padding: 14px 24px;
  }

  button:hover {
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .hero {
    height: 100vh;
    min-height: auto;
  }

  .hero-content {
    padding: 40px 5%;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat-num {
    font-size: 1.2rem;
  }

  section {
    padding: 30px 5%;
  }

  nav {
    padding: 10px 5%;
  }
}

@media print {

  nav,
  .side-contact,
  .notif-popup,
  .book-btn,
  .modal-footer {
    display: none !important;
  }

  body {
    font-size: 12pt;
  }

  section {
    page-break-inside: avoid;
  }
}