/* =============================================
   THE SHANK RESORT - PREMIUM LUXURY CSS
   ============================================= */

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #9a7a2e;
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --dark-4: #222222;
  --white: #ffffff;
  --off-white: #f8f5ef;
  --gray-light: #e8e4dc;
  --gray: #999;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Raleway', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow: 0 20px 60px rgba(0,0,0,0.3);
  --shadow-gold: 0 10px 40px rgba(201,168,76,0.3);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

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

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

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* =============================================
   PRELOADER
   ============================================= */
#preloader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: 6px;
  text-transform: uppercase;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}
.preloader-line {
  width: 80px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-top: 20px;
  animation: preloaderLine 1.5s ease-in-out infinite;
}
@keyframes preloaderPulse { 0%,100%{opacity:0.4;} 50%{opacity:1;} }
@keyframes preloaderLine { 0%,100%{width:40px;opacity:0.3;} 50%{width:120px;opacity:1;} }

/* =============================================
   NAVBAR
   ============================================= */
.navbar-custom {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: var(--transition);
  background: #005c6b;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
  opacity: 1 !important;  /* never hidden by body fade-in */
}

.navbar-custom.scrolled {
  background: #004a57;
  padding: 10px 0;
  box-shadow: 0 3px 24px rgba(0,0,0,0.4);
}
.navbar-custom .navbar-brand {
  flex-shrink: 0;
  line-height: 0;
}
.navbar-custom .navbar-brand img {
  height: 68px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}
.navbar-custom.scrolled .navbar-brand img {
  height: 56px;
  max-width: 190px;
}

/* Mobile logo */
@media (max-width: 991.98px) {
  .navbar-custom .navbar-brand img {
    height: 52px;
    max-width: 170px;
  }
  .navbar-custom.scrolled .navbar-brand img {
    height: 46px;
    max-width: 155px;
  }
}
.nav-link-custom {
  color: #ffffff !important;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 16px !important;
  position: relative;
  transition: var(--transition);
}
.nav-link-custom::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 1px; background: var(--gold);
  transition: var(--transition);
}
.nav-link-custom:hover { color: var(--gold) !important; }
.nav-link-custom:hover::after { left: 16px; right: 16px; }
.nav-link-custom.active { color: var(--gold) !important; }
.nav-link-custom.active::after { left: 16px; right: 16px; }
/* ---- HAMBURGER: hidden on desktop (high-specificity selector beats Bootstrap) ---- */
.navbar-custom .navbar-toggler {
  display: none;
}

/* ---- HAMBURGER: visible on mobile / tablet ---- */
@media (max-width: 991.98px) {
  .navbar-custom .navbar-toggler {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--gold) !important;
    padding: 8px 11px !important;
    background: transparent !important;
    cursor: pointer;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 2px;
    transition: border-color 0.3s ease;
  }
  .navbar-custom .navbar-toggler:focus { box-shadow: none !important; }
  .navbar-custom .navbar-toggler:hover { background: rgba(201,168,76,0.1) !important; }
  #mobileMenu.open { display: block !important; }
}

/* Always hide mobile menu on desktop */
@media (min-width: 992px) {
  #mobileMenu { display: none !important; }
}

/* Pure-CSS hamburger lines — no Bootstrap SVG needed */
.navbar-toggler-icon {
  display: block !important;
  width: 22px !important;
  height: 2px !important;
  background: var(--gold) !important;
  background-image: none !important;
  position: relative;
  transition: background 0.3s ease;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s ease, top 0.3s ease;
}
.navbar-toggler-icon::before { top: -7px; }
.navbar-toggler-icon::after  { top:  7px; }

/* X state when menu is open */
.navbar-toggler.menu-open .navbar-toggler-icon { background: transparent !important; }
.navbar-toggler.menu-open .navbar-toggler-icon::before {
  top: 0; transform: rotate(45deg);
}
.navbar-toggler.menu-open .navbar-toggler-icon::after {
  top: 0; transform: rotate(-45deg);
}

