/* ============================================================
   GoCeylonTrip - Main Stylesheet
   Color Palette: Ocean Blue | Palm Green | Sunset Orange
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --ocean:     #0B4F6C;
  --ocean-mid: #1A7BA0;
  --ocean-lt:  #E8F4F8;
  --palm:      #2D6A4F;
  --palm-lt:   #52B788;
  --palm-pale: #E8F5EE;
  --sunset:    #E07A30;
  --sunset-lt: #F4A261;
  --gold:      #D4A843;
  --dark:      #0D1B2A;
  --charcoal:  #2C3E50;
  --mist:      #F7F9FC;
  --white:     #FFFFFF;
  --text:      #3A4A5C;
  --text-lt:   #6B7C93;
  --border:    #E2E8F0;
  --shadow-sm: 0 2px 8px rgba(11,79,108,0.08);
  --shadow-md: 0 8px 32px rgba(11,79,108,0.12);
  --shadow-lg: 0 20px 60px rgba(11,79,108,0.18);
  --radius:    12px;
  --radius-lg: 24px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ---- Page Loader ---- */
#page-loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.loaded { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: 'Playfair Display', serif;
  color: var(--white); font-size: 2rem; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 2rem;
}
.loader-logo span { color: var(--sunset); }
.loader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px; overflow: hidden;
}
.loader-bar::after {
  content: '';
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--sunset), var(--palm-lt));
  border-radius: 2px;
  animation: loadbar 1.4s ease forwards;
}
@keyframes loadbar { to { width: 100%; } }

/* ---- Typography ---- */
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; color: var(--dark); line-height: 1.2; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--sunset);
  margin-bottom: 0.75rem;
}
.section-tag::before, .section-tag::after {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--sunset); border-radius: 2px;
}
.section-title { font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 700; }
.section-sub { color: var(--text-lt); font-size: 1.05rem; max-width: 600px; margin: 0.5rem auto 0; }

/* ---- Buttons ---- */
.btn-primary {
  background: linear-gradient(135deg, var(--sunset), var(--sunset-lt));
  color: var(--white); border: none;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(224,122,48,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(224,122,48,0.45);
  color: var(--white);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  padding: 12px 30px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--white); color: var(--ocean);
  border-color: var(--white);
}
.btn-ocean {
  background: linear-gradient(135deg, var(--ocean), var(--ocean-mid));
  color: var(--white); border: none;
  padding: 12px 28px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(11,79,108,0.25);
}
.btn-ocean:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(11,79,108,0.35); color: var(--white); }
.btn-green {
  background: linear-gradient(135deg, var(--palm), var(--palm-lt));
  color: var(--white); border: none;
  padding: 12px 28px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.btn-green:hover { transform: translateY(-2px); color: var(--white); }

/* ---- Header ---- */
#site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}

/* ── Glass morphism on scroll ── */
#site-header.scrolled {
  padding: 10px 0;
  background: rgba(11, 24, 40, 0.60);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}

/* ── Pages without hero image (no full-screen bg) ── */
body.no-hero #site-header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(11,79,108,0.10);
  padding: 12px 0;
  border-bottom: 1px solid rgba(11,79,108,0.06);
}
body.no-hero .nav-logo       { color: var(--dark); }
body.no-hero .nav-logo span  { color: var(--sunset); }
body.no-hero .nav-link       { color: var(--charcoal); }
body.no-hero .nav-link:hover { color: var(--sunset); }
body.no-hero .hamburger span { background: var(--dark); }
body.no-hero .hamburger      { background: rgba(11,79,108,0.07); border-color: rgba(11,79,108,0.15); }

/* Scrolled always keeps white text on dark glass */
#site-header.scrolled .nav-logo       { color: var(--white); }
#site-header.scrolled .nav-logo span  { color: var(--sunset-lt); }
#site-header.scrolled .nav-link       { color: rgba(255,255,255,0.88); }
#site-header.scrolled .nav-link:hover { color: var(--white); }
#site-header.scrolled .hamburger span { background: var(--white); }
#site-header.scrolled .hamburger      { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--white);
  transition: var(--transition);
  text-decoration: none;
  z-index: 1002; position: relative;
}
.nav-logo span { color: var(--sunset-lt); }

