/* ==========================================================================
   BEST TRANS BELITUNG TOUR - MASTER STYLE SHEET
   ========================================================================== */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* CSS Variables & Theme Configuration */
:root {
  /* Color Palette matching Logo */
  --color-primary: #0c478a;       /* Deep Navy Blue - Trust & Authority */
  --color-primary-rgb: 12, 71, 138;
  --color-secondary: #00a8b5;     /* Teal/Cyan Wave - Sea & Freshness */
  --color-secondary-rgb: 0, 168, 181;
  --color-accent: #f9b800;        /* Sunset Gold - Sunshine & Energy */
  --color-accent-rgb: 249, 184, 0;
  
  /* Neutral Palette */
  --color-bg-main: #f8fafd;       /* Soft light blue-white background */
  --color-bg-card: #ffffff;       /* Pure White for Cards */
  --color-text-main: #1e293b;     /* Slate 800 - Comfortable dark text */
  --color-text-muted: #64748b;    /* Slate 500 - Secondary text */
  --color-text-light: #94a3b8;    /* Slate 400 - Light gray borders/text */
  --color-white: #ffffff;
  --color-black: #0f172a;         /* Slate 900 - Extra dark */
  
  /* Status Colors */
  --color-success: #10b981;       /* Emerald Green for Include */
  --color-danger: #ef4444;        /* Rose Red for Exclude */
  
  /* Fonts */
  --font-primary: 'Plus Jakarta Sans', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  
  /* Layout Spacing */
  --container-max-width: 1240px;
  --header-height: 80px;
  
  /* Transitions */
  --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);
  
  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Box Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(12, 71, 138, 0.05), 0 4px 6px -2px rgba(12, 71, 138, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(12, 71, 138, 0.08), 0 10px 10px -5px rgba(12, 71, 138, 0.04);
  --shadow-premium: 0 30px 60px -15px rgba(12, 71, 138, 0.12);
  --shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1, .display-1 {
  font-family: var(--font-secondary);
}

h2, .section-title {
  font-family: var(--font-secondary);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--color-text-muted);
}

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

a:hover {
  color: var(--color-secondary);
}

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

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

ul, ol {
  list-style: none;
}

/* ==========================================================================
   LAYOUT & UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-header p {
  font-size: 1.125rem;
}

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

.text-secondary {
  color: var(--color-secondary);
}

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

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.badge-primary-light {
  background-color: rgba(12, 71, 138, 0.08);
  color: var(--color-primary);
}

.badge-secondary-light {
  background-color: rgba(0, 168, 181, 0.08);
  color: var(--color-secondary);
}

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

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(12, 71, 138, 0.25);
}

.btn-primary:hover {
  background-color: #083466;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(12, 71, 138, 0.35);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(0, 168, 181, 0.25);
}

.btn-secondary:hover {
  background-color: #008f9a;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 168, 181, 0.35);
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-black);
  box-shadow: 0 8px 20px rgba(249, 184, 0, 0.25);
}

.btn-accent:hover {
  background-color: #d69e00;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(249, 184, 0, 0.35);
}

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

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

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

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

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  height: var(--header-height);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: transparent;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(12, 71, 138, 0.06);
  box-shadow: var(--shadow-sm);
  height: 70px;
}

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

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

.site-logo img {
  height: 45px;
  width: auto;
  transition: var(--transition-normal);
}

.site-header.scrolled .site-logo img {
  height: 40px;
}

.site-logo .logo-text {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.site-logo .logo-text span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-secondary);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav Menu Desktop */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

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

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

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

.header-cta {
  display: flex;
  align-items: center;
}

/* Mobile Nav Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
}

/* Mobile Sidebar Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--color-white);
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  z-index: 999;
  padding: 100px 30px 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
}

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

.mobile-nav-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.mobile-nav-close:hover {
  color: var(--color-accent);
  transform: scale(1.1);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav .nav-link {
  font-size: 1.15rem;
  width: fit-content;
}

.mobile-nav-cta {
  margin-top: auto;
}

.mobile-nav-cta .btn {
  width: 100%;
}

.mobile-nav-contact {
  margin-top: 30px;
  border-top: 1px solid var(--color-text-light);
  padding-top: 20px;
}

.mobile-nav-contact p {
  font-size: 0.85rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Header overlay in transparent mode */
