/* ═══════════════════════════════════════════════
   See the Sea — Main Stylesheet
   Brand: Teal #1B5F75 / Gold #C9A84C
   ═══════════════════════════════════════════════ */

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

:root {
  --teal:       #1B5F75;
  --teal-dark:  #0e3b4a;
  --teal-deep:  #092631;
  --gold:       #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale:  #f5e9b8;
  --cream:      #FAF6EF;
  --white:      #FFFFFF;
  --text-muted: rgba(255,255,255,0.65);
  --text-dim:   rgba(255,255,255,0.4);
}

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

body {
  font-family: 'Lato', sans-serif;
  background: var(--teal);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

/* ─── UTILITY ─── */
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-label::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.section-label.center {
  justify-content: center;
}
.section-label.center::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'Lato', sans-serif;
}

.btn-gold {
  padding: 16px 48px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--teal-deep);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.4);
}

.btn-ghost {
  padding: 16px 48px;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.07);
}

.btn-gold-outline {
  padding: 14px 42px;
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--teal-deep);
}

.btn-dark {
  padding: 18px 60px;
  background: var(--teal-deep);
  color: var(--gold-light);
}
.btn-dark:hover {
  background: #040d11;
  transform: translateY(-2px);
}

/* ─── BUTTON ALIASES (inner pages) ─── */
.btn-primary {
  display: inline-block;
  padding: 16px 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--teal-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(201,168,76,0.45);
}
.btn-outline {
  display: inline-block;
  padding: 15px 42px;
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--teal-deep);
  transform: translateY(-3px);
}

/* ─── NAV ─── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 60px;
  transition: all 0.4s ease;
}

#nav.scrolled {
  background: rgba(9,38,49,0.97);
  padding: 6px 60px;
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo svg {
  width: 160px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--gold-light);
}

.nav-cta {
  padding: 10px 28px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--teal-deep);
}

/* ─── HERO ─── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#hero-bg {
  position: absolute;
  inset: -80px;
  background:
    linear-gradient(to bottom, rgba(9,38,49,0.5) 0%, rgba(9,38,49,0.15) 40%, rgba(9,38,49,0.75) 100%),
    url('https://seethesea.pt/wp-content/uploads/2026/05/WhatsApp-Image-2026-05-04-at-23.55.04-5.jpeg') center/cover no-repeat;
  will-change: transform;
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 0 24px;
  max-width: 950px;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  padding: 7px 22px;
  margin-bottom: 36px;
  animation: fadeUp 0.9s ease both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(54px, 8.5vw, 108px);
  font-weight: 600;
  line-height: 0.95;
  margin-bottom: 30px;
  animation: fadeUp 0.9s 0.15s ease both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 52px;
  animation: fadeUp 0.9s 0.3s ease both;
  line-height: 1.75;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.45s ease both;
  margin-bottom: 52px;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeIn 1s 1.2s ease both;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-line {
  width: 1px;
  height: 55px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s infinite;
}

/* ─── INTRO STRIP ─── */
.intro-strip {
  background: var(--gold);
  color: var(--teal-deep);
  text-align: center;
  padding: 20px 40px;
  font-size: 12px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-weight: 700;
}

/* ─── ABOUT ─── */
#about {
  padding: 120px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 60px;
}

.about-visual {
  position: relative;
}
.about-img-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.8s ease;
}
.about-img-wrap:hover img {
  transform: scale(1.04);
}
.about-frame {
  position: absolute;
  bottom: -22px;
  right: -22px;
  width: 190px;
  height: 190px;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: -1;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 28px;
}
.about-text h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.about-text p {
  font-size: 15px;
  line-height: 1.95;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.loc-chips {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.chip {
  padding: 9px 22px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.chip svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* ─── EXPERIENCES ─── */
#experiences {
  background: var(--teal);
  padding: 110px 60px;
}

.exp-header {
  text-align: center;
  margin-bottom: 70px;
}
.exp-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 54px);
  margin-bottom: 16px;
}
.exp-header p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 3px;
  max-width: 1180px;
  margin: 0 auto;
}

.exp-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}
.exp-card.featured {
  grid-row: span 2;
  aspect-ratio: auto;
}

.exp-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}
.exp-card:hover .exp-card-bg {
  transform: scale(1.06);
}

