/* ============================================================
           TROPICAL LUXURY EDITORIAL THEME — Deep Emerald & Spice Gold
           ============================================================ */
:root {
  --gold: #d4af37;
  --gold-bright: #f9e596;
  --gold-dark: #a6831d;
  --gold-muted: #7a6117;

  --green-deep: #030e0a;
  --green-rich: #081f16;
  --green-warm: #0f3827;
  --green-mid: #1e543d;
  --green-light: #3b8262;

  --ivory: #fcfbf8;
  --ivory-dark: #f2efe6;
  --white: #ffffff;
  --off-white: #f5f4ef;

  --gradient-gold: linear-gradient(135deg, #f9e596 0%, #d4af37 25%, #a6831d 75%, #7a6117 100%);
  --gradient-dark: linear-gradient(145deg, #030e0a 0%, #081f16 100%);
  --gradient-hero: linear-gradient(160deg, rgba(3, 14, 10, 0.85) 0%, rgba(15, 56, 39, 0.5) 50%, rgba(3, 14, 10, 0.95) 100%);
  --gradient-glass: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);

  --shadow-gold: 0 10px 30px -10px rgba(212, 175, 55, 0.5), 0 0 15px rgba(249, 229, 150, 0.2);
  --shadow-dark: 0 30px 80px rgba(0, 0, 0, 0.7), 0 10px 20px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 15px 35px rgba(3, 14, 10, 0.05), 0 5px 15px rgba(0, 0, 0, 0.02);
  --shadow-hover: 0 30px 60px rgba(3, 14, 10, 0.12), 0 10px 25px rgba(212, 175, 55, 0.15);

  --transition: 0.4s cubic-bezier(0.25, 1, 0.25, 1);
  --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.25, 1);
  --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

  --r-sm: 8px;
  --r-md: 20px;
  --r-lg: 30px;
  --r-xl: 50px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 13px;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--green-deep);
}

::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.4);
  border-radius: 10px;
  border: 2px solid var(--green-deep);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

::selection {
  background: var(--gold);
  color: var(--white);
  text-shadow: none;
}

*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

input:focus-visible,
textarea:focus-visible,
button:focus-visible,
select:focus-visible {
  outline: none;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--ivory);
  color: var(--green-rich);
  overflow-x: hidden;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  user-select: none;
  -webkit-user-drag: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  color: var(--green-deep);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

/* LABELS & HEADERS */
.ornament-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  position: relative;
}

.ornament-label::before,
.ornament-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
  opacity: 0.8;
  transition: width var(--transition);
}

.ornament-label::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.section-header h2 em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 400;
  display: inline-block;
  transform: skewX(-5deg);
}

.section-header>p {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-header>p::before,
.section-header>p::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
  opacity: 0.8;
}

.section-header>p::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 32px;
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all var(--transition-bounce);
  border: none;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: left 0.7s cubic-bezier(0.25, 1, 0.25, 1);
  z-index: -1;
}

.btn:hover::before {
  left: 150%;
}

.btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--green-deep);
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 20px 50px -10px rgba(212, 175, 55, 0.8);
  border-color: var(--white);
}

.btn-dark {
  background: var(--gradient-dark);
  color: var(--gold-bright);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.btn-dark:hover {
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.6);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.6);
  padding: 12px 28px;
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background: var(--gradient-gold);
  border-color: transparent;
  color: var(--green-deep);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: all var(--transition-slow);
  background: linear-gradient(to bottom, rgba(3, 14, 10, 0.8) 0%, transparent 100%);
}

.navbar.scrolled {
  background: rgba(3, 14, 10, 0.95);
  backdrop-filter: blur(25px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(212, 175, 55, 0.2), 0 15px 40px rgba(0, 0, 0, 0.5);
  height: 65px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1001;
}

.logo-emblem {
  width: 42px;
  height: 42px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-deep);
  box-shadow: 0 4px 25px rgba(212, 175, 55, 0.6);
  flex-shrink: 0;
  position: relative;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 500;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all var(--transition);
  position: relative;
  padding: 8px 0;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-bright);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-bounce);
  transform-origin: center;
}

