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

/* ============================================
   LUXURY DESIGN SYSTEM — SILVER ARC TOURS
   ============================================ */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97D;
  --gold-dark:   #9A7028;
  --forest:      #0D2B1A;
  --forest-mid:  #163524;
  --forest-light:#1E4A31;
  --cream:       #FAF7F2;
  --cream-dark:  #EDE8DF;
  --charcoal:    #1A1A1A;
  --muted:       #7A7A6E;
  --white:       #FFFFFF;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', sans-serif;

  --transition:  all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 8px 40px rgba(201,168,76,0.18);
  --shadow-deep: 0 20px 60px rgba(0,0,0,0.22);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}
h1,h2,h3,h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--forest);
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ============================================
   UTILITIES
   ============================================ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
.section-padding { padding: 110px 0; }

.gold-line {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 18px auto 0;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--forest);
  margin-top: 10px;
}

.section-title.light { color: var(--white); }

.section-sub {
  color: var(--muted);
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 1rem;
  text-align: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-gold {
  background: var(--gold);
  color: var(--forest);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.btn-outline-gold {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--forest);
  transform: translateY(-3px);
}
.btn-outline-white {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.7);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest);
}
.btn-dark {
  background: var(--forest);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--forest-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-deep);
}
/* Legacy mappings for inner pages */
.btn-primary { background: var(--forest); color: var(--white); border-radius: 2px; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; }
.btn-primary:hover { background: var(--forest-light); transform: translateY(-2px); }
.btn-accent { background: var(--gold); color: var(--forest); }
.btn-accent:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { border: 1px solid var(--forest); color: var(--forest); background: transparent; }
.btn-outline:hover { background: var(--forest); color: var(--white); }

/* ============================================
   HEADER / NAV
   ============================================ */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  background: transparent;
}
header.scrolled {
  background: var(--forest);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img { height: 46px; }

/* Text Logo */
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.logo-main {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.logo-text:hover .logo-main { color: var(--gold-light); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-link {
  color: rgba(255,255,255,0.88);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }
.mobile-menu-btn {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--white);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/sonamarg.png') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,43,26,0.82) 0%,
    rgba(13,43,26,0.55) 55%,
    rgba(13,43,26,0.15) 100%
  );
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 640px; padding-top: 80px; }
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 26px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 44px;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-btns .btn {
  min-width: 200px;
  justify-content: center;
}

/* hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll span { display: block; width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollLine 2s ease infinite; }
@keyframes scrollLine { 0%{height:0;opacity:1} 100%{height:50px;opacity:0} }

/* hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(13,43,26,0.88);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201,168,76,0.2);
}
.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  text-align: center;
}
.hero-stat {
  padding: 24px 10px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  display: block;
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--cream-dark);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.trust-inner {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 38px 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-item i {
  font-size: 1.5rem;
  color: var(--gold);
}
.trust-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--forest);
}
.trust-item span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ============================================
   PACKAGES
   ============================================ */
.packages-section { background: var(--cream); }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 60px;
}
.pkg-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-deep); }
.pkg-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.pkg-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.pkg-card:hover .pkg-img-wrap img { transform: scale(1.07); }
.pkg-badge {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--gold);
  color: var(--forest);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
}
.pkg-body { padding: 32px; }
.pkg-meta {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.pkg-body h3 {
  font-size: 1.55rem;
  margin-bottom: 12px;
  color: var(--forest);
}
.pkg-body p { color: var(--muted); font-size: 0.93rem; margin-bottom: 24px; }
.pkg-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 20px;
}
.pkg-price { font-family: var(--font-serif); font-size: 1.8rem; color: var(--forest); font-weight: 700; }
.pkg-price span { font-size: 0.8rem; font-weight: 400; color: var(--muted); display: block; }

/* ============================================
   HOUSEBOAT FEATURE SECTION
   ============================================ */
.houseboat-section {
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.houseboat-section::before {
  content: 'PARISTAN';
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-serif);
  font-size: 9rem;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  letter-spacing: 0.3em;
  pointer-events: none;
}
.houseboat-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.houseboat-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.houseboat-gallery .hb-img {
  overflow: hidden;
}
.houseboat-gallery .hb-img:first-child {
  grid-row: span 2;
}
.houseboat-gallery .hb-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.houseboat-gallery .hb-img:hover img { transform: scale(1.08); }
.houseboat-text .section-label { color: var(--gold); }
.houseboat-text h2 { color: var(--white); margin-top: 10px; }
.houseboat-text p { color: rgba(255,255,255,0.65); margin: 20px 0 36px; line-height: 1.8; }
.hb-features { margin: 28px 0; }
.hb-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}
.hb-feature i { color: var(--gold); font-size: 1rem; width: 20px; text-align: center; }