.exp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,38,49,0.95) 0%, rgba(9,38,49,0.1) 55%);
  transition: background 0.4s ease;
}
.exp-card:hover .exp-card-overlay {
  background: linear-gradient(to top, rgba(9,38,49,1) 0%, rgba(9,38,49,0.35) 100%);
}

.exp-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px 26px;
}
.exp-tag {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 700;
}
.exp-title {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  margin-bottom: 8px;
  line-height: 1.2;
}
.exp-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.exp-card:hover .exp-desc {
  max-height: 80px;
}
.exp-price {
  font-size: 13px;
  color: var(--gold-light);
  margin-top: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.exp-book-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.4);
  padding-bottom: 2px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.exp-card:hover .exp-book-link {
  opacity: 1;
  transform: translateY(0);
}

/* ─── PARALLAX QUOTE ─── */
#quote {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#quote-bg {
  position: absolute;
  inset: -80px;
  background: url('https://seethesea.pt/wp-content/uploads/2026/05/WhatsApp-Image-2026-05-04-at-23.55.04-8.jpeg') center/cover;
}
.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9,38,49,0.72);
}
.quote-inner {
  position: relative;
  text-align: center;
  padding: 0 60px;
  max-width: 820px;
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 130px;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 24px;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 28px;
}
.quote-author {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── LOCATIONS ─── */
#locations {
  padding: 120px 60px;
}
.locations-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.loc-header {
  text-align: center;
  margin-bottom: 70px;
}
.loc-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 54px);
  margin-bottom: 16px;
}
.loc-header p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 450px;
  margin: 0 auto;
  line-height: 1.75;
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.loc-card {
  position: relative;
  height: 520px;
  overflow: hidden;
  cursor: pointer;
}
.loc-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}
.loc-card:hover .loc-card-bg {
  transform: scale(1.05);
}
.loc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,38,49,0.92) 0%, rgba(9,38,49,0.15) 55%, transparent 100%);
}
.loc-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 50px 46px;
}
.loc-region {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 700;
}
.loc-name {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1;
}
.loc-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 320px;
}
.loc-highlights {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.loc-tag {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light);
}
.loc-arrow {
  position: absolute;
  top: 46px; right: 46px;
  width: 46px; height: 46px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s ease;
}
.loc-card:hover .loc-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ─── GALLERY ─── */
#gallery {
  padding: 100px 0;
}
.gallery-header {
  text-align: center;
  padding: 0 60px;
  margin-bottom: 50px;
}
.gallery-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px);
}

.gallery-strip {
  display: flex;
  gap: 3px;
}
.gallery-item {
  flex: 1;
  height: 330px;
  overflow: hidden;
  position: relative;
  transition: flex 0.55s ease;
  cursor: pointer;
}
.gallery-item:hover {
  flex: 2.2;
}
.gallery-item-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s ease;
}
.gallery-item:hover .gallery-item-bg {
  transform: scale(1.04);
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  background: var(--teal);
  padding: 110px 60px;
}
.test-header {
  text-align: center;
  margin-bottom: 65px;
}
.test-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px);
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.test-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.18);
  padding: 36px 30px;
  border-top: 2px solid var(--gold);
  transition: background 0.3s;
}
.test-card:hover {
  background: rgba(255,255,255,0.08);
}
.test-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.test-quote {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-style: italic;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 26px;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.test-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--teal-deep);
  font-weight: 700;
  flex-shrink: 0;
}
.test-name {
  font-weight: 700;
  font-size: 14px;
}
.test-loc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 0.5px;
}

/* ─── BOOKING CTA ─── */
#booking {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 90px 60px;
  text-align: center;
  color: var(--teal-deep);
}
#booking h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4.5vw, 56px);
  margin-bottom: 16px;
}
#booking p {
  font-size: 16px;
  margin-bottom: 44px;
  opacity: 0.75;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.booking-btns {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-booking-dark {
  display: inline-block;
  padding: 17px 52px;
  background: var(--teal-deep);
  color: var(--gold-light);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.3s;
}
.btn-booking-dark:hover {
  background: #040d11;
  transform: translateY(-2px);
}
.btn-booking-ghost {
  display: inline-block;
  padding: 17px 52px;
  border: 2px solid var(--teal-deep);
  color: var(--teal-deep);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.3s;
}
.btn-booking-ghost:hover {
  background: var(--teal-deep);
  color: var(--gold-light);
}

/* ─── FOOTER ─── */
footer {
  background: #040d11;
  padding: 75px 60px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand-desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-dim);
  margin-top: 18px;
  max-width: 270px;
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 700;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 11px;
}
.footer-col a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-col a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
  font-size: 12px;
}

