/* =============================================
   CHITRA TOURS & TRAVELS - Main Stylesheet
   ============================================= */

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

:root {
  --teal:       #0A9396;
  --teal-dark:  #005F73;
  --gold:       #E9C46A;
  --gold-dark:  #C9973A;
  --coral:      #EE6C4D;
  --dark:       #1A1A2E;
  --darker:     #0F0F1A;
  --white:      #FDFCF8;
  --gray-light: #F4F1EB;
  --gray:       #A8A8A8;
  --text:       #2D2D2D;
  --nav-h:      80px;
  --radius:     12px;
  --shadow:     0 8px 40px rgba(0,0,0,0.15);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 90px 0; }
.section-alt { background: var(--gray-light); }
.text-center { text-align: center; }
.text-gold   { color: var(--gold-dark); }
.text-teal   { color: var(--teal); }
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2      { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3      { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4      { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---- TYPOGRAPHY ---- */
.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto 56px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 4px 20px rgba(10,147,150,0.35);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(10,147,150,0.45); }

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(233,196,106,0.4);
}
.btn-gold:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: #fff; }

.btn-white {
  background: #fff;
  color: var(--teal-dark);
}
.btn-white:hover { background: var(--gold); color: var(--dark); }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(15,15,26,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.navbar.transparent { background: transparent; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 16px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.nav-logo-text { line-height: 1.1; }
.nav-logo-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #fff;
  font-weight: 700;
}
.nav-logo-text span { font-size: 0.65rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; }

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

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  color: rgba(255,255,255,0.88);
  font-size: 0.84rem;
  font-weight: 500;
  border-radius: 6px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover, .nav-item:hover > .nav-link { color: var(--gold); background: rgba(255,255,255,0.07); }
.nav-link .arrow { font-size: 0.65rem; transition: transform 0.25s; }
.nav-item:hover .arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
  overflow: hidden;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-header {
  background: var(--dark);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 18px;
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  color: var(--text);
  font-size: 0.88rem;
  transition: background 0.2s, color 0.2s;
  border-bottom: 1px solid #f0f0f0;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--gray-light); color: var(--teal); }
.dropdown a .di { font-size: 0.95rem; width: 22px; text-align: center; }

/* Nav CTA */
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-phone {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--darker) 0%, var(--teal-dark) 50%, #003845 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1559628233-100c798642fd?w=1600&q=80') center/cover no-repeat;
  opacity: 0.25;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,26,0.85) 0%, transparent 60%);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0.4;
}
@keyframes float-particle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.4; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.hero-content { position: relative; z-index: 2; padding-top: var(--nav-h); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(233,196,106,0.15);
  border: 1px solid rgba(233,196,106,0.4);
  border-radius: 50px;
  padding: 6px 18px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s 0.4s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.6s ease both;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  animation: fadeInUp 0.8s 0.8s ease both;
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold); font-weight: 900; }
.hero-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.1em; }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-dot {
  width: 30px; height: 50px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-dot::after {
  content: '';
  width: 4px; height: 10px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-dot 2s infinite;
}
@keyframes scroll-dot { 0%,100%{transform:translateY(0)} 50%{transform:translateY(14px)} }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-6px)} }

/* ============================================================
   SERVICES GRID
============================================================ */
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 50px rgba(0,0,0,0.15); }

.service-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; }
.service-card-img .icon-fallback { font-size: 3.5rem; opacity: 0.8; }
.service-card-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}
.service-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card-icon { font-size: 2rem; margin-bottom: 12px; }
.service-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.service-card-desc { font-size: 0.9rem; color: var(--gray); flex: 1; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.88rem;
  transition: gap 0.2s;
}
.service-card:hover .service-card-link { gap: 10px; }

/* ============================================================
   WATER ACTIVITIES
============================================================ */
.activity-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }

