/* ============================================================
   MOUNT VIEW CASTLE - Main Stylesheet
   Corporate Colors: Deep Forest Green #1a3c2e, Gold #c9a84c, 
   Ivory #f8f4ed, Charcoal #2c2c2c
   ============================================================ */

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

/* ---- CSS Variables ---- */
:root {
  --primary: #1a3c2e;
  --primary-dark: #0f2419;
  --primary-light: #2d5c46;
  --gold: #c9a84c;
  --gold-light: #e2c87a;
  --gold-dark: #a07c30;
  --ivory: #f8f4ed;
  --ivory-dark: #ede8dc;
  --charcoal: #2c2c2c;
  --gray: #6b7280;
  --light-gray: #f1f1f1;
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --font-accent: 'Playfair Display', serif;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 4px;
  --radius-lg: 12px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }
p { margin-bottom: 1rem; }

/* ---- Utility Classes ---- */
.container { max-width: 1260px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }
.bg-primary { background: var(--primary); }
.bg-ivory { background: var(--ivory); }
.bg-dark { background: var(--primary-dark); }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.hidden { display: none !important; }

/* ---- Section Header ---- */
.section-header { margin-bottom: 56px; }
.section-header .tag-line {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header h2 { color: var(--primary); margin-bottom: 16px; }
.section-header h2.light { color: var(--ivory); }
.section-header p { font-size: 1.05rem; color: var(--gray); max-width: 620px; }
.section-header p.light { color: rgba(255,255,255,0.75); }
.divider-gold {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 16px 0 24px;
  border-radius: 2px;
}
.section-header.text-center .divider-gold { margin: 16px auto 24px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn:hover::before { transform: translateX(0); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
  color: var(--white);
}
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  color: var(--white);
}
.btn-sm { padding: 10px 24px; font-size: 0.78rem; }
.btn-lg { padding: 18px 48px; font-size: 0.95rem; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--transition);
}
.top-bar {
  background: var(--primary-dark);
  padding: 8px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; gap: 24px; align-items: center; }
.top-bar-right { display: flex; gap: 16px; align-items: center; }
.top-bar a:hover { color: var(--gold); }
.top-bar i { margin-right: 6px; color: var(--gold); }
.top-bar .social-links { display: flex; gap: 12px; }
.top-bar .social-links a {
  width: 28px; height: 28px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.top-bar .social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.main-nav {
  background: rgba(26, 60, 46, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 0;
}
.main-nav .container { display: flex; align-items: center; justify-content: space-between; }
.logo {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0; text-decoration: none;
}
.logo-icon {
  width: 52px; height: 52px; flex-shrink: 0;
}
.logo-text .brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  display: block;
  letter-spacing: 0.05em;
}
.logo-text .brand-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: block;
}

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 24px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
}
.nav-links > li > a::after {
  content: '';
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--gold);
}
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { width: calc(100% - 28px); }

.nav-book-btn {
  margin-left: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius);
  font-size: 0.78rem !important;
}
.nav-book-btn::after { display: none !important; }
.nav-book-btn:hover { color: var(--white) !important; opacity: 0.9; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px; padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Scrolled header */
#header.scrolled .main-nav {
  background: rgba(15, 36, 25, 0.98);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   HERO / SLIDER
   ============================================================ */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  overflow: hidden;
}
.hero-slider { width: 100%; height: 100%; position: relative; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease;
  transform: scale(1.04);
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 36, 25, 0.75) 0%,
    rgba(15, 36, 25, 0.45) 50%,
    rgba(15, 36, 25, 0.3) 100%
  );
}
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-content {
  position: absolute; inset: 0; z-index: 10;
  display: flex; align-items: center;
}
.hero-content .container { padding-top: 100px; }
.hero-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  display: inline-block;
  animation: fadeInUp 0.8s ease forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-title .gold-text { color: var(--gold); font-style: italic; }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin-bottom: 36px;
  font-weight: 300;
  animation: fadeInUp 0.8s 0.4s ease both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.6s ease both;
}
.hero-stats {
  position: absolute; bottom: 48px; right: 0; z-index: 10;
  display: flex; gap: 0;
}
.hero-stat-item {
  background: rgba(26,60,46,0.85);
  backdrop-filter: blur(10px);
  border-top: 3px solid var(--gold);
  padding: 20px 32px;
  text-align: center;
  animation: fadeInUp 0.8s 0.8s ease both;
}
.hero-stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.hero-stat-item .stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-top: 4px;
}

