/* ==========================================================================
   IVANZI HOLIDAYS - LUXURY TRAVEL & TOURISM DESIGN SYSTEM
   Tagline: Explore More. Travel Better.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,600&display=swap');

/* --- COLOR PALETTE & VARIABLES --- */
:root {
  --primary-navy: #0B192C;
  --navy-dark: #070F1B;
  --navy-light: #1E2E45;
  --navy-accent: #1E3E62;
  
  --gold-accent: #D4AF37;
  --gold-hover: #B89628;
  --gold-light: #F4E8C1;
  --gold-glow: rgba(212, 175, 55, 0.25);
  
  --warm-sand: #F8F5EE;
  --sand-light: #FAF8F5;
  --sand-card: #FFFFFF;
  --sand-border: #E8E2D5;

  --text-dark: #0F172A;
  --text-muted: #475569;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;
  
  --green-nature: #1E5631;
  --green-light: #E8F5E9;
  
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  
  --shadow-sm: 0 4px 6px -1px rgba(11, 25, 44, 0.05), 0 2px 4px -1px rgba(11, 25, 44, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(11, 25, 44, 0.08), 0 4px 6px -2px rgba(11, 25, 44, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(11, 25, 44, 0.12), 0 10px 10px -5px rgba(11, 25, 44, 0.04);
  --shadow-hover: 0 25px 35px -5px rgba(11, 25, 44, 0.18), 0 12px 12px -5px rgba(11, 25, 44, 0.08);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --container-width: 1280px;
}

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

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

body {
  font-family: var(--font-sans);
  background-color: #0A192F;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  content-visibility: auto;
  image-rendering: -webkit-optimize-contrast;
}

/* Fast-Loading Shimmer Background Placeholder */
.package-img-box, .experience-card, .destination-img-wrapper, .gallery-item {
  background: linear-gradient(110deg, #0A192F 8%, #1C2D4B 18%, #0A192F 33%);
  background-size: 200% 100%;
  animation: 1.5s imgShimmer linear infinite;
}

@keyframes imgShimmer {
  to {
    background-position-x: -200%;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, .serif-font {
  font-family: var(--font-serif);
  color: var(--primary-navy);
  line-height: 1.25;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: rgba(212, 175, 55, 0.12);
  color: #B8860B;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary-navy);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

.text-gold {
  color: var(--gold-accent);
}

.text-white {
  color: #ffffff !important;
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* --- LAYOUT UTILITIES --- */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.section-padding {
  padding: 100px 0;
}

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

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-accent) 0%, #B89628 100%);
  color: var(--primary-navy);
  box-shadow: 0 4px 15px var(--gold-glow);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #E5C158 0%, var(--gold-accent) 100%);
}

.btn-navy {
  background-color: var(--primary-navy);
  color: var(--text-white);
  box-shadow: var(--shadow-md);
}

.btn-navy:hover {
  background-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: var(--text-white);
  color: var(--primary-navy);
  border-color: var(--text-white);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--primary-navy);
  border: 1.5px solid var(--primary-navy);
}

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

.btn-whatsapp {
  background-color: #25D366;
  color: var(--text-white);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

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

/* --- HEADER & NAVBAR --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 14px 0;
  background: #0A192F;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid #D4AF37;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.header.scrolled {
  padding: 10px 0;
  background: rgba(10, 25, 47, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold-accent), #B89628);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-navy);
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

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

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.5px;
  line-height: 1;
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--gold-accent);
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 3px;
  text-transform: uppercase;
}

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

.nav-link {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold-accent);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-accent);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 2.5px;
  background-color: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

/* Mobile Nav Drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: var(--primary-navy);
  z-index: 999;
  padding: 100px 25px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 25px;
  transition: var(--transition);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
}

.mobile-menu.active {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-size: 1.15rem;
  color: var(--text-white);
  font-weight: 600;
}

.mobile-nav-link:hover {
  color: var(--gold-accent);
  padding-left: 8px;
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-white);
  padding-top: 140px;
  padding-bottom: 120px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(11, 25, 44, 0.75) 0%,
    rgba(11, 25, 44, 0.5) 50%,
    rgba(11, 25, 44, 0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-top: 20px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
  line-height: 1.15;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  font-weight: 400;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-floating-badge {
  position: absolute;
  bottom: -40px;
  right: 5%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-navy);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  border-left: 4px solid var(--gold-accent);
  animation: float 4s ease-in-out infinite;
}

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

/* --- QUICK TRIP SEARCH PANEL --- */
.search-panel-wrapper {
  position: relative;
  z-index: 10;
  margin-top: -70px;
  margin-bottom: 60px;
}

.search-panel {
  background: var(--sand-card);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--sand-border);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group label i {
  color: var(--gold-accent);
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--sand-light);
  border: 1.5px solid var(--sand-border);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--gold-accent);
  background: var(--text-white);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

/* --- ABOUT SECTION --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-img-sub {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 240px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 6px solid var(--warm-sand);
  box-shadow: var(--shadow-lg);
}

.about-experience-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--primary-navy);
  color: var(--text-white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--gold-accent);
  text-align: center;
}

.about-experience-badge .years {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-serif);
  color: var(--gold-accent);
  line-height: 1;
}

.about-experience-badge .txt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 4px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 15px 0 25px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #ffffff;
  font-size: 0.95rem;
}

.about-feature-item i {
  width: 28px;
  height: 28px;
  background: var(--gold-light);
  color: var(--gold-hover);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--sand-border);
}

.stat-card {
  text-align: center;
  background: var(--sand-card);
  padding: 24px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sand-border);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-accent);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-serif);
  color: var(--primary-navy);
  line-height: 1.1;
}

.stat-number span {
  color: var(--gold-accent);
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 6px;
}

/* --- DESTINATIONS SECTION --- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.destination-card {
  background: var(--sand-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sand-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(212, 175, 55, 0.4);
}

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

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

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

.destination-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(11, 25, 44, 0.75);
  backdrop-filter: blur(8px);
  color: var(--gold-accent);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.destination-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.destination-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.destination-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.6;
}

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

.explore-btn {
  color: var(--primary-navy);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.explore-btn i {
  transition: transform 0.3s ease;
}

.destination-card:hover .explore-btn i {
  transform: translateX(4px);
  color: var(--gold-accent);
}

/* --- TOUR PACKAGES SECTION --- */
.package-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 40px 0 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  background: var(--sand-card);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--primary-navy);
  color: var(--gold-accent);
  border-color: var(--primary-navy);
  box-shadow: var(--shadow-sm);
}

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

.package-card {
  background: var(--sand-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--sand-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.package-img-box {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

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

.package-duration-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--gold-accent);
  color: var(--primary-navy);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: var(--shadow-sm);
}

.package-price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(11, 25, 44, 0.85);
  backdrop-filter: blur(8px);
  color: var(--text-white);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  text-align: right;
}

.package-price-badge .label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.7);
  display: block;
}

