/* =============================================
   CSS CUSTOM PROPERTIES
============================================= */
:root {
  --orange: #f39c11;
  --orange-light: #e9a64e;
  --orange-dark: #000000;

  /* LIGHT MODE DEFAULT */
  --black: #ffffff;
  --black-soft: #f8f4ed;
  --black-card: #ffffff;
  --black-hover: #f3ede3;

  --white: #111111;
  --white-dim: rgba(17,17,17,0.82);
  --white-faint: rgba(0,0,0,0.08);
  --white-faintest: rgba(0,0,0,0.04);

  --gray-text: #6f5b45;
  --gray-light: #8b7760;
  --border: rgba(0,0,0,0.08);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-height: 72px;
  --section-pad: 120px;
  --radius: 12px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f5efe6 40%,
    #ffffff 100%
  );
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.7);
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

/* =============================================
   SCROLL ANIMATIONS BASE
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }
.reveal-delay-9 { transition-delay: 0.9s; }

/* =============================================
   NAVIGATION
============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.nav-logo img {
  width: 120px;
  padding-left: 40px;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo span { color: var(--orange); }
.nav-logo .logo-mark {
  width: 32px;
  height: 32px;
  background: var(--white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--black);
  font-family: var(--font-heading);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 50px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.85);
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--orange);
  color: #111111;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background var(--transition), transform 0.2s;
}
.nav-cta:hover { background: var(--orange-light); transform: scale(1.03); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #111111;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  padding: 32px;
  flex-direction: column;
  gap: 24px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: #111111;
  letter-spacing: 0.04em;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: #cf8c21; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  padding: 4px;
  gap: 4px;
}

.lang-btn {
  min-width: 42px;
  height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  background: transparent;
  color: #753f00;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: all 0.3s ease;
}
.lang-btn:hover {
  background: rgba(83, 83, 83, 0.06);
  color: #ffffff;
}
.lang-btn.active {
  background: var(--orange);
  color: #111111;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.1);
  color: #111111;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.theme-toggle:hover {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f5efe6 40%,
    #ffffff 100%
  );
  border-color: rgba(201, 124, 0, 0.803);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .nav-right {
    display: flex !important;
  }

  .lang-switcher {
    display: none !important;
  }
}

/* =============================================
   MOBILE NAV — SHOW THEME TOGGLE
============================================= */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-right {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }

  .lang-switcher {
    display: none !important;
  }

  .theme-toggle {
    display: flex !important;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }

  .hamburger {
    display: flex !important;
    margin-left: 8px;
    flex-shrink: 0;
  }

  .nav-logo img,
  .logo-img {
    width: 88px;
  }
}

/* =============================================
   SECTION LABELS / HEADERS
============================================= */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #000000;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-text);
  font-weight: 400;
  max-width: 520px;
  line-height: 1.7;
}

/* =============================================
   SECTION 1: HERO
============================================= */
#home {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      #fdfaf6 0%,
      #f5e6c8 50%,
      #ffffff 100%
    );
  z-index: 0;
}

/* Cinematic sand-dune texture via CSS */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 60%, rgba(245,166,35,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 70% at 20% 80%, rgba(245,166,35,0.08) 0%, transparent 60%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
}

/* Decorative geometric element */
.hero-geo {
  position: absolute;
  top: 50%; right: 8%;
  transform: translateY(-50%);
  width: 420px; height: 420px;
  border: 1px solid rgba(245,166,35,0.12);
  border-radius: 50%;
  z-index: 1;
  animation: geoRotate 40s linear infinite;
}
.hero-geo::before {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(245,166,35,0.08);
  border-radius: 50%;
}
.hero-geo::after {
  content: '';
  position: absolute;
  inset: 60px;
  border: 1px solid rgba(245,166,35,0.05);
  border-radius: 50%;
}
@keyframes geoRotate {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 0.3s forwards;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--orange);
  opacity: 0.5;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #000000;
  margin-bottom: 24px;
  opacity: 0;
  animation: heroFadeIn 0.9s ease 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--orange); }