.site-header.transparent .nav-link {
  color: var(--color-white);
}
.site-header.transparent .nav-link:hover,
.site-header.transparent .nav-link.active {
  color: var(--color-accent);
}
.site-header.transparent .nav-link::after {
  background-color: var(--color-accent);
}
.site-header.transparent .logo-text {
  color: var(--color-white);
}
.site-header.transparent .logo-text span {
  color: var(--color-accent);
}
.site-header.transparent .menu-toggle span {
  background-color: var(--color-white);
}

/* ==========================================================================
   HERO SECTIONS
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white);
  padding-top: var(--header-height);
  overflow: hidden;
}

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

/* Floating animated background elements */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(0, 168, 181, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(40px);
  animation: float 20s infinite alternate;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  top: -10%;
  right: -10%;
  animation-duration: 25s;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  bottom: -5%;
  left: -5%;
  animation-duration: 18s;
  background: radial-gradient(circle, rgba(249, 184, 0, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
}

@keyframes float {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-40px) scale(1.1); }
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-content {
  max-width: 750px;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--color-white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  animation: fadeInUp 1s ease-out;
}

.hero-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  animation: fadeInUp 1.2s ease-out;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 1.4s ease-out;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Inner Page Hero (Breadcrumb Header) */
.inner-hero {
  height: 45vh;
  min-height: 320px;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  padding-top: var(--header-height);
}

.inner-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(12, 71, 138, 0.85) 0%, rgba(15, 23, 42, 0.6) 100%);
  z-index: 1;
}

.inner-hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.inner-hero-content {
  position: relative;
  z-index: 3;
}

.inner-hero h1 {
  font-size: 3rem;
  color: var(--color-white);
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: var(--color-accent);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   CARDS (PACKAGES, USPs, etc)
   ========================================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.package-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

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

.package-img-container {
  height: 250px;
  position: relative;
  overflow: hidden;
}

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

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

.package-card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}

.package-duration {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: rgba(12, 71, 138, 0.9);
  color: var(--color-white);
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  backdrop-filter: blur(5px);
}

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

.package-body h3 {
  margin-bottom: 12px;
  transition: var(--transition-fast);
}

.package-card:hover .package-body h3 {
  color: var(--color-primary);
}

.package-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding-bottom: 14px;
}

.package-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.package-meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-secondary);
}

.package-highlights {
  margin-bottom: 20px;
}

.package-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.package-highlights svg {
  width: 14px;
  height: 14px;
  color: var(--color-success);
}

.package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 20px;
}

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

.package-price .price-label {
  font-size: 0.75rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  font-weight: 700;
}

.package-price .price-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary);
}

.package-price .price-value span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

/* USP Cards */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.usp-card {
  background-color: var(--color-bg-card);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 1px solid rgba(12, 71, 138, 0.03);
}

.usp-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 168, 181, 0.15);
}

.usp-icon-wrapper {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-md);
  background-color: rgba(0, 168, 181, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-secondary);
}

.usp-icon-wrapper svg {
  width: 32px;
  height: 32px;
}

.usp-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

/* ==========================================================================
   DETAIL PACKAGE PAGES STYLING
   ========================================================================== */
.tour-details-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.tour-info-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
}

.tour-info-card h2 {
  font-size: 1.75rem;
  margin-bottom: 25px;
  border-left: 4px solid var(--color-secondary);
  padding-left: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Tour Highlights List */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color-bg-main);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
}

.highlight-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-secondary);
  flex-shrink: 0;
}

/* Key Tour Facts Grid */
.tour-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background-color: rgba(12, 71, 138, 0.03);
  padding: 24px;
  border-radius: var(--radius-md);
  margin-bottom: 35px;
}

.fact-item {
  display: flex;
  flex-direction: column;
}

.fact-item .fact-label {
  font-size: 0.75rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}

.fact-item .fact-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* Interactive Timeline / Itinerary Accordion */
.itinerary-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.itinerary-item {
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
  background-color: var(--color-white);
}

.itinerary-header {
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  background-color: var(--color-white);
}

.itinerary-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.day-badge {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 6px 14px;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.day-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-black);
}

.itinerary-toggle-icon {
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  transition: var(--transition-normal);
}

.itinerary-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
  padding: 0 25px;
  border-top: 1px solid transparent;
}

