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

/* ====================================================================
   DESIGN SYSTEM & VARIABLES
   ==================================================================== */
:root {
  /* Color Palette */
  --primary-gold: #c5a85c;
  /* Soft Luxury Gold */
  --light-gold: #e5d29d;
  /* Bright Gold for highlights */
  --dark-gold: #967d3b;
  /* Dark Gold for shadows/borders */
  --bronze: #8a6f48;
  /* Medium Bronze */
  --dark-bronze: #4d3e29;
  /* Deep Bronze background accent */
  --dark-bg: #0a0b0d;
  /* Near Black luxury slate */
  --dark-surface: #15181d;
  /* Slightly lighter dark background */
  --dark-surface-hover: #1c2128;
  /* Hover state surface */
  --light-bg: #fdfcf9;
  /* Warm Cream off-white */
  --light-surface: #f7f5ef;
  /* Lighter warm cream */
  --text-dark: #1f1a14;
  /* Rich charcoal/warm dark text */
  --text-muted-dark: #6e6556;
  /* Dark cream muted text */
  --text-light: #fdfcf9;
  /* Off-white light text */
  --text-muted-light: #ddc59e;
  /* Muted cream text */
  --border-light: #e6e2d8;
  /* Cream border */
  --border-dark: #2a2e35;
  /* Slate border */
  --accent-gold-rgb: 197, 168, 92;

  /* Typography */
  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-sans: 'Outfit', 'Helvetica Neue', Arial, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(13, 15, 18, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 4px 20px rgba(197, 168, 92, 0.15);

  /* Transitions */
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);

  /* Layout */
  --max-width: 1280px;
  --header-height: 80px;
}

/* ====================================================================
   BASE RESET & UTILITIES
   ==================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button,
input,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  outline: none;
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
}

.section-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary-gold);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-title span {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--primary-gold);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted-dark);
  max-width: 600px;
  margin-bottom: 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--primary-gold);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

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

.btn-outline {
  border: 1px solid var(--border-light);
  color: var(--text-dark);
}

.btn-outline:hover {
  border-color: var(--primary-gold);
  background-color: rgba(197, 168, 92, 0.05);
  color: var(--primary-gold);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--navy);
  color: var(--text-light);
  border: 1px solid var(--border-dark);
}

.btn-dark:hover {
  background-color: var(--primary-gold);
  color: var(--navy);
  border-color: var(--primary-gold);
  transform: translateY(-2px);
}

/* ====================================================================
   TOP UTILITY BAR
   ==================================================================== */
.top-bar {
  background-color: #08090b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: var(--text-muted-light);
  padding: 10px 0;
  display: block;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  gap: 24px;
}

.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-info i {
  color: var(--primary-gold);
}

.top-bar-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lang-selector {
  background: none;
  color: inherit;
  border: none;
  cursor: pointer;
}

.top-bar-socials {
  display: flex;
  gap: 16px;
}

.top-bar-socials a:hover {
  color: var(--primary-gold);
}

/* ====================================================================
   STICKY HEADER & NAVIGATION
   ==================================================================== */
