/* ═══════════════════════════════════════════════
   XPLORE ATV SAMUI — Global Stylesheet
   ═══════════════════════════════════════════════ */

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

:root {
  --blue-deep: #0a1628;
  --blue-mid: #1a3a5c;
  --blue-brand: #1e88c7;
  --blue-light: #4fc3f7;
  --orange-hot: #f57c20;
  --orange-sun: #fdb830;
  --orange-glow: #ff6b35;
  --green-palm: #2e7d32;
  --green-light: #66bb6a;
  --white: #ffffff;
  --off-white: #f5f0eb;
  --sand: #faf6f0;
  --gray-text: #4a4a4a;
  --gray-light: #8a8a8a;
}

html { scroll-behavior: smooth; }

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

a { color: inherit; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.6rem 2rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
/* On inner pages, always show solid bg */
nav.nav-solid {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
nav .logo img { height: 55px; transition: height 0.3s ease; }
nav.scrolled .logo img { height: 42px; }

nav .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
nav .nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  position: relative;
  transition: color 0.3s;
}
nav .nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange-hot);
  transition: width 0.3s ease;
}
nav .nav-links a:hover::after { width: 100%; }
nav .nav-links a:hover { color: var(--orange-sun); }
nav .nav-links a.active { color: var(--orange-sun); }
nav .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--orange-hot) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,124,32,0.4); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1002;
  background: none;
  border: none;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  width: 28px; height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s;
  display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--blue-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-sunset.webp') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom { 0% { transform: scale(1.05); } 100% { transform: scale(1.15); } }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,22,40,0.75) 0%, rgba(10,22,40,0.5) 50%, rgba(10,22,40,0.9) 100%);
}
.hero-dust {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(2px 2px at 20% 30%, rgba(253,184,48,0.3), transparent),
                     radial-gradient(2px 2px at 60% 70%, rgba(255,255,255,0.15), transparent),
                     radial-gradient(1px 1px at 80% 20%, rgba(79,195,247,0.2), transparent),
                     radial-gradient(1px 1px at 40% 80%, rgba(253,184,48,0.2), transparent);
  animation: dustFloat 8s ease-in-out infinite alternate;
}
@keyframes dustFloat { 0% { transform: translateY(0) translateX(0); } 100% { transform: translateY(-20px) translateX(10px); } }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  color: var(--orange-sun);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 10vw, 8rem);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
  animation: fadeUp 0.8s ease 0.2s forwards;
  opacity: 0;
}
.hero h1 span {
  display: block;
  background: linear-gradient(90deg, var(--orange-hot), var(--orange-sun));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 300;
  animation: fadeUp 0.8s ease 0.4s forwards;
  opacity: 0;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.6s forwards;
  opacity: 0;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange-hot), var(--orange-glow));
  color: var(--white);
  box-shadow: 0 8px 30px rgba(245,124,32,0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(245,124,32,0.5); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-3px); }
.btn-secondary {
  background: var(--blue-brand);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(30,136,199,0.3);
}
.btn-secondary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(30,136,199,0.5); }

.hero-stats {
  position: absolute;
  bottom: 3rem; left: 0; right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 0 2rem;
  animation: fadeUp 0.8s ease 0.8s forwards;
  opacity: 0;
}
.stat { text-align: center; color: var(--white); }
.stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--orange-sun); line-height: 1; }
.stat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; margin-top: 0.2rem; }

/* ─── SECTIONS ─── */
section { padding: 6rem 2rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag { display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange-hot); margin-bottom: 0.8rem; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); color: var(--blue-deep); line-height: 1; margin-bottom: 1rem; }
.section-subtitle { font-size: 1.1rem; color: var(--gray-light); max-width: 600px; margin: 0 auto; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; }

/* ─── PAGE HEADER (inner pages) ─── */
.page-header {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
  padding: 8rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -30%; right: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,124,32,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(79,195,247,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header .section-tag { color: var(--orange-sun); }
.page-header .section-title { color: var(--white); }
.page-header .section-subtitle { color: rgba(255,255,255,0.6); }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--orange-sun); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: rgba(255,255,255,0.8); }

/* ─── GALLERY ─── */
#gallery { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto; gap: 0.8rem; }
.gallery-item { border-radius: 16px; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,0.3) 0%, transparent 50%); opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; height: 420px; }
.gallery-item:nth-child(2), .gallery-item:nth-child(3) { height: 205px; }
.gallery-item:nth-child(4), .gallery-item:nth-child(5) { height: 205px; }
.gallery-row-2 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; margin-top: 0.8rem; }
.gallery-row-2 .gallery-item { height: 220px; }

.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.92); align-items: center; justify-content: center; cursor: pointer; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 12px; }
.lightbox-close { position: absolute; top: 1.5rem; right: 2rem; color: white; font-size: 2.5rem; cursor: pointer; background: none; border: none; line-height: 1; }