/* ─── LOGO NAV ─── */
.nav-logo-img {
  height: 220px;
  width: auto;
  display: block;
  transition: height 0.4s ease, opacity 0.3s, transform 0.35s ease, filter 0.3s;
  filter: drop-shadow(0 0 28px rgba(201,168,76,0.8)) drop-shadow(0 0 12px rgba(201,168,76,0.5));
}
#nav.scrolled .nav-logo-img {
  height: 150px;
}
.nav-logo-img:hover {
  opacity: 0.92;
  transform: scale(1.04);
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.95)) drop-shadow(0 0 16px rgba(201,168,76,0.7));
}
#nav {
  padding: 8px 60px;
}
#nav.scrolled {
  padding: 4px 60px;
}

/* ─── LANGUAGE SWITCHER ─── */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 16px;
}
.lang-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold-light);
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.lang-btn:hover {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.5);
}
.lang-btn .lang-flag { font-size: 14px; line-height: 1; }
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(9,38,49,0.98);
  border: 1px solid rgba(201,168,76,0.2);
  backdrop-filter: blur(12px);
  min-width: 140px;
  z-index: 999;
  padding: 6px 0;
}
.lang-switcher.open .lang-dropdown { display: block; }
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 12px;
  font-family: 'Lato', sans-serif;
  letter-spacing: 1px;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lang-option:hover { background: rgba(201,168,76,0.08); color: var(--gold-light); }
.lang-option.active { color: var(--gold); }
.lang-option .lang-flag { font-size: 16px; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.8; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1);   box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50%       { transform: scale(1.04); box-shadow: 0 0 0 12px rgba(201,168,76,0); }
}
@keyframes borderGlow {
  0%, 100% { border-color: rgba(201,168,76,0.15); }
  50%       { border-color: rgba(201,168,76,0.5); }
}

/* ─── ANIMATION CLASSES ─── */
.anim-float  { animation: floatY 5s ease-in-out infinite; }
.anim-pulse  { animation: pulse 3s ease-in-out infinite; }
.anim-glow   { animation: borderGlow 3s ease-in-out infinite; }

/* Staggered reveal delays */
.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* Card hover lift */
.value-card,
.exp-detail-item,
.gallery-page-item,
.team-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.value-card:hover     { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.exp-detail-item:hover { transform: translateY(-4px); }
.team-card:hover       { transform: translateY(-6px); }

/* Gold shimmer on section headings when hovered */
.page-hero-content h1 {
  background: linear-gradient(90deg, #fff 25%, #E8C97A 50%, #fff 75%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}

/* Animated gold underline on nav links */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* ─── MOBILE RESPONSIVE ─── */
@media (max-width: 1024px) {
  #nav { padding: 12px 24px; }
  #nav.scrolled { padding: 8px 24px; }
  .nav-links { display: none; }
  .nav-logo-img { height: 60px; filter: drop-shadow(0 0 12px rgba(201,168,76,0.6)); }
  #nav.scrolled .nav-logo-img { height: 50px; }
  .about-inner { grid-template-columns: 1fr; gap: 50px; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .exp-card.featured { grid-row: auto; aspect-ratio: 3/4; }
  .loc-grid { grid-template-columns: 1fr; }
  .loc-card { height: 400px; }
  .test-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  #experiences { padding: 80px 24px; }
  #locations { padding: 80px 24px; }
  #testimonials { padding: 80px 24px; }
  #booking { padding: 70px 24px; }
  footer { padding: 60px 24px 30px; }
  .exp-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}

/* ════════════════════════════════════════════════════
   INNER PAGE SHARED STYLES
   ════════════════════════════════════════════════════ */

/* ─── PAGE HERO ─── */
.page-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 80px;
}
.page-hero-bg {
  position: absolute;
  inset: -60px;
  background-size: cover;
  background-position: center;
  will-change: transform;
  filter: brightness(0.45);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,38,49,0.3) 0%, rgba(9,38,49,0.6) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}
.page-hero-content .section-label { justify-content: center; margin-bottom: 20px; }
.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 6vw, 72px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 18px;
}
.page-hero-content p {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── INNER PAGE WRAPPER ─── */
.inner-page { padding: 100px 24px; max-width: 1200px; margin: 0 auto; }

/* ─── EXPERIENCES PAGE ─── */
.exp-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 80px;
  margin-top: 60px;
}
.exp-detail-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.exp-detail-img {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.exp-detail-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(9,38,49,0.8) 100%);
}
.exp-detail-body {
  padding: 32px 0 0;
}
.exp-detail-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}
.exp-detail-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.exp-detail-meta span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.exp-detail-meta span::before { content: '— '; opacity: 0.5; }
.exp-detail-body p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.exp-includes {
  list-style: none;
  margin-bottom: 24px;
}
.exp-includes li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}
.exp-includes li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
  top: 7px;
}
.exp-price {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 20px;
}
.exp-price span { font-size: 13px; font-family: 'Lato', sans-serif; color: var(--text-dim); margin-left: 4px; }

