/* ================================================
   2getherTravel - Global Styles
   Colors: Dark Blue #0D2137 | White #FFFFFF
   Style: Modern & Minimalist
   ================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #091B2F;
  --primary-light: #152E55;
  --primary-medium: #1A4585;
  --accent: #0A84FF;
  --accent-light: #5AACFF;
  --gold: #F59E0B;
  --gold-light: #FCD34D;
  --teal: #0D9488;
  --teal-light: #2DD4BF;
  --white: #FFFFFF;
  --off-white: #F3F7FD;
  --gray-100: #E5EEF8;
  --gray-200: #C5D3E8;
  --gray-400: #8A9EC0;
  --gray-600: #475E7A;
  --gray-800: #1C2A3A;
  --text: #192840;
  --text-light: #4E6A89;
  --shadow-sm: 0 2px 8px rgba(9, 27, 47, 0.09);
  --shadow-md: 0 4px 24px rgba(9, 27, 47, 0.14);
  --shadow-lg: 0 8px 48px rgba(9, 27, 47, 0.22);
  --shadow-gold: 0 8px 32px rgba(245, 158, 11, 0.28);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1rem, 2vw, 1.3rem); }

p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
}

/* ---------- Utility Classes ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-white p { color: rgba(255,255,255,0.8) !important; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, #0A84FF 0%, #0066DD 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(10, 132, 255, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2B97FF 0%, #0A84FF 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(10, 132, 255, 0.45);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #D97706 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.badge-accent {
  background: rgba(45, 133, 232, 0.12);
  color: var(--accent);
}

.badge-success {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 33, 55, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.navbar.scrolled .navbar-inner {
  padding: 12px 0;
  border-bottom-color: rgba(255,255,255,0.08);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

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

.lang-toggle {
  display: flex;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
}

.lang-btn {
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: inherit;
  transition: var(--transition);
  letter-spacing: 0.05em;
}

.lang-btn.active {
  background: var(--accent);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1920&q=85&fit=crop') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(2,8,20,0.80) 0%, rgba(4,15,35,0.65) 60%, rgba(4,15,35,0.40) 100%);
}

.hero-blob-1 {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(10, 132, 255, 0.38) 0%, rgba(20, 86, 168, 0.15) 50%, transparent 70%);
  top: -220px;
  right: -120px;
  border-radius: 50%;
}

.hero-blob-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, rgba(10, 132, 255, 0.12) 50%, transparent 70%);
  bottom: -120px;
  left: -60px;
  border-radius: 50%;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-content { color: var(--white); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45, 133, 232, 0.2);
  border: 1px solid rgba(45, 133, 232, 0.4);
  color: var(--accent-light);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.hero-title {
  color: var(--white);
  margin-bottom: 20px;
}

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

.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  justify-content: center;
}

.stat-item {}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

/* Hero Search Box */
.hero-search-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.search-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group select,
.form-group input {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}

.form-group select:focus,
.form-group input:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45, 133, 232, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ---------- Features Section ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--accent), var(--teal));
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-200);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #0A84FF 0%, #0D9488 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(10, 132, 255, 0.25);
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

/* ---------- Package Cards ---------- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.pkg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.pkg-image {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.pkg-img-gradient {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pkg-emoji {
  font-size: 4rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.pkg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.pkg-card:hover .pkg-photo {
  transform: scale(1.06);
}

.pkg-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.48) 100%);
  pointer-events: none;
}

.pkg-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pkg-tag {
  background: rgba(255,255,255,0.95);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

.pkg-rating {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.95);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.pkg-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pkg-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.pkg-meta span {
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

.pkg-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.pkg-description {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 20px;
  flex: 1;
}

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

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

.pkg-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
}

/* ---------- Testimonials ---------- */
.testimonials-bg {
  background: linear-gradient(135deg, #040D18 0%, #0B1F3F 30%, #0F2D5A 60%, #1456A8 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(10, 132, 255, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.testimonials-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  overflow: hidden;
  position: relative;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
  opacity: 1;
  transform: scale(1);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px) scale(1);
}

.testimonial-card.hidden {
  display: none;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  line-height: 1;
  padding: 0;
}

.slider-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
  left: 0;
}