/* Slider Controls */
.slider-controls {
  position: absolute; bottom: 56px; left: 50%; transform: translateX(-50%);
  z-index: 20; display: flex; gap: 8px; align-items: center;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer; transition: var(--transition);
  border: none;
}
.slider-dot.active {
  background: var(--gold);
  width: 28px; border-radius: 4px;
}
.slider-arrows {
  position: absolute; top: 50%; z-index: 20;
  width: 100%; display: flex; justify-content: space-between; padding: 0 24px;
  transform: translateY(-50%); pointer-events: none;
}
.slider-arrow {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; pointer-events: all;
  transition: var(--transition);
}
.slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.1);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 48px; z-index: 20;
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}
.scroll-line {
  width: 40px; height: 1px; background: rgba(255,255,255,0.3);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute; left: -100%; top: 0;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollLine 2s linear infinite;
}
@keyframes scrollLine { to { left: 200%; } }

/* ============================================================
   QUICK BOOKING BAR
   ============================================================ */
.booking-bar {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 100;
  margin-top: -1px;
}
.booking-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 0;
  background: var(--white);
}
.booking-field {
  padding: 20px 24px;
  border-right: 1px solid var(--ivory-dark);
  position: relative;
}
.booking-field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}
.booking-field .field-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}
.booking-field input, .booking-field select {
  width: 100%;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  border: none; outline: none; background: transparent;
  cursor: pointer;
}
.booking-field select { appearance: none; }
.booking-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 20px 40px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none; cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
}
.booking-btn:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 560px;
}
.about-img-main {
  position: absolute;
  width: 78%; height: 85%;
  top: 0; left: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-secondary {
  position: absolute;
  width: 52%; height: 48%;
  bottom: 0; right: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
}
.about-img-main img, .about-img-secondary img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-main:hover img, .about-img-secondary:hover img { transform: scale(1.05); }
.about-badge {
  position: absolute;
  bottom: 120px; right: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 10;
}
.about-badge .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.about-badge .label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 32px;
}
.about-feature-item {
  display: flex; align-items: flex-start; gap: 12px;
}
.about-feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.9rem;
}
.about-feature-item h5 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--primary);
}
.about-feature-item p { font-size: 0.82rem; color: var(--gray); margin: 0; }

/* ============================================================
   FACILITIES SECTION
   ============================================================ */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.facility-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  position: relative;
}
.facility-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.facility-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.facility-card:hover::before { transform: scaleX(1); }
.facility-img {
  height: 220px; overflow: hidden;
}
.facility-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.facility-card:hover .facility-img img { transform: scale(1.08); }
.facility-body { padding: 28px; }
.facility-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.3rem;
  margin-bottom: 16px;
}
.facility-body h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.facility-body p { font-size: 0.9rem; color: var(--gray); margin: 0; }

/* ============================================================
   ROOMS SECTION
   ============================================================ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}
.room-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.room-img {
  position: relative;
  height: 260px; overflow: hidden;
}
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.room-card:hover .room-img img { transform: scale(1.06); }
.room-badge {
  position: absolute; top: 16px; left: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.room-body { padding: 28px; }
.room-body h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.room-body p { font-size: 0.88rem; color: var(--gray); margin-bottom: 16px; }
.room-amenities {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px;
}
.room-amenity {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.78rem;
  color: var(--gray);
  background: var(--ivory);
  padding: 4px 10px;
  border-radius: 50px;
}
.room-amenity i { color: var(--gold); font-size: 0.7rem; }
.room-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--ivory-dark);
}
.room-price .from { font-size: 0.72rem; color: var(--gray); display: block; }
.room-price .amount {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.room-price .per { font-size: 0.75rem; color: var(--gray); }

/* ============================================================
   OFFERS SECTION
   ============================================================ */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.offer-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 380px;
  cursor: pointer;
}
.offer-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.offer-card:hover img { transform: scale(1.08); }
.offer-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,36,25,0.9) 100%);
}
.offer-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px;
  z-index: 2;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}
.offer-card:hover .offer-content { transform: translateY(0); }
.offer-tag {
  background: var(--gold);
  color: var(--white);
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 8px;
}
.offer-content h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 4px;
}
.offer-content p { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--primary); }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.5s ease; }
.testimonial-item {
  min-width: 100%;
  padding: 0 80px;
}
.testimonial-content {
  max-width: 800px; margin: 0 auto; text-align: center;
}
.quote-icon {
  font-size: 4rem;
  color: rgba(201,168,76,0.3);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 32px;
}
.testimonial-author {
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.author-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid var(--gold);
  overflow: hidden;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info h5 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  text-align: left;
}
.author-info span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.stars { color: var(--gold); font-size: 0.85rem; margin-top: 3px; }
.testimonial-nav {
  display: flex; justify-content: center; gap: 8px; margin-top: 48px;
}
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer; border: none;
  transition: var(--transition);
}
.testi-dot.active { background: var(--gold); transform: scale(1.3); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 220px);
  gap: 12px;
}
.gallery-item {
  overflow: hidden; border-radius: var(--radius); position: relative; cursor: pointer;
}
.gallery-item.span-2 { grid-column: span 2; }
.gallery-item.span-row-2 { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(26,60,46,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--gold); font-size: 2rem; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--gold); }