/* FILTER BAR (Navigational) */
.filter-section {
  position: fixed;
  left: 0;
  right: 0;
  top: 65px;
  z-index: 99;
  background: rgba(252, 251, 248, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 40px rgba(3, 14, 10, 0.05);
}

.filter-wrapper {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.filter-container {
  display: flex;
  align-items: center;
  gap: 7px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}

.filter-container::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: transparent;
  color: var(--green-mid);
  transition: all var(--transition-bounce);
  text-decoration: none;
}

.filter-btn:hover {
  border-color: rgba(212, 175, 55, 0.8);
  color: var(--gold-dark);
  background: rgba(212, 175, 55, 0.05);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--gradient-gold);
  color: var(--green-deep);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.filter-btn i {
  font-size: 1rem;
}

/* PAGE HERO */
.page-hero {
  height: 60vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 5rem;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  box-shadow: 0px 10px 50px #7a6117;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  mix-blend-mode: luminosity;
}

.page-hero-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.6), transparent);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 5%;
}

.page-hero-content h1 {
  color: var(--white);
  font-size: clamp(3rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.page-hero-content h1 em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 400;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--gold-bright);
  transition: all var(--transition);
}

.breadcrumb a:hover {
  color: var(--white);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.intro-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 0 0 1.5rem;
}

.pill {
  background: rgba(3, 14, 10, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-bright);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 50px;
  transition: all var(--transition);
  letter-spacing: 0.05em;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* PREMIUM TOUR DETAILS LAYOUT */
.tour-layout {
  padding: 8rem 2%;
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
  position: relative;
}

/* CONTENT BLOCKS */
.content-block {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 4.5rem;
  box-shadow: 0 20px 50px rgba(3, 14, 10, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.25);
  margin-bottom: 5rem;
  position: relative;
  transition: all var(--transition-slow);
}

.content-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(3, 14, 10, 0.12);
  border-color: rgba(212, 175, 55, 0.5);
}

.content-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.content-block p {
  color: var(--green-mid);
  font-size: 1.1rem;
  line-height: 2.1;
  margin-bottom: 1.8rem;
  font-weight: 300;
}

/* PREMIUM MASONRY GALLERY */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 224px;
  gap: 15px;
  margin-bottom: 5rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.g-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.g-item:nth-child(1) {
  grid-row: span 2;
  grid-column: span 2;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.25, 1), filter 1.2s;
  filter: saturate(0.85);
}

.g-item:hover img {
  transform: scale(1.1);
  filter: saturate(1.2);
}

.g-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 14, 10, 0.9), transparent 60%);
  opacity: 0;
  transition: all var(--transition-slow);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.g-item:hover .g-item-overlay {
  opacity: 1;
  box-shadow: inset 0 0 50px rgba(212, 175, 55, 0.2);
}

.g-item-label {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  transform: translateY(15px);
  transition: transform var(--transition-slow);
}

.g-item:hover .g-item-label {
  transform: translateY(0);
  transition-delay: 0.1s;
}

/* FAST FACTS */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 5rem;
}

.feat-item {
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--r-md);
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}

.feat-item:hover {
  background: rgba(212, 175, 55, 0.03);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(212, 175, 55, 0.6);
}

.feat-icon-wrap {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: all var(--transition-bounce);
  color: var(--gold-dark);
  background: rgba(255, 255, 255, 0.02);
}

.feat-item:hover .feat-icon-wrap {
  border-color: var(--gold);
  background: var(--gradient-gold);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
  transform: scale(1.1) rotate(5deg);
  color: var(--green-deep);
}

.feat-txt strong {
  display: block;
  color: var(--green-deep);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Jost';
}

.feat-txt span {
  color: var(--green-mid);
  font-size: 0.9rem;
  font-weight: 400;
}

/* OVERVIEW PULL QUOTE */
.overview-quote {
  margin: 2rem 0;
  padding: 2rem 3rem;
  background: var(--gradient-dark);
  border-radius: var(--r-md);
  position: relative;
  box-shadow: var(--shadow-hover);
  overflow: hidden;
}

.overview-quote::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15rem;
  color: rgba(212, 175, 55, 0.05);
  line-height: 1;
  pointer-events: none;
}