.slider-btn-next {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}

.slider-dot:hover {
  background: rgba(255,255,255,0.5);
}

.slider-dot.active {
  background: var(--accent-light);
  width: 28px;
  border-radius: 5px;
}

.testimonial-stars {
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(245, 158, 11, 0.35);
}

.author-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}

.author-location {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: var(--off-white);
}

.cta-box {
  background: linear-gradient(135deg, #091B2F 0%, #0F2D5A 50%, #1456A8 100%);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(9, 27, 47, 0.3);
}

.cta-box::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(10, 132, 255, 0.25) 0%, transparent 60%);
  top: -120px;
  right: -120px;
  border-radius: 50%;
}

.cta-box::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 60%);
  bottom: -100px;
  left: -100px;
  border-radius: 50%;
}

.cta-box h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-box p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 64px 24px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  margin: 16px 0 24px;
  max-width: 280px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  color: var(--white);
}

.social-link i {
  font-size: 1.1rem;
}

.social-link:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(10, 132, 255, 0.3);
}

.social-link:nth-child(1):hover {
  background: #1877F2;
}

.social-link:nth-child(2):hover {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.social-link:nth-child(3):hover {
  background: #000000;
}

.footer-col h5 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

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

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.footer-contact-item span:first-child {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

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

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

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

/* ---------- Page Header (inner pages) ---------- */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-medium) 100%);
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ---------- Filter Bar (Packages) ---------- */
.filter-bar {
  background: var(--off-white);
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 70px;
  z-index: 100;
}

.filter-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ---------- About Page ---------- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-box {
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--primary) 0%, var(--accent) 100%);
  padding: 48px;
  text-align: center;
  color: var(--white);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.about-emoji {
  font-size: 5rem;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.about-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: background var(--transition);
}
.about-stat:hover {
  background: rgba(255,255,255,0.14);
}

.about-stat-number {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  letter-spacing: -0.5px;
}

.about-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  display: block;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}

.team-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-medium));
}

.team-name {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.85rem;
  color: var(--text-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.value-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--off-white);
  border-left: 4px solid var(--accent);
  transition: var(--transition);
}

.value-card:hover {
  background: var(--gray-100);
  transform: translateX(4px);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-medium) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(9, 27, 47, 0.2);
  flex-shrink: 0;
}

.value-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-medium) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.contact-info-card .sub {
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  font-size: 0.92rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.contact-item-value {
  color: var(--white);
  font-size: 0.97rem;
  font-weight: 500;
}

.contact-form-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
  margin-bottom: 28px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  font-family: inherit;
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-control:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45, 133, 232, 0.1);
}

.form-control::placeholder {
  color: var(--gray-400);
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

/* ---------- Booking Page ---------- */
.booking-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  gap: 0;
}

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

.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.step-circle.active {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(45, 133, 232, 0.2);
}

.step-circle.done {
  background: #22c55e;
  color: var(--white);
}

.step-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-600);
  white-space: nowrap;
}

.step-label.active {
  color: var(--accent);
}

.step-separator {
  flex: 1;
  height: 2px;
  background: var(--gray-200);
  max-width: 60px;
  margin: 0 8px;
}

.step-separator.done {
  background: #22c55e;
}

.booking-panel {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.booking-panel-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}

.pkg-select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pkg-select-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pkg-select-card:hover {
  border-color: var(--accent);
  background: rgba(45, 133, 232, 0.03);
}

.pkg-select-card.selected {
  border-color: var(--accent);
  background: rgba(45, 133, 232, 0.06);
}

.pkg-select-emoji {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.pkg-select-name {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 3px;
}

.pkg-select-price {
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 600;
}

.booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}

.booking-summary {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text-light);
}

.summary-row.total {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  border-top: 1px solid var(--gray-200);
  margin-top: 8px;
  padding-top: 16px;
}

.confirmation-box {
  text-align: center;
  padding: 32px 16px;
}

.confirmation-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.booking-id {
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-block;
  margin: 16px 0;
  letter-spacing: 0.1em;
}

/* ---------- Scroll to top ---------- */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 900;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* ---------- Notification Toast ---------- */
.toast {
  position: fixed;
  top: 90px;
  right: 24px;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  transform: translateX(120%);
  transition: var(--transition);
  border-left: 4px solid var(--accent);
}

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