/* Desktop nav links */
.nav-link {
  color: rgba(255,255,255,0.9); font-weight: 500;
  font-size: 0.92rem; padding: 7px 13px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative; text-decoration: none;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: 0; left: 13px; right: 13px; height: 2px;
  background: var(--sunset-lt); border-radius: 2px;
  transform: scaleX(0); transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.07); }

.nav-cta-wrap { display: flex; align-items: center; gap: 10px; }

/* ---- Hamburger Button ---- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 10px;
  cursor: pointer; padding: 10px;
  z-index: 1002; position: relative;
  transition: var(--transition);
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile Drawer ---- */
#mobile-drawer {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--dark);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  padding: 80px 0 40px;
  box-shadow: -8px 0 40px rgba(0,0,0,0.4);
}
#mobile-drawer.open { transform: translateX(0); }

/* Drawer overlay */
#drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.4s ease;
}
#drawer-overlay.open { opacity: 1; }

/* Drawer nav links */
.drawer-link {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 28px;
  color: rgba(255,255,255,0.75);
  font-size: 1rem; font-weight: 500;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: var(--transition);
}
.drawer-link i {
  width: 20px; font-size: 0.9rem;
  opacity: 0.7;
}
.drawer-link:hover, .drawer-link.active {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-left-color: var(--sunset);
}
.drawer-link.active i { opacity: 1; color: var(--sunset); }

.drawer-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 12px 28px;
}
.drawer-label {
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  padding: 12px 28px 6px;
}

/* Drawer CTA buttons */
.drawer-cta {
  padding: 20px 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.drawer-btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25D366; color: var(--white);
  padding: 13px; border-radius: 12px;
  font-weight: 700; font-size: 0.9rem;
  text-decoration: none; transition: var(--transition);
}
.drawer-btn-wa:hover { background: #20b858; color: var(--white); }
.drawer-btn-call {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--sunset); color: var(--white);
  padding: 13px; border-radius: 12px;
  font-weight: 700; font-size: 0.9rem;
  text-decoration: none; transition: var(--transition);
}
.drawer-btn-call:hover { background: var(--sunset-lt); color: var(--white); }

/* ---- Nav CTA Buttons (desktop) ---- */
.btn-whatsapp {
  background: #25D366; color: var(--white);
  padding: 8px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  display: flex; align-items: center; gap: 6px; transition: var(--transition);
}
.btn-whatsapp:hover { background: #20b858; color: var(--white); transform: translateY(-1px); }
.btn-call {
  background: var(--sunset); color: var(--white);
  padding: 8px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  display: flex; align-items: center; gap: 6px; transition: var(--transition);
}
.btn-call:hover { background: var(--sunset-lt); color: var(--white); transform: translateY(-1px); }
.navbar-toggler { border: none; background: transparent; padding: 4px; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
#site-header.scrolled .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2813,27,42,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

/* ---- Hero Slider ---- */
.hero-section { position: relative; height: 100vh; min-height: 640px; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.75) 0%, rgba(11,79,108,0.4) 60%, rgba(13,27,42,0.2) 100%);
}
.hero-content {
  position: absolute; inset: 0; z-index: 10;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  padding: 0 10%;
  max-width: 760px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white); padding: 6px 16px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 1.25rem;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 900; color: var(--white);
  line-height: 1.1; margin-bottom: 1rem;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-title em { color: var(--sunset-lt); font-style: normal; }