.activity-card {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  color: #fff;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.activity-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  opacity: 0;
  transition: opacity 0.3s;
}
.activity-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(10,147,150,0.35); }
.activity-card:hover::before { opacity: 1; }
.activity-card .icon { font-size: 2.8rem; margin-bottom: 14px; position: relative; z-index: 1; }
.activity-card h4 { font-size: 0.95rem; font-weight: 600; position: relative; z-index: 1; }
.activity-card span { font-size: 0.78rem; opacity: 0.8; position: relative; z-index: 1; }
.activity-card a { position: absolute; inset: 0; z-index: 2; }

/* ============================================================
   DESTINATIONS
============================================================ */
.destination-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.destination-card img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.5s; }
.destination-card:hover img { transform: scale(1.08); }
.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,26,0.9) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.destination-overlay h3 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.destination-overlay p { color: rgba(255,255,255,0.72); font-size: 0.85rem; }
.destination-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ============================================================
   PACKAGES
============================================================ */
.package-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  transition: var(--transition);
  position: relative;
}
.package-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(0,0,0,0.15); }
.package-card.featured { border: 2px solid var(--gold); }
.package-card.featured::after {
  content: '⭐ Best Seller';
  position: absolute;
  top: 16px; right: -32px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 40px;
  transform: rotate(45deg);
}
.package-img { height: 220px; overflow: hidden; position: relative; }
.package-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.package-card:hover .package-img img { transform: scale(1.05); }
.package-duration {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}
.package-body { padding: 24px; }
.package-body h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 8px; color: var(--dark); }
.package-body p { font-size: 0.88rem; color: var(--gray); margin-bottom: 16px; }
.package-includes { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.package-includes span {
  background: var(--gray-light);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.package-footer { display: flex; align-items: center; justify-content: space-between; }
.package-price { font-size: 0.85rem; color: var(--gray); }
.package-price strong { display: block; font-size: 1.5rem; color: var(--teal-dark); font-family: 'Playfair Display', serif; }

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-card:hover { background: #fff; box-shadow: var(--shadow); }
.why-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}
.why-icon.teal  { background: rgba(10,147,150,0.12); }
.why-icon.gold  { background: rgba(233,196,106,0.2); }
.why-icon.coral { background: rgba(238,108,77,0.12); }
.why-card h4 { font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: 10px; color: var(--dark); }
.why-card p { font-size: 0.9rem; color: var(--gray); }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials { background: var(--dark); padding: 90px 0; }
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px;
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-text { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 700;
}
.testimonial-info strong { display: block; color: #fff; font-size: 0.95rem; }
.testimonial-info span { color: var(--gold); font-size: 0.8rem; }

/* ============================================================
   CONTACT
============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info-card {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 40px;
  color: #fff;
}
.contact-info-card h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--gold); margin-bottom: 8px; }
.contact-info-card p { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(10,147,150,0.2);
  border: 1px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text strong { display: block; color: var(--gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-item-text span { color: rgba(255,255,255,0.82); font-size: 0.92rem; }
.social-links { display: flex; gap: 12px; margin-top: 32px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--teal); transform: translateY(-3px); }

/* Contact Form */
.contact-form { background: #fff; border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--dark); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.25s;
  outline: none;
  background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 130px; }
.captcha-box {
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: border-color 0.25s;
}
.captcha-box:hover { border-color: var(--teal); }
.captcha-box input[type="checkbox"] { width: 20px; height: 20px; cursor: pointer; }
.captcha-text { font-size: 0.9rem; color: var(--text); }
.captcha-math {
  background: var(--gray-light);
  border-radius: 6px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}
.captcha-math label { font-size: 0.9rem; font-weight: 600; margin: 0; }
.captcha-math input { width: 70px !important; text-align: center; }

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--darker);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; margin: 16px 0 20px; max-width: 300px; }
.footer-col h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col a { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-col a::before { content: '›'; color: var(--teal); font-size: 1.1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: var(--gold); }

/* ============================================================
   INNER PAGE HERO
============================================================ */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--darker) 0%, var(--teal-dark) 100%);
}
.page-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,26,0.9) 0%, rgba(0,0,0,0.3) 100%);
}
.page-hero-content { position: relative; z-index: 2; padding-top: var(--nav-h); }
.breadcrumb { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 0.82rem; margin-bottom: 16px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.5rem); color: #fff; font-weight: 900; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 600px; }

