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

/* --- CUSTOM PROPERTIES --- */
:root {
  --primary: #0f4c81;          /* Ocean Blue */
  --primary-rgb: 15, 76, 129;
  --primary-dark: #0a3357;
  --primary-light: #e6f0fa;
  --secondary: #d9744b;        /* Terracotta */
  --secondary-light: #f7f3ed;  /* Earthy Beige */
  --accent: #ff6f3c;           /* Sunset Orange */
  --accent-rgb: 255, 111, 60;
  --accent-hover: #e55b28;
  --teal: #00a8cc;             /* Tropical Teal */
  
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg-light: #ffffff;
  --bg-gray: #f8fafc;
  --border-color: #e2e8f0;
  
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(15, 76, 129, 0.08);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

.font-serif {
  font-family: 'Playfair Display', serif;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

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

/* --- UTILITIES & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: var(--transition-normal);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 111, 60, 0.2);
}

.btn-secondary {
  background-color: var(--primary);
  color: #fff;
}

.btn-secondary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 76, 129, 0.2);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: #fff;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-accent {
  background-color: var(--accent);
  color: #fff;
}

.badge-teal {
  background-color: var(--teal);
  color: #fff;
}

.badge-info {
  background-color: var(--primary-light);
  color: var(--primary);
}

/* --- HEADER / NAVIGATION --- */
.utility-bar {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 0;
  font-size: 0.85rem;
}

.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.utility-contacts {
  display: flex;
  gap: 1.5rem;
}

.utility-contacts a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.utility-contacts a:hover {
  color: #fff;
}

.iata-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #fff;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.site-header.sticky {
  box-shadow: var(--shadow-md);
}

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

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

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: height var(--transition-normal);
}

.home-page .logo-img {
  height: 64px;
}

.logo-main {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-dark);
}

/* --- DROPDOWN MENUS --- */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-arrow-icon {
  font-size: 0.75rem;
  transition: transform var(--transition-fast);
}

.dropdown:hover .nav-arrow-icon {
  transform: rotate(180deg);
}

/* Desktop Dropdown Styles */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition-fast);
  text-align: left;
}

.dropdown-menu a:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  padding-left: 1.5rem;
}

/* --- FOOTER --- */
.site-footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 5rem 0 2rem;
  font-size: 0.95rem;
}

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

.footer-col-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-about .logo {
  background-color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 0.25rem;
}

.footer-about p {
  margin: 1.25rem 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 50%;
}

.footer-social-link:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact i {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.footer-contact a:hover {
  color: #fff;
}

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

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* --- FLOATING WIDGETS --- */
.floating-widget {
  position: fixed;
  bottom: 24px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.floating-whatsapp {
  left: 24px;
  background-color: #25d366;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
}

.floating-whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.3);
}

.floating-reviews {
  right: 24px;
  background-color: #fff;
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 600;
}

.floating-reviews:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.reviews-stars {
  color: #f59e0b;
  margin-right: 0.25rem;
}

/* --- MOBILE ACTIONS (MOBILE ONLY) --- */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 99;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
}

.mobile-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  font-weight: 700;
  text-align: center;
  font-size: 0.95rem;
}

.mobile-action-btn.call {
  background-color: var(--primary);
  color: #fff;
}

.mobile-action-btn.whatsapp {
  background-color: #25d366;
  color: #fff;
}

/* --- MODAL DIALOG --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background-color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 500px;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: scaleUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.5rem;
  color: var(--text-muted);
}

.modal-close:hover {
  color: var(--text-dark);
}

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

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--bg-gray);
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.15);
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2364748b'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.5rem;
  padding-right: 2.25rem;
  cursor: pointer;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  background-color: #ecfdf5;
  color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

/* --- HOME HERO SECTION --- */
.hero-section {
  position: relative;
  background-color: var(--primary-dark);
  color: #fff;
  overflow: hidden;
  padding: 8rem 0 9rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 76, 129, 0.7) 0%, rgba(15, 23, 42, 0.85) 100%), 
              url('../assets/travel_hero_bg.png') center center/cover no-repeat;
  z-index: 1;
}

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