/* ─── ABOUT PAGE ─── */
.about-page-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.about-page-inner.reverse { direction: rtl; }
.about-page-inner.reverse > * { direction: ltr; }
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px;
}
.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.about-img-wrap {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201,168,76,0.3);
  z-index: 1;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 60px 0 100px;
}
.value-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.3s;
}
.value-card:hover { border-color: rgba(201,168,76,0.3); }
.value-icon {
  font-size: 32px;
  margin-bottom: 18px;
}
.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 12px;
}
.value-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}
.team-section { margin-bottom: 100px; }
.team-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-style: italic;
  color: var(--white);
  margin-bottom: 40px;
  text-align: center;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.team-card {
  text-align: center;
}
.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin: 0 auto 20px;
  border: 2px solid rgba(201,168,76,0.4);
}
.team-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 6px;
}
.team-card .role {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.team-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ─── GALLERY PAGE ─── */
.gallery-page-grid {
  columns: 3;
  column-gap: 16px;
  margin-top: 60px;
}
.gallery-page-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}
.gallery-page-item-bg {
  width: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.gallery-page-item:hover .gallery-page-item-bg {
  transform: scale(1.04);
}
.gallery-page-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(9,38,49,0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-page-item:hover .gallery-page-item-overlay { opacity: 1; }
.gallery-page-item-overlay span {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(9,38,49,0.97);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border: 1px solid rgba(201,168,76,0.2);
}
#lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
}
#lightbox-close:hover { color: var(--gold); }

/* ─── CONTACT PAGE ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 5fr 3fr;
  gap: 80px;
  margin-top: 60px;
}
.contact-form-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-style: italic;
  color: var(--white);
  margin-bottom: 30px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group {
  margin-bottom: 22px;
}
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 14px 16px;
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option { background: #092631; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-notice {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 24px;
  line-height: 1.6;
}
.form-notice a { color: var(--gold); }
.form-success {
  display: none;
  background: rgba(27,95,117,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 24px;
  text-align: center;
  color: var(--gold-light);
  font-size: 15px;
  line-height: 1.7;
}
.contact-sidebar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 24px;
}
.contact-info-item {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .ci-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.contact-info-item .ci-value {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-info-item .ci-value a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-info-item .ci-value a:hover { color: var(--white); }
.contact-whatsapp-cta {
  margin-top: 36px;
  padding: 24px;
  border: 1px solid rgba(201,168,76,0.2);
  text-align: center;
}
.contact-whatsapp-cta p { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }

/* ─── INNER PAGE RESPONSIVE ─── */
@media (max-width: 1024px) {
  .exp-detail-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-page-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-page-inner.reverse { direction: ltr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .gallery-page-grid { columns: 2; }
  .contact-layout { grid-template-columns: 1fr; gap: 60px; }
}
@media (max-width: 640px) {
  .page-hero { height: 360px; }
  .inner-page { padding: 60px 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-page-grid { columns: 1; }
  .form-row { grid-template-columns: 1fr; }
  .exp-detail-meta { gap: 10px; }
}
