/* ==========================================================================
   YAMATO TRAVEL & BUSINESS PVT. LTD. – JAPAN DMC
   Core Design System & Stylesheet
   Theme: Japanese Luxury Dark Minimalism (Obsidian, Silk White, Crimson Red, Gold)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #0a0a0c;
  --bg-secondary: #121216;
  --bg-tertiary: #1c1c22;
  --bg-card: rgba(26, 26, 32, 0.65);
  --bg-light: #f8f9fa;
  
  --text-primary: #ffffff;
  --text-secondary: #a0a0a8;
  --text-muted: #6e6e76;
  --text-dark: #111111;
  
  --accent-red: #e60012;
  --accent-red-hover: #ff1a2b;
  --accent-red-glow: rgba(230, 0, 18, 0.35);
  
  --accent-gold: #e60012;
  --accent-gold-hover: #ff1a2b;
  --accent-gold-glow: rgba(230, 0, 18, 0.35);
  --color-star-gold: #ffb800;
  
  --border-color: rgba(255, 255, 255, 0.1);
  --border-color-hover: rgba(255, 255, 255, 0.25);
  
  /* Glassmorphism */
  --glass-bg: rgba(18, 18, 22, 0.75);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Cinzel', serif;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Layout */
  --max-width: 1320px;
  --header-height: 84px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

[data-theme="light"] {
  /* Color Palette - Japanese Luxury Light Minimalism */
  --bg-primary: #f4f5f8;
  --bg-secondary: #ffffff;
  --bg-tertiary: #e8eaef;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-light: #e8eaef;
  
  --text-primary: #121216;
  --text-secondary: #4a4a54;
  --text-muted: #7a7a85;
  --text-dark: #ffffff;
  
  --border-color: rgba(0, 0, 0, 0.1);
  --border-color-hover: rgba(0, 0, 0, 0.25);
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(0, 0, 0, 0.12);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
}

/* Light Theme Overrides for Hero Section & Forms */
[data-theme="light"] .hero-overlay {
  background: linear-gradient(
    105deg,
    rgba(244, 245, 248, 0.92) 0%,
    rgba(255, 255, 255, 0.82) 42%,
    rgba(255, 255, 255, 0.35) 72%,
    rgba(244, 245, 248, 0.12) 100%
  );
}
[data-theme="light"] .hero-title {
  color: #121216;
  text-shadow: 0 2px 15px rgba(255, 255, 255, 0.9);
}
[data-theme="light"] .hero-desc {
  color: #2a2a32;
  font-weight: 500;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.9);
}
[data-theme="light"] .hero-badge {
  background: #1e1e24 !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25) !important;
  text-shadow: none !important;
}
[data-theme="light"] .hero-stats {
  border-top-color: rgba(0, 0, 0, 0.15);
}
[data-theme="light"] .stat-item h3 {
  color: var(--accent-red);
}
[data-theme="light"] .stat-item p {
  color: #4a4a54;
}
[data-theme="light"] .form-input,
[data-theme="light"] .form-select,
[data-theme="light"] .form-textarea {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.2);
  color: #121216;
}
[data-theme="light"] .file-upload-area {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.2);
}
[data-theme="light"] .destination-title,
[data-theme="light"] .destination-desc,
[data-theme="light"] .gallery-title,
[data-theme="light"] .lightbox-caption,
[data-theme="light"] .close-lightbox {
  color: #ffffff !important;
}

@media (max-width: 768px) {
  [data-theme="light"] .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(244, 245, 248, 0.92) 0%,
      rgba(255, 255, 255, 0.85) 60%,
      rgba(255, 255, 255, 0.45) 100%
    );
  }
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul, ol {
  list-style: none;
}

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

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

button {
  cursor: pointer;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 4px;
  border: 1px solid var(--border-color);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-red);
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.25rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }
h5 { font-size: 1.15rem; }
h6 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; }

.text-gold { color: var(--accent-gold); }
.text-red { color: var(--accent-red); }
.text-secondary { color: var(--text-secondary); }
.text-accent { font-family: var(--font-accent); }

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-subtitle::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent-red);
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 680px;
  margin-bottom: 3rem;
}

.text-center { text-align: center; }
.text-center .section-subtitle { justify-content: center; }
.text-center .section-subtitle::before,
.text-center .section-subtitle::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent-red);
}
.text-center .section-desc { margin-left: auto; margin-right: auto; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6rem 0;
}