.hero-tag {
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: slideDown 0.6s ease;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #e2e8f0;
  margin-bottom: 3rem;
  font-weight: 400;
}

/* --- SEARCH BAR CONSOLE --- */
.search-console {
  position: relative;
  margin-top: -4rem;
  z-index: 10;
}

.search-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.search-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1fr;
  gap: 1.25rem;
  align-items: flex-end;
}

.search-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.search-input-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.search-input-group i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.search-field-wrapper {
  position: relative;
}

.search-field-wrapper .form-control {
  padding-left: 2.75rem;
  background-color: #fff;
  border-color: var(--border-color);
}

/* --- TRUST PROMISE BAR --- */
.trust-bar {
  padding: 4rem 0;
  background-color: var(--bg-gray);
  border-bottom: 1px solid var(--border-color);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.trust-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.trust-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* --- DESTINATION SECTIONS --- */
.packages-section {
  padding: 6rem 0;
}

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

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

.card-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

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

.card-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-price-tag {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--primary-dark);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-top-left-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

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

.card-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.card-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.card-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-price-label {
  display: flex;
  flex-direction: column;
}

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

.price-main {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
}

/* --- DESTINATION DETAIL LANDING PAGE --- */
.detail-hero {
  position: relative;
  background-color: var(--primary-dark);
  color: #fff;
  padding: 10rem 0 6rem;
  overflow: hidden;
}

.detail-hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

.detail-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 76, 129, 0.4) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.detail-hero-content {
  position: relative;
  z-index: 2;
}

.detail-meta-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.detail-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.detail-quick-stats {
  display: flex;
  gap: 2rem;
  font-size: 1rem;
  color: #e2e8f0;
  flex-wrap: wrap;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.detail-quick-stats span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}

.detail-main-content {
  background-color: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.detail-section {
  margin-bottom: 3.5rem;
}

.detail-section:last-child {
  margin-bottom: 0;
}

.detail-section-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-section-title i {
  color: var(--primary);
}

/* --- SIGHTSEEING GALLERY CARDS --- */
.sightseeing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.sightseeing-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
}

.sightseeing-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

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

.sightseeing-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  color: #fff;
  padding: 0.75rem 0.5rem;
  font-size: 0.8rem;
  text-align: center;
  font-weight: 700;
}

/* --- SIDEBAR WIDGETS --- */
.detail-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sidebar-form-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.sidebar-form-price {
  background-color: var(--primary-light);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-form-price span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
}

.sidebar-form-price h4 {
  font-size: 1.75rem;
  color: var(--accent);
  font-weight: 800;
}

/* --- ACCORDION ITINERARY --- */
.itinerary-timeline {
  position: relative;
  padding-left: 2rem;
}

.itinerary-timeline::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 8px;
  width: 2px;
  background-color: var(--primary-light);
}

.itinerary-day {
  position: relative;
  margin-bottom: 1.5rem;
}

.itinerary-day::before {
  content: '';
  position: absolute;
  top: 8px;
  left: -28px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--primary-light);
  z-index: 2;
  transition: var(--transition-fast);
}

.itinerary-day.active::before {
  background-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 111, 60, 0.2);
}

.itinerary-day-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background-color: var(--bg-gray);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}

.itinerary-day-header:hover {
  background-color: var(--primary-light);
  border-color: rgba(15, 76, 129, 0.2);
}

.day-title-wrapper {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.day-badge {
  background-color: var(--primary);
  color: #fff;
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
}

.itinerary-day.active .day-badge {
  background-color: var(--accent);
}

.day-heading {
  font-weight: 700;
  font-size: 1rem;
}

.day-arrow {
  font-size: 0.8rem;
  transition: var(--transition-normal);
  color: var(--text-muted);
}

.itinerary-day.active .day-arrow {
  transform: rotate(180deg);
}

.itinerary-day-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
  border: 1px solid var(--border-color);
  border-top: none;
  border-bottom-left-radius: var(--radius-sm);
  border-bottom-right-radius: var(--radius-sm);
}