.overview-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.overview-quote p em {
  color: var(--gold-bright);
  font-style: normal;
  font-weight: 500;
}

/* ITINERARY ACCORDION */
/* ITINERARY ALWAYS OPEN */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(212, 175, 55, 0.2);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.faq-item {
  background: var(--white);
}

/* Hover aur pointer effects hata diye hain */
.faq-q {
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-deep);
  gap: 1rem;
  user-select: none;
}

/* Max-height 0 aur hidden overflow hata diya taaki by default open rahe */
.faq-a {
  display: block;
}

.faq-a-inner {
  padding: 0 2.5rem 2.5rem;
  font-size: 1.05rem;
  color: var(--green-mid);
  line-height: 2;
  font-weight: 300;
  display: flex;
  gap: 2rem;
}

.day-img-wrap {
  width: 220px;
  height: 160px;
  border-radius: var(--r-sm);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.day-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}

.faq-item:hover .day-img-wrap img {
  transform: scale(1.08);
}

/* INCLUSIONS / EXCLUSIONS */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(3, 14, 10, 0.08);
  margin-bottom: 5rem;
}

.why-cell {
  background: var(--white);
  padding: 3.5rem;
  transition: all var(--transition-slow);
  position: relative;
  z-index: 1;
}

.why-cell:hover {
  transform: scale(1.02);
  z-index: 2;
  box-shadow: var(--shadow-hover);
  border-radius: var(--r-md);
}

.why-cell h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.why-cell ul {
  list-style: none;
}

.why-cell ul li {
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
  color: var(--green-mid);
  margin-bottom: 15px;
  display: flex;
  gap: 12px;
  font-weight: 400;
}

.why-cell ul li i {
  margin-top: 6px;
}

/* SIDEBAR CONTACT FORM BOX */
.sidebar {
  position: sticky;
  top: 110px;
  align-self: start;
  z-index: 10;
}

.contact-form-box {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.85) 100%);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-radius: 20px;
  padding: 1.8rem 2rem;
  box-shadow: 0 40px 80px rgba(15, 56, 39, 0.15), 0 0 50px rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-bottom: 3px solid rgba(212, 175, 55, 0.5);
}

.contact-form-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #f9e596, #d4af37, #a6831d, #d4af37);
  background-size: 200% 200%;
  border-radius: 20px 20px 0 0;
  animation: flowingGold 5s ease infinite;
}

@keyframes flowingGold {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.form-group {
  margin-bottom: 0.8rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-group label {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0;
  transition: all 0.4s ease;
  flex: 0 0 90px;
  white-space: nowrap;
}

.form-group:focus-within label {
  color: var(--gold-dark);
  transform: translateX(2px);
}

.form-group input,
.form-group select,
.form-group textarea {
  flex: 1;
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(15, 56, 39, 0.15);
  border-radius: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--green-deep);
  background: #ffffff;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.25, 1);
  outline: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #d4af37;
  background: #fdfbf7;
  transform: translateY(-4px);
  box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.2), 0 15px 35px rgba(212, 175, 55, 0.15);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: rgba(30, 84, 61, 0.45);
  font-weight: 300;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
  opacity: 0;
  transform: translateX(10px);
}

.exp-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--green-warm);
  line-height: 1;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px dashed rgba(212, 175, 55, 0.4);
}

.exp-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--green-light);
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.05em;
}

.exp-price .strike {
  text-decoration: line-through;
  color: #a0a0a0;
  font-size: 1.4rem;
  margin-right: 10px;
}

/* HOTELS */
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 5rem;
}

.exp-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--r-lg);
  transition: all var(--transition-slow);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-card), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.exp-card:hover {
  border-color: rgba(212, 175, 55, 0.6);
  transform: translateY(-12px);
  box-shadow: -10px 20px 40px rgba(0, 0, 0, 0.1), 10px 20px 40px rgba(212, 175, 55, 0.1);
}

.exp-img-wrap {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.exp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.25, 1), filter 1.2s;
  filter: saturate(0.9) brightness(0.95);
}

.exp-card:hover .exp-img-wrap img {
  transform: scale(1.08);
  filter: saturate(1.2) brightness(1.05);
}