/* ---- MOBILE MENU ---- */
#mobileMenu {
  display: none;
  background: #004a57;
  border-top: 1px solid rgba(255,255,255,0.12);
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  z-index: 999;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
#mobileMenu.open { display: block; }
#mobileMenu ul {
  list-style: none;
  padding: 10px 24px 20px;
  margin: 0;
}
#mobileMenu ul li {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
#mobileMenu ul li:last-child { border-bottom: none; }
#mobileMenu ul li a {
  display: block;
  padding: 13px 0;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: color 0.3s ease, padding-left 0.3s ease;
}
#mobileMenu ul li a:hover,
#mobileMenu ul li a.active { color: var(--gold); padding-left: 8px; }
#mobileMenu ul li.mobile-book a {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 4px;
  padding: 11px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark) !important;
  font-weight: 700;
  border-radius: 2px;
  letter-spacing: 2px;
  text-align: center;
}
#mobileMenu ul li.mobile-book a:hover { padding-left: 28px; }

.btn-book-nav {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark) !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  padding: 10px 24px !important;
  border-radius: 2px;
  transition: var(--transition);
}
.btn-book-nav:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--dark) !important;
}
.btn-book-nav::after { display: none !important; }

/* =============================================
   HERO SLIDER
   ============================================= */
.hero-slider { position: relative; height: 100vh; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 8s ease;
}
.hero-slide.active img { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.6) 100%);
}
.hero-content {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  text-align: center; padding: 0 20px;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}
.hero-slide.active .hero-content { opacity: 1; transform: translateY(0); }
.hero-tagline {
  font-size: 0.7rem; letter-spacing: 5px; color: var(--gold);
  text-transform: uppercase; font-weight: 600; margin-bottom: 16px;
  border-bottom: 1px solid var(--gold); display: inline-block; padding-bottom: 8px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 700; line-height: 1.1;
  color: var(--white); margin-bottom: 20px;
  text-shadow: 2px 4px 20px rgba(0,0,0,0.5);
}
.hero-title span { color: var(--gold); font-style: italic; }
.hero-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.8);
  letter-spacing: 2px; margin-bottom: 40px;
  max-width: 600px;
}
.btn-luxury {
  display: inline-block;
  padding: 16px 44px;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.btn-luxury::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}
.btn-luxury:hover { color: var(--dark); }
.btn-luxury:hover::before { transform: scaleX(1); }
.btn-luxury-fill {
  display: inline-block;
  padding: 16px 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: var(--transition);
  border: 1.5px solid var(--gold);
  border-radius: 2px;
}
.btn-luxury-fill:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.hero-controls {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer; transition: var(--transition);
}
.hero-dot.active { background: var(--gold); width: 28px; border-radius: 4px; }
.hero-arrows {
  position: absolute; top: 50%; width: 100%;
  display: flex; justify-content: space-between;
  padding: 0 20px; transform: translateY(-50%);
  z-index: 10;
}
.hero-arrow {
  width: 54px; height: 54px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  color: white; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); font-size: 1.1rem;
  border-radius: 2px;
}
.hero-arrow:hover { border-color: var(--gold); background: var(--gold); color: var(--dark); }
.hero-scroll-down {
  position: absolute; bottom: 30px; right: 40px; z-index: 10;
  writing-mode: vertical-rl;
  font-size: 0.65rem; letter-spacing: 3px; color: rgba(255,255,255,0.6);
  text-transform: uppercase; cursor: pointer;
  transition: var(--transition);
}
.hero-scroll-down::before {
  content: '';
  display: block; width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto 12px;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{height:30px;opacity:0.5;} 50%{height:60px;opacity:1;} }

/* =============================================
   SECTION COMMONS
   ============================================= */
section { padding: 100px 0; }
.section-dark { background: var(--dark-2); }
.section-darker { background: var(--dark); }
.section-label {
  display: block;
  font-size: 0.65rem; letter-spacing: 5px;
  color: var(--gold); text-transform: uppercase;
  font-weight: 600; margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; color: var(--white);
  line-height: 1.2; margin-bottom: 20px;
}
.section-title span { color: var(--gold); font-style: italic; }
.section-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  margin: 16px 0 24px;
}
.section-divider.centered { margin: 16px auto 24px; }
.section-subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 1rem; line-height: 1.8; max-width: 600px;
}

/* =============================================
   BOOKING BAR
   ============================================= */
