/* ================================================================
   MONTE GEMS TOURS — Main Stylesheet
   Fonts: Playfair Display (headings) + Montserrat (body)
   Color palette: deep slate-navy + blue/cyan accents + green CTA
   ================================================================ */

/* ---------------------------------------------------------------
   CSS CUSTOM PROPERTIES (global variables)
   ✏️ You can tweak brand colours here
   --------------------------------------------------------------- */
:root {
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --blue-950: #172554;
  --blue-500:  #3b82f6;
  --blue-400:  #60a5fa;
  --blue-300:  #93c5fd;
  --blue-200:  #bfdbfe;
  --cyan-300:  #67e8f9;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --yellow-400:#facc15;
  --white:     #ffffff;

  --font-body:    'Montserrat', sans-serif;
  --font-display: 'Playfair Display', serif;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-sm: 0.5rem;
  --transition: 0.25s ease;
  --max-width: 1280px;
}

/* ---------------------------------------------------------------
   RESET & BASE
   --------------------------------------------------------------- */
*, *::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-body);
  background: var(--slate-900);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------------------------------------------------------------
   TYPOGRAPHY UTILITIES
   --------------------------------------------------------------- */
.font-display { font-family: var(--font-display); }
.text-blue    { color: var(--blue-400); }
.gradient-text {
  background: linear-gradient(90deg, var(--blue-400), var(--cyan-300), var(--blue-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.section-dark {
  position: relative;
  background: linear-gradient(180deg, var(--slate-900) 0%, var(--blue-950) 50%, var(--slate-900) 100%);
}

.section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/boat2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 0;
}

.section-dark::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg,
    rgba(15,23,42,.75) 0%,
    rgba(23,37,84,.60) 50%,
    rgba(15,23,42,.80) 100%);
  z-index: 1;
}

.section-dark > * {
  position: relative;
  z-index: 2;
}
.section-mid   { background: linear-gradient(180deg, var(--blue-950) 0%, var(--slate-900) 50%, var(--blue-950) 100%); }
.section-gallery { background: linear-gradient(180deg, var(--slate-900) 0%, var(--slate-800) 50%, var(--blue-950) 100%); }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--blue-200);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Decorative blurred glows */
.section-glow {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.12;
}
.glow-top-left    { top: -100px;    left: -100px;    background: var(--blue-500); }
.glow-top-right   { top: -100px;    right: -100px;   background: var(--blue-500); }
.glow-bottom-left { bottom: -100px; left: -100px;    background: var(--blue-400); }
.glow-bottom-right{ bottom: -100px; right: -100px;   background: var(--cyan-300); }

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