.package-price-badge .amount {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold-accent);
}

.package-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--primary-navy);
}

.package-inclusions {
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inclusion-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.inclusion-item i {
  color: var(--gold-accent);
  font-size: 0.85rem;
}

.package-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
}

.disclaimer-text {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 40px;
  font-style: italic;
}

/* --- CUSTOMIZED TOUR SECTION --- */
.custom-tour-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary-navy) 100%);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.custom-tour-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.custom-tour-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.custom-tour-info .section-title {
  color: var(--text-white);
}

.custom-tour-info p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.custom-form-box {
  background: linear-gradient(145deg, #0e233e 0%, #173256 100%);
  border: 2px solid #D4AF37;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.custom-form-box h3 {
  color: #D4AF37 !important;
  letter-spacing: 0.5px;
}

.custom-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.custom-form-grid .full-width {
  grid-column: 1 / -1;
}

.custom-form-box label {
  color: #F8FAFC;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
}

.custom-form-box .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  color: #ffffff;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.custom-form-box .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.custom-form-box .form-control option {
  background: #0e233e;
  color: #ffffff;
}

.custom-form-box .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: #D4AF37;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  outline: none;
}

/* --- WHY CHOOSE US SECTION --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.why-card {
  background: var(--sand-card);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--sand-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gold-accent);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.3);
}

.why-card:hover::before {
  height: 100%;
}

.why-icon-box {
  width: 60px;
  height: 60px;
  background: var(--sand-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-accent);
  font-size: 1.6rem;
  margin-bottom: 22px;
  border: 1px solid var(--sand-border);
}

.why-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* --- TRAVEL EXPERIENCES SECTION --- */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.experience-card {
  position: relative;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

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

.experience-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 25, 44, 0.88) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: var(--transition);
}

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