.booking-bar {
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
  border-top: 3px solid var(--gold);
  padding: 40px 0;
  position: relative; z-index: 5;
}
.booking-bar .form-label {
  font-size: 0.65rem; letter-spacing: 2px;
  color: var(--gold); text-transform: uppercase; font-weight: 600;
  margin-bottom: 8px;
}
.booking-bar .form-control,
.booking-bar .form-select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--white);
  border-radius: 2px;
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: var(--transition);
}
.booking-bar .form-control:focus,
.booking-bar .form-select:focus {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  color: var(--white);
}
.booking-bar .form-control option,
.booking-bar .form-select option { background: var(--dark-3); color: var(--white); }
.booking-bar .form-control::placeholder { color: rgba(255,255,255,0.4); }
.btn-check-avail {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); border: none;
  padding: 14px 32px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; border-radius: 2px;
  transition: var(--transition); width: 100%;
  cursor: pointer;
}
.btn-check-avail:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* =============================================
   WELCOME SECTION
   ============================================= */
.welcome-section { padding: 110px 0; background: var(--dark-2); }
.welcome-image-wrap {
  position: relative;
  padding-bottom: 30px; padding-right: 30px;
}
.welcome-image-main {
  width: 100%; height: 520px;
  object-fit: cover; border-radius: 2px;
  position: relative; z-index: 2;
}
.welcome-image-accent {
  position: absolute; bottom: 0; right: 0;
  width: 55%; height: 200px;
  object-fit: cover; z-index: 3;
  border: 4px solid var(--dark-2);
  border-radius: 2px;
}
.welcome-gold-line {
  position: absolute; top: 30px; left: -20px;
  width: 3px; height: 80%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  z-index: 1;
}
.welcome-badge {
  position: absolute; top: -20px; right: -10px;
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 4; text-align: center;
  box-shadow: var(--shadow-gold);
  animation: rotateBadge 8s linear infinite;
}
@keyframes rotateBadge { 0%{transform:rotate(0);} 100%{transform:rotate(360deg);} }
.welcome-badge span { font-size: 1.6rem; font-weight: 800; color: var(--dark); line-height: 1; }
.welcome-badge small { font-size: 0.5rem; letter-spacing: 1.5px; color: var(--dark); text-transform: uppercase; font-weight: 700; }
.welcome-features { margin-top: 32px; display: flex; gap: 24px; flex-wrap: wrap; }
.welcome-feature { display: flex; align-items: center; gap: 12px; }
.welcome-feature-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem; flex-shrink: 0;
}
.welcome-feature-text { font-size: 0.82rem; color: rgba(255,255,255,0.7); letter-spacing: 0.5px; }

/* =============================================
   ROOMS SECTION
   ============================================= */
.room-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.12);
  overflow: hidden; border-radius: 2px;
  transition: var(--transition);
  height: 100%;
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
  border-color: rgba(201,168,76,0.4);
}
.room-card-img {
  position: relative; overflow: hidden;
  height: 250px;
}
.room-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.1); }
.room-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  opacity: 0; transition: var(--transition);
}
.room-card:hover .room-card-overlay { opacity: 1; }
.room-card-price {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); padding: 6px 14px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1px;
  border-radius: 2px;
}
.room-card-body { padding: 26px; }
.room-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.room-card-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem; line-height: 1.7;
  margin-bottom: 18px;
}
.room-amenities { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.room-amenity {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.72rem; color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
}
.room-amenity i { color: var(--gold); font-size: 0.85rem; }
.room-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 26px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.room-price-tag { font-family: var(--font-heading); }
.room-price-tag .amount { font-size: 1.6rem; color: var(--gold); font-weight: 700; }
.room-price-tag .per { font-size: 0.7rem; color: rgba(255,255,255,0.45); letter-spacing: 1px; }
.btn-view-room {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 22px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition); border-radius: 2px;
}
.btn-view-room:hover {
  background: var(--gold); color: var(--dark);
  transform: translateY(-2px);
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us-section {
  background: var(--dark);
  position: relative; overflow: hidden;
}
.why-us-bg {
  position: absolute; inset: 0;
  background-image: url('../images/slider1.jpg');
  background-size: cover; background-position: center;
  opacity: 0.07;
}
.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  backdrop-filter: blur(10px);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  border-radius: 4px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), transparent);
  opacity: 0; transition: var(--transition);
}
.why-card:hover { transform: translateY(-8px); border-color: var(--gold); }
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.6rem; color: var(--gold);
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); transform: scale(1.1) rotate(5deg);
}
.why-title {
  font-family: var(--font-heading);
  font-size: 1.1rem; color: var(--white); margin-bottom: 12px;
}
.why-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* =============================================
   AMENITIES
   ============================================= */