/* ============================================
   SERVICES
   ============================================ */
.services-section { background: var(--cream-dark); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 60px;
}
.svc-card {
  background: var(--white);
  padding: 40px 32px;
  border: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 68px; height: 68px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.5rem;
  color: var(--gold);
  transition: var(--transition);
}
.svc-card:hover .svc-icon { background: var(--gold); color: var(--forest); }
.svc-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.svc-card p { color: var(--muted); font-size: 0.88rem; }

/* ============================================
   SEASONS
   ============================================ */
.seasons-section { background: var(--forest); }
.seasons-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  margin-top: 60px;
  overflow: hidden;
}
.season-card {
  position: relative;
  height: 480px;
  overflow: hidden;
  cursor: pointer;
}
.season-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.season-card:hover img { transform: scale(1.08); }
.season-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,43,26,0.92) 0%, rgba(13,43,26,0.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 28px;
  transition: var(--transition);
}
.season-card:hover .season-overlay { background: linear-gradient(to top, rgba(13,43,26,0.98) 0%, rgba(13,43,26,0.5) 60%); }
.season-tag {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.season-overlay h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 10px; }
.season-overlay p {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.season-card:hover .season-overlay p { max-height: 100px; }

/* ============================================
   REVIEWS
   ============================================ */
.reviews-section { background: var(--cream); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 60px;
}
.review-card {
  background: var(--white);
  padding: 36px;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  transition: var(--transition);
}
.review-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.18;
  position: absolute;
  top: 12px; left: 20px;
  line-height: 1;
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-deep); }
.review-stars { color: var(--gold); margin-bottom: 18px; font-size: 0.9rem; letter-spacing: 2px; }
.review-text {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.review-author h4 { font-size: 1rem; color: var(--forest); margin: 0; }
.review-author span { font-size: 0.78rem; color: var(--muted); }

/* ============================================
   BLOG
   ============================================ */
.blog-section { background: var(--cream-dark); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 60px;
}
.blog-card {
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.blog-img { height: 210px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-img img { transform: scale(1.07); }
.blog-body { padding: 28px; }
.blog-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.blog-body h3 { font-size: 1.3rem; margin-bottom: 10px; }
.blog-body p { color: var(--muted); font-size: 0.88rem; margin-bottom: 20px; }
.blog-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.blog-link:hover { color: var(--gold); gap: 14px; }

/* ============================================
   INSTAGRAM GALLERY
   ============================================ */
.gallery-section { background: var(--forest); padding-bottom: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 40px;
}
.gallery-item { height: 220px; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item .gallery-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.12); }
.gallery-item::after {
  content: '\f16d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 400;
  position: absolute;
  inset: 0;
  background: rgba(13,43,26,0.55);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* ============================================
   FAQ
   ============================================ */
.faq-section { background: var(--cream); }
.faq-container { max-width: 760px; margin: 60px auto 0; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
}
.faq-question {
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--forest);
  transition: var(--transition);
  gap: 20px;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-question i {
  color: var(--gold);
  transition: transform 0.35s ease;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.8;
  transition: max-height 0.4s ease, padding 0.35s ease;
}
.faq-item.active .faq-answer { padding: 0 0 22px; max-height: 300px; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-section {
  position: relative;
  text-align: center;
  padding: 130px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: url('../images/gulmarg.png') center/cover no-repeat;
  transform: scale(1.05);
}
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,43,26,0.88);
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 300;
  margin-bottom: 18px;
}
.cta-section h2 em { font-style: italic; color: var(--gold-light); }
.cta-section p {
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 46px;
  font-size: 1rem;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--forest);
  color: rgba(255,255,255,0.7);
  padding: 90px 0 30px;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 70px;
}
.footer-brand .logo img { height: 50px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.55); max-width: 240px; }
.footer-links h3 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links li.no-link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-links li.no-link i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--gold); }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  background: #25D366;
  color: var(--white);
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  z-index: 1000;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 30px rgba(37,211,102,0.5); }

/* ============================================
   AOS ANIMATIONS
   ============================================ */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-left"] { transform: translateX(-24px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(0.92); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .seasons-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .houseboat-inner { grid-template-columns: 1fr; gap: 50px; }
  .houseboat-gallery { grid-template-rows: 200px 200px; }
}
@media (max-width: 768px) {
  .section-padding { padding: 70px 0; }
  .hero-stats-inner { grid-template-columns: repeat(2,1fr); }
  .seasons-grid { grid-template-columns: 1fr 1fr; }
  .season-card { height: 320px; }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-inner { gap: 28px; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-content h1 { font-size: 2.8rem; }
}
@media (max-width: 480px) {
  .seasons-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .packages-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats-inner { grid-template-columns: repeat(2,1fr); }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