/* ==========================================================================
   Buttons & Badges
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.85rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #e60012, #ff3b30);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 20px var(--accent-red-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff1a2b, #e60012);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--accent-red-glow);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold), #b80010);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 20px var(--accent-gold-glow);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--accent-gold-hover), var(--accent-gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--accent-gold-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(230, 0, 18, 0.05);
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 50px;
  background: #e60012;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(230, 0, 18, 0.4);
}

.badge-gold {
  background: #1e1e24;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-normal);
  background: transparent;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  height: calc(var(--header-height) - 14px);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.logo-img {
  height: 60px !important;
  width: auto;
  max-width: 250px !important;
  object-fit: contain;
  display: block;
  transition: all var(--transition-normal);
}

.navbar.scrolled .logo-img {
  height: 50px !important;
}

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

.logo-symbol {
  width: 40px;
  height: 40px;
  background: var(--accent-red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px var(--accent-red-glow);
}

.logo-symbol::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: rotate(45deg);
  transition: 0.5s;
}

.logo:hover .logo-symbol::after {
  left: 100%;
}

.logo-text span {
  color: var(--accent-gold);
  font-weight: 300;
}

.navbar .logo-text {
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.1vw, 1.15rem);
}

.nav-link {
  font-size: clamp(1.05rem, 1.15vw, 1.18rem) !important;
  font-weight: 600 !important;
  color: var(--text-primary) !important;
  transition: all var(--transition-fast);
  position: relative;
  padding: 0.5rem 0.3rem;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

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

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

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

[data-theme="light"] .navbar:not(.scrolled) .nav-link {
  color: #ffffff !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8) !important;
}

[data-theme="light"] .navbar:not(.scrolled) .nav-link:hover,
[data-theme="light"] .navbar:not(.scrolled) .nav-link.active {
  color: #ff3344 !important;
}

[data-theme="light"] .navbar.scrolled .nav-link {
  color: #121216 !important;
  text-shadow: none !important;
}

[data-theme="light"] .navbar.scrolled .nav-link:hover,
[data-theme="light"] .navbar.scrolled .nav-link.active {
  color: #e60012 !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.action-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 40px;
  padding: 0 0.85rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  backdrop-filter: blur(8px);
}

.action-icon-btn:hover {
  background: rgba(230, 0, 18, 0.15);
  border-color: var(--accent-red);
  color: var(--accent-red);
  transform: translateY(-2px);
}

.action-icon-btn.icon-only {
  width: 40px;
  padding: 0;
  font-size: 1.15rem;
}

[data-theme="light"] .action-icon-btn {
  background: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .action-icon-btn:hover {
  background: rgba(230, 0, 18, 0.15);
  border-color: var(--accent-red);
  color: var(--accent-red);
}

.lang-dropdown-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  transition: all var(--transition-normal);
}

.lang-dropdown-wrapper:hover {
  border-color: var(--accent-red);
  background: rgba(255, 255, 255, 0.15);
}

.lang-icon {
  font-size: 0.95rem;
  color: var(--accent-red);
}

.lang-select {
  background: transparent;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding-right: 0.2rem;
  border: none;
  outline: none;
  font-family: var(--font-heading);
}

.lang-select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: 0.5rem;
}

.drawer-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.drawer-actions .action-icon-btn {
  flex: 1;
  height: 44px;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  background: none;
  padding: 0.5rem;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-color);
  z-index: 1001;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.5rem;
  overflow-y: auto;
  transition: right var(--transition-normal);
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.close-drawer {
  font-size: 1.5rem;
  color: var(--text-secondary);
}

.drawer-menu {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.drawer-link {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.drawer-link.active, .drawer-link:hover {
  color: var(--accent-red);
}

.drawer-footer {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: slowZoom 20s infinite alternate ease-in-out;
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 12, 0.85) 0%,
    rgba(10, 10, 12, 0.6) 50%,
    rgba(10, 10, 12, 0.8) 100%
  );
  z-index: -1;
}

.hero-content {
  max-width: 820px;
  padding: 4rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #1e1e24 !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25) !important;
  text-shadow: none !important;
  margin-bottom: 1.5rem;
}

.hero-title {
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-title span {
  color: var(--accent-gold);
  display: block;
}

.hero-desc {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #d1d1d6;
  margin-bottom: 2.5rem;
  max-width: 700px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--accent-gold);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Cards & Grid Layouts
   ========================================================================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-color-hover);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.card-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}

/* Service Cards */
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.service-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  flex-shrink: 0;
  background: rgba(230, 0, 18, 0.1);
  border: 1px solid rgba(230, 0, 18, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--accent-red);
  margin-bottom: 1.5rem;
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
  background: var(--accent-red);
  color: var(--text-primary);
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--accent-red-glow);
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-features {
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}

.service-features li::before {
  content: '✓';
  color: var(--accent-gold);
  font-weight: 700;
}

/* Destination Cards */
.destination-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 420px;
  group: destination;
}

.destination-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(10, 10, 12, 0.95) 0%,
    rgba(10, 10, 12, 0.4) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: all var(--transition-normal);
}

.destination-tag {
  align-self: flex-start;
  background: #e60012;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 15px rgba(230, 0, 18, 0.6);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.destination-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.destination-desc {
  color: #c0c0c8;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Itinerary Cards & Accordions */
.itinerary-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.itinerary-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.itinerary-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff !important;
  background: #e60012;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  box-shadow: 0 3px 10px rgba(230, 0, 18, 0.3);
}

.itinerary-title {
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
}

