/* ===== CSS VARIABLES ===== */
:root {
  --gold: #f8b400;
  --gold-light: #a28536;
  --gold-pale: #F5EDD6;
  --gold-bright: #f8b400;
  /* Used in newsletter button */

  --dark: #0D0D0D;
  --dark2: #181818;
  --dark3: #252525;
  --mid: #444;
  --light: #F8F5EF;
  --white: #FFFFFF;
  --text: #222;
  --text2: #666;

  /* Newsletter / Hero Style Colors */
  --overlay-dark: rgba(0, 0, 0, 0.45);
  /* Video overlay */
  --overlay-darker: rgba(0, 0, 0, 0.65);
  /* For footer */
  --video-filter: brightness(0.65) contrast(1.05) saturate(1.15);

  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --ease: cubic-bezier(.25, .46, .45, .94);
  --radius: 4px;
  --shadow: 0 8px 40px rgba(0, 0, 0, .12);
  --shadow-gold: 0 4px 30px rgba(201, 168, 76, .25);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  letter-spacing: .04em;
  padding: 8px 40px;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  align-items: center;
}

.topbar a {
  color: rgba(255, 255, 255, .7);
  transition: color .2s;
}

.topbar a:hover {
  color: var(--gold);
}

.topbar span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== NAVBAR ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 13, 13, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, .15);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: all .3s;
}

nav.scrolled {
  background: rgba(13, 13, 13, .98);
  height: 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.nav-logo-img {
  height: 64px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .08em;
  line-height: 1.1;
}

.nav-logo-text span {
  display: block;
  font-size: 11px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: .2em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a,
.nav-links button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  letter-spacing: .08em;
  padding: 8px 16px;
  transition: color .2s;
  position: relative;
  font-family: var(--font-body);
}

.nav-links a::after,
.nav-links button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s;
}

.nav-links a:hover,
.nav-links button:hover,
.nav-links a.active,
.nav-links button.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links button:hover::after,
.nav-links a.active::after,
.nav-links button.active::after {
  width: 60%;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  font-weight: 600 !important;
  border-radius: var(--radius) !important;
  letter-spacing: .1em !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
}

.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold);
  color: var(--dark);
  font-size: 9px;
  font-weight: 600;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all .3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--dark);
  z-index: 999;
  padding: 24px 40px;
  border-top: 1px solid rgba(201, 168, 76, .2);
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu a,
.mobile-menu button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .8);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: .06em;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  text-align: left;
  transition: color .2s;
}

.mobile-menu a:hover,
.mobile-menu button:hover {
  color: var(--gold);
}

/* ===== SECTION COMMONS ===== */
.section {
  padding: 100px 40px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}

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

.section-subtitle {
  font-size: 14px;
  color: var(--text2);
  max-width: 540px;
  line-height: 1.8;
  font-weight: 300;
}

.divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  padding: 16px 32px;
  border: none;
  border-radius: var(--radius);
  transition: all .3s;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .15em;
  padding: 16px 32px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: var(--radius);
  transition: all .3s;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius);
  transition: all .3s;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-book:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ===== WHATSAPP ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9998;
  background: #25D366;
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: transform .3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn svg {
  width: 26px;
  height: 26px;
  fill: white;
}

/* ===== CURRENCY SWITCHER ===== */
.currency-bar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.currency-btn {
  background: var(--dark2);
  color: rgba(255, 255, 255, .6);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 10px 8px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  width: 40px;
  text-align: center;
}

.currency-btn.active,
.currency-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ===== LOADING OVERLAY ===== */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity .5s, visibility .5s;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: .1em;
}

.loader-logo span {
  color: var(--gold);
}

.loader-line {
  width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, .1);
  overflow: hidden;
}

.loader-progress {
  width: 0;
  height: 100%;
  background: var(--gold);
  animation: loadProgress 1.2s ease forwards;
}