.hero-sub {
  font-size: 1.15rem;
  color: #8b5e3c;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 48px;
  opacity: 0;
  animation: heroFadeIn 0.9s ease 0.7s forwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeIn 0.9s ease 0.9s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #111111;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245,166,35,0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #111111;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.btn-ghost:hover {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.35);
  transform: translateY(-2px);
}

.play-icon {
  width: 18px; height: 18px;
  background: rgba(17,17,17,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-icon::after {
  content: '';
  width: 0; height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid #ffffff;
  margin-left: 1px;
}

.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 1.2s forwards;
}
.scroll-down span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.45);
}
.scroll-arrow {
  width: 20px; height: 32px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 10px;
  position: relative;
}
.scroll-arrow::after {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 6px;
  background: var(--orange);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.4; }
}

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

/* =============================================
   SECTION 2: PACKAGES
============================================= */
#packages {
  padding: var(--section-pad) 48px;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f5efe6 40%,
    #fffdf9 100%
  );
}

.packages-header {
  text-align: center;
  margin-bottom: 72px;
}

.packages-header .section-subtitle {
  margin: 0 auto;
}

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

.tour-card {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f5efe6 40%,
    #ffffff 100%
  );
  border: 1px solid rgba(10, 9, 9, 0.18);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.tour-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(245,166,35,0.2);
  border-color: rgba(245,166,35,0.25);
}

.tour-card:hover::before { opacity: 1; }

.card-icon {
  font-size: 2rem;
  line-height: 1;
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(245,166,35,0.12);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(245,166,35,0.2);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  color: #000000;
  padding-right: 60px;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--gray-text);
  line-height: 1.6;
  flex: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--orange);
  transition: gap 0.3s ease;
  margin-top: auto;
}
.tour-card:hover .card-link { gap: 10px; }
.card-link::after { content: '→'; }

@media (max-width: 1024px) {
  #packages { padding: 80px 32px; }

  .tours-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .tour-card { padding: 26px 20px; }

  .card-title {
    font-size: 1.1rem;
    padding-right: 50px;
  }
}

@media (max-width: 768px) {
  #packages { padding: 70px 20px; }

  .tours-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .tours-grid { grid-template-columns: 1fr; }

  .tour-card { padding: 22px 18px; }

  .card-title {
    font-size: 1rem;
    padding-right: 0;
  }

  .card-badge {
    position: static;
    align-self: flex-start;
    margin-bottom: 8px;
  }
}

/* =============================================
   SECTION 3: EVENTS
============================================= */
#events {
  padding: var(--section-pad) 48px;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f5efe6 40%,
    #fefefe 100%
  );
}

.events-header { margin-bottom: 64px; }

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.events-col-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.featured-event {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f5efe6 40%,
    #e8dcc7 100%
  );
  border: 1px solid rgba(10,9,9,0.18);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition);
}
.featured-event:hover { transform: translateY(-4px); }

.event-img-placeholder {
  height: 200px;
  background: linear-gradient(135deg, #f5e6c8 0%, #e8d3a5 50%, #fdfaf6 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.event-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(245,166,35,0.2) 0%, transparent 60%);
}
.event-img-placeholder span {
  font-size: 3rem;
  z-index: 1;
}
.event-date-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--orange);
  color: #111111;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 1;
}
.event-body { padding: 24px; }
.event-body h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 8px;
}
.event-body p { font-size: 0.85rem; color: var(--gray-text); line-height: 1.6; }

.expertise-card {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f5efe6 40%,
    #e8dcc7 100%
  );
  border: 1px solid rgba(10,9,9,0.18);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  transition: border-color var(--transition), transform var(--transition);
}
.expertise-card:hover {
  border-color: rgba(245,166,35,0.3);
  transform: translateX(4px);
}
.expertise-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.expertise-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 6px;
}
.expertise-card p {
  font-size: 0.82rem;
  color: var(--gray-text);
  line-height: 1.6;
}