.amenities-section { background: var(--dark-3); }
.amenity-card {
  text-align: center; padding: 32px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 4px;
  transition: var(--transition); height: 100%;
}
.amenity-card:hover {
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
  border-color: var(--gold); transform: translateY(-6px);
}
.amenity-icon {
  font-size: 2.2rem; color: var(--gold);
  margin-bottom: 16px; display: block;
  transition: var(--transition);
}
.amenity-card:hover .amenity-icon { transform: scale(1.2); }
.amenity-name {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

/* =============================================
   STATS COUNTER
   ============================================= */
.stats-section {
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 70px 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem; font-weight: 800;
  color: var(--gold); line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.7rem; letter-spacing: 3px;
  color: rgba(255,255,255,0.5); text-transform: uppercase; font-weight: 600;
}
.stat-divider {
  width: 1px; background: rgba(201,168,76,0.3);
  height: 60px; margin: auto;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { background: var(--dark-2); }
.testimonial-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 40px 36px;
  border-radius: 4px;
  position: relative;
  transition: var(--transition);
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 8rem; line-height: 1;
  color: rgba(201,168,76,0.08);
  position: absolute; top: 10px; left: 24px;
  font-style: italic;
}
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; }
.testimonial-text {
  font-style: italic;
  color: rgba(255,255,255,0.75); line-height: 1.9;
  margin-bottom: 28px; font-size: 0.95rem;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid var(--gold); object-fit: cover; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--dark-4));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.2rem;
  color: var(--gold);
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--white); }
.testimonial-location { font-size: 0.75rem; color: rgba(255,255,255,0.45); letter-spacing: 1px; }
.testimonial-nav { display: flex; gap: 10px; justify-content: center; margin-top: 30px; }
.testimonial-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: transparent; border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold); cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.testimonial-btn:hover { background: var(--gold); color: var(--dark); }

/* =============================================
   GALLERY
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 8px;
}
.gallery-item {
  position: relative; overflow: hidden;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { font-size: 2rem; color: var(--gold); }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.95); z-index: 9999;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 2px; }
.lightbox-close {
  position: absolute; top: 20px; right: 30px;
  font-size: 2rem; color: var(--white); cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { color: var(--gold); transform: rotate(90deg); }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  position: relative; overflow: hidden;
  padding: 140px 0; text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background-image: url('../images/slider2.jpg');
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.82), rgba(0,0,0,0.65));
}
.cta-content { position: relative; z-index: 2; }
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700; color: var(--white);
  margin-bottom: 20px;
}
.cta-title span { color: var(--gold); font-style: italic; }
.cta-subtitle { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 40px; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 80px 0 0;
}
.footer-logo img { height: 70px; margin-bottom: 20px; }
.footer-about {
  color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.8;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social-link:hover {
  background: var(--gold); color: var(--dark);
  border-color: var(--gold); transform: translateY(-3px);
}
.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem; color: var(--white);
  margin-bottom: 24px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  position: relative;
}
.footer-heading::after {
  content: '';
  position: absolute; bottom: -1px; left: 0;
  width: 40px; height: 2px; background: var(--gold);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55); font-size: 0.88rem;
  transition: var(--transition); display: flex; align-items: center; gap: 8px;
}
.footer-links a::before { content: '→'; color: var(--gold); font-size: 0.75rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact-item {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 16px;
}
.footer-contact-icon {
  color: var(--gold); font-size: 0.9rem;
  margin-top: 3px; flex-shrink: 0;
}
.footer-contact-text { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.6; }
.footer-newsletter .input-group input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--white); padding: 12px 16px; border-radius: 2px 0 0 2px;
  font-size: 0.85rem;
}
.footer-newsletter .input-group input:focus {
  background: rgba(201,168,76,0.08); border-color: var(--gold);
  box-shadow: none; color: var(--white);
}
.footer-newsletter .input-group input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter .btn-subscribe {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); border: none; padding: 12px 20px;
  font-size: 0.8rem; font-weight: 700; cursor: pointer;
  transition: var(--transition); border-radius: 0 2px 2px 0;
}
.footer-newsletter .btn-subscribe:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0; margin-top: 60px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.footer-copy span { color: var(--gold); }

/* =============================================
   FLOATING ELEMENTS
   ============================================= */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.6rem;
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
  cursor: pointer; transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.12) translateY(-3px); color: white; }