/* ============================================================
   SERVICE DETAIL PAGE
============================================================ */
.service-detail-content { display: grid; grid-template-columns: 1fr 360px; gap: 50px; align-items: start; }
.service-body h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--dark); margin: 30px 0 14px; }
.service-body h2:first-child { margin-top: 0; }
.service-body p { font-size: 0.97rem; color: var(--text); line-height: 1.85; margin-bottom: 18px; }
.service-body ul { margin: 0 0 20px 20px; }
.service-body ul li { font-size: 0.95rem; color: var(--text); margin-bottom: 8px; list-style: disc; }

.service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--gray-light);
  padding: 16px;
  border-radius: 8px;
}
.feature-item .fi { font-size: 1.3rem; flex-shrink: 0; }
.feature-item h5 { font-size: 0.9rem; font-weight: 600; color: var(--dark); margin-bottom: 3px; }
.feature-item p { font-size: 0.82rem; color: var(--gray); margin: 0; }

.service-sidebar { position: sticky; top: calc(var(--nav-h) + 20px); }
.booking-card {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 32px;
  color: #fff;
  margin-bottom: 24px;
}
.booking-card h4 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold); margin-bottom: 6px; }
.booking-card p { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.booking-card .price { font-size: 2rem; font-family: 'Playfair Display', serif; color: var(--teal); margin-bottom: 4px; }
.booking-card .price-note { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.booking-card .btn { width: 100%; justify-content: center; margin-bottom: 10px; }

.info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.info-card h5 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 16px; }
.info-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #f0f0f0; font-size: 0.88rem; }
.info-row:last-child { border-bottom: none; }
.info-row span:first-child { color: var(--gray); }
.info-row span:last-child { font-weight: 600; color: var(--dark); }

/* Gallery */
.photo-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 30px 0; }
.photo-gallery img { width: 100%; height: 180px; object-fit: cover; border-radius: 8px; transition: transform 0.3s; cursor: pointer; }
.photo-gallery img:hover { transform: scale(1.03); }
.photo-gallery .tall { grid-row: span 2; }
.photo-gallery .tall img { height: 372px; }

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeInUp   { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn     { from { opacity: 0; } to { opacity: 1; } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   FLOATING WHATSAPP
============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: wa-pulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.15); }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 6px 32px rgba(37,211,102,0.7); }
}

/* ============================================================
   BACK TO TOP
============================================================ */
#back-to-top {
  position: fixed;
  bottom: 98px; right: 28px;
  z-index: 999;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(10,147,150,0.4);
  cursor: pointer;
  border: none;
}
#back-to-top.show { opacity: 1; pointer-events: all; }
#back-to-top:hover { transform: translateY(-3px); }

/* ============================================================
   MOBILE
============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-content { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; position: fixed; inset: 0; background: var(--darker); flex-direction: column; align-items: flex-start; padding: 80px 24px 32px; gap: 0; overflow-y: auto; z-index: 999; }
  .nav-menu.open { display: flex; }
  .nav-item { width: 100%; }
  .nav-link { width: 100%; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); border-radius: 0; font-size: 1rem; }
  .dropdown { position: static; transform: none; min-width: auto; width: 100%; opacity: 1; visibility: visible; box-shadow: none; display: none; }
  .nav-item.open .dropdown { display: block; }
  .hamburger { display: flex; z-index: 1001; }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-cta .btn { display: none; }
  .hero-stats { gap: 20px; }
  .hero-stat strong { font-size: 1.6rem; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .activity-grid { grid-template-columns: repeat(2, 1fr); }
  .service-features { grid-template-columns: 1fr; }
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
  .photo-gallery .tall img { height: 180px; }
}

@media (max-width: 480px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