.hero-subtitle {
  font-size: 1.15rem; color: rgba(255,255,255,0.85);
  margin-bottom: 2rem; max-width: 520px;
  animation: fadeUp 0.8s ease 0.6s both;
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 14px;
  animation: fadeUp 0.8s ease 0.8s both;
}
.hero-dots {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer;
  transition: var(--transition); border: none;
}
.hero-dot.active { background: var(--sunset); width: 28px; border-radius: 4px; }
.hero-scroll-hint {
  position: absolute; bottom: 36px; right: 10%; z-index: 10;
  color: rgba(255,255,255,0.6); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: bounce 2s infinite;
}
.hero-scroll-hint::after {
  content: '↓'; font-size: 1.2rem; color: rgba(255,255,255,0.5);
}
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* Stats bar */
.stats-bar {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  margin: -45px 5% 0; position: relative; z-index: 20;
  padding: 28px 40px;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.stat-item {
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--ocean);
}
.stat-label { font-size: 0.82rem; color: var(--text-lt); margin-top: 2px; }

/* ---- Sections ---- */
section { padding: 90px 0; }
.section-header { text-align: center; margin-bottom: 60px; }

/* ---- Features ---- */
.features-section { background: var(--mist); }
.feature-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 72px; height: 72px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.8rem;
}
.icon-blue { background: var(--ocean-lt); }
.icon-green { background: var(--palm-pale); }
.icon-orange { background: rgba(224,122,48,0.1); }
.feature-title { font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.feature-desc { font-size: 0.88rem; color: var(--text-lt); }

/* ---- Tour Cards ---- */
.tour-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition); height: 100%;
  display: flex; flex-direction: column;
}
.tour-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.tour-img-wrap { position: relative; overflow: hidden; height: 230px; }
.tour-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.tour-card:hover .tour-img-wrap img { transform: scale(1.08); }
.tour-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--sunset); color: var(--white);
  padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.tour-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.tour-meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.82rem; color: var(--text-lt); margin-bottom: 10px;
}
.tour-meta span { display: flex; align-items: center; gap: 4px; }
.tour-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.tour-desc { font-size: 0.87rem; color: var(--text-lt); margin-bottom: 16px; flex: 1; }
.tour-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.tour-price { font-size: 0.8rem; color: var(--text-lt); }
.tour-price strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--ocean); display: block;
}
.tour-rating { display: flex; align-items: center; gap: 4px; font-size: 0.82rem; color: var(--gold); font-weight: 600; }
.tour-btns { display: flex; gap: 8px; margin-top: 14px; }
.tour-btns .btn-ocean, .tour-btns .btn-green { padding: 9px 18px; font-size: 0.82rem; flex: 1; justify-content: center; }

/* ---- Destinations ---- */
.dest-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  cursor: pointer; transition: var(--transition);
}
.dest-card:hover { transform: scale(1.02); }
.dest-card img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.6s ease; }
.dest-card:hover img { transform: scale(1.1); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.85) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 22px;
}
.dest-name { color: var(--white); font-size: 1.25rem; font-weight: 700; margin-bottom: 4px; }
.dest-tag { color: rgba(255,255,255,0.75); font-size: 0.8rem; }
.dest-card-lg img { height: 400px; }

/* ---- Reviews ---- */
.reviews-section { background: var(--ocean); }
.review-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 30px;
}
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; }
.review-text { color: rgba(255,255,255,0.85); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ocean-mid); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1rem;
}
.reviewer-name { color: var(--white); font-weight: 600; font-size: 0.95rem; }
.reviewer-loc { color: rgba(255,255,255,0.55); font-size: 0.78rem; }

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--palm) 0%, var(--ocean) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -60%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-title { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 3rem); margin-bottom: 1rem; }
.cta-sub { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 2rem; }

/* ---- Footer ---- */
#site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.footer-logo span { color: var(--sunset); }
.footer-about { font-size: 0.88rem; line-height: 1.7; max-width: 280px; margin-bottom: 22px; }
.footer-heading { color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--sunset); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 0.87rem; }
.footer-contact-item i { color: var(--sunset); margin-top: 3px; flex-shrink: 0; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 0.9rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--sunset); color: var(--white); transform: translateY(-3px); }
.footer-map { border-radius: var(--radius); overflow: hidden; margin-top: 12px; }
.footer-bottom {
  margin-top: 50px; padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px; font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--sunset); }