.toast-icon { font-size: 1.3rem; }
.toast-text { font-size: 0.9rem; color: var(--text); font-weight: 500; }

/* ---------- Stat Divider ---------- */
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  align-self: center;
}

/* ---------- Hero Visual (Floating Cards) ---------- */
.hero-visual {
  position: relative;
  height: 460px;
}

.dest-card-main {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.dest-card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  position: relative;
}

.dest-card-emoji {
  font-size: 4rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.dest-card-info { text-align: center; }

.dest-card-name {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  color: white;
  margin-bottom: 4px;
}

.dest-card-sub {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.dest-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.95);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
}

.dest-float {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  font-size: 1.6rem;
}

.dest-float-name {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.85rem;
}

.dest-float-sub {
  font-size: 0.75rem;
  color: var(--text-light);
}

.dest-float-1 {
  bottom: 130px;
  left: -24px;
  animation: floatA 3s ease-in-out infinite;
}

.dest-float-2 {
  bottom: 60px;
  right: -24px;
  animation: floatB 3.5s ease-in-out infinite;
}

.hero-award {
  position: absolute;
  top: -20px;
  right: -20px;
  background: white;
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  font-size: 1.6rem;
}

.hero-award-title {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--primary);
}

.hero-award-sub {
  font-size: 0.72rem;
  color: var(--text-light);
}

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

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

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 18px 24px;
}

.trust-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.trust-badges {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  align-items: center;
}

.trust-badge {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-sep {
  width: 1px;
  height: 16px;
  background: var(--gray-200);
}

/* ---------- Destinations Grid ---------- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Santorini spans 2 cols in first implicit row */
.dest-grid-card.dest-span2 {
  grid-column: span 2;
}

/* Paris spans 2 rows */
.dest-grid-card.dest-tall {
  grid-row: span 2;
}

.dest-grid-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 260px;
  cursor: pointer;
}

.dest-grid-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}

.dest-grid-card:hover .dest-grid-bg {
  transform: scale(1.06);
}

.dest-grid-emoji {
  font-size: 5rem;
  opacity: 0.65;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
  transition: var(--transition);
}

.dest-grid-card:hover .dest-grid-emoji {
  opacity: 1;
  transform: scale(1.1);
}

.dest-grid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: white;
  z-index: 1;
}

.dest-grid-flag { font-size: 1.4rem; margin-bottom: 6px; }

.dest-grid-overlay h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.dest-grid-overlay p {
  color: rgba(255,255,255,0.75);
  font-size: 0.83rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

.dest-grid-link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--accent-light);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
  display: inline-block;
}

.dest-grid-card:hover .dest-grid-link {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- How It Works ---------- */
.how-section {
  background: linear-gradient(160deg, #00061A 0%, #001133 50%, #001F66 100%);
  position: relative;
  overflow: hidden;
}

.how-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 24px
  );
}

.how-grid {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.how-step {
  flex: 1;
  text-align: center;
  padding: 40px 28px;
}

.how-number {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.06);
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  margin-bottom: -28px;
}

.how-icon {
  font-size: 2.8rem;
  margin-bottom: 18px;
  position: relative;
}

.how-title {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.how-text {
  color: rgba(255,255,255,0.68);
  font-size: 0.93rem;
  line-height: 1.7;
}

.how-connector {
  width: 80px;
  height: 2px;
  background: rgba(255,255,255,0.18);
  margin-top: 88px;
  flex-shrink: 0;
  position: relative;
}

.how-connector::after {
  content: '→';
  position: absolute;
  top: -12px;
  right: -10px;
  color: rgba(255,255,255,0.3);
  font-size: 1.1rem;
}

/* ---------- Travel Methods ---------- */
.travel-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.travel-method-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

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

.travel-method-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.travel-method-card:hover .travel-method-bg {
  transform: scale(1.08);
}

.travel-method-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 27, 47, 0.92) 0%, rgba(9, 27, 47, 0.4) 60%, transparent 100%);
  z-index: 1;
}

.travel-method-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}

.travel-method-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.travel-method-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.travel-method-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 14px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

.gallery-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
  background-size: cover;
  background-position: center;
}

