/* ===================================================
   KISHORI TRAVELS - HOME PAGE STYLES
   Matching Next.js reference design (PHP version)
   =================================================== */

:root {
  --saffron: #e8611a;
  --saffron-light: #fff0e6;
  --saffron-dark: #b8470d;
  --gold: #d4a017;
  --gold-light: #fff8e1;
  --deep: #1a1208;
  --cream: #fbf6ee;
  --text: #2c1f0e;
  --text-muted: #7a6a55;
  --white: #ffffff;
  --shadow: rgba(26, 18, 8, 0.12);
  --nav-h: 72px;
  --radius: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* -- PRELOADER -- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #1a1208;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  animation: preloaderFadeIn 0.8s ease forwards;
}

@keyframes preloaderFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.preloader-welcome {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: rgba(212, 160, 23, 0.7);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.preloader-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1.8rem;
}

.preloader-brand span {
  color: var(--gold);
}

.preloader-bar-wrap {
  width: 260px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: 4px;
  animation: preloaderProgress 2s ease-in-out forwards;
}

@keyframes preloaderProgress {
  0% { width: 0%; }
  40% { width: 55%; }
  80% { width: 85%; }
  100% { width: 100%; }
}

.no-scroll {
  overflow: hidden !important;
}

.home-body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul, ol { list-style: none; }
button { font-family: inherit; }

/* -- NAVBAR -- */
.home-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s, box-shadow 0.35s;
}

.home-nav.scrolled {
  background: rgba(26, 18, 8, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px var(--shadow);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
}

.nav-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.nav-logo b {
  color: #f4a825;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--saffron);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--saffron-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

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

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--deep);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

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

.mobile-menu a {
  color: var(--white);
  font-size: 1.5rem;
  font-family: "Cormorant Garamond", serif;
  text-decoration: none;
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* -- HERO -- */
#hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

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

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

.hero-slide video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 18, 8, 0.35) 0%, rgba(26, 18, 8, 0.55) 60%, rgba(26, 18, 8, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  max-width: 800px;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--saffron);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  display: inline-block;
  font-family: "DM Sans", sans-serif;
}

.btn-primary:hover {
  background: var(--saffron-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 97, 26, 0.4);
}

.btn-warning {
  background: #f59e0b;
  color: #fff;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  transition: background 0.2s;
}

.btn-warning:hover {
  background: #d97706;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  transition: all 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

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

/* -- SEARCH BAR -- */
#search {
  background: var(--white);
  padding: 2.5rem 1.5rem;
  margin: 0 auto;
  max-width: 1100px;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px var(--shadow);
  position: relative;
  z-index: 2;
  margin-top: -3rem;
}

.search-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  align-items: end;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.search-field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.search-field select,
.search-field input {
  padding: 0.75rem 1rem;
  border: 1.5px solid #e8e0d5;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  appearance: none;
  outline: none;
  transition: border-color 0.2s;
}

.search-field select:focus,
.search-field input:focus {
  border-color: var(--saffron);
}

.search-btn {
  height: fit-content;
  align-self: end;
}

/* -- SECTIONS -- */
main section, section {
  padding: 5rem 1.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--saffron);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--saffron);
}

.section-sub {
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* -- PACKAGES -- */
#packages {
  background: var(--cream);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.8rem;
}

.package-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26, 18, 8, 0.18);
}

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

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

.package-card:hover .pkg-img img {
  transform: scale(1.06);
}

.pkg-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--saffron);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.pkg-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pkg-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.pkg-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.pkg-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.pkg-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f0eae0;
  padding-top: 1rem;
  margin-top: auto;
}

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

.pkg-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

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

.pkg-price-old {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.pkg-price-val {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--saffron);
}

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

.btn-itinerary {
  background: none;
  border: 1.5px solid var(--saffron);
  color: var(--saffron);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "DM Sans", sans-serif;
}

.btn-itinerary:hover {
  background: var(--saffron);
  color: var(--white);
}

/* -- PACKAGE CATEGORY TABS -- */
.pkg-cat-tab {
  background: transparent;
  border: 1.5px solid var(--saffron);
  color: var(--saffron);
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}

.pkg-cat-tab:hover {
  background: rgba(232, 97, 26, 0.08);
}

.pkg-cat-tab.active {
  background: var(--saffron);
  color: var(--white);
  border-color: var(--saffron);
  box-shadow: 0 4px 16px rgba(232, 97, 26, 0.3);
}

/* -- ITINERARY MODAL -- */
.itin-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 18, 8, 0.72);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  overflow: hidden;
}

.itin-overlay.active {
  display: flex;
}