/* ---- Filter Bar ---- */
.filter-bar {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 24px 30px; box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
  display: flex; flex-wrap: wrap; align-items: flex-end; gap: 16px;
}
.filter-group label { font-size: 0.78rem; font-weight: 600; color: var(--text-lt); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; display: block; }
.filter-group select {
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: 9px 14px; font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; color: var(--text); background: var(--mist);
  outline: none; transition: var(--transition);
}
.filter-group select:focus { border-color: var(--ocean-mid); }

/* ---- Gallery ---- */
.gallery-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; justify-content: center; }
.gal-btn {
  padding: 8px 22px; border-radius: 50px; font-size: 0.88rem; font-weight: 600;
  border: 2px solid var(--border); background: var(--white); color: var(--text);
  cursor: pointer; transition: var(--transition);
}
.gal-btn.active, .gal-btn:hover { background: var(--ocean); color: var(--white); border-color: var(--ocean); }
.gal-item {
  border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer;
  display: block; transition: var(--transition);
}
.gal-item:hover { transform: scale(1.03); }
.gal-item img { width: 100%; height: 220px; object-fit: cover; display: block; }
.gal-overlay {
  position: absolute; inset: 0; background: rgba(11,79,108,0.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay i { color: var(--white); font-size: 2rem; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 20px; right: 28px;
  color: var(--white); font-size: 2.5rem; cursor: pointer; line-height: 1;
  background: none; border: none;
}

/* ---- Forms ---- */
.booking-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-label { font-size: 0.85rem; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; display: block; }
.form-control-custom {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem; color: var(--text);
  background: var(--mist); outline: none; transition: var(--transition);
}
.form-control-custom:focus { border-color: var(--ocean-mid); background: var(--white); box-shadow: 0 0 0 3px rgba(26,123,160,0.1); }
.form-control-custom.is-invalid { border-color: #E53E3E; }
.form-error { color: #E53E3E; font-size: 0.78rem; margin-top: 4px; display: none; }
.form-error.show { display: block; }

/* ---- Page Hero ---- */
.page-hero {
  height: 400px; background-size: cover; background-position: center; position: relative;
  display: flex; align-items: flex-end; padding-bottom: 60px;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.8) 0%, rgba(13,27,42,0.3) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); }
.breadcrumb-custom { display: flex; gap: 8px; align-items: center; margin-top: 8px; }
.breadcrumb-custom a { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.breadcrumb-custom span { color: rgba(255,255,255,0.4); }
.breadcrumb-custom .current { color: var(--sunset-lt); font-size: 0.88rem; }

/* ---- About ---- */
.team-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  text-align: center; transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-img { height: 260px; object-fit: cover; width: 100%; }
.team-body { padding: 24px; }
.team-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.team-role { color: var(--sunset); font-size: 0.85rem; font-weight: 600; }

/* ---- Contact Info Cards ---- */
.contact-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-sm);
  text-align: center; height: 100%;
  transition: var(--transition);
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.contact-icon {
  width: 64px; height: 64px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 16px;
}

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ---- Highlight Band ---- */
.highlight-band { background: linear-gradient(135deg, var(--ocean-lt), var(--palm-pale)); padding: 70px 0; }
.highlight-item { display: flex; align-items: flex-start; gap: 16px; }
.highlight-num {
  font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900;
  color: var(--ocean); line-height: 1; flex-shrink: 0; opacity: 0.15;
}
.highlight-title { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.highlight-desc { font-size: 0.87rem; color: var(--text-lt); }

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.55); color: var(--white); }
.whatsapp-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: #25D366; animation: pulse 2.5s infinite;
}
@keyframes pulse { 0%{transform:scale(1);opacity:0.6} 70%{transform:scale(1.6);opacity:0} 100%{transform:scale(1.6);opacity:0} }