.whatsapp-float::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: whatsappPulse 2s ease-in-out infinite;
}
@keyframes whatsappPulse { 0%,100%{transform:scale(1);opacity:0.6;} 50%{transform:scale(1.3);opacity:0;} }

.scroll-top {
  position: fixed; bottom: 100px; right: 30px; z-index: 998;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); font-size: 1rem;
  cursor: pointer; transition: var(--transition);
  opacity: 0; visibility: hidden;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.page-hero {
  height: 55vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.7) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700; color: var(--white);
  margin-bottom: 16px;
}
.page-hero-title span { color: var(--gold); font-style: italic; }
.breadcrumb-luxury { display: flex; align-items: center; justify-content: center; gap: 10px; }
.breadcrumb-luxury a { color: var(--gold); font-size: 0.8rem; letter-spacing: 1px; }
.breadcrumb-luxury span { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

.timeline { position: relative; padding: 20px 0; }
.timeline::before {
  content: '';
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: rgba(201,168,76,0.3);
  transform: translateX(-50%);
}
.timeline-item { display: flex; margin-bottom: 50px; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-content {
  width: 45%; padding: 28px;
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  position: relative;
}
.timeline-item:nth-child(odd) .timeline-content { margin-right: 5%; }
.timeline-item:nth-child(even) .timeline-content { margin-left: 5%; }
.timeline-year {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); padding: 4px 14px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 2px;
  border-radius: 2px; margin-bottom: 12px;
}
.timeline-dot {
  position: absolute; top: 30px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--dark);
  box-shadow: 0 0 0 3px var(--gold-dark);
}
.timeline-item:nth-child(odd) .timeline-dot { right: -7%; }
.timeline-item:nth-child(even) .timeline-dot { left: -7%; }

/* =============================================
   ROOM DETAIL PAGE
   ============================================= */
.room-hero { height: 70vh; }
.room-gallery-slider { position: relative; }
.room-gallery-main {
  height: 500px; position: relative; overflow: hidden;
  border-radius: 4px;
}
.room-gallery-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.5s ease;
}
.room-thumb-strip {
  display: flex; gap: 8px; margin-top: 10px;
  overflow-x: auto;
}
.room-thumb {
  width: 80px; height: 60px; flex-shrink: 0;
  border-radius: 2px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer;
  transition: var(--transition);
}
.room-thumb.active { border-color: var(--gold); }
.room-thumb img { width: 100%; height: 100%; object-fit: cover; }
.room-detail-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 36px; border-radius: 4px;
}
.room-spec { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.room-spec-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem; flex-shrink: 0;
}
.room-spec-info label { font-size: 0.65rem; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }
.room-spec-info span { display: block; font-size: 0.9rem; color: var(--white); }
.amenity-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 8px 14px; border-radius: 2px;
  font-size: 0.8rem; color: rgba(255,255,255,0.75);
  margin: 4px; transition: var(--transition);
}
.amenity-badge i { color: var(--gold); font-size: 0.9rem; }
.amenity-badge:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }
.booking-form-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 36px; border-radius: 4px;
  position: sticky; top: 100px;
}
.booking-form-card .form-control,
.booking-form-card .form-select,
.booking-form-card textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--white); padding: 13px 16px;
  border-radius: 2px; font-size: 0.9rem;
  transition: var(--transition); resize: none;
}
.booking-form-card .form-control:focus,
.booking-form-card .form-select:focus,
.booking-form-card textarea:focus {
  background: rgba(201,168,76,0.07);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
  color: var(--white);
}
.booking-form-card .form-control option,
.booking-form-card .form-select option { background: var(--dark-3); }
.booking-form-card .form-control::placeholder,
.booking-form-card textarea::placeholder { color: rgba(255,255,255,0.35); }
.booking-form-card .form-label {
  font-size: 0.68rem; letter-spacing: 1.5px; color: var(--gold);
  text-transform: uppercase; font-weight: 600; margin-bottom: 6px;
}
.btn-book-now {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); border: none; width: 100%;
  padding: 15px; font-size: 0.8rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; border-radius: 2px; cursor: pointer;
  transition: var(--transition);
}
.btn-book-now:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px); box-shadow: var(--shadow-gold);
}