.header {
  position: absolute;
  top: 41px;
  /* Height of top bar */
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header.sticky {
  position: fixed;
  top: 0;
  background-color: rgba(29, 36, 53, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-lg);
  height: 75px;
  animation: headerSlideDown 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  height: 80px;
  width: auto;
  transition: var(--transition-smooth);
}

.header.sticky .brand-logo-img {
  height: 65px;
}

.brand-text {
  font-family: var(--font-serif);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.brand-subtitle {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--primary-gold);
  margin-top: 4px;
  text-transform: uppercase;
}

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

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-gold);
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Dropdown Menu styling */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--navy-light);
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-lg);
  padding: 16px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-fast);
  border-radius: 4px;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item a {
  display: block;
  padding: 10px 24px;
  font-size: 0.85rem;
  color: var(--text-muted-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dropdown-item a:hover {
  background-color: rgba(197, 168, 92, 0.08);
  color: var(--primary-gold);
  padding-left: 28px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header .btn-primary {
  padding: 10px 20px;
  font-size: 0.8rem;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--text-light);
  cursor: pointer;
}

/* ====================================================================
   MOBILE NAVIGATION DRAWER
   ==================================================================== */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: var(--navy);
  border-left: 1px solid var(--border-dark);
  z-index: 1100;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: var(--shadow-lg);
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.close-drawer-btn {
  align-self: flex-end;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
}

.mobile-nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 24px;
}

.mobile-logo-img {
  height: 70px;
  width: auto;
  margin-bottom: 12px;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.1em;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link:hover {
  color: var(--primary-gold);
  border-color: var(--primary-gold);
}

/* ====================================================================
   HERO BANNER CAROUSEL
   ==================================================================== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background-color: var(--navy);
  overflow: hidden;
}

.hero-slider {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(29, 36, 53, 0.75) 0%,
      rgba(29, 36, 53, 0.45) 50%,
      rgba(29, 36, 53, 0.9) 100%);
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero-slide.active img {
  transform: scale(1);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
}

.hero-text-container {
  max-width: 750px;
}

.hero-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary-gold);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.hero-title {
  font-size: 4rem;
  color: var(--text-light);
  line-height: 1.15;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 1s 0.2s ease-out forwards;
}

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

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted-light);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 1s 0.4s ease-out forwards;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-btns {
  display: flex;
  gap: 16px;
  opacity: 0;
  animation: fadeInUp 1s 0.6s ease-out forwards;
}

.btn-video-explore {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

.btn-video-explore:hover {
  color: var(--primary-gold);
}

.video-play-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.8rem;
  transition: var(--transition-smooth);
}

.btn-video-explore:hover .video-play-icon {
  background-color: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--navy);
  transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====================================================================
   BOOKING AVAILABILITY FORM
   ==================================================================== */
.booking-section {
  position: relative;
  z-index: 20;
  margin-top: -50px;
  /* Pull widget up over the hero */
  padding-bottom: 50px;
}

.booking-widget {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 20px;
  align-items: end;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--border-light);
  padding-right: 20px;
  position: relative;
}

.booking-field:nth-child(4) {
  border-right: none;
}

.booking-field label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted-dark);
  font-weight: 600;
}

.booking-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.booking-input-wrap i {
  position: absolute;
  right: 0;
  color: var(--primary-gold);
  pointer-events: none;
  font-size: 1.1rem;
}

.booking-field input,
.booking-field select {
  width: 100%;
  padding: 8px 0;
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
}

.booking-field input::-webkit-calendar-picker-indicator {
  opacity: 0;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  cursor: pointer;
}

.booking-widget .btn-primary {
  width: 100%;
  padding: 16px 28px;
  white-space: nowrap;
}

/* ====================================================================
   SPECIAL OFFERS SECTION
   ==================================================================== */
.offers-section {
  padding: 50px 0 30px 0;
  background-color: var(--light-bg);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.offer-card {
  background-color: var(--navy-light);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(0deg,
      transparent,
      transparent 30%,
      rgba(200, 164, 90, 0.35));
  transform: rotate(-45deg);
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
  z-index: 5;
  pointer-events: none;
}

.offer-card:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: var(--shadow-gold), var(--shadow-lg);
  border-color: var(--primary-gold);
}

.offer-card:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}

.offer-img-box {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.offer-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

.offer-img-box .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.offer-card:hover .offer-img-box img {
  transform: scale(1.1);
}

.offer-card:hover .offer-img-box .default-img {
  opacity: 0;
}

.offer-card:hover .offer-img-box .hover-img {
  opacity: 1;
}

.offer-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--primary-gold);
  color: var(--navy);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
}

.offer-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.offer-tag {
  font-size: 0.75rem;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  font-weight: 500;
}

.offer-title {
  font-size: 1.4rem;
  color: #3f3e3c;
  margin-bottom: 12px;
}

.offer-desc {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  margin-bottom: 24px;
  flex-grow: 1;
}