@keyframes loadProgress {
  to {
    width: 100%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ===== PAGE HERO BANNER ===== */
.contact-hero {
  height: 300px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
  display: flex;
  align-items: flex-end;
  padding: 40px 60px;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-breadcrumb {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, .4);
  transition: color .2s;
}

.page-breadcrumb a:hover {
  color: var(--gold);
}

.page-heading {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--white);
  font-weight: 300;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  display: inline-block;
}

/* ===== NEWSLETTER SECTION ===== */
/* ===== NEWSLETTER SECTION ===== */
/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  position: relative;
  padding: 110px 0 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  background: #111;
  /* fallback color */
}

.newsletter-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

/* Fixed Video Coverage - No Side Gaps */
.newsletter-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  /* Full viewport width */
  height: 100vh;
  /* Full viewport height */
  transform: translate(-50%, -50%) scale(1.15);
  /* Aggressive cover */
  z-index: 2;
}

.newsletter-video-bg iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.05) saturate(1.15);
  pointer-events: none;
}

/* Overlay */
.newsletter-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  /* Adjust darkness if needed */
  z-index: 3;
}

/* Content */
.newsletter-content {
  position: relative;
  z-index: 4;
  text-align: center;
  width: 100%;
  max-width: 720px;
  padding: 0 20px;
}

.newsletter-title {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
  font-weight: 400;
  letter-spacing: 0.8px;
}

.newsletter-heading {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 18px;
  color: white;
  text-transform: uppercase;
  line-height: 1.1;
}

.newsletter-divider {
  width: 60px;
  height: 2px;
  background: #fff;
  margin: 0 auto 32px;
  position: relative;
}

.newsletter-divider::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
}

/* Form */
.newsletter-form {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

.newsletter-form input {
  flex: 1;
  padding: 18px 26px;
  font-size: 16px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.97);
  color: #222;
}

.newsletter-form button {
  padding: 18px 42px;
  background: #f8b400;
  color: #000;
  border: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.2px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: #e0a000;
  transform: translateY(-3px);
}

/* Newsletter feedback messages */
.newsletter-msg {
  margin-top: 20px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.5px;
  animation: fadeIn 0.4s ease;
}
.newsletter-msg-success {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--gold);
  color: #fff;
}
.newsletter-msg-error {
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.4);
  color: #fca5a5;
}

/* Responsive */
@media (max-width: 768px) {
  .newsletter-section {
    padding: 90px 20px 80px;
    min-height: 380px;
  }

  .newsletter-heading {
    font-size: 34px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    border-radius: 5px;
  }
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  position: relative;
  padding: 60px 40px 30px;
  color: white;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 55px;
  margin-bottom: 55px;
}

/* Brand */
.footer-brand .nav-logo-text {
  font-size: 22px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  letter-spacing: .08em;
}

.footer-about {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 22px;
}

.footer-contact-item {
  display: flex;
  gap: 11px;
  margin-bottom: 11px;
  font-size: 13px;
  color: rgba(255, 255, 255, .85);
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: var(--gold);
  margin-top: 3px;
}

/* Other Columns */
.footer-col h4 {
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-col ul li {
  margin-bottom: 9px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
  transition: color .2s;
  font-weight: 300;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

/* Map */
.footer-map {
  border-radius: var(--radius);
  overflow: hidden;
  height: 155px;
  border: 1px solid rgba(201, 168, 76, .25);
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .5);
}

.footer-legal a,
.footer-mini-links a {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .5);
  transition: color .2s;
}

.footer-legal a:hover,
.footer-mini-links a:hover {
  color: var(--gold);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, .35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .65);
  transition: all .3s;
  font-size: 15px;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, .12);
}

/* Footer & Newsletter Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 45px;
  }
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 60px 20px;
    min-height: 260px;
  }

  .newsletter-heading {
    font-size: 28px;
    letter-spacing: 2px;
  }

  footer {
    padding: 40px 20px 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-map {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .newsletter-heading {
    font-size: 22px;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: 4px;
  }

  .newsletter-form input,
  .newsletter-form button {
    border-radius: 4px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

/* ===== FORM ELEMENTS ===== */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 10px;
  letter-spacing: .15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--light);
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color .3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media(max-width:768px) {
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .topbar {
    display: none;
  }

  .section {
    padding: 70px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media(max-width:480px) {
  .contact-hero {
    padding: 30px 24px;
  }

  .page-heading {
    font-size: 2rem;
  }
}