/* ============================================================
   Varsha Travels — Premium Vanilla CSS
   ============================================================ */

/* ---- Google Fonts + Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #2563eb;
  --blue-dark:  #1d4ed8;
  --indigo:     #4f46e5;
  --blue-light: #dbeafe;
  --green:      #22c55e;
  --white:      #ffffff;
  --gray-50:    #f8fafc;
  --gray-100:   #f1f5f9;
  --gray-200:   #e2e8f0;
  --gray-400:   #94a3b8;
  --gray-600:   #475569;
  --gray-700:   #334155;
  --gray-900:   #0f172a;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow:     0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:  0 12px 40px rgba(37,99,235,.18);
  --radius:     1rem;
  --radius-sm:  .5rem;
  --nav-h:      6rem;
  --transition: .25s ease;
  font-family: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { color: var(--gray-900); background: var(--white); }
img  { display: block; max-width: 100%; }
svg  { display: inline-block; vertical-align: middle; max-width: 100%; max-height: 100%; }
a    { text-decoration: none; color: inherit; }

/* ---- Utility Classes & Sizing ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section    { padding: 5rem 1.25rem; }
.text-center{ text-align: center; }

/* Spacing & Margin/Padding Utilities */
.mb-1       { margin-bottom: 0.25rem; }
.mb-2       { margin-bottom: 0.5rem; }
.mb-3       { margin-bottom: 0.75rem; }
.mb-4       { margin-bottom: 1rem; }
.mb-6       { margin-bottom: 1.5rem; }
.mb-8       { margin-bottom: 2rem; }
.mb-12      { margin-bottom: 3rem; }
.mt-1       { margin-top: 0.25rem; }
.mt-2       { margin-top: 0.5rem; }
.mr-1       { margin-right: 0.25rem; }
.mr-2       { margin-right: 0.5rem; }
.ml-1       { margin-left: 0.25rem; }
.ml-2       { margin-left: 0.5rem; }
.py-12      { padding-top: 3rem; padding-bottom: 3rem; }

/* Flexbox & Layout Utilities */
.flex       { display: flex; }
.grid       { display: grid; }
.hidden     { display: none; }
.inline-block { display: inline-block; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap  { flex-wrap: wrap; }
.gap-2      { gap: 0.5rem; }
.gap-3      { gap: 0.75rem; }
.gap-4      { gap: 1rem; }
.gap-6      { gap: 1.5rem; }

/* Width & Height Utility Classes */
.w-full     { width: 100%; }
.w-4        { width: 1rem; height: 1rem; }
.h-4        { height: 1rem; }
.w-5        { width: 1.25rem; height: 1.25rem; }
.h-5        { height: 1.25rem; }
.w-6        { width: 1.5rem; height: 1.5rem; }
.h-6        { height: 1.5rem; }

/* Typography Utilities */
.text-xs    { font-size: 0.75rem; line-height: 1rem; }
.text-sm    { font-size: 0.875rem; line-height: 1.25rem; }
.text-base  { font-size: 1rem; line-height: 1.5rem; }
.font-semibold { font-weight: 600; }
.font-bold  { font-weight: 700; }

/* Color Utilities */
.text-gray-400 { color: var(--gray-400); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-900 { color: var(--gray-900); }
.text-red-500  { color: #ef4444; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .75rem 1.75rem; border-radius: 9999px;
  font-weight: 700; font-size: .95rem; cursor: pointer;
  text-decoration: none;
  border: none; transition: transform var(--transition), box-shadow var(--transition);
}
.btn:hover { transform: scale(1.04); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,99,235,.35);
}
.btn-primary:hover { box-shadow: var(--shadow-lg); }
.btn-outline {
  background: transparent; border: 2px solid var(--blue);
  color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

/* ---- Headings ---- */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800; color: var(--gray-900);
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1.1rem; color: var(--gray-600); margin-top: .75rem;
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(37,99,235,.12);
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease;
}
.navbar.nav-hidden { transform: translateY(-100%); }

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
}

.nav-brand {
  display: flex; align-items: center; gap: .75rem; flex-shrink: 0; text-decoration: none;
}
.nav-logo   { height: 3.5rem; width: auto; object-fit: contain; }
.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.nav-links {
  display: flex; align-items: center; gap: 1.5rem; margin-left: auto;
}
.nav-link {
  font-weight: 600; font-size: .9rem; color: var(--gray-700);
  padding: .25rem 0; position: relative; text-decoration: none;
  transition: color var(--transition);
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--blue);
  transform: scaleX(0); transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--blue); text-decoration: none; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.btn-book {
  padding: .55rem 1.4rem;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  color: var(--white); border-radius: 9999px;
  font-weight: 700; font-size: .875rem; text-decoration: none;
  box-shadow: 0 4px 12px rgba(37,99,235,.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-book:hover { transform: scale(1.06); box-shadow: var(--shadow-lg); }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .5rem;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--gray-900); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    box-shadow: var(--shadow);
    padding: 1rem 1.25rem 1.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: .75rem 1rem; font-size: 1rem; border-radius: var(--radius-sm); }
  .nav-link:hover { background: var(--blue-light); }
  .btn-book { text-align: center; margin-top: .5rem; padding: .75rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 4.5rem; }
  .nav-logo { height: 2.75rem; }
  .brand-text { font-size: 1.25rem; }
}