@media (max-width: 640px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

/* ---------------------------------------------------------------
   GRADIENT CLASSES (for icons, checks, etc.)
   --------------------------------------------------------------- */
.gradient-blue-cyan     { background: linear-gradient(135deg,#3b82f6,#22d3ee); }
.gradient-cyan-teal     { background: linear-gradient(135deg,#22d3ee,#14b8a6); }
.gradient-teal-emerald  { background: linear-gradient(135deg,#14b8a6,#10b981); }
.gradient-emerald-green { background: linear-gradient(135deg,#10b981,#22c55e); }
.gradient-blue-indigo   { background: linear-gradient(135deg,#3b82f6,#6366f1); }
.gradient-orange-pink   { background: linear-gradient(135deg,#f97316,#ec4899); }
.gradient-emerald-teal  { background: linear-gradient(135deg,#10b981,#14b8a6); }
.gradient-purple-indigo { background: linear-gradient(135deg,#a855f7,#6366f1); }
.gradient-cyan-blue     { background: linear-gradient(135deg,#22d3ee,#3b82f6); }
.gradient-yellow-orange { background: linear-gradient(135deg,#eab308,#f97316); }

/* ---------------------------------------------------------------
   NAVBAR
   --------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(15,23,42,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(96,165,250,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.nav-logo svg { color: var(--blue-400); width: 28px; height: 28px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue-400); }

.btn-whatsapp-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  background: var(--green-500);
  color: var(--white) !important;
  border-radius: 999px;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.btn-whatsapp-nav:hover { background: var(--green-600) !important; transform: scale(1.04); color: var(--white) !important; }
.btn-whatsapp-nav svg  { width: 18px; height: 18px; }

.btn-whatsapp-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--green-500);
  border-radius: 50%;
  color: var(--white);
  transition: background var(--transition);
}
.btn-whatsapp-mobile:hover { background: var(--green-600); }
.btn-whatsapp-mobile svg { width: 20px; height: 20px; }

.nav-mobile-actions {
  display: none;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-tours-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 1rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,.25);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.btn-tours-mobile:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}
.btn-tours-mobile.active { color: var(--blue-400); }

/* ---------------------------------------------------------------
   HERO
   --------------------------------------------------------------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(15,23,42,.70) 0%,
    rgba(23,37,84,.50) 50%,
    rgba(15,23,42,.80) 100%);
}
.hero-glow {
  position: absolute;
  top: -50%; right: -50%;
  width: 100%; height: 100%;
  background: rgba(59,130,246,.3);
  border-radius: 50%;
  filter: blur(100px);
  animation: pulseGlow 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulseGlow {
  0%,100% { opacity:.3; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.2); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  padding: 0 1.5rem;
}
.hero-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--blue-200);
  font-size: 1.1rem;
}
.hero-location svg { color: var(--blue-400); width: 22px; height: 22px; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--blue-200);
  max-width: 720px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: var(--white);
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 8px 24px rgba(34,197,94,.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-600), #15803d);
  transform: scale(1.04);
  box-shadow: 0 16px 40px rgba(34,197,94,.35);
  color: var(--white);
}
.btn-primary svg { width: 20px; height: 20px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  color: var(--white);
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,.25);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.5);
  transform: scale(1.04);
  color: var(--white);
}
.btn-secondary svg { width: 20px; height: 20px; }

.btn-full { width: 100%; justify-content: center; border-radius: var(--radius-md); }

/* ---------------------------------------------------------------
   SCROLL INDICATOR
   --------------------------------------------------------------- */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator > div {
  width: 28px; height: 48px;
  border: 2px solid rgba(255,255,255,.55);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-dot {
  width: 6px; height: 12px;
  background: rgba(255,255,255,.8);
  border-radius: 3px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(12px); }
}

/* ---------------------------------------------------------------
   FEATURE CARDS
   --------------------------------------------------------------- */
.feature-card {
  position: relative;
  background: rgba(30,41,59,.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(59,130,246,.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(96,165,250,.4);
  box-shadow: 0 20px 48px rgba(59,130,246,.15);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}
.feature-icon svg { width: 28px; height: 28px; color: var(--white); }
.feature-card h3 { font-size: 1.25rem; font-weight: 600; color: var(--white); margin-bottom: 0.75rem; }
.feature-card p  { color: var(--blue-200); line-height: 1.7; }

/* ---------------------------------------------------------------
   STAT CARDS
   --------------------------------------------------------------- */
.stat-card {
  position: relative;
  background: rgba(30,41,59,.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(59,130,246,.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.stat-card:hover {
  transform: translateY(-6px) scale(1.04);
  border-color: rgba(96,165,250,.4);
  box-shadow: 0 20px 48px rgba(59,130,246,.2);
}
.stat-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  margin: 0 auto 1rem;
}
.stat-icon svg { width: 28px; height: 28px; color: var(--white); }
.stat-value { font-size: 3rem; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 1.1rem; color: var(--blue-300); font-weight: 600; margin-bottom: 0.4rem; }
.stat-desc  { font-size: 0.85rem; color: rgba(191,219,254,.7); }

/* ---------------------------------------------------------------
   GALLERY
   --------------------------------------------------------------- */
.gallery-wrapper {
  position: relative;
  overflow: hidden;
}
.gallery-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.gallery-slide {
  flex: 0 0 calc(33.333% - 1rem);
  margin-right: 1.5rem;
}
.gallery-slide img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.gallery-slide img:hover { transform: scale(1.04); }

.gallery-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(59,130,246,.85);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  backdrop-filter: blur(6px);
  transition: background var(--transition), transform var(--transition);
  z-index: 2;
}
.gallery-btn:hover { background: var(--blue-500); transform: translateY(-50%) scale(1.1); }
.gallery-btn svg  { width: 22px; height: 22px; }
.gallery-btn-prev { left: -1rem; }
.gallery-btn-next { right: -1rem; }

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.gallery-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(96,165,250,.35);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.gallery-dot.active {
  background: var(--blue-400);
  transform: scale(1.3);
}

.gallery-social {
  margin-top: 3rem;
  text-align: center;
}
.gallery-social p { color: var(--blue-200); font-size: 1.05rem; margin-bottom: 1rem; }
.social-buttons { display: flex; justify-content: center; gap: 1rem; }
.social-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: transform var(--transition), filter var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.social-btn:hover { transform: scale(1.12); filter: brightness(1.15); }
.social-instagram { background: linear-gradient(135deg,#a855f7,#ec4899); }
.social-facebook  { background: #1877f2; }

/* ---------------------------------------------------------------
   TESTIMONIALS
   --------------------------------------------------------------- */
.testimonial-card {
  background: rgba(30,41,59,.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(59,130,246,.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition), border-color var(--transition);
}
.testimonial-card:hover { transform: translateY(-6px); border-color: rgba(96,165,250,.4); }
.quote-icon { width: 36px; height: 36px; color: var(--blue-400); margin-bottom: 1rem; }
.stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.star { width: 18px; height: 18px; }
.star.filled { color: var(--yellow-400); fill: var(--yellow-400); }
.testimonial-text {
  color: var(--blue-200);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  border-top: 1px solid rgba(59,130,246,.2);
  padding-top: 1rem;
}
.author-name     { display: block; color: var(--white); font-weight: 600; }
.author-location { display: block; color: var(--blue-300); font-size: 0.85rem; margin-top: 0.2rem; }

/* ---------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(30,41,59,.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(59,130,246,.2);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.contact-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; }
.bg-green { background: rgba(34,197,94,.2); }
.bg-green svg { color: #4ade80; }
.bg-blue  { background: rgba(59,130,246,.2); }
.bg-blue svg  { color: var(--blue-400); }
.contact-details h3 { color: var(--white); font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; }
.contact-details p  { color: var(--blue-200); font-size: 0.95rem; }
.contact-details a  { color: var(--blue-200); transition: color var(--transition); }
.contact-details a:hover { color: var(--blue-400); }
.hours-note { font-size: 0.8rem !important; color: rgba(191,219,254,.65) !important; margin-top: 0.2rem; }

.btn-chat {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.5rem 1.25rem;
  background: var(--green-500);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.btn-chat:hover { background: var(--green-600); transform: scale(1.03); color: var(--white); }

.cta-box {
  background: rgba(30,41,59,.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(59,130,246,.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}
.cta-title { font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--white); margin-bottom: 2rem; line-height: 1.3; }
.cta-features { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.cta-feature { display: flex; align-items: flex-start; gap: 1rem; }
.cta-check {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
}
.cta-feature h4 { color: var(--white); font-size: 1rem; font-weight: 600; margin-bottom: 0.2rem; }
.cta-feature p  { color: var(--blue-200); font-size: 0.9rem; }

/* ---------------------------------------------------------------
   TOURS PAGE
   --------------------------------------------------------------- */
.tours-header {
  padding: 8rem 0 4rem;
  background: linear-gradient(180deg, var(--slate-900) 0%, var(--blue-950) 100%);
}

.tours-main { padding-top: 0; }

.tours-list { display: flex; flex-direction: column; gap: 2.5rem; }

.tour-card {
  position: relative;
  background: rgba(30,41,59,.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(59,130,246,.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.tour-card:hover {
  border-color: rgba(96,165,250,.4);
  box-shadow: 0 24px 64px rgba(59,130,246,.12);
}
.tour-body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
}
.tour-left  { padding: 2.5rem; border-right: 1px solid rgba(59,130,246,.15); }
.tour-right { padding: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }

/* Featured tour backgrounds with overlay */
.tour-featured .tour-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.70;
  z-index: 0;
  pointer-events: none;
}

.tour-featured .tour-body {
  position: relative;
  z-index: 1;
}

.tour-featured .tour-left,
.tour-featured .tour-right {
  position: relative;
  z-index: 2;
  background: rgba(15, 23, 42, 0.35);
}

.tour-featured .tour-left {
  border-right: 1px solid rgba(59, 130, 246, 0.2);
}

/* Individual featured tour background images */
.tour-blue-cave .tour-body::before {
  background-image: url('images/cave.jpg');
}

.tour-sunset .tour-body::before {
  background-image: url('images/sunset.jpg');
}

.tour-fullbay .tour-body::before {
  background-image: url('images/perast.jpg');
}

.tour-photography .tour-body::before {
  background-image: url('images/ladyrock.jpg');
}

.tour-snorkeling .tour-body::before {
  background-image: url('images/mamula.jpg');
}

.tour-private-charter .tour-body::before {
  background-image: url('images/cablecar.jpg');
}

/* Featured tour card backgrounds on index page */
.featured-tour-card {
  position: relative;
  background: rgba(15,23,42,.65);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(12px);
  transition: all .3s ease;
  overflow: hidden;
}

.featured-tour-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.70;
  z-index: 0;
  pointer-events: none;
}

.featured-tour-card > * {
  position: relative;
  z-index: 1;
}

.featured-tour-card.tour-blue-cave::before {
  background-image: url('images/cave.jpg');
}

.featured-tour-card.tour-sunset::before {
  background-image: url('images/mamula.jpg');
}

.featured-tour-card.tour-fullbay::before {
  background-image: url('images/perast.jpg');
}

.featured-tour-card.tour-photography::before {
  background-image: url('images/ladyrock.jpg');
}

.tour-header-row { display: flex; align-items: flex-start; gap: 1.25rem; margin-bottom: 1.25rem; }
.tour-icon {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
}
.tour-icon svg { width: 36px; height: 36px; color: var(--white); }
.tour-title {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}
.tour-stars { display: flex; gap: 0.25rem; }

.tour-desc { color: var(--blue-200); font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; }

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.meta-item {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--blue-200); font-size: 0.95rem;
}
.meta-item svg { width: 18px; height: 18px; color: var(--blue-400); flex-shrink: 0; }
.meta-price { color: var(--blue-300); font-weight: 600; }

.tour-highlights h3 { color: var(--white); font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; }
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.highlights-grid li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--blue-200);
  font-size: 0.9rem;
  line-height: 1.5;
}
.highlights-grid li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: linear-gradient(135deg,#22c55e,#10b981);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}

.itinerary-box {
  background: rgba(15,23,42,.5);
  border: 1px solid rgba(59,130,246,.2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  flex: 1;
}
.itinerary-box h3 { color: var(--white); font-size: 1.05rem; font-weight: 600; margin-bottom: 1rem; }
.itinerary-list { display: flex; flex-direction: column; gap: 0.75rem; }
.itinerary-list li {
  display: flex; gap: 0.75rem;
  color: var(--blue-200); font-size: 0.88rem;
  counter-increment: itinerary;
}
.itinerary-list { counter-reset: itinerary; }
.itinerary-list li::before {
  content: counter(itinerary);
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: rgba(59,130,246,.2);
  border-radius: 50%;
  color: var(--blue-400);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.btn-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 8px 20px rgba(34,197,94,.2);
}
.btn-book:hover {
  background: linear-gradient(135deg, var(--green-600), #15803d);
  transform: scale(1.02);
  box-shadow: 0 16px 36px rgba(34,197,94,.3);
  color: var(--white);
}
.btn-book svg { width: 20px; height: 20px; }

/* Can't Decide Banner */
.cant-decide {
  margin-top: 5rem;
  background: rgba(30,41,59,.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(59,130,246,.2);
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
}
.cant-decide h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--white); margin-bottom: 1rem; }
.cant-decide p  { color: var(--blue-200); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2rem; line-height: 1.7; }

/* ---------------------------------------------------------------
   FOOTER
   --------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid rgba(59,130,246,.15);
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--blue-300);
  font-size: 0.9rem;
  background: var(--slate-900);
}
.footer-domain { color: var(--blue-400); margin-top: 0.35rem; font-size: 0.85rem; }

/* ---------------------------------------------------------------
   ANIMATIONS
   --------------------------------------------------------------- */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}
.animate-up > * { animation: fadeUp 0.8s ease both; }
.animate-up > *:nth-child(2) { animation-delay: 0.2s; }
.animate-up > *:nth-child(3) { animation-delay: 0.4s; }
.animate-up > *:nth-child(4) { animation-delay: 0.6s; }

@keyframes fadeUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0);    }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children when multiple cards in a grid */
.grid-3 .animate-on-scroll:nth-child(2),
.grid-4 .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.grid-3 .animate-on-scroll:nth-child(3),
.grid-4 .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.grid-4 .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* ---------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------- */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
  .tour-body     { grid-template-columns: 1fr; }
  .tour-left     { border-right: none; border-bottom: 1px solid rgba(59,130,246,.15); }
  .gallery-slide { flex: 0 0 calc(50% - 0.75rem); }
}

@media (max-width: 768px) {
  .nav-links       { display: none; }
  .nav-mobile-actions { display: flex; }
  .btn-whatsapp-mobile { display: flex; }
  .section { padding: 4rem 0; }
  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: auto;
    max-width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  .hero-buttons .btn-primary svg,
  .hero-buttons .btn-secondary svg {
    width: 18px;
    height: 18px;
  }

  .hero-bg {
    background-position: 85% center;
  }

  @media (max-width: 640px) {
    .hero-bg {
      background-position: 85% center;
    }
  }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .highlights-grid { grid-template-columns: 1fr; }
  .gallery-slide { flex: 0 0 100%; }
  .gallery-btn-prev { left: 0.25rem; }
  .gallery-btn-next { right: 0.25rem; }
  .cant-decide { padding: 2.5rem 1.5rem; }
  .tours-header { padding: 6rem 0 3rem; }
}

@media (max-width: 480px) {
  .tour-meta { flex-direction: column; gap: 0.75rem; }
}

/* ---------------------------------------------------------------
   PRINT (basic)
   --------------------------------------------------------------- */
@media print {
  .navbar, .hero-glow, .section-glow, .gallery-btn,
  .btn-primary, .btn-secondary, .btn-book, .btn-chat,
  .scroll-indicator { display: none !important; }
  body { background: white; color: black; }
}

/* ==========================================================
   FEATURED TOURS
   ========================================================== */

.featured-tours-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:2rem;
}

.featured-tour-card{
  background:rgba(15,23,42,.65);
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:2rem;
  backdrop-filter:blur(12px);
  transition:all .3s ease;
}




.featured-tour-card:hover{
  transform:translateY(-8px);
  border-color:rgba(34,211,238,.3);
  box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.featured-tour-card h3{
  color:white;
  margin:1.25rem 0 .75rem;
  font-size:1.35rem;
}

.featured-tour-card p{
  color:var(--blue-200);
  line-height:1.7;
}

.tour-mini-meta{
  display:flex;
  align-items:center;
  gap:.5rem;
  color:#7dd3fc;
  margin:1rem 0 1.5rem;
}

.tour-card-buttons{
  display:flex;
  gap:.75rem;
  flex-wrap:wrap;
}

.tour-card-buttons .btn-secondary,
.tour-card-buttons .btn-primary{
  padding:.85rem 1.25rem;
}