.offer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--primary-gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.offer-btn i {
  transition: transform var(--transition-fast);
}

.offer-card:hover .offer-btn i {
  transform: translateX(5px);
}

/* ====================================================================
   ROOMS SHOWCASE SECTION
   ==================================================================== */
.rooms-section {
  padding: 50px 0;
  background-color: var(--light-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.rooms-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.rooms-header .section-desc {
  margin-bottom: 0;
}

.view-all-link {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.view-all-link:hover {
  border-color: var(--primary-gold);
  gap: 12px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.room-card {
  background-color: #ffffff;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-gold);
}

.room-img-wrap {
  height: 230px;
  overflow: hidden;
}

.room-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.room-card:hover .room-img-wrap img {
  transform: scale(1.08);
}

.room-info {
  padding: 24px;
}

.room-title {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.room-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: var(--text-muted-dark);
  border-bottom: 1px dashed var(--border-light);
  padding-bottom: 16px;
}

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

.room-specs i {
  color: var(--primary-gold);
}

.room-price-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.room-price {
  display: flex;
  flex-direction: column;
}

.price-val {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.price-val span {
  color: var(--primary-gold);
}

.price-lbl {
  font-size: 0.75rem;
  color: var(--text-muted-dark);
  text-transform: uppercase;
}

.room-card .btn-outline {
  padding: 10px 18px;
  font-size: 0.75rem;
}

/* ====================================================================
   AMENITIES / COMFORT SECTION
   ==================================================================== */
.amenities-section {
  padding: 50px 0;
  background-color: var(--light-bg);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.amenity-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-sm);
}

.amenity-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--light-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary-gold);
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.amenity-item:hover .amenity-icon-box {
  background-color: var(--primary-gold);
  color: var(--navy);
}

.amenity-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

/* ====================================================================
   VIRTUAL TOUR SECTION
   ==================================================================== */
.tour-section {
  padding: 80px 0;
  background-color: var(--navy);
  border-top: 1px solid var(--border-dark);
  color: var(--text-light);
}

.tour-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.tour-video-box {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  aspect-ratio: 16 / 9;
}

.tour-video-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay-play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 15, 18, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.video-overlay-play:hover {
  background-color: rgba(13, 15, 18, 0.6);
}

.play-pulse {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.5rem;
  position: relative;
  box-shadow: 0 0 0 0 rgba(197, 168, 92, 0.5);
  animation: pulse 2s infinite;
  transition: var(--transition-smooth);
}

.video-overlay-play:hover .play-pulse {
  background-color: var(--light-gold);
  transform: scale(1.1);
}

.play-pulse i {
  margin-left: 5px;
  /* Offset to center triangle */
}

.tour-video-box span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 16px;
  font-weight: 500;
  color: var(--text-muted-light);
}

.tour-info {
  padding-left: 20px;
}

.tour-info .section-title {
  color: var(--text-light);
}

.tour-info .section-desc {
  color: var(--text-muted-light);
  margin-bottom: 32px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(197, 168, 92, 0.7);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(197, 168, 92, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(197, 168, 92, 0);
  }
}

/* ====================================================================
   STATISTICS ROW
   ==================================================================== */
.stats-section {
  background-color: #08090b;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 60px 0;
  color: var(--text-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px;
  border-right: 1px solid var(--border-dark);
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  font-size: 2.2rem;
  color: var(--primary-gold);
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-light);
}

.stat-lbl {
  font-size: 0.8rem;
  color: var(--text-muted-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ====================================================================
   TESTIMONIALS & DETAILS SECTION
   ==================================================================== */
.details-section {
  padding: 100px 0;
  background-color: var(--light-bg);
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr;
  gap: 40px;
}

/* Testimonials */
.testimonial-box {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.testimonial-header {
  margin-bottom: 24px;
}

.quote-icon {
  font-size: 2.5rem;
  color: rgba(197, 168, 92, 0.2);
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial-rating {
  color: var(--primary-gold);
  font-size: 0.9rem;
  margin-top: 8px;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  height: 160px;
  margin-bottom: 24px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.testimonial-slide.active {
  opacity: 1;
}

.testimonial-text {
  font-size: 1.05rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-dark);
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-gold);
}

.client-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.client-location {
  font-size: 0.75rem;
  color: var(--text-muted-dark);
}

.testimonial-nav {
  display: flex;
  gap: 8px;
}

.test-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.test-nav-btn:hover {
  border-color: var(--primary-gold);
  background-color: var(--primary-gold);
  color: var(--navy);
}

/* Nearby Attractions */
.attractions-box {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.attractions-title {
  font-size: 1.4rem;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
}

.attractions-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.attraction-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border-light);
}

.attraction-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.attraction-img {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  object-fit: cover;
}

.attraction-details {
  flex-grow: 1;
}

.attraction-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.attraction-distance {
  font-size: 0.8rem;
  color: var(--text-muted-dark);
  margin-top: 4px;
}

/* Instagram Feed */
.instagram-box {
  display: flex;
  flex-direction: column;
}

.instagram-title {
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.insta-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 15, 18, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.insta-item:hover img {
  transform: scale(1.1);
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

.btn-instagram-follow {
  width: 100%;
  font-size: 0.8rem;
}

/* ====================================================================
   FOOTER SECTION
   ==================================================================== */
.footer {
  background-color: #08090b;
  color: var(--text-light);
  padding: 80px 0 0 0;
  border-top: 1px solid var(--border-dark);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo-img {
  height: 70px;
  width: auto;
  align-self: flex-start;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted-light);
  transition: var(--transition-fast);
}

.footer-social-icon:hover {
  background-color: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--navy);
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: var(--primary-gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted-light);
}

.footer-links a:hover {
  color: var(--primary-gold);
  padding-left: 4px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--text-muted-light);
}

.footer-contact-item i {
  color: var(--primary-gold);
  margin-top: 4px;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-input-group {
  display: flex;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--navy-light);
}

.newsletter-input-group input {
  padding: 12px 16px;
  background: transparent;
  color: var(--text-light);
  flex-grow: 1;
  font-size: 0.85rem;
}

.newsletter-submit-btn {
  background-color: var(--primary-gold);
  color: var(--navy);
  padding: 0 16px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.newsletter-submit-btn:hover {
  background-color: var(--light-gold);
}

.footer-bottom {
  padding: 24px 0;
  font-size: 0.8rem;
  color: var(--text-muted-light);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover {
  color: var(--primary-gold);
}

/* ====================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ==================================================================== */

/* Medium desktops/tablets (1200px and under) */
@media (max-width: 1200px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-box {
    grid-column: span 2;
  }
}

/* Tablets (992px and under) */
@media (max-width: 992px) {

  .nav-menu,
  .header .btn-primary {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-title {
    font-size: 3rem;
  }

  .booking-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-field {
    border-right: none;
    border-bottom: 1px dashed var(--border-light);
    padding-bottom: 16px;
    padding-right: 0;
  }

  .booking-field:nth-child(3),
  .booking-field:nth-child(4) {
    border-bottom: none;
  }

  .booking-widget .btn-primary {
    grid-column: span 2;
    margin-top: 10px;
  }

  .offers-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .tour-info {
    padding-left: 0;
    margin-top: 24px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 20px;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none;
    padding-bottom: 0;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small tablets / Mobiles (768px and under) */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .top-bar {
    display: none;
  }

  .header {
    top: 0;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .booking-section {
    margin-top: -40px;
  }

  .booking-widget {
    padding: 24px;
  }

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

  .booking-field {
    border-bottom: 1px dashed var(--border-light);
    padding-bottom: 12px;
  }

  .booking-field:nth-child(3),
  .booking-field:nth-child(4) {
    border-bottom: 1px dashed var(--border-light);
  }

  .booking-widget .btn-primary {
    grid-column: 1;
  }

  .section-title {
    font-size: 2rem;
  }

  .rooms-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .instagram-box {
    grid-column: 1;
  }

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

  .stat-item {
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 16px;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

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

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