@media (max-width: 480px) {
  :root { --nav-h: 4rem; }
  .nav-logo { height: 2.25rem; }
  .brand-text { font-size: 1.1rem; }
  .nav-inner { padding: 0 1rem; }
}

/* ============================
   FLOATING ACTION BUTTONS
   ============================ */
.fab {
  position: fixed; bottom: 1.5rem; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: transform .3s, box-shadow .3s;
}
.fab:hover { transform: scale(1.12); }
.fab-call     { left: 1.5rem; background: linear-gradient(135deg,#3b82f6,#1d4ed8); }
.fab-whatsapp { right: 1.5rem; background: linear-gradient(135deg,#25d366,#128c7e); }

.fab::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: inherit; animation: fab-pulse 2s infinite;
}
@keyframes fab-pulse {
  0%   { transform: scale(1); opacity: .6; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

.fab-tooltip {
  position: absolute; left: 110%; top: 50%; transform: translateY(-50%);
  background: var(--gray-900); color: var(--white);
  padding: .35rem .75rem; border-radius: var(--radius-sm);
  font-size: .78rem; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.fab-tooltip-left { left: auto; right: 110%; }
.fab:hover .fab-tooltip { opacity: 1; }

@media (max-width: 640px) {
  .fab {
    width: 48px;
    height: 48px;
    bottom: 1rem;
  }
  .fab-call     { left: 1rem; }
  .fab-whatsapp { right: 1rem; }
  .fab::before  { display: none; } /* hide pulse animation on mobile to reduce distraction */
  .fab-tooltip  { display: none; } /* hide tooltips on mobile */
}


/* ============================
   MAIN CONTENT
   ============================ */
.main-content { padding-top: var(--nav-h); }

/* ============================
   HERO / CAROUSEL
   ============================ */
.hero-carousel {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--nav-h));
  min-height: 480px;
  overflow: hidden;
  display: block;
}
.carousel-track {
  display: flex; height: 100%;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
}
.carousel-slide {
  min-width: 100%; height: 100%; position: relative; flex-shrink: 0;
}
.carousel-slide img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
}
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.1) 50%, transparent 100%);
}
.slide-content {
  position: absolute; bottom: 3rem; left: 2rem; right: 2rem; max-width: 650px;
}
.slide-badge {
  display: inline-block; margin-bottom: .75rem;
  padding: .3rem .9rem; border-radius: 9999px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.9); font-size: .75rem; font-weight: 600;
  letter-spacing: .04em;
}
.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 3.5rem); font-weight: 800;
  color: var(--white); line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.slide-sub {
  margin-top: .75rem; color: rgba(255,255,255,.88);
  font-size: clamp(.9rem, 2vw, 1.15rem);
}

/* Carousel Controls */
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white); width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer;
  transition: background .2s, transform .2s;
  display: flex; align-items: center; justify-content: center;
}
.carousel-btn:hover { background: rgba(255,255,255,.4); transform: translateY(-50%) scale(1.1); }
.carousel-prev { left: 1rem; }
.carousel-next { right: 1rem; }

.carousel-dots {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .5rem;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.5); cursor: pointer;
  transition: background .3s, transform .3s;
}
.carousel-dot.active { background: var(--white); transform: scale(1.3); }

/* ---- Carousel: Tablet (≤ 768px) ---- */
@media (max-width: 768px) {
  .hero-carousel {
    height: calc(100svh - var(--nav-h));
    min-height: 420px;
  }
  .slide-content {
    bottom: 2rem;
    left: 1.25rem;
    right: 1.25rem;
    max-width: 100%;
  }
  .slide-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
  .slide-sub {
    font-size: .9rem;
  }
  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  .carousel-prev { left: .5rem; }
  .carousel-next { right: .5rem; }
}

/* ---- Carousel: Mobile (≤ 480px) ---- */
@media (max-width: 480px) {
  .hero-carousel {
    height: calc(100svh - var(--nav-h));
    min-height: 380px;
  }
  .slide-content {
    bottom: 1.5rem;
    left: 1rem;
    right: 1rem;
  }
  .slide-badge {
    font-size: .7rem;
    padding: .25rem .7rem;
    margin-bottom: .5rem;
  }
  .slide-title {
    font-size: clamp(1.3rem, 7vw, 2rem);
    line-height: 1.2;
  }
  .slide-sub {
    font-size: .82rem;
    margin-top: .5rem;
  }
  .carousel-btn {
    width: 32px;
    height: 32px;
    font-size: .85rem;
  }
  .carousel-dots {
    bottom: .75rem;
  }
  .carousel-dot {
    width: 6px;
    height: 6px;
  }
}

/* ============================
   SECTION STYLES
   ============================ */
.section-bg-white    { background: var(--white); }
.section-bg-light    { background: var(--gray-50); }
.section-bg-gradient { background: linear-gradient(180deg, var(--white), var(--gray-50)); }