.prev-event-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f5efe6 40%,
    #e8dcc7 100%
  );
  border: 1px solid rgba(10,9,9,0.18);
  border-radius: 8px;
  margin-bottom: 12px;
  transition: border-color var(--transition), transform var(--transition);
}
.prev-event-card:hover {
  border-color: rgba(245,166,35,0.2);
  transform: translateX(4px);
}
.prev-event-thumb {
  width: 56px; height: 56px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f5e6c8, #e8d3a5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.prev-event-info h5 {
  font-size: 0.88rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 4px;
}
.prev-event-info span { font-size: 0.75rem; color: var(--gray-text); }

/* =============================================
   SECTION 4: 3D GALLERY
============================================= */
#gallery {
  width: 100%;
  height: 100vh;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f5efe6 40%,
    #e8dcc7 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-container {
  width: 1000px;
  height: 600px;
  position: relative;
}

.gallery-slide .gallery-item {
  width: 200px;
  height: 300px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  display: inline-block;
  transition: 0.5s;
}

.gallery-slide .gallery-item:nth-child(1),
.gallery-slide .gallery-item:nth-child(2) {
  top: 0;
  left: 0;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}

.gallery-slide .gallery-item:nth-child(3) { left: 50%; }
.gallery-slide .gallery-item:nth-child(4) { left: calc(50% + 220px); }
.gallery-slide .gallery-item:nth-child(5) { left: calc(50% + 440px); }
.gallery-slide .gallery-item:nth-child(n+6) {
  left: calc(50% + 660px);
  opacity: 0;
}

.gallery-content {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translate(0, -50%);
  color: #ffffff;
  width: 300px;
  display: none;
}
.gallery-item:nth-child(2) .gallery-content { display: block; }

.gallery-name {
  font-size: 40px;
  font-weight: bold;
}

.gallery-des {
  margin: 20px 0;
  color: #ffffff;
}

.gallery-buttons {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}
.gallery-buttons button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  margin: 0 5px;
  cursor: pointer;
  background: #ffffff;
  color: #111111;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }
.lightbox-inner {
  width: 70vw;
  max-width: 900px;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.lightbox-close {
  position: fixed;
  top: 24px; right: 32px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.15); }
.lightbox-label {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #ffffff;
  letter-spacing: 0.05em;
}

/* =============================================
   SECTION 5: CONTACT
============================================= */
#contact {
  padding: var(--section-pad) 48px;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f5efe6 40%,
    #e8dcc7 100%
  );
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info-col .section-title { margin-bottom: 8px; }
.contact-info-col .section-subtitle { margin-bottom: 48px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon {
  width: 40px; height: 40px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail div { flex: 1; }
.contact-detail strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 3px;
}
.contact-detail a,
.contact-detail span {
  font-size: 0.9rem;
  color: var(--white-dim);
  transition: color 0.3s;
}
.contact-detail a {
  text-decoration: none;
}
.contact-detail a:hover {
  color: var(--orange);
  text-decoration: underline;
}

.map-placeholder {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f5efe6 40%,
    #e8dcc7 100%
  );
  border: 1px solid rgba(10,9,9,0.18);
  border-radius: var(--radius);
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 60% 40%, rgba(245,166,35,0.06) 0%, transparent 70%),
    repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(0,0,0,0.015) 30px, rgba(0,0,0,0.015) 31px),
    repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(0,0,0,0.015) 30px, rgba(0,0,0,0.015) 31px);
}
.map-pin { font-size: 1.8rem; position: relative; z-index: 1; }
.map-coords {
  font-size: 0.75rem;
  color: var(--gray-text);
  letter-spacing: 0.08em;
  font-family: monospace;
  position: relative;
  z-index: 1;
}
.map-label {
  font-size: 0.82rem;
  color: var(--orange);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.contact-form {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f5efe6 40%,
    #e8dcc7 100%
  );
  border: 1px solid rgba(10,9,9,0.18);
  border-radius: 16px;
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group.full { grid-column: span 2; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #111111 !important;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
  -webkit-appearance: none;
}
.form-group select {
  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='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  background-color: rgba(255,255,255,0.8);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.form-group select option {
  background: #ffffff;
  color: #111111;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(245,166,35,0.5);
  background: rgba(245,166,35,0.03);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(0,0,0,0.5);
}

/* CTA SELECT ANIMATION */
.form-group select:hover {
  transform: translateY(-3px);
  border-color: rgba(245,166,35,0.4);
  box-shadow:
    0 12px 30px rgba(0,0,0,0.12),
    0 0 0 1px rgba(245,166,35,0.2);
}
.form-group select:focus {
  outline: none;
  transform: scale(1.02);
  border-color: #f5a52376;
  box-shadow:
    0 0 0 2px rgba(245,166,35,0.3),
    0 12px 30px rgba(0,0,0,0.12);
}

.btn-submit {
  width: 100%;
  background: var(--orange);
  color: #111111;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.btn-submit:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245,166,35,0.3);
}

/* =============================================
   SECTION 6: INFO / FOOTER
============================================= */
#info {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f5efe6 40%,
    #e8dcc7 100%
  );
  border-top: 1px solid var(--border);
}