.itin-box {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 64px rgba(26, 18, 8, 0.3);
  animation: modalIn 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.itin-body {
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(28px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.itin-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(26, 18, 8, 0.15);
  background: var(--white);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  z-index: 10;
  transition: all 0.2s;
  line-height: 1;
}

.itin-close:hover {
  background: #f5ece3;
  color: var(--saffron);
  border-color: var(--saffron);
}

.itin-hero {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.itin-header {
  padding: 18px 22px 0;
}

.itin-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 8px;
}

.itin-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
}

.itin-meta i {
  color: var(--saffron);
  font-size: 11px;
}

.itin-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.itin-divider {
  height: 1px;
  background: #f0eae0;
  margin: 14px 22px;
}

.itin-days {
  padding: 0 20px;
}

.itin-inc-exc {
  padding: 4px 20px 22px;
}

.inc-exc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.inc-exc-label.inc { color: var(--saffron); }
.inc-exc-label.exc { color: var(--text-muted); }

.inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.inc-exc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.inc-exc-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.45;
}

.ie-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 10px;
  font-weight: 700;
}

.ie-icon.check { background: #e6f9ef; color: #1a9954; }
.ie-icon.cross { background: #fdecea; color: #d63031; }

.itin-footer {
  padding: 16px 20px;
  border-top: 1px solid #f0eae0;
}

.itin-book-btn {
  display: block;
  width: 100%;
  background: var(--saffron);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 15px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s;
  text-align: center;
  text-decoration: none;
}

.itin-book-btn:hover {
  background: var(--saffron-dark);
  transform: translateY(-1px);
}

/* -- DAY-WISE ACCORDION (Itinerary) -- */
.day-acc {
  margin-bottom: 10px;
  border: 1px solid #f0eae0;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.day-acc.open {
  border-color: rgba(232, 97, 26, 0.3);
}

.day-acc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s;
}

.day-acc-header:hover {
  background: #fdf9f5;
}

.day-acc-badge {
  background: var(--saffron);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 20px;
  white-space: nowrap;
  min-width: 52px;
  text-align: center;
  flex-shrink: 0;
}

.day-acc-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  flex: 1;
}

.day-acc-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.25s;
}

.day-acc.open .day-acc-chevron {
  transform: rotate(180deg);
}

.day-acc-body {
  display: none;
  border-top: 1px solid #f0eae0;
  padding: 12px 14px 14px 14px;
}

.day-acc.open .day-acc-body {
  display: block;
}

.day-acc-point {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 4px;
}

.day-acc-point::before {
  content: "*";
  color: var(--saffron);
  font-size: 9px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* -- WHY US -- */
#why {
  background: var(--deep);
}

#why .section-title {
  color: var(--white);
}

#why .section-title em {
  color: var(--gold);
}

#why .section-label {
  color: var(--gold);
}

#why .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: background 0.3s, transform 0.3s;
}

.why-card:hover {
  background: rgba(232, 97, 26, 0.1);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.why-icon i {
  font-size: 1.8rem;
  color: var(--gold);
}

.why-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.why-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* -- GALLERY -- */
#gallery {
  background: var(--cream);
}

.gallery-slider {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.gallery-track {
  display: flex;
  transition: transform 0.5s ease;
}

.gallery-img {
  flex: 0 0 33.333%;
  padding: 0.4rem;
}

.gallery-img-inner {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.gallery-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.gallery-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  transform: translateY(10px);
}

.gallery-info h4 {
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.gallery-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  line-height: 1.4;
}

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

.gallery-img:hover .gallery-info {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gallery-nav {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.g-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--saffron);
  background: none;
  cursor: pointer;
  color: var(--saffron);
  font-size: 1.1rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.g-btn:hover {
  background: var(--saffron);
  color: var(--white);
}

/* -- LIGHTBOX -- */
#lightbox, #videoLightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 18, 8, 0.92);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

#lightbox.open, #videoLightbox.open {
  opacity: 1;
  pointer-events: all;
}

#lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  object-fit: contain;
}

#lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

/* -- VIDEO STORIES -- */
#videos {
  background: var(--white);
}

.video-slider {
  overflow: hidden;
}

.video-track {
  display: flex;
  transition: transform 0.5s ease;
}

.video-card {
  flex: 0 0 33.333%;
  box-sizing: border-box;
  padding: 0 0.5rem;
}

.video-inner {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  background: var(--deep);
  cursor: pointer;
  position: relative;
}