.gallery-item:hover .gallery-bg { transform: scale(1.06); }

.gallery-emoji {
  font-size: 4rem;
  opacity: 0.55;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82), transparent);
  color: white;
  padding: 20px 16px 14px;
  font-size: 0.84rem;
  font-weight: 600;
  z-index: 1;
}

/* ---------- Tips / Blog ---------- */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tip-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.tip-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-200);
}

.tip-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.tip-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tip-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.tip-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.tip-text {
  font-size: 0.88rem;
  color: var(--text-light);
  flex: 1;
  margin-bottom: 16px;
}

.tip-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
  display: inline-block;
}

.tip-link:hover {
  color: var(--primary);
  padding-left: 4px;
}

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

.tip-more-btn {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  background: var(--primary);
  border: none;
  border-radius: 20px;
  padding: 7px 18px;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.tip-more-btn:hover {
  background: var(--primary-dark, #0a2744);
  transform: translateY(-1px);
}

/* ── Tip Modal ── */
.tip-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(3px);
}

.tip-modal-overlay.open {
  display: flex;
}

.tip-modal-box {
  background: var(--white);
  border-radius: var(--radius-xl, 20px);
  padding: 36px;
  max-width: 580px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.tip-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gray-100, #f1f5f9);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text);
}

.tip-modal-close:hover { background: var(--gray-200, #e2e8f0); }

.tip-modal-cat {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.tip-modal-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.3;
  padding-right: 32px;
}

.tip-modal-body {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text);
  white-space: pre-line;
}

@media (max-width: 480px) {
  .tip-modal-box { padding: 24px; }
  .tip-modal-title { font-size: 1.15rem; }
}

/* ---------- Newsletter ---------- */
.newsletter-section { background: var(--off-white); }

.newsletter-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-medium) 100%);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-box::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45,133,232,0.3) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  border-radius: 50%;
}

.newsletter-box::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(45,133,232,0.2) 0%, transparent 70%);
  bottom: -100px;
  left: -50px;
  border-radius: 50%;
}

.newsletter-content { position: relative; z-index: 1; }

.newsletter-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.newsletter-box h2 {
  color: white;
  margin-bottom: 16px;
}

.newsletter-box p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-input {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  background: rgba(255,255,255,0.96);
  color: var(--text);
}

.newsletter-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45) !important;
  margin-bottom: 0 !important;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-up {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dest-grid-card.dest-tall {
    grid-row: span 1;
  }

  .how-grid {
    flex-direction: column;
    align-items: center;
  }

  .how-connector {
    width: 2px;
    height: 36px;
    margin: 0;
  }

  .how-connector::after {
    content: '↓';
    top: auto;
    bottom: -14px;
    right: -8px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-tall { grid-row: span 1; }

  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-slider {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-slider-wrapper {
    padding: 0 50px;
  }

  .travel-methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 16px 24px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow-lg);
  }

  .navbar-nav.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    display: none;
  }

  .hero-stats {
    gap: 16px;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .form-row-2, .form-row {
    grid-template-columns: 1fr;
  }

  .pkg-select-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 40px 28px;
  }

  .section {
    padding: 60px 0;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .dest-grid-card.dest-span2,
  .dest-grid-card.dest-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-tall, .gallery-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .tips-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-slider {
    grid-template-columns: 1fr;
  }

  .testimonials-slider-wrapper {
    padding: 0 40px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }

  .travel-methods-grid {
    grid-template-columns: 1fr;
  }

  .travel-method-card {
    height: 320px;
  }

  .trust-inner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .newsletter-box {
    padding: 48px 28px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 12px;
  }

  .stat-divider {
    display: none;
  }

  .booking-steps {
    gap: 4px;
  }

  .step-label {
    display: none;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input {
    min-width: unset;
    width: 100%;
  }
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #040D18 0%, #091B2F 50%, #0F2D5A 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

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

.preloader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(10, 132, 255, 0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 24px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.preloader-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  opacity: 0.9;
}

/* ---------- Cookie Banner ---------- */
#cookieBanner {
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
  width: calc(100% - 32px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(9, 27, 47, 0.25);
  padding: 24px 28px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--gray-100);
}

#cookieBanner.show {
  bottom: 24px;
}