/* ---- About strip ---- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.about-img-wrap {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(37,99,235,.15);
  box-shadow: var(--shadow);
  height: 22rem;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.about-img-wrap:hover img { transform: scale(1.04); }
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ---- Cards grid ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.place-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
}
.place-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.place-card-img { height: 13rem; overflow: hidden; }
.place-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.place-card:hover .place-card-img img { transform: scale(1.07); }
.place-card-body { padding: 1rem 1.25rem 1.25rem; }
.place-card-name { font-weight: 700; font-size: 1.05rem; color: var(--gray-900); }
.place-card-state {
  display: inline-block; margin-top: .35rem;
  padding: .2rem .65rem; border-radius: 9999px;
  background: var(--blue-light); color: var(--blue);
  font-size: .75rem; font-weight: 600;
}

/* ---- Feature cards ---- */
.feature-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition);
}
.feature-card:hover { transform: translateY(-4px); }
.feature-card-img { height: 12rem; overflow: hidden; }
.feature-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.feature-card:hover .feature-card-img img { transform: scale(1.06); }
.feature-card-body { padding: 1.5rem; }
.feature-icon { font-size: 2rem; margin-bottom: .5rem; }
.feature-title { font-weight: 700; font-size: 1.1rem; color: var(--gray-900); }
.feature-desc  { font-size: .9rem; color: var(--gray-600); margin-top: .35rem; }

/* ---- Reviews ---- */
.review-carousel { position: relative; overflow: hidden; }
.review-track { display: flex; transition: transform .65s cubic-bezier(.4,0,.2,1); }
.review-slide { min-width: 100%; padding: .5rem; }
.review-card {
  max-width: 750px; margin: 0 auto;
  background: linear-gradient(135deg, var(--white), var(--gray-50));
  border: 1px solid rgba(37,99,235,.12);
  border-radius: calc(var(--radius) * 1.5);
  padding: 2rem 2.5rem;
  display: flex; gap: 2rem; align-items: flex-start;
  box-shadow: var(--shadow);
}
.review-media {
  flex-shrink: 0; width: 9rem; height: 7rem;
  border-radius: var(--radius-sm); overflow: hidden;
  background: var(--gray-100);
}
.review-media img, .review-media video { width: 100%; height: 100%; object-fit: cover; }
.review-name { font-weight: 700; font-size: 1rem; }
.review-trip { color: var(--blue); font-size: .82rem; margin-top: .2rem; }
.review-stars { color: #fbbf24; letter-spacing: 2px; font-size: 1rem; margin: .4rem 0; }
.review-text  { color: var(--gray-600); font-size: .9rem; line-height: 1.65; }
.review-date  {
  font-size: .75rem; color: var(--gray-400);
  background: var(--gray-100); padding: .2rem .6rem;
  border-radius: 9999px; margin-left: auto;
}
@media (max-width: 600px) {
  .review-card { flex-direction: column; padding: 1.25rem; }
  .review-media { width: 100%; height: 10rem; }
}

/* ---- CTA Banner ---- */
.cta-banner {
  text-align: center; padding: 5rem 1.25rem;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  color: var(--white);
}
.cta-banner .section-title { color: var(--white); }
.cta-banner .section-subtitle { color: rgba(255,255,255,.8); }
.cta-banner .btn-primary {
  background: var(--white); color: var(--blue);
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  margin-top: 2rem;
}
.cta-banner .btn-primary:hover { transform: scale(1.06); box-shadow: 0 8px 30px rgba(0,0,0,.25); }

/* ============================
   DESTINATION PAGE
   ============================ */
.page-banner {
  padding: 4rem 1.25rem 3rem;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  text-align: center; color: var(--white);
}
.page-banner h1 { font-family: 'Playfair Display',serif; font-size: clamp(2rem,5vw,3rem); font-weight:800; }
.page-banner p  { margin-top: .75rem; color: rgba(255,255,255,.85); font-size: 1.05rem; }

.search-bar {
  display: flex; gap: 1rem; flex-wrap: wrap;
  max-width: 600px; margin: 0 auto 2.5rem;
}
.search-bar input, .search-bar select {
  flex: 1; min-width: 140px;
  padding: .7rem 1.1rem; border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: .9rem;
  background: var(--white); color: var(--gray-900);
  transition: border-color var(--transition);
}
.search-bar input:focus, .search-bar select:focus {
  outline: none; border-color: var(--blue);
}

/* Destination detail card */
.dest-detail-modal {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.55); display: flex;
  align-items: center; justify-content: center; padding: 1.25rem;
}
.dest-detail-card {
  background: var(--white); border-radius: var(--radius);
  max-width: 680px; width: 100%; max-height: 90vh;
  overflow-y: auto; box-shadow: 0 24px 64px rgba(0,0,0,.25);
}
.dest-detail-img { height: 18rem; overflow: hidden; }
.dest-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.dest-detail-body { padding: 1.75rem; }
.dest-detail-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(0,0,0,.5); color: var(--white);
  border: none; border-radius: 50%; width: 36px; height: 36px;
  font-size: 1.1rem; cursor: pointer;
}