.video-card video {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.video-info {
  padding: 0.75rem 1rem;
}

.video-info h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.video-info p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(-20px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(232, 97, 26, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.video-inner:hover .video-play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(-20px) scale(1.1);
}

.video-card.is-active .video-inner {
  box-shadow: 0 8px 32px rgba(232, 97, 26, 0.25);
}

/* -- FAQ -- */
#faq {
  background: var(--cream);
}

.faq-got-tag {
  display: inline-block;
  background: rgba(232, 97, 26, 0.1);
  border: 1px solid rgba(232, 97, 26, 0.25);
  color: var(--saffron);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.4rem 1.3rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 14px var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.faq-item:hover {
  box-shadow: 0 6px 28px rgba(26, 18, 8, 0.14);
  transform: translateY(-2px);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "DM Sans", sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  transition: background 0.2s;
}

.faq-q:hover {
  background: var(--saffron-light);
}

.faq-q-text {
  flex: 1;
}

.faq-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(232, 97, 26, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}

.faq-item.open .faq-arrow {
  background: var(--saffron);
}

.faq-arrow i {
  color: var(--saffron);
  font-size: 0.8rem;
  transition: transform 0.35s, color 0.3s;
}

.faq-item.open .faq-arrow i {
  transform: rotate(180deg);
  color: var(--white);
}

.faq-ans {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.4rem;
  font-size: 0.91rem;
  color: var(--text-muted);
  line-height: 1.75;
  transition: max-height 0.38s ease, padding 0.3s;
  border-top: 0px solid transparent;
}

.faq-item.open .faq-ans {
  max-height: 300px;
  padding: 0.2rem 1.4rem 1.3rem 1.4rem;
  border-top: 1px solid #f0eae0;
}

/* -- TESTIMONIALS -- */
#testimonials {
  background: var(--saffron-light);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 0.5rem;
}

.testimonial-inner {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px var(--shadow);
  max-width: 700px;
  margin: 0 auto;
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.testimonial-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--saffron-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--saffron);
}

.author-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.author-loc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.test-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 1.5rem;
}

.test-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(232, 97, 26, 0.3);
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

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

/* -- CONTACT -- */
#contact {
  background: var(--deep);
}

#contact .section-title {
  color: var(--white);
}

#contact .section-title em {
  color: var(--gold);
}

#contact .section-label {
  color: var(--gold);
}

#contact .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.contact-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
  min-width: 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(232, 97, 26, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.1rem;
  color: var(--gold);
}

.contact-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.2rem;
}

.contact-val {
  color: var(--white);
  font-size: 0.95rem;
}

.contact-val a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-val a:hover {
  color: var(--gold);
}

.leadership-block {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}

.leadership-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.85rem;
}

.leadership-card {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.leadership-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(232, 97, 26, 0.35);
}

.leadership-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.leadership-name {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
}

.leadership-role {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.leadership-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s;
}

.leadership-link i {
  color: var(--gold);
  font-size: 0.72rem;
  width: 0.9rem;
}

.leadership-link:hover {
  color: var(--gold);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.form-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-row .form-group {
  flex: 1 1 160px;
  min-width: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--saffron);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group select option {
  background: var(--deep);
  color: var(--white);
}

/* -- FOOTER -- */
.home-footer {
  background: #110c05;
  padding: 3rem 1.5rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}

.footer-brand .f-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 600;
  line-height: 25px;
  margin-bottom: 0.75rem;
}

.footer-brand .f-logo span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

.footer-col h5 {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--gold);
}

.social-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all 0.2s;
}

.social-btn i {
  font-size: 1rem;
  transition: 0.3s;
}

.social-btn:hover i {
  transform: scale(1.2);
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* -- FLOATING ACTION BUTTONS -- */
.fab-group {
  position: fixed;
  right: 1.5rem;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-end;
  z-index: 999;
}

.fab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: width 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  padding: 0;
}

.fab:hover {
  width: 190px;
  justify-content: flex-start;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.fab-call:hover {
  width: 165px;
}

.fab-icon {
  width: 56px;
  min-width: 56px;
  height: 56px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

.fab-label {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity 0.25s ease, max-width 0.25s ease;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  margin-left: 0;
}

.fab:hover .fab-label {
  opacity: 1;
  max-width: 120px;
  margin-left: 8px;
}

.fab-wa { background: #72d377; }
.fab-call { background: #d46f38; }
.fab-ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* -- BACK TO TOP -- */
#btt {
  position: fixed;
  bottom: 2rem;
  left: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--deep);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  font-size: 1rem;
}

#btt.show {
  opacity: 1;
  transform: translateY(0);
}

#btt:hover {
  background: var(--saffron);
  border-color: var(--saffron);
}

/* -- ANIMATIONS -- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* -- RESPONSIVE -- */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .contact-grid {
    flex-direction: column;
  }
  .contact-info,
  .contact-form {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-img {
    flex: 0 0 50%;
  }
  .video-card {
    flex: 0 0 50%;
  }
}

@media (max-width: 768px) {
  .search-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    flex-direction: column;
  }
  .form-row .form-group {
    flex: 1 1 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .gallery-img {
    flex: 0 0 100%;
  }
  .video-card {
    flex: 0 0 100%;
    padding: 0;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .inc-exc-grid {
    grid-template-columns: 1fr;
  }
  .fab:hover {
    width: 56px;
    justify-content: center;
  }
  .fab:hover .fab-label {
    opacity: 0;
    max-width: 0;
    margin-left: 0;
  }
  .fab-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
  .fab {
    width: 48px;
    height: 48px;
  }
  .nav-logo img {
    height: 32px;
  }
  .nav-logo {
    font-size: 1.2rem;
  }
  .hero-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  #search {
    padding: 1.5rem 1rem;
    margin-top: -2rem;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .hero-sub {
    font-size: 0.95rem;
  }
}