.info-label {
  text-align: center;
  margin-bottom: 72px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
}

.info-col-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(245,166,35,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-col-title::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--orange);
}

.about-text {
  font-size: 0.92rem;
  color: #000000;
  line-height: 1.8;
  margin-bottom: 24px;
}
.about-stats {
  display: flex;
  gap: 32px;
}
.stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.stat span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-text);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  color: #2c1f11;
  transition: color 0.3s;
}
.faq-q:hover { color: #111111; }
.faq-icon {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
  color: var(--orange);
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: var(--orange);
  border-color: var(--orange);
  color: #111111;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 0.84rem;
  color: #2c1f11;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 16px;
}

.fact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.fact-label {
  color: var(--gray-text);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
}
.fact-value {
  color: #2c1f11;
  text-align: right;
}

.destinations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.dest-tag {
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.18);
  color: var(--orange);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* =============================================
   FOOTER BAR
============================================= */
.footer-bar {
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: #111111;
}
.footer-logo span { color: var(--orange); }
.footer-copy {
  font-size: 0.8rem;
  color: #000000;
  letter-spacing: 0.04em;
}
.S-links {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.social-link:hover {
  background: rgba(245,166,35,0.15);
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-2px);
}

/* =============================================
   DIVIDER SECTION LABEL
============================================= */
.section-wrapper {
  position: relative;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .nav { padding: 0 28px; }
  .nav-links { gap: 20px; }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 2; }
  .info-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  #packages, #events, #gallery, #contact, #info { padding-left: 28px; padding-right: 28px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .tours-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 2; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .info-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-bar { flex-direction: column; gap: 20px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .hero-geo { display: none; }
  .about-stats { gap: 20px; }
  #packages, #events, #gallery, #contact, #info { padding-left: 20px; padding-right: 20px; }
  .contact-form { padding: 24px; }
  .lightbox-inner { width: 90vw; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 1; }
}

/* =============================================
   EXTRA GALLERY / SLIDE PART
============================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.gallery .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 600px;
  background: #f5f5f5;
  box-shadow: 0 30px 50px #dbdbdb;
}

.gallery.slide .item:nth-child(3) {
  left: 50%;
}
.gallery.slide .item:nth-child(4) {
  left: calc(50% + 300px);
}
.gallery.slide .item:nth-child(5) {
  left: calc(50% + 200px);
}
.gallery.slide .item:nth-child(n + 6) {
  left: calc(50% + 300px);
  opacity: 0;
}

.gallery.item .content {
  position: absolute;
  top: 50%;
  left: 100px;
  width: 300px;
  text-align: left;
  color: #ffffff;
  transform: translate(0, -50%);
  font-family: system-ui;
  display: none;
}

.slide .item:nth-child(2) .content {
  display: block;
}

.content .name {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: bold;
  opacity: 0;
  animation: animate 1s ease-in-out 1 forwards;
}
.content .des {
  margin-top: 10px;
  margin-bottom: 20px;
  opacity: 0;
  animation: animate 1s ease-in-out 0.3s 1 forwards;
}
.content button {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  opacity: 0;
  animation: animate 1s ease-in-out 0.6s 1 forwards;
}

@keyframes animate {
  from {
    opacity: 0;
    transform: translate(0, 100px);
    filter: blur(33px);
  }

  to {
    opacity: 1;
    transform: translate(0);
    filter: blur(0);
  }
}

.button {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 20px;
}
.button button {
  width: 40px;
  height: 35px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin: 0 5px;
  border: 1px solid #000;
  transition: 0.3s;
  background: #ffffff;
  color: #111111;
}
.button button:hover {
  background: #ababab;
  color: #fff;
}

/* =============================================
   LOCATION BAR
============================================= */
.location-bar {
  position: relative;
  z-index: 5;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f5efe6 40%,
    #e8dcc7 100%
  );
  border-bottom: 1px solid var(--border);
  padding: 10px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 0;
}
.location-bar-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #1f1408;
}
.location-bar-inner .pin { font-size: 0.9rem; }
.location-bar-inner strong { color: var(--orange); font-weight: 600; }
.location-bar-inner .sep { color: var(--border); margin: 0 4px; }
.location-bar .pulse {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.location-bar .pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(245,166,35,0.3);
  animation: pulsering 1.8s ease-in-out infinite;
}
@keyframes pulsering {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.8); opacity: 0; }
}
@media (max-width: 768px) {
  .location-bar { padding: 9px 20px; }
  .location-bar-inner { font-size: 0.72rem; }
}