/* ============================
   GALLERY PAGE
   ============================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.gallery-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 14rem; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item-name {
  padding: .75rem 1rem; font-weight: 600;
  background: var(--white); font-size: .9rem;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,.92); display: flex;
  align-items: center; justify-content: center; padding: 1rem;
}
.lightbox img { max-height: 85vh; max-width: 90vw; border-radius: var(--radius-sm); }
.lightbox-close {
  position: fixed; top: 1rem; right: 1.25rem;
  background: rgba(255,255,255,.15); border: none; color: var(--white);
  width: 40px; height: 40px; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer;
}

/* ============================
   CONTACT PAGE
   ============================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form-card {
  background: linear-gradient(135deg, var(--white), var(--gray-50));
  border: 1px solid rgba(37,99,235,.15); border-radius: var(--radius);
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-weight: 600; margin-bottom: .5rem; font-size: .9rem; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: .75rem 1rem;
  border: 1px solid rgba(37,99,235,.25); border-radius: var(--radius-sm);
  font-size: .95rem; background: var(--white); color: var(--gray-900);
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: 'Inter', sans-serif;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }

.info-cards-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
@media (max-width: 520px) { .info-cards-grid { grid-template-columns: 1fr; } }
.info-card {
  background: linear-gradient(135deg, var(--white), var(--gray-50));
  border: 1px solid rgba(37,99,235,.15); border-radius: var(--radius);
  padding: 1.5rem; transition: border-color var(--transition);
}
.info-card:hover { border-color: rgba(37,99,235,.4); }
.info-card-icon { font-size: 2rem; margin-bottom: .75rem; }
.info-card-title { font-weight: 700; font-size: 1rem; margin-bottom: .5rem; }
.info-card-text  { color: var(--gray-600); font-size: .875rem; line-height: 1.7; }
.info-card-text a { color: var(--blue); }
.info-card-text a:hover { color: var(--indigo); }

/* ============================
   BOOKING PAGE
   ============================ */
.booking-card {
  max-width: 800px; margin: 0 auto;
  background: linear-gradient(135deg, var(--white), var(--gray-50));
  border: 1px solid rgba(37,99,235,.15); border-radius: var(--radius);
  padding: 2.5rem;
}
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 520px) { .booking-grid { grid-template-columns: 1fr; } }

/* ============================
   REVIEWS PAGE
   ============================ */
.reviews-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 1.5rem; }
.review-wall-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-wall-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-wall-card-media { height: 10rem; border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 1rem; }
.review-wall-card-media img, .review-wall-card-media video { width:100%; height:100%; object-fit: cover; }

/* ============================
   ABOUT PAGE
   ============================ */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(160px,1fr)); gap:1.5rem; text-align:center; }
.stat-card { background:var(--white); border:1px solid var(--gray-100); border-radius:var(--radius); padding:2rem 1.25rem; box-shadow:var(--shadow-sm); }
.stat-number { font-size:2.5rem; font-weight:900; color:var(--blue); }
.stat-label  { font-size:.875rem; color:var(--gray-600); margin-top:.35rem; }

/* ============================
   NOTIFICATIONS
   ============================ */
.notification {
  position: fixed; top: calc(var(--nav-h) + 1rem); right: 1.25rem;
  z-index: 5000; max-width: 380px; width: calc(100% - 2.5rem);
  display: flex; align-items: flex-start; gap: .75rem;
  padding: 1rem 1.25rem; border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  animation: slideIn .35s ease;
}
.notification.success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.notification.error   { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.notification-close { margin-left: auto; background: none; border: none; cursor: pointer; font-size: 1rem; opacity: .6; }
.notification-close:hover { opacity: 1; }
@keyframes slideIn { from { transform: translateX(110%); opacity:0; } to { transform: translateX(0); opacity:1; } }

/* ============================
   FOOTER
   ============================ */
.footer {
  background: linear-gradient(180deg, #090f1e 0%, #050a14 100%);
  color: rgba(255, 255, 255, 0.82);
  margin-top: auto;
  position: relative;
  z-index: 50;
  border-top: 1px solid rgba(59, 130, 246, 0.18);
  overflow: hidden;
}

.footer-top-glow {
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), rgba(99, 102, 241, 0.5), transparent);
}

.footer-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 1.3fr 1.15fr;
  gap: 2.75rem;
  align-items: start;
}

/* Column 1: Brand */
.footer-col-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  text-decoration: none;
}

.footer-logo {
  height: 2.75rem;
  width: auto;
  object-fit: contain;
}

.footer-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-bottom: 1.15rem;
}

.footer-trust-pills {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.trust-check {
  color: #22c55e;
  font-weight: 700;
  font-size: 0.85rem;
}

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

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.25s ease;
}

.footer-social-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.footer-social-wa:hover {
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

/* Headings */
.footer-heading {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--indigo));
  border-radius: 2px;
}

/* Column 2: Quick Links */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

.link-arrow {
  color: var(--blue);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

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

.footer-links a:hover .link-arrow {
  transform: translateX(2px);
  color: #60a5fa;
}

/* Column 3: Contact List */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.contact-icon-box {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
}

.contact-val {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.contact-phones {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
}

.contact-phones a,
.contact-text a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-phones a:hover,
.contact-text a:hover {
  color: #60a5fa;
  text-decoration: underline;
}

.phone-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}

/* Column 4: Booking Card CTA */
.footer-cta-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.35rem 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.cta-card-header {
  margin-bottom: 0.5rem;
}

.cta-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  background: rgba(37, 99, 235, 0.2);
  color: #60a5fa;
  border: 1px solid rgba(37, 99, 235, 0.35);
  margin-bottom: 0.4rem;
}