.experience-card:hover .experience-overlay {
  background: linear-gradient(180deg, rgba(11, 25, 44, 0.2) 0%, rgba(11, 25, 44, 0.95) 100%);
}

.experience-title {
  color: var(--text-white);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
}

/* --- PHOTO GALLERY SECTION --- */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 30px 0 40px;
  flex-wrap: wrap;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item.large {
  grid-row: span 2;
  height: 540px;
}

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

.gallery-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 25, 44, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--text-white);
  padding: 20px;
  text-align: center;
}

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

.gallery-item:hover .gallery-hover-overlay {
  opacity: 1;
}

.gallery-hover-overlay i {
  font-size: 2rem;
  color: var(--gold-accent);
  margin-bottom: 10px;
}

.gallery-hover-title {
  font-size: 1.2rem;
  font-weight: 700;
}

/* LIGHTBOX MODAL */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(7, 15, 27, 0.95);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox-modal.active {
  display: flex;
}

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

.lightbox-img {
  max-height: 80vh;
  max-width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: var(--text-white);
  font-size: 1.1rem;
  margin-top: 16px;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: var(--text-white);
  font-size: 2.2rem;
  cursor: pointer;
}

/* --- ITINERARY TIMELINE SECTION --- */
.itinerary-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.itinerary-tab-btn {
  padding: 12px 24px;
  background: var(--sand-card);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-full);
  font-weight: 700;
  color: var(--primary-navy);
  cursor: pointer;
  transition: var(--transition);
}

.itinerary-tab-btn.active {
  background: var(--gold-accent);
  color: var(--primary-navy);
  box-shadow: var(--shadow-md);
}

.timeline-box {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 30px;
}

.timeline-box::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: var(--gold-accent);
}

.timeline-item {
  position: relative;
  margin-bottom: 36px;
  background: var(--sand-card);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sand-border);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 24px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-navy);
  border: 4px solid var(--gold-accent);
}

.timeline-day {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-hover);
  background: var(--gold-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--sand-card);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial-stars {
  color: #FFC107;
  font-size: 1.1rem;
}

.testimonial-quote {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--sand-border);
}

.user-avatar-placeholder {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-light);
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.user-info .name {
  font-weight: 700;
  color: var(--primary-navy);
  font-size: 1rem;
}

.user-info .location {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* --- CALL TO ACTION BANNER --- */
.cta-banner {
  background: linear-gradient(rgba(11, 25, 44, 0.85), rgba(11, 25, 44, 0.85)),
              url('../assets/images/user_hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-white);
  padding: 100px 0;
  text-align: center;
}

.cta-content {
  max-width: 760px;
  margin: 0 auto;
}

.cta-title {
  color: var(--text-white);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 18px;
}

.cta-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 36px;
}

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

/* --- CONTACT SECTION --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  margin-top: 50px;
}

.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gold-light);
  color: var(--gold-hover);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 220px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sand-border);
  margin-top: 20px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Embedded Interactive Google Maps Card */
.google-maps-card {
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  background: #0a192f;
}

.google-maps-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.maps-open-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  background: #ffffff;
  color: #1E88E5;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.maps-open-btn:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  color: #1565C0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.maps-directions-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 5;
  background: #24141A;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  border: 1px solid rgba(212, 175, 55, 0.5);
  transition: all 0.2s ease;
}