.itinerary-day-content-inner {
  padding: 1.5rem;
  background-color: #fff;
}

.itinerary-day-content-inner p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.itinerary-day-content-inner ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.itinerary-day-content-inner li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9rem;
}

.itinerary-day-content-inner li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* --- INCLUSIONS & EXCLUSIONS --- */
.inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.inc-exc-box h4 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.inclusions-box h4 { color: #10b981; }
.exclusions-box h4 { color: #ef4444; }

.inc-exc-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.inc-exc-list i {
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.inclusions-box i { color: #10b981; }
.exclusions-box i { color: #ef4444; }

/* --- HOTEL OPTIONS CARD --- */
.hotel-option-card {
  display: flex;
  gap: 1.5rem;
  border: 1px solid var(--border-color);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  background-color: var(--bg-gray);
  align-items: center;
}

.hotel-option-card:last-child {
  margin-bottom: 0;
}

.hotel-img {
  width: 130px;
  height: 100px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.hotel-details {
  flex-grow: 1;
}

.hotel-name {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.hotel-stars {
  color: #fbbf24;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

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

.hotel-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* --- ABOUT SECTION & PAGE --- */
.about-hero {
  position: relative;
  background-color: var(--primary-dark);
  color: #fff;
  padding: 6.5rem 0;
  text-align: center;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/travel_hero_bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 3;
  pointer-events: none;
}

.about-hero > .container {
  position: relative;
  z-index: 5;
}

/* --- HERO CAROUSEL SYSTEM --- */
.hero-carousel {
  position: relative;
  overflow: hidden;
}

.hero-carousel .carousel-slides {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-carousel .carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-carousel .carousel-slide-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-carousel .carousel-slide-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 76, 129, 0.75) 0%, rgba(15, 23, 42, 0.85) 100%);
  z-index: 2;
}

.detail-hero .carousel-slide-img::after {
  background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 30%, rgba(15, 23, 42, 0.4) 100%);
}

.hero-carousel .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, transform 0.2s, opacity 0.3s;
  font-size: 1.1rem;
  opacity: 0.7;
}

.hero-carousel .carousel-btn:hover {
  background-color: rgba(251, 98, 50, 0.9);
  transform: translateY(-50%) scale(1.05);
  opacity: 1;
}

.hero-carousel .carousel-btn-prev {
  left: 20px;
}

.hero-carousel .carousel-btn-next {
  right: 20px;
}

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

.hero-carousel .carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.hero-carousel .carousel-dot.active {
  background-color: var(--accent);
  transform: scale(1.2);
}

.about-features-grid {
  padding: 5rem 0;
}

.feature-box {
  background-color: #fff;
  border: 1px solid var(--border-color);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-normal);
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

.feature-box h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- CONTACT PAGE --- */
.contact-section {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info-card {
  background-color: var(--primary-light);
  padding: 3rem;
  border-radius: var(--radius-lg);
  color: var(--text-dark);
}

.contact-info-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.contact-info-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-list i {
  font-size: 1.2rem;
  color: var(--primary);
  margin-top: 0.2rem;
}

.contact-info-list h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info-list p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.map-wrapper {
  margin-top: 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 250px;
  border: 1px solid var(--border-color);
}

/* --- DYNAMIC ANIMATIONS --- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleUp {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

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

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.75rem; }
  .search-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .search-btn-wrapper {
    grid-column: span 2;
  }
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .detail-sidebar {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 60px; /* Offset for sticky mobile action bar */
  }
  .utility-bar { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: block; }
  
  .main-nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    overflow-y: auto;
  }
  
  .main-nav.active {
    left: 0;
  }
  
  .nav-list {
    flex-direction: column;
    width: 100%;
  }

  /* Mobile Dropdown styles */
  .dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    visibility: visible;
    opacity: 1;
    display: block;
    min-width: 100%;
    margin-left: 1rem;
    transition: max-height var(--transition-normal) ease-out;
  }
  
  .dropdown.active .dropdown-menu {
    max-height: 350px;
  }
  
  .dropdown.active .nav-arrow-icon {
    transform: rotate(180deg);
  }
  
  .dropdown-menu a {
    padding: 0.5rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
  }
  
  .dropdown-menu a:hover {
    background-color: transparent;
    padding-left: 0.25rem;
    color: var(--primary);
  }
  
  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    display: block;
    padding: 0.75rem 0;
  }
  
  .search-grid {
    grid-template-columns: 1fr;
  }
  
  .search-btn-wrapper {
    grid-column: span 1;
  }
  
  .trust-bar .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .inc-exc-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .hotel-option-card {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hotel-img {
    width: 100%;
    height: 150px;
  }
  
  .floating-whatsapp {
    display: none; /* Hide floating widgets on mobile and show sticky bar */
  }
  .floating-reviews {
    display: none;
  }
  
  .mobile-action-bar {
    display: grid;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .detail-main-content {
    padding: 1.5rem;
  }
  
  .detail-title {
    font-size: 2.25rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
}

/* --- VIDEO REVIEWS --- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.video-card {
  background-color: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.video-wrapper {
  position: relative;
  padding-top: 177.77%; /* 9:16 portrait aspect ratio for Shorts */
  width: 100%;
  background-color: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

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

@media (max-width: 576px) {
  .video-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   ADVANCED MOBILE & TOUCH-SCREEN OPTIMIZATION
   ========================================================================== */

/* Prevent Horizontal Scrolling on Mobile */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Form input font size 16px to prevent iOS Safari auto-zoom */
@media screen and (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  select,
  textarea {
    font-size: 16px !important;
  }

  /* Utility Bar Mobile Alignment */
  .utility-bar .utility-content {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
    font-size: 0.75rem;
    padding: 0.4rem 0;
  }

  .utility-info {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  /* Header & Logo Mobile Scaling */
  .site-header {
    padding: 0.5rem 0;
  }

  .logo-img {
    height: 42px;
  }

  /* Hero Section Mobile Spacing */
  .hero-section {
    padding: 3.5rem 0 3rem;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  /* Search Console Mobile */
  .search-card {
    padding: 1.25rem;
    margin-top: -2.5rem;
  }

  /* Package Cards Grid Mobile */
  .grid-3, .grid-2, .grid-4 {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }

  .destination-card {
    margin-bottom: 0.5rem;
  }

  .card-img-wrapper {
    height: 210px;
  }

  /* Detail Hero Carousel on Mobile */
  .detail-hero {
    height: 380px;
  }

  .detail-title {
    font-size: 1.85rem;
    line-height: 1.2;
  }

  .detail-quick-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
  }

  /* Detail Main Grid Layout */
  .detail-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    padding-bottom: 5rem;
  }

  /* Sightseeing Gallery Grid Mobile */
  .sightseeing-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem;
  }

  .sightseeing-card img {
    height: 120px;
  }

  /* Floating WhatsApp Button Mobile Positioning */
  .floating-whatsapp {
    display: flex !important;
    bottom: 75px !important;
    left: 14px !important;
    padding: 0.5rem 0.85rem !important;
    font-size: 0.8rem !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4) !important;
    z-index: 99 !important;
  }

  .floating-reviews {
    display: flex !important;
    bottom: 75px !important;
    right: 14px !important;
    padding: 0.4rem 0.75rem !important;
    font-size: 0.75rem !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15) !important;
    z-index: 99 !important;
  }

  /* Mobile Sticky Bottom Call/WhatsApp CTA Bar */
  .mobile-action-bar {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 0.6rem 1rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 100;
  }

  .mobile-action-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.65rem 0.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
  }

  .btn-call-mobile {
    background-color: var(--primary);
    color: #ffffff;
  }

  .btn-whatsapp-mobile {
    background-color: #25d366;
    color: #ffffff;
  }

  /* Booking Modal Overlay Mobile */
  .modal-card {
    width: 94% !important;
    max-height: 92vh !important;
    padding: 1.5rem 1.25rem !important;
    overflow-y: auto !important;
  }

  .modal-close-btn {
    top: 1rem;
    right: 1rem;
  }
}