/* ─── ACTIVITIES ─── */
#activities { background: var(--sand); }
.activities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.activity-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.06); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.activity-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.card-image { height: 200px; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.activity-card:hover .card-image img { transform: scale(1.08); }
.card-accent { height: 4px; background: linear-gradient(90deg, var(--blue-brand), var(--blue-light)); }
.activity-card:nth-child(2) .card-accent { background: linear-gradient(90deg, var(--orange-hot), var(--orange-sun)); }
.activity-card:nth-child(3) .card-accent { background: linear-gradient(90deg, var(--green-palm), var(--green-light)); }
.card-body { padding: 2rem; }
.card-duration { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--sand); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; color: var(--blue-brand); margin-bottom: 1rem; }
.card-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--blue-deep); margin-bottom: 0.6rem; }
.card-desc { color: var(--gray-light); line-height: 1.6; margin-bottom: 1.5rem; font-size: 0.95rem; }
.card-features { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 1.5rem; }
.card-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--gray-text); }
.card-features li::before { content: '✓'; display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; background: rgba(30,136,199,0.1); color: var(--blue-brand); border-radius: 50%; font-size: 0.7rem; font-weight: 700; flex-shrink: 0; }
.time-slots { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.time-slot { background: var(--sand); padding: 0.4rem 0.9rem; border-radius: 8px; font-size: 0.8rem; font-weight: 500; color: var(--blue-mid); }
.time-slot.sunset { background: linear-gradient(135deg, rgba(245,124,32,0.1), rgba(253,184,48,0.15)); color: var(--orange-hot); font-weight: 600; }
.card-cta { display: block; width: 100%; margin-top: 1.5rem; text-align: center; }

.info-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; background: var(--blue-deep); border-radius: 20px; padding: 2.5rem; }
.info-item { text-align: center; color: var(--white); }
.info-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.info-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.6; margin-bottom: 0.3rem; }
.info-value { font-weight: 600; font-size: 1rem; }

/* ─── ABOUT ─── */
#about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-visual { position: relative; }
.about-img-wrap { border-radius: 24px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.15); }
.about-img-wrap img { width: 100%; height: 450px; object-fit: cover; display: block; }
.about-float-card { position: absolute; bottom: -25px; right: -25px; background: var(--orange-hot); color: var(--white); padding: 1.5rem 2rem; border-radius: 16px; box-shadow: 0 15px 40px rgba(245,124,32,0.3); }
.about-float-number { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; line-height: 1; }
.about-float-label { font-size: 0.8rem; opacity: 0.9; }
.about-text h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--blue-deep); margin-bottom: 1rem; line-height: 1.1; }
.about-text p { color: var(--gray-text); line-height: 1.8; margin-bottom: 1.5rem; font-size: 1.05rem; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2rem; }
.highlight { display: flex; align-items: flex-start; gap: 0.8rem; }
.highlight-icon { width: 44px; height: 44px; background: var(--sand); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.highlight-text strong { display: block; font-size: 0.9rem; color: var(--blue-deep); margin-bottom: 0.15rem; }
.highlight-text span { font-size: 0.8rem; color: var(--gray-light); }

/* ─── IDEAL FOR ─── */
#ideal { background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%); color: var(--white); position: relative; overflow: hidden; }
#ideal::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(245,124,32,0.15) 0%, transparent 70%); border-radius: 50%; }
#ideal .section-tag { color: var(--orange-sun); }
#ideal .section-title { color: var(--white); }
#ideal .section-subtitle { color: rgba(255,255,255,0.6); }
.ideal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; position: relative; z-index: 1; }
.ideal-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 2rem 1.5rem; text-align: center; transition: all 0.3s ease; backdrop-filter: blur(5px); }
.ideal-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-5px); border-color: rgba(245,124,32,0.3); }
.ideal-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
.ideal-label { font-weight: 600; font-size: 1rem; }

/* ─── FAQ ─── */
#faq { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e8e3de; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue-deep);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--orange-hot); }
.faq-question span { transition: transform 0.3s; font-size: 1.4rem; flex-shrink: 0; }
.faq-question.active span { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--gray-text);
  line-height: 1.7;
  font-size: 0.95rem;
}
.faq-answer.active { max-height: 300px; padding-bottom: 1.5rem; }

/* ─── CONTACT ─── */
#contact { background: var(--sand); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--blue-deep); margin-bottom: 1rem; }
.contact-info p { color: var(--gray-light); line-height: 1.7; margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail-icon { width: 48px; height: 48px; background: var(--white); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; box-shadow: 0 4px 15px rgba(0,0,0,0.06); flex-shrink: 0; }
.contact-detail-text strong { display: block; color: var(--blue-deep); margin-bottom: 0.2rem; }
.contact-detail-text span, .contact-detail-text a { color: var(--gray-light); text-decoration: none; font-size: 0.95rem; }
.contact-detail-text a:hover { color: var(--orange-hot); }

.contact-form { background: var(--white); border-radius: 20px; padding: 2.5rem; box-shadow: 0 10px 40px rgba(0,0,0,0.06); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--blue-deep); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.85rem 1.1rem; border: 2px solid #e8e3de; border-radius: 12px;
  font-family: 'Outfit', sans-serif; font-size: 0.95rem; color: var(--gray-text);
  transition: border-color 0.3s; background: var(--white); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue-brand); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; padding: 1rem;
  background: linear-gradient(135deg, var(--orange-hot), var(--orange-glow));
  color: var(--white); border: none; border-radius: 12px;
  font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: all 0.3s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,124,32,0.35); }