.cta-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
}

.cta-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
  margin-bottom: 1.15rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.btn-cta-primary {
  width: 100%;
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  border-radius: 0.5rem;
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

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

/* Footer Bottom Bar */
.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-copy {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-bottom-badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.bottom-sep {
  color: rgba(255, 255, 255, 0.25);
}

/* ---- Tablet: 2-column grid (≤ 1024px) ---- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

/* ---- Small Tablet (≤ 768px) ---- */
@media (max-width: 768px) {
  .footer-inner {
    padding: 3.5rem 1.5rem 2rem;
  }
  .footer-bottom {
    margin-top: 2.5rem;
  }
}

/* ---- Mobile: clean vertical alignment & safe FAB clearance (≤ 640px) ---- */
@media (max-width: 640px) {
  .footer-inner {
    padding: 2.75rem 1.25rem 7.5rem; /* 7.5rem safe padding so floating buttons NEVER cover content */
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  /* Keep consistent clean left alignment for brand */
  .footer-col-brand {
    text-align: left;
  }
  .footer-brand {
    justify-content: flex-start;
  }
  .footer-socials {
    justify-content: flex-start;
  }

  /* Quick links in 2 neat columns */
  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1rem;
  }

  .footer-contact-list {
    gap: 0.9rem;
  }
  .footer-contact-list li {
    word-break: break-word;
  }

  .footer-cta-card {
    padding: 1.25rem 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 2rem;
  }
  .footer-bottom-badges {
    justify-content: center;
  }
}

/* ---- Extra Small Mobile (≤ 380px) ---- */
@media (max-width: 380px) {
  .footer-inner {
    padding: 2.25rem 1rem 8rem;
  }
  .footer-brand-text {
    font-size: 1.25rem;
  }
  .footer-heading {
    font-size: 0.88rem;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 0.5rem;
  }
  .contact-phones {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
  .phone-sep {
    display: none;
  }
}

/* ============================
   LOADING SPINNER
   ============================ */
.spinner {
  width: 40px; height: 40px; border: 3px solid var(--blue-light);
  border-top-color: var(--blue); border-radius: 50%;
  animation: spin .8s linear infinite; margin: 2rem auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================
   EMPTY STATE
   ============================ */
.empty-state {
  text-align: center; padding: 3rem 1.5rem;
  border: 2px dashed rgba(37,99,235,.25);
  border-radius: var(--radius);
  background: var(--blue-light);
  color: var(--gray-600);
}
.empty-state-icon { font-size: 3rem; margin-bottom: .75rem; }

/* ============================
   MAP
   ============================ */
.map-wrap {
  height: 22rem; border-radius: var(--radius);
  overflow: hidden; border: 1px solid rgba(37,99,235,.12);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe { width:100%; height:100%; border:0; }

/* ============================
   SOCIAL ICONS ROW
   ============================ */
.social-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.social-icon-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(37,99,235,.08); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700;
  transition: background var(--transition), transform var(--transition);
}
.social-icon-btn:hover { background: var(--blue); color: var(--white); transform: scale(1.1); }

/* ============================
   HIGHLIGHTS TAG LIST
   ============================ */
.tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .75rem; }
.tag {
  padding: .3rem .75rem; border-radius: 9999px;
  background: var(--blue-light); color: var(--blue);
  font-size: .78rem; font-weight: 600;
}

/* ============================
   RESPONSIVE TWEAKS & EXTENDED STYLES
   ============================ */
.cursor-pointer { cursor: pointer; }
.brand-font { font-family: 'Playfair Display', serif; font-weight: 800; }
.max-w-4xl { max-w: 896px; margin-left: auto; margin-right: auto; }
.max-w-5xl { max-width: 1024px; margin-left: auto; margin-right: auto; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.flex-between-center { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }

/* ---- About Hero Banner ---- */
.about-hero-wrap {
  position: relative; width: 100%;
  height: clamp(320px, 45vw, 520px);
  overflow: hidden;
}
.about-hero-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.35) 50%, rgba(0,0,0,.1) 100%);
}
.about-hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 800px; padding: 0 2rem; margin: 0 auto;
  color: var(--white); text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.about-hero-tag {
  font-size: .85rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: #bae6fd; margin-bottom: .75rem;
}
.about-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem); font-weight: 800; line-height: 1.15; margin-bottom: 1rem;
}
.about-hero-title .block-sky { display: block; color: #7dd3fc; }
.about-hero-desc { font-size: clamp(.85rem, 1.8vw, 1.05rem); color: #f1f5f9; max-width: 650px; line-height: 1.6; }

/* ---- History Content ---- */
.history-content p { color: var(--gray-600); line-height: 1.8; margin-bottom: 1.25rem; font-size: 1.05rem; }

/* ---- Services Grid ---- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.service-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-img { height: 14rem; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 1.5rem; }
.service-card-title { font-weight: 700; font-size: 1.2rem; color: var(--gray-900); margin-bottom: .5rem; }
.service-card-desc { color: var(--gray-600); font-size: .92rem; line-height: 1.6; }

/* ---- Values List ---- */
.values-list { display: flex; flex-direction: column; gap: 1.25rem; }
.value-card {
  background: var(--white); border: 1px solid rgba(37,99,235,.15);
  border-radius: var(--radius); padding: 1.5rem 1.75rem;
  display: flex; gap: 1.25rem; align-items: flex-start;
  box-shadow: var(--shadow-sm); transition: border-color var(--transition);
}
.value-card:hover { border-color: var(--blue); }
.value-icon { font-size: 2rem; line-height: 1; flex-shrink: 0; margin-top: .2rem; }
.value-title { font-weight: 700; font-size: 1.15rem; color: var(--gray-900); margin-bottom: .35rem; }
.value-desc { color: var(--gray-600); font-size: .95rem; line-height: 1.6; }

/* ---- Sticky Filter Bar ---- */
.filter-sticky-bar {
  position: sticky; top: var(--nav-h); z-index: 40;
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(37,99,235,.15); padding: .85rem 1.25rem;
  transition: top .3s ease;
}
.navbar.nav-hidden ~ .main-content .filter-sticky-bar {
  top: 0;
}
.filter-header-group {
  display: flex; align-items: baseline; gap: .75rem; flex-wrap: wrap;
}
.filter-title { font-size: 1.15rem; font-weight: 800; color: var(--gray-900); }
.filter-count-badge {
  font-size: .82rem; color: var(--gray-500); font-weight: 500;
}
.filter-pills-row {
  display: flex; gap: .5rem; overflow-x: auto; padding: .25rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.filter-pills-row::-webkit-scrollbar {
  display: none;
}
.state-pill {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .5rem 1.15rem; border-radius: 9999px;
  font-weight: 600; font-size: .88rem; cursor: pointer;
  background: var(--white); border: 1px solid var(--gray-200); color: var(--gray-700);
  white-space: nowrap; flex-shrink: 0;
  transition: all .2s ease;
}
.state-pill:hover {
  background: var(--gray-100); border-color: var(--blue-light); color: var(--blue);
}
.state-pill.active {
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  color: var(--white); border-color: transparent;
  box-shadow: 0 2px 8px rgba(37,99,235,.3);
}
.state-pill .pill-count {
  font-size: .78rem; opacity: .8; font-weight: 500;
}
.state-pill.active .pill-count {
  opacity: .95;
}

/* ---- Modal Details ---- */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.65); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.modal-card {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border: 1px solid rgba(37,99,235,.25); border-radius: 1.5rem;
  max-width: 680px; width: 100%; max-height: 88vh;
  overflow-y: auto; position: relative; box-shadow: 0 25px 50px -12px rgba(0,0,0,.35);
  animation: modalScaleIn .25s ease;
}
@keyframes modalScaleIn { from { transform: scale(.95); opacity:0; } to { transform: scale(1); opacity:1; } }
.modal-close-btn {
  position: absolute; top: .85rem; right: .85rem; z-index: 10;
  background: rgba(0,0,0,.45); color: var(--white); border: none;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.modal-close-btn:hover { background: rgba(0,0,0,.75); }
.modal-img-wrap { position: relative; height: 16rem; width: 100%; overflow: hidden; }
.modal-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.modal-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.4), transparent); }
.modal-content-wrap { padding: 1.5rem 1.75rem 2rem; }
.modal-title { font-size: 1.85rem; font-weight: 800; color: var(--gray-900); }
.modal-state-badge { color: var(--blue); font-weight: 700; font-size: 1.05rem; margin: .35rem 0 1rem; }
.modal-text { color: var(--gray-600); line-height: 1.7; margin-bottom: 1.5rem; font-size: .95rem; }
.modal-highlights-title { font-size: 1.1rem; font-weight: 800; color: var(--blue); margin-bottom: .75rem; }
.modal-highlights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: .6rem; }
.highlight-item {
  background: rgba(37,99,235,.08); border: 1px solid rgba(37,99,235,.25);
  border-radius: .5rem; padding: .6rem .85rem; color: var(--gray-900); font-size: .88rem; font-weight: 500;
}