.cookie-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

.cookie-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.cookie-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.cookie-text p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: var(--transition);
  white-space: nowrap;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--accent) 0%, #0066DD 100%);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(10, 132, 255, 0.25);
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #2B97FF 0%, var(--accent) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(10, 132, 255, 0.35);
}

.cookie-reject {
  background: var(--gray-100);
  color: var(--gray-600);
}

.cookie-reject:hover {
  background: var(--gray-200);
}

@media (max-width: 768px) {
  #cookieBanner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}

/* ======================================
   FLOATING ELEMENTS ANIMATIONS
   ====================================== */

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

@keyframes float-slow {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}

@keyframes float-diagonal {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(15px, -25px);
  }
}

.floating-icon {
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

.floating-icon.float-1 {
  top: 15%;
  left: 8%;
  animation: float 6s ease-in-out infinite;
}

.floating-icon.float-2 {
  top: 45%;
  left: 5%;
  animation: float-slow 8s ease-in-out infinite;
  animation-delay: 1s;
}

.floating-icon.float-3 {
  top: 70%;
  left: 10%;
  animation: float-diagonal 7s ease-in-out infinite;
  animation-delay: 2s;
}

.floating-icon.float-4 {
  top: 25%;
  right: 8%;
  animation: float 7s ease-in-out infinite;
  animation-delay: 0.5s;
}

.floating-icon.float-5 {
  top: 55%;
  right: 5%;
  animation: float-slow 9s ease-in-out infinite;
  animation-delay: 1.5s;
}

.floating-icon.float-6 {
  top: 80%;
  right: 12%;
  animation: float-diagonal 6.5s ease-in-out infinite;
  animation-delay: 2.5s;
}

/* ======================================
   INSTAGRAM FEED SECTION
   ====================================== */

.instagram-section {
  background: linear-gradient(135deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.instagram-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.instagram-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.instagram-header h2 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.instagram-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 24px;
  color: var(--white);
  font-weight: 600;
  margin-top: 16px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  text-decoration: none;
}

.instagram-handle:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  position: relative;
  z-index: 2;
}

.instagram-photo {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.instagram-photo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  transition: var(--transition);
}

.instagram-photo:hover {
  transform: scale(1.05);
  z-index: 3;
}

.instagram-photo:hover::before {
  background: rgba(0, 0, 0, 0.3);
}

.instagram-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 2rem;
  opacity: 0;
  transition: var(--transition);
}

.instagram-photo:hover .instagram-overlay {
  opacity: 1;
}

@media (max-width: 1024px) {
  .instagram-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .instagram-header h2 {
    font-size: 2rem;
  }
}

/* ======================================
   INTERACTIVE MAP SECTION
   ====================================== */

.map-section {
  background: var(--off-white);
  padding: 80px 0;
  position: relative;
}

/* Region filter buttons */
.map-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.map-filter-btn {
  padding: 8px 20px;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--white);
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.map-filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.map-filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(10,132,255,0.3);
}

.map-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

/* Header stats */
.map-header-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.mhs-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-light);
  opacity: 0.4;
}

/* Map wrapper */
.map-globe-wrap {
  width: 100%;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

#destinationsMap {
  width: 100%;
  height: 100%;
}

/* External zoom/reset buttons */
.map-globe-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 4px;
}

.map-ctrl-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(10,132,255,0.3);
  background: white;
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.map-ctrl-btn:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: scale(1.1);
}

/* Marker pin */
.map-pin {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  border: 3px solid #fff;
  cursor: pointer;
  transition: transform 0.15s;
}

.map-pin:hover {
  transform: scale(1.2);
}

.custom-map-marker {
  background: none !important;
  border: none !important;
}

/* Leaflet popup styles */
.leaflet-popup-content-wrapper {
  border-radius: 12px !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15) !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.leaflet-popup-content {
  margin: 0 !important;
  font-family: 'Inter', sans-serif !important;
  width: auto !important;
}

.leaflet-popup-tip-container {
  margin-top: -1px;
}

.map-popup {
  min-width: 180px;
}

.map-popup-accent {
  height: 4px;
  width: 100%;
}