.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: none;
  transition: opacity 0.3s;
}
.nav-logo-img:hover { opacity: 0.85; }
.nav-logo { padding: 4px 0; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* =============================================
   EVENTS TOGGLE SECTION
============================================= */
.events-toggle-section {
  padding: var(--section-pad) 48px;
  background:
    radial-gradient(circle at top left, rgba(245, 166, 35, 0.06), transparent 28%),
    radial-gradient(circle at bottom right, rgba(245, 166, 35, 0.04), transparent 24%),
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f5efe6 40%,
      #e8dcc7 100%
    );
  position: relative;
  overflow: hidden;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.events-header {
  flex: 1 1 420px;
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.events-toggle-wrap {
  display: flex;
  justify-content: flex-start;
  margin: 36px 0 28px;
}

.expertise-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 240px;
  padding: 16px 24px;
  border-radius: 16px;
  border: 1px solid rgba(245, 166, 35, 0.18);
  background: rgba(255,255,255,0.7);
  color: #111111;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.35s ease;
  cursor: pointer;
}
.expertise-toggle-btn:hover {
  background: rgba(245, 166, 35, 0.08);
  border-color: rgba(245, 166, 35, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.expertise-toggle-btn.active {
  background: rgba(245, 166, 35, 0.1);
  border-color: rgba(245, 166, 35, 0.4);
}

.toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}
.expertise-toggle-btn.active .toggle-icon {
  transform: rotate(45deg);
  background: var(--orange);
  color: #111111;
}

.expertises-content {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  margin-top: 0;
  transition:
    max-height 0.8s ease,
    opacity 0.5s ease,
    transform 0.5s ease,
    margin-top 0.5s ease;
}
.expertises-content.open {
  max-height: 3000px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 32px;
}

.event-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
}

.event-service-card {
  padding: 26px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.event-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 166, 35, 0.22);
  box-shadow:
    0 24px 46px rgba(0, 0, 0, 0.12),
    0 0 24px rgba(245, 166, 35, 0.08);
}

.event-service-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.15);
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.event-service-card h3 {
  margin: 0 0 14px;
  color: #111111;
  font-size: 1.15rem;
  font-weight: 600;
}

.event-service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.event-service-card li {
  position: relative;
  padding-left: 18px;
  font-size: 0.92rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 8px;
}
.event-service-card li:last-child { margin-bottom: 0; }
.event-service-card li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.events-bottom-cta {
  width: 100%;
  margin-top: 48px;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.5);
  text-align: center;
}
.events-bottom-cta p {
  margin-bottom: 16px;
  color: rgba(17,17,17,0.72);
  font-size: 1rem;
}

/* =============================================
   CIRCLE PHOTOS
============================================= */
.events-photo-circles {
  position: relative;
  flex: 1 1 360px;
  min-width: 320px;
  max-width: 540px;
  height: 340px;
  margin: 40px 0 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.events-photo-circles::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: 80px;
  top: 20px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.18) 0%,
    rgba(245, 166, 35, 0.03) 60%,
    transparent 100%
  );
  filter: blur(30px);
  z-index: 0;
}