.exp-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--gradient-gold);
  padding: 8px 20px;
  border-radius: 30px;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.exp-body {
  padding: 3rem;
  background: linear-gradient(to top, #ffffff, #fcfbf8);
}

.exp-body h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color var(--transition);
  letter-spacing: -0.01em;
}

.exp-card:hover .exp-body h3 {
  color: var(--gold-dark);
}

.exp-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* REVIEWS */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.testi-card {
  background: var(--ivory);
  padding: 4rem 3.5rem;
  transition: all var(--transition-slow);
  position: relative;
  z-index: 1;
}

.testi-card:hover {
  background: var(--white);
  transform: scale(1.03);
  z-index: 2;
  box-shadow: var(--shadow-hover);
  border-radius: var(--r-lg);
}

.testi-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 2rem;
  color: var(--gold-bright);
  font-size: 1.1rem;
  filter: drop-shadow(0 2px 5px rgba(212, 175, 55, 0.5));
}

.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--green-warm);
  line-height: 1.9;
  margin-bottom: 3rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 2.5rem;
}

.testi-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-deep);
  flex-shrink: 0;
  border: 2px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.testi-name {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-deep);
  display: block;
  margin-bottom: 4px;
}

/* FOOTER */
.footer {
  background: var(--green-deep);
  padding: 8rem 6% 3rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.footer-brand-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 2.1;
  margin: 1.8rem 0 2.5rem;
  font-weight: 300;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.soc-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgba(212, 175, 55, 0.8);
  transition: all var(--transition-bounce);
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  background: rgba(255, 255, 255, 0.03);
}

.soc-btn:hover {
  background: var(--gradient-gold);
  color: var(--green-deep);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.3);
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 2.2rem;
}

.footer-col a {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.2rem;
  transition: all var(--transition);
  font-weight: 300;
}

.footer-col a:hover {
  color: var(--white);
  padding-left: 10px;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.f-contact-row {
  display: flex;
  gap: 15px;
  margin-bottom: 1.5rem;
}

.f-contact-row span:first-child {
  color: var(--gold-bright);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.f-contact-row span:last-child {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  line-height: 1.9;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.footer-bottom a {
  color: rgba(212, 175, 55, 0.7);
  margin: 0 15px;
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--gold-bright);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .tour-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .contact-form-box {
    position: static;
    padding: 3.5rem;
  }

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }

  .g-item:nth-child(1) {
    grid-column: span 1;
  }

  .feat-grid {
    grid-template-columns: 1fr;
  }

  .faq-a-inner {
    flex-direction: column;
  }

  .day-img-wrap {
    width: 100%;
    height: 250px;
  }

  /* Additional Responsive Fixes */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .filter-wrapper {
    flex-direction: column;
    gap: 1rem;
  }

  .filter-container {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .exp-grid,
  .why-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }

  .content-block {
    padding: 2.5rem;
  }

  .overview-quote {
    padding: 2rem;
  }

  .overview-quote p {
    font-size: 1.3rem !important;
  }

  /* Additional Responsive Fixes */
  .nav-cta-wrap {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    justify-content: center;
  }

  .footer-bottom a {
    margin: 0 10px;
  }

  .contact-form-box {
    padding: 2rem;
  }

  .why-cell {
    padding: 2rem;
  }

  .exp-body {
    padding: 2rem;
  }

  .testi-card {
    padding: 2rem;
  }

  .page-hero {
    min-height: 400px;
    padding-bottom: 3rem;
  }

  .gallery-masonry {
    grid-template-columns: 1fr;
  }

  .faq-q {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1.5rem;
  }

  .faq-a-inner {
    padding: 0 1.5rem 1.5rem;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {

  /* Extra Small Screen Fixes */
  .day-img-wrap {
    height: 200px;
  }

  .form-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .form-group label {
    flex: none;
  }

  .exp-price {
    font-size: 2.2rem;
  }

  .exp-price .strike {
    font-size: 1.1rem;
  }

  .filter-btn {
    padding: 10px 16px;
    font-size: 0.75rem;
  }

  .btn {
    font-size: 0.8rem;
    display: none;
  }
}