.map-popup-body {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 8px;
}

.map-popup-emoji {
  font-size: 1.8rem;
  line-height: 1;
}

.map-popup-name {
  font-weight: 700;
  font-size: 1rem;
  color: #091B2F;
  line-height: 1.2;
}

.map-popup-sub {
  font-size: 0.8rem;
  color: #4E6A89;
  margin-top: 3px;
}

.map-popup-btn {
  display: block;
  margin: 0 14px 14px;
  padding: 8px 12px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}

.map-popup-btn:hover {
  background: #0070e0;
}

/* Legend pills */
.map-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.legend-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 2px solid var(--lc);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
}

.legend-pill span {
  background: var(--lc);
  color: #fff;
  border-radius: 999px;
  padding: 1px 8px;
  font-size: 0.72rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .map-container {
    padding: 12px;
  }

  .map-globe-wrap {
    height: 340px;
  }

  .map-filters {
    gap: 6px;
  }

  .map-filter-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

/* ===== GOOGLE REVIEWS ===== */
.google-reviews-section {
  background: linear-gradient(160deg, #00061A 0%, #001133 50%, #001F66 100%);
  position: relative;
  overflow: hidden;
}

.google-reviews-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.google-reviews-section .container {
  position: relative;
  z-index: 1;
}

.google-reviews-section .section-title,
.google-reviews-section .section-label {
  color: var(--white) !important;
}

.google-reviews-section .section-subtitle {
  color: rgba(255,255,255,0.75) !important;
}

.grev-overall {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  box-shadow: var(--shadow-md);
  max-width: 420px;
  margin: 0 auto 48px;
}

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

.grev-score-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.grev-score-stars {
  font-size: 1.2rem;
  margin: 4px 0;
}

.grev-score-count {
  font-size: 0.82rem;
  color: var(--text-light);
}

.grev-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.grev-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}

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

.grev-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.grev-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.grev-card-meta {
  flex: 1;
}

.grev-reviewer {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
}

.grev-date {
  font-size: 0.78rem;
  color: var(--text-light);
}

.grev-g-icon {
  margin-left: auto;
  opacity: 0.75;
  flex-shrink: 0;
}

.grev-stars {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.grev-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

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

.grev-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  transition: var(--transition);
}

.grev-cta-btn:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--primary);
}

@media (max-width: 768px) {
  .grev-overall {
    padding: 20px 24px;
    gap: 16px;
  }

  .grev-cards {
    grid-template-columns: 1fr;
  }
}

/* ===== TEAM AVATAR PHOTOS ===== */
.team-avatar-img {
  display: none;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid var(--accent);
  margin-bottom: 4px;
}
.team-avatar-img[src]:not([src=""]) {
  display: block;
}
.team-avatar-img[src]:not([src=""]) ~ .team-avatar-emoji {
  display: none;
}

/* ===== ACCESSIBILITY: FOCUS STYLES ===== */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.btn:focus-visible,
.nav-link:focus-visible,
.social-link:focus-visible,
.filter-btn:focus-visible,
.scroll-top:focus-visible,
.lang-btn:focus-visible,
.hamburger:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(10, 132, 255, 0.18);
}

/* ================================================
   MOBILE OPTIMIZATIONS
   ================================================ */

/* Touch: eliminate 300ms tap delay & remove tap highlight */
.btn, .nav-link, .lang-btn, .hamburger,
.filter-btn, .map-filter-btn, .cookie-btn,
.scroll-top, .social-link, .slider-btn,
.slider-dot, .pkg-select-card, .footer-links a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* ===== Navbar ===== */
@media (max-width: 768px) {
  /* Logo: shrink from 92px to 56px */
  .navbar-logo img {
    height: 56px !important;
  }
  .navbar-logo > span {
    font-size: 1.2rem !important;
  }
  /* Hide "Κράτηση" button — accessible via Επικοινωνία in hamburger menu */
  .navbar-actions > .btn {
    display: none;
  }
  /* Bigger touch target for hamburger */
  .hamburger {
    padding: 10px;
    margin-right: -10px;
  }
}

/* ===== Hero ===== */
@media (max-width: 768px) {
  .hero {
    padding: 100px 16px 56px;
  }
  /* Hide decorative floating icons on mobile (performance + UX) */
  .floating-icon {
    display: none;
  }
}