.itinerary-content-inner {
  padding: 20px 0;
}

.itinerary-item.active {
  border-color: rgba(12, 71, 138, 0.15);
  box-shadow: var(--shadow-sm);
}

.itinerary-item.active .itinerary-header {
  background-color: rgba(12, 71, 138, 0.02);
}

.itinerary-item.active .itinerary-toggle-icon {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.itinerary-item.active .itinerary-content {
  max-height: 2000px; /* high value to allow expansion */
  border-color: rgba(0,0,0,0.06);
}

.timeline-sub-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  padding-left: 20px;
}

.timeline-sub-list::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  bottom: 5px;
  width: 2px;
  background-color: rgba(0, 168, 181, 0.25);
}

.timeline-sub-item {
  position: relative;
}

.timeline-sub-item::before {
  content: '';
  position: absolute;
  top: 6px;
  left: -19px;
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: var(--color-secondary);
  border: 2px solid var(--color-white);
}

.timeline-sub-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

/* Inclusions & Exclusions Grid */
.inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.inc-box, .exc-box {
  background-color: var(--color-bg-main);
  padding: 24px;
  border-radius: var(--radius-md);
}

.inc-box h4, .exc-box h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.inc-box h4 { color: var(--color-success); }
.exc-box h4 { color: var(--color-danger); }

.list-styled li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.list-styled li svg {
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
}

.list-styled.inc-list svg { color: var(--color-success); }
.list-styled.exc-list svg { color: var(--color-danger); }

/* Table Prices */
.price-table-container {
  overflow-x: auto;
  margin-bottom: 10px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.price-table th, .price-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.price-table th {
  background-color: rgba(12, 71, 138, 0.04);
  color: var(--color-black);
  font-weight: 700;
}

.price-table tr:hover td {
  background-color: rgba(12, 71, 138, 0.01);
}

.price-table .price-val {
  font-weight: 800;
  color: var(--color-primary);
}

/* ==========================================================================
   BOOKING SIDEBAR & FORMS
   ========================================================================== */
.sidebar-sticky {
  position: sticky;
  top: 100px;
  z-index: 10;
}

.booking-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(12, 71, 138, 0.05);
}

.booking-card h3 {
  font-size: 1.35rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.form-control {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid var(--color-text-light);
  border-radius: var(--radius-sm);
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-primary);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(12, 71, 138, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 15px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-note svg {
  width: 14px;
  height: 14px;
  color: var(--color-secondary);
}

/* ==========================================================================
   TESTIMONIALS SLIDER
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: var(--color-bg-card);
  padding: 35px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-style: italic;
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 25px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  overflow: hidden;
  background-color: var(--color-text-light);
}

.author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.star-rating {
  display: flex;
  gap: 2px;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.star-rating svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.faq-header {
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-header h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 0;
}

.faq-toggle-icon {
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  transition: var(--transition-normal);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
  padding: 0 25px;
}

.faq-content p {
  padding: 16px 0 20px 0;
  margin-bottom: 0;
}

.faq-item.active {
  border-color: rgba(12, 71, 138, 0.1);
  box-shadow: var(--shadow-md);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  color: var(--color-secondary);
}

.faq-item.active .faq-content {
  max-height: 500px; /* enough space */
}

/* ==========================================================================
   IMAGE GALLERY Grid
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(12, 71, 138, 0.8) 0%, rgba(12, 71, 138, 0) 100%);
  opacity: 0;
  transition: var(--transition-normal);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  z-index: 2;
}

.gallery-title {
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.1rem;
  transform: translateY(15px);
  transition: var(--transition-normal);
}

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

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

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

/* Layout modifications for gallery span (Pinterest/Grid Style) */
.gallery-item-wide {
  grid-column: span 2;
}

/* ==========================================================================
   CTA SECTION & CONTACT PAGE
   ========================================================================== */
.cta-banner {
  background-color: var(--color-primary);
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 60px;
}

.cta-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(12, 71, 138, 0.9) 0%, rgba(0, 168, 181, 0.8) 100%);
  z-index: 1;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.cta-banner-content h2 {
  color: var(--color-white);
  font-size: 2.25rem;
  margin-bottom: 16px;
  font-family: var(--font-secondary);
}

.cta-banner-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 28px;
}