/* ---- Gallery Cards & Lightbox ---- */
.gallery-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }
.gallery-card-item {
  position: relative; height: 14rem; border-radius: 1rem; overflow: hidden;
  border: 1px solid var(--gray-200); background: var(--white); cursor: pointer;
  box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-card-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-card-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-card-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
  opacity: 0; display: flex; align-items: flex-end; padding: 1rem;
  transition: opacity .3s;
}
.gallery-card-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-title { color: var(--white); font-weight: 700; font-size: 1rem; text-shadow: 0 1px 4px rgba(0,0,0,.6); }
.gallery-hidden-item { display: none !important; }

.lightbox-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,.92); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.lightbox-close-btn {
  position: absolute; top: 1.5rem; right: 1.5rem; z-index: 20;
  color: var(--white); background: rgba(255,255,255,.15); border: none;
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.5rem; cursor: pointer;
  transition: background .2s, transform .2s;
}
.lightbox-close-btn:hover { background: rgba(255,255,255,.3); transform: scale(1.1); }
.lightbox-nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 20;
  background: rgba(255,255,255,.15); border: none; color: var(--white);
  width: 48px; height: 48px; border-radius: 50%; font-size: 2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.lightbox-nav-btn:hover { background: rgba(255,255,255,.3); transform: translateY(-50%) scale(1.1); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-content-box { position: relative; max-width: 90vw; max-height: 80vh; display: flex; flex-direction: column; align-items: center; }
.lightbox-content-box img { max-width: 90vw; max-height: 80vh; border-radius: .75rem; box-shadow: 0 20px 50px rgba(0,0,0,.5); }
.lightbox-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
  color: var(--white); padding: .4rem .8rem; border-radius: .5rem; font-size: .85rem;
}