/* =============================================
   BOOKING SUCCESS MODAL
   ============================================= */
.booking-modal {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.9); z-index: 10000;
  align-items: center; justify-content: center;
}
.booking-modal.open { display: flex; }
.booking-modal-box {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 60px 50px; text-align: center;
  border-radius: 4px; max-width: 480px; width: 90%;
  animation: modalSlideIn 0.5s ease;
}
@keyframes modalSlideIn { from{transform:translateY(40px);opacity:0;} to{transform:translateY(0);opacity:1;} }
.booking-modal-icon { font-size: 4rem; color: var(--gold); margin-bottom: 20px; }
.booking-modal-title { font-family: var(--font-heading); font-size: 2rem; color: var(--white); margin-bottom: 12px; }
.booking-modal-text { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.7; margin-bottom: 30px; }
.booking-modal-ref { color: var(--gold); font-size: 1rem; font-weight: 700; letter-spacing: 3px; margin-bottom: 30px; }
.booking-modal-close {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); border: none; padding: 13px 36px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; border-radius: 2px; cursor: pointer;
}

/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-filter { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 9px 24px;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.3);
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; border-radius: 2px; cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold); color: var(--dark); border-color: var(--gold);
}
.masonry-grid {
  columns: 3; column-gap: 12px;
}
.masonry-item {
  break-inside: avoid; margin-bottom: 12px;
  position: relative; overflow: hidden;
  cursor: pointer; border-radius: 2px;
}
.masonry-item img { width: 100%; display: block; transition: transform 0.6s ease; }
.masonry-item:hover img { transform: scale(1.07); }
.masonry-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay i { color: var(--gold); font-size: 2.2rem; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 36px 28px; border-radius: 4px; text-align: center;
  transition: var(--transition); height: 100%;
}
.contact-card:hover { border-color: var(--gold); transform: translateY(-6px); }
.contact-card-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.6rem; color: var(--gold);
}
.contact-form-wrap {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 50px; border-radius: 4px;
}
.contact-form-wrap .form-control,
.contact-form-wrap .form-select,
.contact-form-wrap textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--white); padding: 14px 18px;
  border-radius: 2px; font-size: 0.9rem;
  transition: var(--transition); resize: none;
}
.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus,
.contact-form-wrap textarea:focus {
  background: rgba(201,168,76,0.07); border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1); color: var(--white);
}
.contact-form-wrap .form-label {
  font-size: 0.68rem; letter-spacing: 1.5px;
  color: var(--gold); text-transform: uppercase; font-weight: 600; margin-bottom: 6px;
}
.contact-form-wrap .form-control::placeholder,
.contact-form-wrap textarea::placeholder { color: rgba(255,255,255,0.35); }
.map-wrap { border-radius: 4px; overflow: hidden; border: 1px solid rgba(201,168,76,0.15); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
  section { padding: 70px 0; }
  .timeline::before { left: 20px; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; }
  .timeline-content, .timeline-item:nth-child(even) .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content { width: 100%; margin: 0 0 0 50px; }
  .timeline-dot, .timeline-item:nth-child(even) .timeline-dot,
  .timeline-item:nth-child(odd) .timeline-dot { left: -30px; top: 20px; }
  .masonry-grid { columns: 2; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .contact-form-wrap { padding: 32px; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.2rem; }
  .hero-arrows { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 2; }
  .cta-bg { background-attachment: scroll; }
  .masonry-grid { columns: 1; }
  .booking-form-card { position: static; }
  .room-gallery-main { height: 280px; }
  .welcome-image-main { height: 320px; }
  .welcome-badge { width: 70px; height: 70px; }
  .welcome-badge span { font-size: 1.1rem; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 1.8rem; }
  .btn-luxury, .btn-luxury-fill { padding: 13px 28px; font-size: 0.68rem; }
  .stat-number { font-size: 2.5rem; }
  .stat-divider { display: none; }
  .room-detail-card { padding: 24px; }
  .booking-form-card { padding: 24px; }
  .booking-modal-box { padding: 40px 24px; }
  .hero-controls { bottom: 20px; }
}