.map-wrap { border-radius: 20px; overflow: hidden; margin-top: 3rem; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.map-wrap iframe { width: 100%; height: 350px; border: 0; display: block; }

/* ─── FOOTER ─── */
footer { background: var(--blue-deep); color: var(--white); padding: 3rem 2rem; text-align: center; }
.footer-logo img { height: 50px; margin-bottom: 1rem; }
footer p { font-size: 0.85rem; opacity: 0.5; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--orange-sun); }

/* ─── HOMEPAGE CTA STRIP ─── */
.cta-strip {
  background: linear-gradient(135deg, var(--orange-hot), var(--orange-glow));
  padding: 4rem 2rem;
  text-align: center;
  color: var(--white);
}
.cta-strip h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.cta-strip p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 550px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.cta-strip .btn {
  background: var(--white);
  color: var(--orange-hot);
}
.cta-strip .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── SCROLL TOP ─── */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: var(--orange-hot); color: var(--white);
  border: none; border-radius: 50%; font-size: 1.3rem;
  cursor: pointer; z-index: 999;
  opacity: 0; transform: translateY(20px);
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(245,124,32,0.3);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(245,124,32,0.5); }

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed; bottom: 2rem; left: 2rem;
  z-index: 999; width: 56px; height: 56px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ─── LANG SWITCHER ─── */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  transition: all 0.3s;
}
.lang-switch:hover {
  color: var(--orange-sun) !important;
  border-color: rgba(253,184,48,0.4);
  background: rgba(255,255,255,0.05);
}
.lang-switch::after { display: none !important; }

/* ─── 404 ─── */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
  color: var(--white);
  text-align: center;
  padding: 2rem;
}
.error-page h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6rem, 15vw, 12rem);
  background: linear-gradient(90deg, var(--orange-hot), var(--orange-sun));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.error-page h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}
.error-page p {
  color: rgba(255,255,255,0.6);
  max-width: 450px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.error-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════
   MOBILE RESPONSIVE — FIXED MENU + FULL LAYOUT
   ═══════════════════════════════════════════════ */

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; height: 260px; }
  .gallery-item:nth-child(2), .gallery-item:nth-child(3), .gallery-item:nth-child(4), .gallery-item:nth-child(5) { height: 180px; }
  .gallery-row-2 { grid-template-columns: 1fr 1fr; }
  .gallery-row-2 .gallery-item { height: 180px; }
}

@media (max-width: 768px) {
  nav { padding: 0.7rem 1rem; }
  nav.scrolled { padding: 0.5rem 1rem; }
  nav .logo img { height: 38px; }
  nav.scrolled .logo img { height: 34px; }

  /* ── FIXED MOBILE MENU ── */
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,22,40,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
    /* REMOVED display:none !important — this was the bug */
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-links a { font-size: 1.3rem; }
  .nav-cta { padding: 0.8rem 2rem; font-size: 1.1rem !important; }
  .hamburger { display: flex; }

  .hero h1 { font-size: clamp(2.8rem, 12vw, 4.5rem); }
  .hero p { font-size: 1rem; padding: 0 0.5rem; }
  .hero-stats { gap: 1.5rem; bottom: 2rem; }
  .hero-buttons { gap: 0.8rem; }
  .btn { padding: 0.85rem 1.6rem; font-size: 0.9rem; }

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-float-card { right: 10px; bottom: -15px; }
  .about-img-wrap img { height: 300px; }
  .about-highlights { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .card-features { grid-template-columns: 1fr; }

  section { padding: 4rem 1.5rem; }
  .page-header { padding: 7rem 1.5rem 3rem; }

  .gallery-item:nth-child(1) { height: 200px; }
  .gallery-item:nth-child(2), .gallery-item:nth-child(3), .gallery-item:nth-child(4), .gallery-item:nth-child(5) { height: 150px; }
  .gallery-row-2 .gallery-item { height: 150px; }

  .info-strip { grid-template-columns: 1fr 1fr; }

  .cta-strip { padding: 3rem 1.5rem; }

  .footer-links { gap: 1rem; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 1rem; }
  .stat-number { font-size: 2rem; }
  .ideal-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; height: 200px; }
  .gallery-item:nth-child(n) { height: 200px; }
  .gallery-row-2 { grid-template-columns: 1fr; }
  .gallery-row-2 .gallery-item { height: 200px; }
  .info-strip { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .contact-form { padding: 1.5rem; }
  .about-text h3 { font-size: 2rem; }
  .error-links { flex-direction: column; align-items: center; }
}