/* ---- Responsive ---- */
@media (max-width: 991px) {
  /* Hide Bootstrap nav collapse, show our custom hamburger */
  .navbar-collapse { display: none !important; }
  .navbar-toggler  { display: none !important; }
  .hamburger       { display: flex !important; }
  #mobile-drawer   { display: block; }
  #drawer-overlay  { display: block; }

  .stats-bar { grid-template-columns: repeat(2,1fr); margin: -30px 3% 0; }
  .stat-item:nth-child(2) { border-right: none; }
  .hero-content { padding: 0 6%; }
  .nav-cta-wrap { display: none; }
}
@media (min-width: 992px) {
  .hamburger     { display: none !important; }
  #mobile-drawer { display: none !important; }
  #drawer-overlay{ display: none !important; }
  .navbar-collapse { display: flex !important; }
}
@media (max-width: 767px) {
  section { padding: 60px 0; }
  .stats-bar { grid-template-columns: repeat(2,1fr); padding: 20px; gap: 16px; }
  .hero-content { padding: 0 5%; }
  .hero-title { font-size: 2rem; }
  .booking-form-wrap { padding: 24px; }
  .filter-bar { flex-direction: column; }
}
@media (max-width: 576px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary, .hero-btns .btn-outline { width: 100%; justify-content: center; }
}

/* ============================================================
   v2 Additions — Blog + Reviews + Payment
   ============================================================ */

/* ---- Blog Cards (blog.php) ---- */
.blog-card{background:var(--white);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-sm);transition:var(--transition);height:100%;display:flex;flex-direction:column}
.blog-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-lg)}
.blog-img-wrap{position:relative;overflow:hidden;height:220px;display:block}
.blog-img-wrap img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}
.blog-card:hover .blog-img-wrap img{transform:scale(1.08)}
.blog-overlay{position:absolute;inset:0;background:rgba(11,79,108,.6);display:flex;align-items:center;justify-content:center;opacity:0;transition:var(--transition)}
.blog-overlay i{color:var(--white);font-size:1.8rem}
.blog-card:hover .blog-overlay{opacity:1}
.blog-body{padding:24px;flex:1;display:flex;flex-direction:column}
.blog-meta{display:flex;gap:14px;font-size:.8rem;color:var(--text-lt);margin-bottom:10px}
.blog-title{font-size:1.1rem;font-weight:700;margin-bottom:10px;line-height:1.4}
.blog-title a{color:var(--dark);transition:var(--transition)}
.blog-title a:hover{color:var(--ocean)}
.blog-excerpt{font-size:.87rem;color:var(--text-lt);flex:1;margin-bottom:16px}
.blog-read-more{font-size:.88rem;font-weight:700;color:var(--sunset);display:flex;align-items:center;gap:6px;transition:var(--transition)}
.blog-read-more:hover{gap:10px;color:var(--ocean)}

/* ---- Blog Post Content ---- */
.blog-post-content h2{font-size:1.6rem;margin:2rem 0 1rem;color:var(--ocean)}
.blog-post-content h3{font-size:1.25rem;margin:1.5rem 0 .75rem}
.blog-post-content p{margin-bottom:1.1rem;line-height:1.85;color:var(--text)}
.blog-post-content ul,.blog-post-content ol{margin:0 0 1rem 1.5rem}
.blog-post-content li{margin-bottom:.4rem;color:var(--text)}
.blog-post-content img{border-radius:var(--radius);margin:1.5rem 0;width:100%}

/* ---- Star Rating Picker ---- */
.star-picker span:hover,.star-picker span.active{color:var(--gold)!important}

/* ---- Payment Section ---- */
.payment-section{background:var(--mist);border-radius:var(--radius-lg);padding:32px;margin-top:32px}
.payment-tabs{display:flex;gap:12px;margin-bottom:24px}
.pay-tab{flex:1;padding:16px;border-radius:var(--radius);border:2px solid var(--border);background:var(--white);cursor:pointer;text-align:center;transition:var(--transition);font-weight:600;font-size:.9rem}
.pay-tab.active{border-color:var(--ocean);background:var(--ocean-lt)}
.pay-tab img{height:28px;object-fit:contain;display:block;margin:0 auto 6px}
.pay-panel{display:none}
.pay-panel.active{display:block}

/* ---- Blog in Nav ---- */
.nav-link[href*="blog"]:after{background:var(--palm)}