/* ============================================================
   CONTACT / ENQUIRY FORMS
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start;
}
.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--white);
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-info-card p { color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-item:last-child { border-bottom: none; margin-bottom: 0; }
.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.95rem;
}
.contact-item-text h6 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.contact-item-text p { color: rgba(255,255,255,0.9); font-size: 0.9rem; margin: 0; }
.contact-item-text a { color: rgba(255,255,255,0.9); }
.contact-item-text a:hover { color: var(--gold); }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-group label .req { color: var(--gold); }
.form-control {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--ivory-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
textarea.form-control { resize: vertical; min-height: 120px; }
.form-control::placeholder { color: #bbb; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  position: relative; overflow: hidden;
  padding: 80px 0;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.05'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-content h2 span { color: var(--gold); font-style: italic; }
.cta-content p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 540px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.page-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
  margin-top: 0;
}
.page-banner img {
  width: 100%; height: 100%; object-fit: cover;
}
.page-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,36,25,0.8), rgba(15,36,25,0.5));
}
.page-banner-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: flex-end; padding-bottom: 56px;
}
.page-banner-content .container { padding-top: 140px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.page-banner-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
}
.page-banner-content .page-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-top: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0a1e12;
  color: rgba(255,255,255,0.7);
}
.footer-main {
  padding: 80px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-brand .logo { padding: 0; margin-bottom: 20px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.footer-links a::before {
  content: '';
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); opacity: 0.5;
  flex-shrink: 0; transition: opacity 0.3s ease;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex; gap: 12px; margin-bottom: 16px;
  font-size: 0.88rem;
}
.footer-contact-item i { color: var(--gold); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom a { color: var(--gold); }
.footer-bottom .footer-policies {
  display: flex; gap: 20px;
}
.footer-bottom .footer-policies a {
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}
.footer-bottom .footer-policies a:hover { color: var(--gold); }

/* Back to top */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white); border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(20px);
  transition: var(--transition); pointer-events: none;
}
.back-to-top.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { transform: translateY(-4px); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================================
   CAREER PAGE
   ============================================================ */
.career-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.job-card {
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.job-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
}
.job-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.job-type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.job-card h4 { font-family: var(--font-display); font-size: 1.3rem; color: var(--primary); margin-bottom: 8px; }
.job-card p { font-size: 0.87rem; color: var(--gray); margin-bottom: 16px; }
.job-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.job-meta span {
  font-size: 0.78rem; color: var(--gray);
  display: flex; align-items: center; gap: 5px;
}
.job-meta i { color: var(--gold); font-size: 0.8rem; }

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 400px; }
  .about-badge { right: 0; }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .top-bar { display: none; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--primary-dark);
    flex-direction: column; align-items: flex-start;
    padding: 80px 28px 28px;
    gap: 0;
    transition: right 0.4s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .nav-links > li { width: 100%; }
  .nav-links > li > a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.95rem;
  }
  .nav-links > li > a::after { display: none; }
  .nav-book-btn { margin-left: 0; margin-top: 12px; }
  .hero-content .container { padding-top: 80px; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-stats { position: static; flex-direction: row; margin-top: 32px; }
  .hero-stat-item { padding: 14px 20px; }
  .booking-bar-inner { grid-template-columns: 1fr 1fr; gap: 0; }
  .booking-field:nth-child(3), .booking-field:nth-child(4) { border-top: 1px solid var(--ivory-dark); }
  .booking-btn { grid-column: span 2; }
  .facilities-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item.span-2, .gallery-item.span-row-2 { grid-column: span 1; grid-row: span 1; }
  .gallery-item { height: 180px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .testimonial-item { padding: 0 24px; }
  .hero-stats { display: none; }
  .scroll-indicator { display: none; }
  .career-grid { grid-template-columns: 1fr; }
  .slider-arrow { width: 40px; height: 40px; font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .booking-bar-inner { grid-template-columns: 1fr; }
  .booking-field { border-right: none; border-bottom: 1px solid var(--ivory-dark); }
  .booking-btn { grid-column: span 1; }
  .cta-actions { flex-direction: column; align-items: center; }
  .page-banner { height: 300px; }
}