.circle-photo {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;

  border: 5px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.12),
    0 0 25px rgba(245, 166, 35, 0.12),
    inset 0 0 12px rgba(255, 255, 255, 0.15);

  transition: transform 0.5s ease, box-shadow 0.5s ease;
  animation: floatCircle 5s ease-in-out infinite;
}

.circle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: brightness(0.96) contrast(1.03) saturate(1.02);
}
.circle-photo:hover {
  transform: scale(1.08) translateY(-8px);
  z-index: 10;
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.18),
    0 0 35px rgba(245, 166, 35, 0.18),
    inset 0 0 18px rgba(255, 255, 255, 0.18);
}
.circle-photo:hover img {
  transform: scale(1.12);
  filter: brightness(1) contrast(1.08) saturate(1.1);
}

.circle-1 {
  right: 260px;
  top: 120px;
  z-index: 2;
  animation-delay: 0s;
}
.circle-2 {
  right: 120px;
  top: 20px;
  z-index: 4;
  animation-delay: 1.2s;
}
.circle-3 {
  right: 0;
  top: 130px;
  z-index: 3;
  animation-delay: 2.4s;
}

@keyframes floatCircle {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@media (min-width: 1200px) {
  .events-toggle-section {
    gap: 90px;
    padding: 120px 100px;
  }

  .events-photo-circles {
    max-width: 720px;
    height: 460px;
  }

  .circle-photo {
    width: 230px;
    height: 230px;
  }

  .circle-1 {
    right: 320px;
    top: 180px;
  }

  .circle-2 {
    right: 150px;
    top: 20px;
  }

  .circle-3 {
    right: -20px;
    top: 185px;
  }
}

@media (max-width: 991px) {
  .event-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .events-toggle-section {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 90px 24px;
  }

  .events-header { max-width: 100%; }
  .events-toggle-wrap { justify-content: center; }

  .expertise-toggle-btn {
    width: 100%;
    max-width: 280px;
  }

  .events-photo-circles {
    max-width: 100%;
    min-width: auto;
    height: 240px;
    margin: 20px auto 0;
  }

  .circle-photo {
    width: 120px;
    height: 120px;
  }

  .circle-1 {
    right: 180px;
    top: 80px;
  }

  .circle-2 {
    right: 90px;
    top: 10px;
  }

  .circle-3 {
    right: 0;
    top: 85px;
  }

  .event-services-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   IMAGE SLIDER SECTIONS
========================= */
.image-slider-section {
  width: 100%;
  padding: 56px 20px;
  background: #ffffff;
  box-sizing: border-box;
}

.image-slider-section + .image-slider-section {
  padding-top: 10px;
}

/* =========================
   HEADER
========================= */
.slider-header {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-header h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-align: center;
}

/* =========================
   TOGGLE
========================= */
.slider-toggle {
  display: none;
}

/* =========================
   SLIDER WRAPPER
========================= */
.slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

/* =========================
   TRACK
========================= */
.slider-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: scrollSlider 30s linear infinite;
}

/* =========================
   CARD
========================= */
.slide {
  flex: 0 0 auto;
  width: 300px;
  height: 210px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.08);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.slide:hover img {
  transform: scale(1.05);
}

/* =========================
   PAUSE
========================= */
.image-slider-section .slider-toggle:checked ~ .slider .slider-track,
.slider:hover .slider-track {
  animation-play-state: paused;
}

/* =========================
   ANIMATION
========================= */
@keyframes scrollSlider {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 10px));
  }
}