.maps-directions-btn:hover {
  background: #361f28;
  color: #D4AF37;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
}

.contact-form-card {
  background: var(--sand-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand-border);
  box-shadow: var(--shadow-md);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form-grid .full-width {
  grid-column: 1 / -1;
}

/* --- FLOATING WHATSAPP BUTTON --- */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

/* BACK TO TOP BUTTON */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 48px;
  height: 48px;
  background: var(--primary-navy);
  color: var(--gold-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

/* --- FOOTER --- */
.footer {
  background: var(--navy-dark);
  color: var(--text-white);
  padding-top: 80px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .brand-name {
  font-size: 1.6rem;
}

.footer-about {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  margin: 16px 0 24px;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--gold-accent);
  color: var(--primary-navy);
}

.footer-title {
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--gold-accent);
  padding-left: 6px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* --- RESPONSIVE BREAKPOINTS (DESKTOP, TABLET & MOBILE OPTIMIZED) --- */
@media (max-width: 1024px) {
  .container {
    width: 92%;
  }

  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .custom-tour-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .about-img-main {
    height: 380px;
  }

  .about-img-sub {
    right: 10px;
    width: 200px;
    height: 160px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .container {
    padding: 0 20px;
  }

  .header {
    padding: 14px 0;
  }

  .hero {
    padding-top: 130px;
    padding-bottom: 80px;
    min-height: 85vh;
  }

  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    margin-bottom: 18px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.75;
  }

  .hero-badge {
    margin-top: 15px;
    margin-bottom: 22px;
    font-size: 0.82rem;
    padding: 8px 18px;
  }

  .custom-tour-grid {
    grid-template-columns: 1fr;
  }

  .section-padding {
    padding: 65px 0;
  }

@media (max-width: 992px) {
  .nav-links, .nav-actions .btn {
    display: none !important;
  }
  
  .hamburger {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  
  .hero-floating-badge {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 14px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 100%;
    padding: 15px 24px;
    font-size: 1.05rem;
  }

  .search-panel-wrapper {
    margin-top: -35px;
    margin-bottom: 50px;
  }

  .search-panel {
    padding: 26px 20px;
    border-radius: var(--radius-lg);
  }

  .search-form {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .search-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
  }

  .form-control {
    padding: 14px 16px;
    font-size: 0.98rem;
    border-radius: 10px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 30px;
    padding-top: 30px;
  }

  .stat-card {
    padding: 20px 14px;
    border-radius: var(--radius-md);
  }

  .stat-number {
    font-size: 2.1rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .package-actions {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .custom-form-grid, .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .custom-form-box, .contact-form-card {
    padding: 28px 20px;
    border-radius: var(--radius-lg);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .gallery-item {
    height: 210px;
    border-radius: var(--radius-md);
  }

  .gallery-item.large {
    grid-row: auto;
    height: 210px;
  }

  .timeline-box {
    padding-left: 20px;
  }

  .timeline-item {
    padding: 18px 20px;
  }

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

  .footer {
    padding-bottom: 40px;
  }

  /* Mobile Navigation Drawer links spacing */
  .mobile-menu {
    width: 85%;
    max-width: 330px;
    padding: 95px 28px 40px;
  }

  .mobile-nav-links {
    gap: 22px;
  }

  .mobile-nav-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Floating action buttons */
  .floating-whatsapp {
    bottom: 24px;
    right: 20px;
    width: 56px;
    height: 56px;
    font-size: 1.7rem;
  }

  .back-to-top {
    bottom: 24px;
    left: 20px;
    width: 46px;
    height: 46px;
    font-size: 1.05rem;
  }
}

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

  .section-title {
    font-size: 1.55rem;
  }

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

  .package-actions {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   MOBILE APP NATIVE COMPONENTS (BOTTOM NAV, BACKDROP, ITINERARY MODAL)
   ========================================================================== */

/* 1. MOBILE MENU BACKDROP */
.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

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

/* 2. MOBILE BOTTOM NAVIGATION REMOVED */

/* 3. HORIZONTAL SWIPEABLE PILL FILTERS ON MOBILE */
@media (max-width: 768px) {
  .package-filters, .gallery-filters, .itinerary-nav {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 6px 4px 12px;
    gap: 8px;
    margin-bottom: 20px;
    scrollbar-width: none;
  }

  .package-filters::-webkit-scrollbar,
  .gallery-filters::-webkit-scrollbar,
  .itinerary-nav::-webkit-scrollbar {
    display: none;
  }

  .filter-btn, .itinerary-tab-btn {
    flex-shrink: 0;
    scroll-snap-align: start;
    white-space: nowrap;
    font-size: 0.85rem;
    padding: 9px 18px;
    border-radius: var(--radius-full);
  }
}

/* 4. ITINERARY BOTTOM SHEET MODAL */
.itinerary-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.itinerary-modal.active {
  opacity: 1;
  visibility: visible;
}

.itinerary-modal-content {
  background: var(--sand-card);
  width: 100%;
  max-width: 680px;
  max-height: 88vh;
  border-radius: 28px 28px 0 0;
  padding: 24px 20px 30px;
  overflow-y: auto;
  position: relative;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.3);
}

@media (min-width: 769px) {
  .itinerary-modal {
    align-items: center;
  }
  .itinerary-modal-content {
    border-radius: 24px;
    max-height: 85vh;
    transform: scale(0.95);
  }
  .itinerary-modal.active .itinerary-modal-content {
    transform: scale(1);
  }
}

.itinerary-modal.active .itinerary-modal-content {
  transform: translateY(0);
}

.itinerary-drag-handle {
  width: 44px;
  height: 5px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  margin: 0 auto 16px;
}

.itinerary-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.itinerary-modal-close:hover {
  background: var(--primary-navy);
  color: var(--text-white);
}

.itinerary-modal-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--sand-border);
}

.itinerary-modal-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.itinerary-modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ==========================================================================
   MICRO-ANIMATIONS & HOVER EFFECTS FOR BADGES & SOCIAL LINKS
   ========================================================================== */

@keyframes redPinPulse {
  0%, 100% {
    transform: scale(1);
    color: #EF4444;
  }
  50% {
    transform: scale(1.3);
    color: #FF6B6B;
  }
}

.dest-badge-anim {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.dest-badge-anim:hover {
  transform: translateY(-3px) scale(1.04);
  background: rgba(239, 68, 68, 0.28) !important;
  border-color: rgba(239, 68, 68, 0.7) !important;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.35);
}

.dest-badge-anim:hover i {
  animation: redPinPulse 0.6s ease-in-out infinite;
}

.social-btn-anim {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn-anim:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.social-btn-anim i {
  transition: transform 0.3s ease;
}

.social-btn-anim:hover i {
  transform: scale(1.25) rotate(-5deg);
}

.social-btn-anim.instagram-hover:hover {
  background: rgba(225, 48, 108, 0.4) !important;
  border-color: #E1306C !important;
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

.social-btn-anim.facebook-hover:hover {
  background: rgba(24, 119, 242, 0.4) !important;
  border-color: #1877F2 !important;
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.social-btn-anim.email-hover:hover {
  background: rgba(234, 67, 53, 0.4) !important;
  border-color: #EA4335 !important;
  box-shadow: 0 6px 20px rgba(234, 67, 53, 0.4);
}

.social-btn-anim.map-hover:hover {
  background: rgba(212, 175, 55, 0.4) !important;
  border-color: #D4AF37 !important;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* --- CONFIRMATION MODAL OVERRIDE --- */
#confirmationModal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(10, 25, 47, 0.88) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  z-index: 999999 !important;
  display: none;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#confirmationModal.active {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