/* ---- Categories Grid ---- */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.category-card {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--transition);
}
.category-card:hover { transform: translateY(-4px); }
.category-card-img { height: 13rem; overflow: hidden; }
.category-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.category-card:hover .category-card-img img { transform: scale(1.06); }
.category-card-body { padding: 1.5rem; }
.category-title { font-size: 1.25rem; font-weight: 800; color: var(--gray-900); margin-bottom: .4rem; }
.category-desc { font-size: .9rem; color: var(--gray-600); margin-bottom: 1rem; }
.category-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.category-pill {
  padding: .3rem .8rem; border-radius: 9999px;
  background: var(--blue-light); color: var(--blue);
  font-size: .78rem; font-weight: 600;
}

/* ---- Fleet Features ---- */
.fleet-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.fleet-feat-card {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.fleet-feat-img { height: 12rem; overflow: hidden; }
.fleet-feat-img img { width: 100%; height: 100%; object-fit: cover; }
.fleet-feat-body { padding: 1.25rem; }
.fleet-feat-title { font-weight: 700; font-size: 1.05rem; color: var(--gray-900); }
.fleet-feat-desc { font-size: .88rem; color: var(--gray-600); margin-top: .3rem; }

/* ---- Enhanced Contact Page ---- */
.contact-header-banner {
  padding: 1.75rem 1.25rem 2rem;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 60%, #1d4ed8 100%);
  color: var(--white);
  text-align: center;
  position: relative;
}
.contact-banner-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.85rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
}
.contact-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.35rem);
  font-weight: 800;
  color: #ffffff;
  margin-top: 0.35rem;
  letter-spacing: -0.5px;
}
.contact-banner-sub {
  color: #dbeafe;
  font-size: 0.95rem;
  max-width: 620px;
  margin: 0.35rem auto 0;
  line-height: 1.5;
}
.contact-chips-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.contact-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #ffffff;
}

/* Contact Grid Layout */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  align-items: start;
}

.contact-card-header {
  margin-bottom: 1.25rem;
}
.contact-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
}
.contact-form-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--gray-900);
}
.contact-form-subtitle {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-top: 0.25rem;
}

/* Form Card */
.contact-form-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 1.25rem;
  padding: 2.25rem;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-form-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon {
  position: absolute;
  left: 1rem;
  width: 1.15rem;
  height: 1.15rem;
  color: #94a3b8;
  pointer-events: none;
  transition: color 0.2s;
}
.input-with-icon .form-input {
  padding-left: 2.75rem;
}
.input-with-icon:focus-within .input-icon {
  color: var(--blue);
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.75rem;
  font-size: 0.92rem;
  color: var(--gray-900);
  background: #ffffff;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.btn-submit-lg {
  width: 100%;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: all 0.2s ease;
  cursor: pointer;
  height: 3.25rem;
  line-height: 1;
}
.btn-submit-lg svg {
  width: 1.25rem !important;
  height: 1.25rem !important;
  min-width: 1.25rem;
  min-height: 1.25rem;
  flex-shrink: 0;
  display: inline-block;
}
.btn-submit-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