/* Contact Details Page Grid */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

.contact-info-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}

.contact-item {
  display: flex;
  gap: 16px;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background-color: rgba(0, 168, 181, 0.08);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 24px;
  height: 24px;
}

.contact-item-details h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-item-details p, .contact-item-details a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-item-details a:hover {
  color: var(--color-primary);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 350px;
  margin-top: 35px;
  border: 1px solid rgba(0,0,0,0.05);
}

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

/* ==========================================================================
   FLOATING ACTION BUTTONS
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: var(--color-white);
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  z-index: 998;
  transition: var(--transition-normal);
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  color: var(--color-white);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: #0c1a30; /* Very dark navy blue */
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
  font-size: 0.95rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column h4 {
  color: var(--color-white);
  font-size: 1.15rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-secondary);
}

.footer-column-about p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 20px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-link:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-3px);
}

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

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

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-link::before {
  content: '→';
  color: var(--color-secondary);
  font-weight: 700;
  transition: var(--transition-fast);
}

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

.footer-link:hover::before {
  padding-right: 3px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item span {
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
  color: var(--color-white);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .tour-details-wrapper {
    grid-template-columns: 1fr;
  }
  
  .sidebar-sticky {
    position: static;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-item-wide {
    grid-column: span 1;
  }
  
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .menu-toggle { display: flex; }
  .nav-menu { display: none; }
  .header-cta { display: none; }
  .site-header { height: 70px; }
  .site-header.scrolled { height: 60px; padding: 0 10px; }
  .site-logo img { height: 35px; }

  /* Spacing */
  .section-padding { padding-top: 50px; padding-bottom: 50px; }
  
  /* Hero */
  .hero { min-height: 80vh; padding-top: 70px; }
  .hero-content h1 { font-size: 2.25rem; line-height: 1.3; }
  .hero-content p { font-size: 1.05rem; margin-bottom: 25px; }
  
  /* Sections */
  .section-header { margin-bottom: 35px; }
  .section-title { font-size: 1.75rem; }
  .tour-info-card h2 { font-size: 1.35rem; }
  
  /* Grids & Cards */
  .tour-details-wrapper > div { min-width: 0; } /* Fix grid blowout from wide tables */
  .tour-info-card { padding: 25px 20px; }
  .booking-card { padding: 25px 20px; }
  .usp-grid { grid-template-columns: 1fr; gap: 20px; }
  .usp-card { padding: 30px 20px; text-align: center; display: flex; flex-direction: column; align-items: center; }
  
  .card-grid { grid-template-columns: 1fr; }
  .package-card { max-width: 100%; margin: 0 auto; }
  
  .inc-exc-grid { grid-template-columns: 1fr; gap: 20px; }
  .tour-facts-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .contact-wrapper { grid-template-columns: 1fr; }
  
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .gallery-item { height: 200px; }
  
  .testimonial-grid { grid-template-columns: 1fr; }
  
  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer-column h4::after { left: 50%; transform: translateX(-50%); }
  .social-links { justify-content: center; }
  .footer-contact-item { flex-direction: column; align-items: center; }
  .footer-contact-item svg { margin-bottom: 5px; }
  .footer-bottom { flex-direction: column; gap: 15px; text-align: center; padding: 20px 0; }
}

@media (max-width: 480px) {
  /* Hero */
  .hero { min-height: 85vh; }
  .hero-content h1 { font-size: 1.85rem; }
  .hero-buttons { flex-direction: column; gap: 12px; }
  .hero-buttons .btn { width: 100%; }
  
  /* Cards & Forms */
  .tour-info-card { padding: 20px 15px; }
  .booking-card { padding: 20px 15px; }
  .itinerary-header { padding: 15px; }
  .itinerary-content { padding: 0 15px; }
  .package-img-container { height: 220px; }
  .package-meta { flex-direction: column; gap: 8px; align-items: flex-start; }
  
  .tour-facts-grid { grid-template-columns: 1fr; }
  
  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 220px; }
  
  /* CTA */
  .cta-banner { padding: 40px 20px; text-align: center; }
  .cta-banner-content h2 { font-size: 1.5rem; }
  .cta-banner-content .btn { width: 100%; justify-content: center; }
  
  /* USP */
  .usp-card { padding: 20px 15px; }
}