/* ===== Page Header (inner pages) ===== */
@media (max-width: 768px) {
  .page-header {
    padding: 100px 16px 48px;
  }
}

/* ===== Section spacing ===== */
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 36px;
  }
  .container {
    padding: 0 16px;
  }
}

/* ===== Booking Page ===== */
@media (max-width: 768px) {
  .booking-container {
    padding: 0 16px;
  }
  .booking-panel {
    padding: 24px 16px;
  }
}

/* ===== About Page ===== */
@media (max-width: 768px) {
  .about-intro {
    gap: 32px;
  }
  .contact-info-card {
    padding: 28px 20px;
  }
}

/* ===== Packages Grid ===== */
/* Fix: minmax(320px) overflows on phones < 360px */
@media (max-width: 480px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Footer Bottom ===== */
@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  .footer-bottom-links {
    gap: 16px;
  }
}

/* ===== Toast Notification ===== */
@media (max-width: 480px) {
  .toast {
    left: 12px;
    right: 12px;
    min-width: unset;
    top: 76px;
  }
}

/* ===== Scroll-to-top button ===== */
@media (max-width: 480px) {
  .scroll-top {
    bottom: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
  }
}

/* ===== Instagram header font ===== */
@media (max-width: 480px) {
  .instagram-header h2 {
    font-size: 1.6rem;
  }
}