/* Contact Info Column & Cards */
.contact-info-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.contact-info-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 1.15rem;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}
.contact-info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.1);
}
.info-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-card-icon svg {
  width: 1.5rem !important;
  height: 1.5rem !important;
  flex-shrink: 0;
}
.icon-blue { background: rgba(37, 99, 235, 0.1); color: var(--blue); }
.icon-green { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.icon-purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.icon-amber { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }

.info-card-content h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.35rem;
}
.info-card-content p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.phone-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.phone-link, .email-link {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.88rem;
  word-break: break-all;
  transition: color 0.2s;
}
.phone-link:hover, .email-link:hover {
  color: var(--blue-dark);
  text-decoration: underline;
}
.status-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  margin-top: 0.4rem;
}
.status-pill-green { background: #dcfce7; color: #15803d; }
.status-pill-purple { background: #f3e8ff; color: #6b21a8; }

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.82rem;
  color: var(--gray-600);
}
.hours-list li span {
  color: var(--gray-500);
}

/* Social Connect Bar */
.contact-social-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 1.15rem;
  padding: 1.15rem 1.5rem;
  box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.03);
}
.contact-social-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.social-links-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.social-icon-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: #ffffff;
  flex-shrink: 0;
}
.social-icon-btn svg {
  width: 1.25rem !important;
  height: 1.25rem !important;
  flex-shrink: 0;
}
.btn-fb { background: #1877f2; }
.btn-insta { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.btn-x { background: #0f1419; }
.btn-wa { background: #25d366; }

.social-icon-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

/* Map Section */
.map-card-wrapper {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04);
}
.map-embed-card {
  height: 26rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #cbd5e1;
}

/* ---- Booking Page ---- */
.form-section-title { font-size: 1.4rem; font-weight: 800; color: var(--gray-900); padding-bottom: .75rem; border-bottom: 1px solid rgba(37,99,235,.2); margin-bottom: 1.5rem; }
.full-span { grid-column: 1 / -1; }
.cta-cards-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.cta-help-card {
  background: var(--white); border: 1px solid #dbeafe; border-radius: 1rem;
  padding: 1.5rem; display: flex; flex-direction: column; justify-content: center;
}
.cta-help-tag { font-size: .75rem; font-weight: 700; text-transform: uppercase; color: var(--blue); letter-spacing: .05em; }
.cta-help-title { font-size: 1.2rem; font-weight: 800; color: var(--gray-900); margin: .25rem 0 .5rem; }
.cta-help-text { font-size: .88rem; color: var(--gray-600); }
.cta-action-card {
  background: var(--white); border: 1px solid #dbeafe; border-radius: 1rem;
  padding: 1.5rem; display: flex; flex-direction: column; justify-content: space-between;
}
.cta-action-header { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.cta-action-icon {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.cta-action-icon.blue   { background: #dbeafe; color: var(--blue); }
.cta-action-icon.purple { background: #ede9fe; color: #6d28d9; }
.cta-action-label { font-size: .75rem; text-transform: uppercase; color: var(--gray-400); font-weight: 600; }
.cta-action-val   { font-size: 1rem; font-weight: 700; color: var(--gray-900); }
.cta-action-sub   { font-size: .82rem; color: var(--gray-600); margin-bottom: 1rem; }
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-box {
  background: linear-gradient(135deg, var(--white), var(--gray-50));
  border: 1px solid rgba(37,99,235,.2); border-radius: 1rem; padding: 1.5rem;
}
.faq-q { font-size: 1.1rem; font-weight: 700; color: var(--blue); margin-bottom: .5rem; }
.faq-a { font-size: .92rem; color: var(--gray-600); line-height: 1.6; }

/* ---- Reviews Page ---- */
.reviews-page-wrapper { padding: 4rem 1.25rem 5rem; }
.reviews-layout-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: flex-start; }
.reviews-main-title { font-size: 2.25rem; font-weight: 800; color: var(--gray-900); margin-bottom: .5rem; }
.reviews-main-sub { color: var(--gray-600); margin-bottom: 2rem; font-size: 1rem; }
.reviews-scroll-list { display: flex; flex-direction: column; gap: 1rem; max-height: 580px; overflow-y: auto; padding-right: .5rem; }
.review-entry-card {
  border: 1px solid rgba(37,99,235,.15); border-radius: 1rem;
  background: linear-gradient(135deg, var(--white), #f8fafc);
  padding: 1.25rem 1.5rem; display: flex; gap: 1.25rem;
}
.review-entry-media { width: 9rem; height: 7.5rem; border-radius: .75rem; overflow: hidden; flex-shrink: 0; background: var(--gray-100); }
.review-entry-media img, .review-entry-media video { width: 100%; height: 100%; object-fit: cover; }
.review-entry-body { flex: 1; min-width: 0; }
.review-entry-header { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.review-entry-author { font-weight: 700; font-size: 1rem; color: var(--gray-900); }
.review-entry-date { font-size: .75rem; color: var(--gray-600); background: var(--gray-100); padding: .2rem .6rem; border-radius: 9999px; }
.review-entry-trip { color: var(--blue); font-size: .85rem; font-weight: 600; margin-top: .15rem; }
.review-entry-content { font-size: .88rem; color: var(--gray-700); line-height: 1.6; }

.review-form-card {
  background: linear-gradient(135deg, var(--white), #eff6ff);
  border: 1px solid rgba(37,99,235,.25); border-radius: 1.5rem; padding: 2rem; box-shadow: var(--shadow-sm);
}
.interactive-star-row { display: flex; align-items: center; gap: .35rem; }
.star-btn { font-size: 1.75rem; color: #cbd5e1; cursor: pointer; transition: color .15s, transform .15s; }
.star-btn:hover { transform: scale(1.2); }
.star-btn.active { color: #f59e0b; }
.form-file-input {
  width: 100%; font-size: .88rem; color: var(--gray-700);
  border: 1px solid rgba(37,99,235,.25); border-radius: .5rem; padding: .5rem; background: var(--white);
}

@media (max-width: 900px) {
  .contact-main-grid, .reviews-layout-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .review-entry-card { flex-direction: column; }
  .review-entry-media { width: 100%; height: 10rem; }
}

@media (max-width: 768px) {
  .section { padding: 3rem 1.25rem; }
  .slide-content { bottom: 1.5rem; left: 1.25rem; right: 1.25rem; }
  .booking-card { padding: 1.5rem; }
  .contact-form-card { padding: 1.5rem; }
}