/* =========================
   LAPTOP
========================= */
@media (max-width: 1200px) {
  .image-slider-section {
    padding: 48px 18px;
  }

  .slider {
    max-width: 1000px;
  }

  .slide {
    width: 270px;
    height: 190px;
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {
  .slider-header {
    margin-bottom: 22px;
  }

  .slider-header h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }

  .slider {
    max-width: 900px;
  }

  .slider-track {
    gap: 16px;
    animation-duration: 24s;
  }

  .slide {
    width: 240px;
    height: 165px;
    border-radius: 20px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .image-slider-section {
    padding: 38px 14px;
  }

  .slider-header {
    margin-bottom: 18px;
  }

  .slider-header h2 {
    width: fit-content;
    margin: 0 auto;
    padding: 12px 24px;
    background: var(--orange);
    color: var(--black);
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-align: center;
  }

  .slider {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .slider-track {
    gap: 14px;
    animation-duration: 22s;
  }

  .slide {
    width: 220px;
    height: 150px;
    border-radius: 18px;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .slider-header h2 {
    font-size: 1.05rem;
    padding: 10px 18px;
  }

  .slide {
    width: 190px;
    height: 130px;
    border-radius: 16px;
  }

  .slider-track {
    gap: 12px;
  }
}
/* =========================
   FILTER EFFECT
========================= */
.slide img {
  filter: grayscale(0);
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* when hover slider: all images become gray */
.slider:hover .slide img {
  filter: grayscale(1);
}

/* hovered image returns normal */
.slider .slide:hover img {
  filter: grayscale(0) !important;
  transform: scale(1.05);
}
.expertise-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 240px;
  padding: 16px 24px;
  border-radius: 16px;
  border: 1px solid rgba(245, 166, 35, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.35s ease;
  cursor: pointer;
  text-decoration: none;
}

.expertise-toggle-btn:hover .toggle-icon {
  transform: rotate(-8deg) scale(1.05);
  background: var(--orange);
  color: var(--black);
}
.slider-btn:hover {
  transform: translateY(-2px);
}
/* =============================================
   MOBILE LIGHT MODE FIX
   paste at the end of the css file
============================================= */
@media (max-width: 768px) {
  body {
    background: linear-gradient(
      135deg,
      #ffffff 0%,
      #f5efe6 40%,
      #e8dcc7 100%
    );
    color: #111111;
  }

  /* NAVBAR */
  .nav {
    padding: 0 16px;
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .nav-logo,
  .nav-logo span {
    color: #111111;
  }

  .nav-logo img,
  .nav-logo-img,
  .logo-img {
    width: 88px;
    height: auto;
    filter: none;
  }

  .nav-right {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }

  .lang-switcher {
    display: none !important;
  }

  .theme-toggle {
    display: flex !important;
    width: 38px;
    height: 38px;
    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.1);
    color: #111111;
  }

  .hamburger {
    display: flex !important;
    margin-left: 6px;
  }

  .hamburger span {
    background: #111111 !important;
  }

  /* MOBILE MENU */
  .mobile-menu {
    background: rgba(255,255,255,0.98) !important;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 24px 20px;
    gap: 18px;
  }

  .mobile-menu a {
    color: #111111 !important;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding-bottom: 14px;
    font-size: 1rem;
  }

  .mobile-menu a:hover {
    color: var(--orange) !important;
  }

  /* HERO */
  #home {
    min-height: 100svh;
    padding: 110px 18px 50px;
  }

  .hero-content {
    padding: 0 6px;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    line-height: 1.08;
    color: #000000;
  }

  .hero-sub {
    font-size: 0.98rem;
    line-height: 1.65;
    color: #6b5a45;
    margin-bottom: 30px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

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

  .btn-ghost {
    color: #111111;
    border: 1px solid rgba(0,0,0,0.18);
    background: rgba(255,255,255,0.45);
  }

  .scroll-down {
    bottom: 18px;
  }

  /* SECTIONS SPACING */
  #packages,
  #events,
  #gallery,
  #contact,
  #info,
  .events-toggle-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* TITLES */
  .section-title,
  .events-col-title,
  .info-col-title,
  .card-title,
  .event-body h4,
  .expertise-card h4,
  .event-service-card h3 {
    color: #000000;
  }

  .section-subtitle,
  .card-desc,
  .event-body p,
  .expertise-card p,
  .about-text,
  .faq-a,
  .fact-value,
  .footer-copy {
    color: #5f4d39;
  }

  /* CARDS */
  .tour-card,
  .featured-event,
  .expertise-card,
  .prev-event-card,
  .contact-form,
  .map-placeholder,
  .event-service-card {
    background: linear-gradient(
      135deg,
      #ffffff 0%,
      #f8f1e7 45%,
      #efe2cc 100%
    ) !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  }

  .tour-card,
  .expertise-card,
  .event-service-card,
  .contact-form {
    padding: 20px 16px;
  }

  .prev-event-card {
    align-items: flex-start;
  }

  /* GRID FIXES */
  .tours-grid,
  .events-grid,
  .event-services-grid,
  .form-row,
  .contact-inner,
  .info-grid {
    grid-template-columns: 1fr !important;
  }

  /* GALLERY */
  #gallery {
    height: auto;
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .gallery-container,
  .gallery .container {
    width: 100%;
    max-width: 100%;
    height: 520px;
  }

  .gallery-content {
    left: 20px;
    width: calc(100% - 40px);
    color: #ffffff;
  }

  .gallery-name {
    font-size: 28px;
  }

  .gallery-des,
  .content .des {
    color: #ffffff;
    font-size: 0.92rem;
  }

  .button button,
  .gallery-buttons button {
    background: #ffffff;
    color: #111111;
    border: 1px solid rgba(0,0,0,0.15);
  }

  /* CONTACT FORM */
  .contact-form {
    padding: 22px 16px;
  }

  .form-group label {
    color: #6b5a45;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(255,255,255,0.92) !important;
    color: #111111 !important;
    border: 1px solid rgba(0,0,0,0.14) !important;
  }

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

  /* FAQ */
  .faq-q {
    color: #2c1f11;
  }

  .faq-icon {
    border-color: rgba(0,0,0,0.16);
  }

  /* LOCATION BAR */
  .location-bar {
    padding: 9px 14px;
    text-align: center;
  }

  .location-bar-inner {
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.72rem;
    line-height: 1.5;
    color: #2c1f11;
  }

  /* FOOTER */
  .footer-bar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 24px 18px;
  }

  .footer-logo {
    color: #111111;
  }

  .social-link {
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.08);
    color: #111111;
  }

  /* CIRCLE PHOTOS */
  .events-photo-circles {
    max-width: 100%;
    min-width: auto;
    height: 240px;
    margin: 20px auto 0;
  }

  .circle-photo {
    width: 120px;
    height: 120px;
    border: 4px solid rgba(255,255,255,0.7);
  }

  .circle-1 {
    right: 180px;
    top: 80px;
  }

  .circle-2 {
    right: 90px;
    top: 10px;
  }

  .circle-3 {
    right: 0;
    top: 85px;
  }
}

/* EXTRA SMALL PHONES */
@media (max-width: 480px) {
  .nav {
    padding: 0 12px;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .hero-sub {
    font-size: 0.92rem;
  }

  .section-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .tour-card,
  .featured-event,
  .expertise-card,
  .prev-event-card,
  .contact-form,
  .event-service-card {
    padding: 18px 14px;
  }

  .gallery-container,
  .gallery .container {
    height: 470px;
  }

  .gallery-name {
    font-size: 24px;
  }

  .circle-photo {
    width: 100px;
    height: 100px;
  }

  .circle-1 {
    right: 145px;
    top: 82px;
  }

  .circle-2 {
    right: 70px;
    top: 14px;
  }

  .circle-3 {
    right: 0;
    top: 90px;
  }
}
.social-links{
  display:flex;
  gap:14px;
}

.social-link{
  width:46px;
  height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#ffffff6c;
  border:1px solid #e5e5e5;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  transition:0.3s ease;
}

.social-link svg{
  width:22px;
  height:22px;
}

/* Colors */
.icon-black{color:#111;}
.icon-blue{color:#1877F2;}
.icon-green{color:#25D366;}
.icon-dark{color:#000;}

/* Hover */
.social-link:hover{
  transform:translateY(-4px) scale(1.06);
  box-shadow:0 14px 28px rgba(0,0,0,0.12);
}
.footer-copy{
  width:100%;
  text-align:center;
  display:flex;
  justify-content:center;
  align-items:center;
  margin:0 auto;
}