/* ===== CTA Box ===== */
@media (max-width: 480px) {
  .cta-box {
    padding: 36px 20px;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== Newsletter box ===== */
@media (max-width: 480px) {
  .newsletter-box {
    padding: 36px 20px;
  }
}

/* ===== Map section ===== */
@media (max-width: 480px) {
  .map-section .section-header {
    padding: 0 4px;
  }
}

/* ===== Smooth scrolling on iOS ===== */
.navbar-nav,
.filter-bar-inner,
.map-filters {
  -webkit-overflow-scrolling: touch;
}

/* ================================================
   iOS & ANDROID SPECIFIC FIXES
   ================================================ */

/* ── iOS: prevent auto-zoom on input focus (font-size must be ≥ 16px) ── */
@media (max-width: 768px) {
  .form-control,
  .form-group input,
  .form-group select,
  .newsletter-input,
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  input[type="number"],
  input[type="password"],
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* ── iOS: remove default input/select styling ── */
input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Selects: remove native styling but keep custom arrow */
select.form-control,
.form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238A9EC0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

/* ── iOS: fix 100vh bug (address bar included in viewport) ── */
.hero {
  min-height: 100svh; /* svh = small viewport height, ignores browser chrome */
}

/* Fallback for browsers that don't support svh */
@supports not (min-height: 100svh) {
  .hero {
    min-height: -webkit-fill-available;
  }
}

/* ── iPhone X+ notch & home bar: safe area insets ── */
.navbar {
  padding-left: max(24px, env(safe-area-inset-left));
  padding-right: max(24px, env(safe-area-inset-right));
}

.scroll-top {
  bottom: max(28px, calc(env(safe-area-inset-bottom) + 12px));
  right: max(28px, env(safe-area-inset-right));
}

@media (max-width: 480px) {
  .scroll-top {
    bottom: max(16px, calc(env(safe-area-inset-bottom) + 10px));
    right: max(16px, env(safe-area-inset-right));
  }
}

/* safe-area: push shown cookie banner above home bar (iPhone X+) */
#cookieBanner.show {
  bottom: max(24px, env(safe-area-inset-bottom));
}

/* ── iOS: fix momentum scrolling & prevent overscroll bounce on modals ── */
.tip-modal-overlay {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* ── Android Chrome: prevent text resize on orientation change ── */
body {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* ================================================
   FONT AWESOME ICON COLORS & SIZING
   ================================================ */
.feature-icon i { color: #fff; font-size: 1.7rem; }
.how-icon i { color: var(--accent-light); }
.travel-method-icon i { color: rgba(255,255,255,0.95); }
.value-icon i { color: #fff; font-size: 1.4rem; }
.contact-item-icon i { color: #fff; font-size: 1.1rem; }
.grev-score-stars i, .grev-stars i { color: #FBBC05; }
.dest-grid-flag i { color: rgba(255,255,255,0.85); font-size: 1.2rem; }
.about-emoji i { color: var(--primary); }
.form-success-icon i { color: #22c55e; }
.footer-contact-item i { color: rgba(255,255,255,0.6); font-size: 0.9rem; flex-shrink: 0; margin-top: 2px; }
.newsletter-icon i { color: rgba(255,255,255,0.8); }
.cookie-icon i { color: var(--accent); }

/* ================================================
   MOBILE IMPROVEMENTS
   Strategy: additive only — existing rules unchanged.
   ================================================ */

/* ── FIX 1: Prevent hover "stuck" states on touch ── */
@media (hover: none) {
  .btn-primary:hover,
  .btn-gold:hover,
  .btn-dark:hover {
    transform: none;
    box-shadow: none;
  }
  .feature-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--gray-100);
  }
  .feature-card:hover::before {
    transform: scaleX(0);
  }
  .pkg-card:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
  }
  .pkg-card:hover .pkg-photo {
    transform: none;
  }
  .travel-method-card:hover {
    transform: none;
    box-shadow: var(--shadow-md);
  }
  .travel-method-card:hover .travel-method-bg {
    transform: none;
  }
  .testimonial-card:hover {
    transform: none;
  }
  .team-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--gray-100);
  }
  .value-card:hover {
    transform: none;
  }
  .tip-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--gray-100);
  }
  .grev-card:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
  }
  .social-link:hover {
    transform: none;
  }
  .dest-grid-card:hover .dest-grid-bg {
    transform: none;
  }
  .dest-grid-card:hover .dest-grid-emoji {
    transform: none;
    opacity: 0.65;
  }
  /* dest-grid-link is opacity:0 by default — visible only on hover.
     On touch it would be permanently invisible. Make it always visible. */
  .dest-grid-link {
    opacity: 1;
    transform: none;
  }
  .gallery-item:hover .gallery-bg {
    transform: none;
  }
  .instagram-photo:hover {
    transform: none;
    z-index: auto;
  }
  .instagram-photo:hover::before {
    background: rgba(0, 0, 0, 0);
  }
  .instagram-photo:hover .instagram-overlay {
    opacity: 0;
  }
  .map-filter-btn:hover {
    transform: none;
  }
  .map-ctrl-btn:hover {
    transform: none;
  }
  .map-pin:hover {
    transform: none;
  }
  .instagram-handle:hover {
    transform: none;
  }
  .footer-links a:hover {
    padding-left: 0;
  }
  .scroll-top:hover {
    transform: none;
    background: var(--primary);
  }
}

/* ── FIX 4: Map iframe height ── */
@media (max-width: 768px) {
  iframe[src*="openstreetmap"] {
    height: 280px !important;
  }
}

/* ── FIX 5: Language button touch target ── */
@media (max-width: 768px) {
  .lang-btn {
    min-height: 36px;
    padding: 8px 14px;
  }
}

/* ── FIX 6: About emoji size ── */
@media (max-width: 768px) {
  .about-emoji {
    font-size: 3.5rem;
  }
}

/* ── FIX 2: Section padding at 480px ── */
@media (max-width: 480px) {
  .section {
    padding: 44px 0;
  }
}

/* ── FIX 3: Travel method card height at 480px ── */
@media (max-width: 480px) {
  .travel-method-card {
    height: 240px;
  }
  .travel-method-content {
    padding: 20px;
  }
  .travel-method-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  .travel-method-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }
}

/* ── FIX 7: Hero padding at 480px ── */
@media (max-width: 480px) {
  .hero {
    padding: 80px 16px 44px;
  }
}

/* ── FIX 8: Page header padding at 480px ── */
@media (max-width: 480px) {
  .page-header {
    padding: 72px 20px 44px;
  }
}

/* ── FIX 9: Testimonials slider arrows at 480px ── */
@media (max-width: 480px) {
  .testimonials-slider-wrapper {
    padding: 0 36px;
  }
  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
}

/* ── FIX 10: How-it-works connector at 480px ── */
@media (max-width: 480px) {
  .how-connector {
    display: none;
  }
}