.itinerary-desc {
  color: var(--text-secondary);
  max-width: 750px;
}

/* Day Accordion */
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.accordion-item {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: background var(--transition-fast);
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.03);
}

.day-badge {
  color: var(--accent-gold);
  font-weight: 700;
  margin-right: 0.75rem;
}

.accordion-icon {
  font-size: 1.25rem;
  transition: transform var(--transition-normal);
  color: var(--accent-gold);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.accordion-body {
  padding: 0 1.75rem 1.5rem 1.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

/* ==========================================================================
   Gallery Grid & Lightbox
   ========================================================================== */
.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  color: var(--text-primary);
  background: var(--accent-red);
  border-color: var(--accent-red);
  box-shadow: 0 4px 15px var(--accent-red-glow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-title {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.gallery-category {
  font-size: 0.8rem;
  color: #ffffff !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.lightbox-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 900px;
  max-height: 85vh;
  position: relative;
  padding: 1rem;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.lightbox-caption {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.close-lightbox {
  position: absolute;
  top: -40px;
  right: 10px;
  font-size: 2rem;
  color: var(--text-primary);
  background: none;
  cursor: pointer;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
}

.quote-icon {
  font-size: 3rem;
  color: rgba(230, 0, 18, 0.25);
  margin-bottom: 1rem;
  font-family: var(--font-accent);
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-primary);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.author-info h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.author-info p {
  font-size: 0.85rem;
  color: #a0a0b0 !important;
  line-height: 1.4;
}

/* ==========================================================================
   B2B Inquiry Form
   ========================================================================== */
.inquiry-section {
  position: relative;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-top: 1px solid var(--border-color);
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  backdrop-filter: blur(16px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-label span {
  color: var(--accent-red);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: rgba(10, 10, 12, 0.8);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px var(--accent-red-glow);
  background: rgba(10, 10, 12, 0.95);
}

.form-select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.file-upload-area {
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: rgba(10, 10, 12, 0.4);
}

.file-upload-area:hover {
  border-color: var(--accent-red);
  background: rgba(230, 0, 18, 0.03);
}

.upload-icon {
  font-size: 2rem;
  color: var(--accent-red);
  margin-bottom: 0.5rem;
}

.upload-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.upload-text strong {
  color: var(--text-primary);
}

/* Toast Notification */
.toast-container {
  position: fixed;
  bottom: 90px;
  right: 30px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toast {
  background: var(--bg-secondary);
  border-left: 4px solid var(--accent-gold);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-primary);
  max-width: 420px;
  transform: translateX(120%);
  transition: transform var(--transition-normal);
}

.toast.show {
  transform: translateX(0);
}

.toast.success { border-color: #2e7d32; }
.toast.whatsapp { border-color: #25d366; }

.info-card {
  border-left: 4px solid var(--accent-red);
}

.info-card h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.info-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding-top: 5rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h3 {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 25px;
  height: 2px;
  background: var(--accent-red);
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent-red);
  padding-left: 5px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.95rem;
}

.contact-icon {
  color: var(--accent-red);
  font-size: 1.15rem;
  margin-top: 2px;
}x;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   Scroll Reveal Animation
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

/* ==========================================================================
   Responsive Breakpoints & Mobile Optimization
   ========================================================================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

@media (max-width: 768px) {
  /* Header & Navigation */
  .nav-menu, .nav-actions .btn, .nav-actions .btn-outline, .nav-actions .action-icon-btn, .nav-actions .lang-dropdown-wrapper { display: none; }
  .mobile-toggle { display: block; }
  
  /* Grids & Layouts */
  .grid-3, .grid-2, .grid-4, .gallery-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }
  
  /* Components & Cards */
  .hero-stats { grid-template-columns: 1fr; gap: 1.25rem; }
  .card, .itinerary-card, .form-card { padding: 1.75rem 1.25rem; }
  .section-padding { padding: 4rem 0; }
  .itinerary-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  
  /* Footer & Toast Notifications */
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; gap: 1rem; }
  
  .toast-container {
    left: 15px;
    right: 15px;
    bottom: 15px;
    width: calc(100% - 30px);
  }
  .toast {
    max-width: none;
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
  .hero-content { padding: 2.5rem 0; }
  .filter-tabs { gap: 0.4rem; }
  .filter-btn { padding: 0.5rem 1rem; font-size: 0.8rem; width: 100%; text-align: center; }
  .btn { width: 100%; text-align: center; justify-content: center; }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2500;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-normal);
  animation: floatPulse 3s infinite ease-in-out;
}

.floating-whatsapp:hover {
  background: #20bd5a;
  color: #ffffff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), 0 12px 35px rgba(0, 0, 0, 0.4);
}

.floating-whatsapp .wa-icon {
  font-size: 1.35rem;
  line-height: 1;
}

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

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    padding: 0.75rem;
    border-radius: 50%;
  }
  .floating-whatsapp .wa-text {
    display: none;
  }
  .floating-whatsapp .wa-icon {
    font-size: 1.5rem;
  }
}
