/* ======================================
   F&D APARTMENTS — COMPLETE STYLESHEET
   Fort Portal City, Uganda
   Color palette:
   - Gold     #c8922a (brand)
   - Cream    #f9f5ef (background)
   - Charcoal #1e1e1e (text/furniture)
   - Teal     #7aada0 (accent)
====================================== */

:root {
  --gold:      #c8922a;
  --gold-lt:   #e8b84b;
  --gold-dk:   #9e701e;
  --gold-pale: #f5e6c8;
  --cream:     #f9f5ef;
  --cream-dk:  #f0e9de;
  --charcoal:  #1e1e1e;
  --dark:      #111111;
  --mid:       #5a5a5a;
  --light-txt: #8a8a8a;
  --teal:      #7aada0;
  --white:     #ffffff;
  --shadow:    0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 56px rgba(0,0,0,0.18);
  --radius:    14px;
  --radius-sm: 8px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

/* ===== SECTION HEADER ===== */
.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  margin: 12px 0 16px;
  line-height: 1.2;
}
.section-head h2 em { font-style: italic; color: var(--gold); }
.section-head p { color: var(--mid); max-width: 560px; margin: 0 auto; line-height: 1.8; }
.section-head.light h2 { color: var(--white); }
.section-head.light p { color: rgba(255,255,255,0.75); }

.tag {
  display: inline-block;
  background: var(--cream-dk);
  color: var(--gold-dk);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(200,146,42,0.3);
}
.tag.light {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--white);
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.95rem;
  border: 2px solid var(--gold);
  transition: var(--transition);
}
.btn-primary:hover { background: var(--gold-dk); border-color: var(--gold-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,146,42,0.4); }
.btn-primary.full { width: 100%; justify-content: center; padding: 16px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.75);
  transition: var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--charcoal);
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.9rem;
  border: 2px solid var(--charcoal);
  transition: var(--transition);
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: var(--white);
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.9rem;
  border: 2px solid #25D366;
  transition: var(--transition);
}
.btn-whatsapp:hover { background: #1da851; border-color: #1da851; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.3); }

.btn-sm {
  display: inline-block;
  background: var(--charcoal); color: var(--white);
  padding: 10px 22px; border-radius: 7px;
  font-weight: 600; font-size: 0.85rem;
  border: 2px solid var(--charcoal);
  transition: var(--transition);
}
.btn-sm:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-1px); }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.7s ease, visibility 0.7s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-inner { text-align: center; }
.pre-logo {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 28px;
}
.pre-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; color: var(--gold); letter-spacing: 0.1em;
}
.pre-bar {
  width: 200px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px; overflow: hidden;
}
.pre-fill {
  height: 100%; width: 0%;
  background: var(--gold);
  animation: preload 1.8s ease forwards;
}
@keyframes preload { to { width: 100%; } }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 2px 28px rgba(0,0,0,0.09);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  color: var(--white); transition: color 0.4s;
  text-decoration: none;
}
#navbar.scrolled .nav-logo { color: var(--charcoal); }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; letter-spacing: 0.05em;
}
.logo-sub {
  font-size: 0.52rem; letter-spacing: 0.22em;
  text-transform: uppercase; opacity: 0.7;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: rgba(255,255,255,0.85); font-size: 0.875rem;
  font-weight: 500; padding: 8px 12px; border-radius: 6px;
  transition: var(--transition); white-space: nowrap;
}
#navbar.scrolled .nav-links a { color: var(--mid); }
.nav-links a:hover, .nav-links a.active { color: var(--gold) !important; }
.nav-links .nav-cta {
  background: var(--gold); color: var(--white) !important;
  padding: 10px 20px; border-radius: 7px; font-weight: 600;
  margin-left: 8px;
}
.nav-links .nav-cta:hover { background: var(--gold-dk) !important; box-shadow: 0 4px 16px rgba(200,146,42,0.4); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
#navbar.scrolled .hamburger span { background: var(--charcoal); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17,17,17,0.65) 0%,
    rgba(17,17,17,0.35) 60%,
    rgba(17,17,17,0.55) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
  padding: 0 24px; max-width: 820px;
  animation: heroFadeIn 1.2s ease 0.4s both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-block;
  background: rgba(200,146,42,0.25);
  border: 1px solid rgba(200,146,42,0.55);
  color: var(--gold-lt);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 20px; border-radius: 100px;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 20px; letter-spacing: -0.01em;
}
.hero-content h1 em { font-style: italic; color: var(--gold-lt); }
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7; opacity: 0.9;
  max-width: 580px; margin: 0 auto 32px;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.hero-price-tag {
  display: inline-flex; align-items: baseline; gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 10px 24px; border-radius: 100px;
}
.hpt-from { font-size: 0.8rem; opacity: 0.8; }
.hpt-amount { font-size: 1.15rem; font-weight: 700; color: var(--gold-lt); }
.hpt-per { font-size: 0.8rem; opacity: 0.8; }
.hero-dots {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 3;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: var(--transition); cursor: pointer;
  border: none; padding: 0;
}
.dot.active { background: var(--gold); width: 28px; border-radius: 4px; }
.hero-scroll {
  position: absolute; bottom: 36px; right: 36px; z-index: 3;
  color: rgba(255,255,255,0.6); font-size: 1rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===== STATS BAR ===== */
.stats-bar { background: var(--charcoal); padding: 22px 0; }
.stats-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 12px;
}
.stat-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.85); font-size: 0.88rem;
  padding: 6px 16px;
}
.stat-item i { color: var(--gold); font-size: 1rem; }
.stat-item strong { color: var(--gold-lt); }
.stat-divider {
  width: 1px; height: 28px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.about-imgs { position: relative; }
.about-img-main {
  width: 100%; height: 480px;
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute; bottom: -40px; right: -30px;
  width: 200px; height: 200px;
  border-radius: 16px; overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute; top: 30px; left: -20px;
  background: var(--gold);
  color: var(--white); text-align: center;
  padding: 18px 22px; border-radius: 14px;
  box-shadow: 0 8px 28px rgba(200,146,42,0.4);
}
.about-badge i { font-size: 1.3rem; display: block; margin-bottom: 8px; }
.about-badge span { font-size: 0.8rem; font-weight: 600; line-height: 1.3; }
.about-text { padding-left: 10px; }
.about-text .tag { margin-bottom: 16px; }
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 20px; line-height: 1.2;
}
.about-text h2 em { font-style: italic; color: var(--gold); }
.about-text p { color: var(--mid); line-height: 1.8; margin-bottom: 16px; }
.about-list { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.about-list li {
  display: flex; align-items: center; gap: 12px;
  font-weight: 500; color: var(--charcoal);
}
.about-list li i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.about-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== APARTMENTS ===== */
.apartments { background: var(--white); }
.apt-showcase {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
  align-items: start;
}
.apt-main-img {
  width: 100%; height: 400px;
  border-radius: 16px; overflow: hidden;
  position: relative; box-shadow: var(--shadow-lg);
  margin-bottom: 16px;
}
.apt-main-img img {
  transition: all 0.5s ease;
  width: 100%; height: 100%; object-fit: cover;
}
.apt-img-nav {
  position: absolute; bottom: 16px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  background: rgba(17,17,17,0.5);
  backdrop-filter: blur(8px);
  padding: 8px 12px; border-radius: 30px;
}
.ain-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.8rem; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.ain-btn:hover, .ain-btn.active {
  background: var(--gold); color: var(--white);
  border-color: var(--gold);
}
.apt-thumb-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.apt-thumb {
  border-radius: 10px; overflow: hidden;
  height: 90px; position: relative; cursor: pointer;
}
.apt-thumb:hover img { transform: scale(1.08); }
.apt-thumb img { transition: transform 0.4s ease; }
.apt-thumb span {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: var(--white); font-size: 0.62rem; font-weight: 600;
  padding: 8px 6px 4px; text-align: center;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.apt-showcase-info { padding-top: 8px; }
.apt-type-tag {
  display: inline-block;
  background: var(--gold-pale); color: var(--gold-dk);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 16px;
}
.apt-showcase-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 14px; line-height: 1.2;
}
.apt-showcase-info p { color: var(--mid); line-height: 1.8; margin-bottom: 28px; }
.apt-rooms-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.arl-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px;
  background: var(--cream); border-radius: 10px;
  border-left: 3px solid var(--gold);
}
.arl-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; font-size: 1rem; }
.arl-item strong { display: block; font-weight: 600; margin-bottom: 2px; }
.arl-item span { font-size: 0.85rem; color: var(--mid); }
.apt-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== HIGHLIGHT SECTION ===== */
.highlight-section {
  background: var(--charcoal);
  overflow: hidden;
}
.highlight-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 1400px; margin: 0 auto;
  min-height: 600px;
}
.hl-text {
  padding: 80px 60px 80px 80px;
  display: flex; flex-direction: column; justify-content: center;
  color: var(--white);
}
.hl-text .tag { margin-bottom: 20px; }
.hl-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 20px; line-height: 1.2; color: var(--white);
}
.hl-text h2 em { font-style: italic; color: var(--gold-lt); }
.hl-text > p { color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 36px; }
.hl-points { display: flex; flex-direction: column; gap: 24px; }
.hl-point { display: flex; gap: 18px; align-items: flex-start; }
.hl-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(200,146,42,0.2);
  border: 1px solid rgba(200,146,42,0.4);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-lt); font-size: 1.1rem;
}
.hl-point strong { display: block; color: var(--white); margin-bottom: 4px; font-weight: 600; }
.hl-point p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.6; }
.hl-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}
.hl-img-big {
  grid-row: 1 / 3;
  overflow: hidden;
}
.hl-img-big img, .hl-img-sm img { height: 100%; transition: transform 0.6s ease; }
.hl-img-big:hover img, .hl-img-sm:hover img { transform: scale(1.05); }
.hl-img-sm { overflow: hidden; }

/* ===== AMENITIES ===== */
.amenities { background: var(--cream); }
.amenities-two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
.am-group {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.am-group-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--cream-dk);
}
.am-group-head i {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  color: var(--gold-dk);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.am-group-head h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
}
.am-items { display: flex; flex-direction: column; gap: 18px; }
.am-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.am-item .am-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--cream);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.95rem;
  transition: var(--transition);
}
.am-item:hover .am-icon {
  background: var(--gold-pale);
  transform: scale(1.08);
}
.am-item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.am-item p { font-size: 0.82rem; color: var(--mid); line-height: 1.5; }

/* ===== RATES ===== */
.rates { padding: 0; }
.rates-bg {
  background: linear-gradient(135deg, #1a1007 0%, #2d1f08 40%, #1a1007 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.rates-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8922a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.rates-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  position: relative; z-index: 1;
}
.rate-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center; color: var(--white);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.rate-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3);
}
.rate-card.featured {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: 0 24px 56px rgba(200,146,42,0.45);
}
.rate-card.featured:hover { transform: translateY(-14px); }
.rc-popular {
  position: absolute; top: 0; right: 0;
  background: var(--charcoal); color: var(--white);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 18px;
  border-bottom-left-radius: 12px;
}
.rate-card.featured .rc-popular { background: rgba(0,0,0,0.25); }
.rc-icon {
  width: 58px; height: 58px; margin: 0 auto 20px;
  background: rgba(255,255,255,0.12);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--gold-lt);
}
.rate-card.featured .rc-icon { background: rgba(0,0,0,0.15); color: var(--white); }
.rate-card h4 {
  font-size: 1rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0.8; margin-bottom: 20px;
}
.rc-price { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: 6px; }
.rc-currency { font-size: 0.9rem; opacity: 0.8; font-weight: 500; }
.rc-amount { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; }
.rc-per { font-size: 0.8rem; opacity: 0.7; margin-bottom: 28px; }
.rc-features {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 32px; text-align: left;
}
.rc-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem; opacity: 0.85;
}
.rc-features li i { color: var(--gold-lt); font-size: 0.75rem; flex-shrink: 0; }
.rate-card.featured .rc-features li i { color: rgba(255,255,255,0.7); }
.btn-rate {
  display: block; width: 100%;
  padding: 13px; border-radius: 8px;
  font-weight: 600; font-size: 0.9rem;
  text-align: center; border: 2px solid rgba(255,255,255,0.3);
  color: var(--white); transition: var(--transition);
}
.btn-rate:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.6); }
.btn-rate.gold {
  background: var(--charcoal); color: var(--white);
  border-color: var(--charcoal);
}
.btn-rate.gold:hover { background: rgba(0,0,0,0.8); }
.rates-note {
  text-align: center; margin-top: 32px;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem; line-height: 1.7;
  position: relative; z-index: 1;
}
.rates-note i { color: var(--gold-lt); margin-right: 6px; }

/* ===== GALLERY ===== */
.gallery { background: var(--white); }
.gallery-filters {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 10px; margin-bottom: 40px;
}
.gf-btn {
  padding: 9px 22px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600;
  border: 2px solid var(--cream-dk);
  background: var(--white); color: var(--mid);
  transition: var(--transition);
}
.gf-btn:hover { border-color: var(--gold); color: var(--gold); }
.gf-btn.active { background: var(--gold); color: var(--white); border-color: var(--gold); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gal-item {
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 4/3; position: relative; cursor: pointer;
  transition: var(--transition);
}
.gal-item:nth-child(5n+1) { grid-column: span 2; aspect-ratio: 16/9; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gal-item:hover img { transform: scale(1.07); }
.gal-hover {
  position: absolute; inset: 0;
  background: rgba(17,17,17,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
  color: var(--white); font-size: 1.4rem;
}
.gal-item:hover .gal-hover { opacity: 1; }
.gal-item.hidden { display: none; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 9990;
  display: flex; align-items: center; justify-content: center;
}
.lightbox.hidden { display: none; }
.lb-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(6px);
}
.lb-img-wrap {
  position: relative; z-index: 1;
  max-width: 90vw; max-height: 88vh;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.lb-img-wrap img {
  display: block; max-width: 90vw; max-height: 88vh;
  width: auto; height: auto; object-fit: contain;
}
.lb-close, .lb-prev, .lb-next {
  position: fixed; z-index: 2;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--gold); border-color: var(--gold);
}
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-counter {
  position: absolute; bottom: 0; left: 0; right: 0;
  text-align: center; padding: 10px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: rgba(255,255,255,0.8); font-size: 0.8rem;
  pointer-events: none;
}

/* ===== BOOKING ===== */
.booking { background: var(--cream); }
.booking-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px;
  align-items: start;
}
.booking-info .tag { margin-bottom: 16px; }
.booking-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px; line-height: 1.2;
}
.booking-info h2 em { font-style: italic; color: var(--gold); }
.booking-info > p { color: var(--mid); line-height: 1.8; margin-bottom: 28px; }
.booking-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.bf-item { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; }
.bf-item i { color: var(--gold); width: 20px; text-align: center; }
.booking-rate-summary {
  display: flex; align-items: center;
  background: var(--white);
  border-radius: 12px; padding: 20px 24px;
  margin-bottom: 28px; gap: 0;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}
.brs-item { flex: 1; min-width: 100px; text-align: center; }
.brs-label {
  display: block; font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--light-txt); margin-bottom: 4px;
}
.brs-price { font-weight: 700; color: var(--charcoal); font-size: 0.95rem; }
.brs-divider {
  width: 1px; height: 36px;
  background: var(--cream-dk); flex-shrink: 0;
}
.booking-contact-quick { display: flex; gap: 14px; flex-wrap: wrap; }

.booking-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--charcoal); }
.req { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--cream-dk);
  border-radius: 10px;
  font-family: inherit; font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color 0.25s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; }
.cost-estimate {
  background: var(--gold-pale);
  border: 1px solid rgba(200,146,42,0.3);
  border-radius: 10px; padding: 14px 18px;
  font-size: 0.9rem; color: var(--gold-dk);
  font-weight: 600; text-align: center;
}
.booking-success {
  text-align: center; padding: 40px 20px;
}
.booking-success.hidden { display: none; }
.success-icon { font-size: 3rem; color: #25D366; margin-bottom: 16px; }
.booking-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; margin-bottom: 12px;
}
.booking-success p { color: var(--mid); margin-bottom: 24px; line-height: 1.7; }

/* ===== LOCATION ===== */
.location-section { background: var(--white); }
.location-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px;
  align-items: start;
}
.location-details { display: flex; flex-direction: column; gap: 24px; }
.loc-item { display: flex; gap: 16px; align-items: flex-start; }
.loc-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--gold-pale);
  color: var(--gold-dk); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.loc-item h4 { font-weight: 600; margin-bottom: 4px; }
.loc-item p { color: var(--mid); font-size: 0.9rem; line-height: 1.7; }
.loc-item a { color: var(--gold-dk); font-weight: 500; }
.loc-item a:hover { color: var(--gold); }
.map-btn { margin-top: 8px; }
.map-embed-wrap {
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-dk);
}
.map-embed-wrap iframe { display: block; }

/* ===== CONTACT ===== */
.contact { background: var(--cream); }
.contact-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-bottom: 48px;
}
.contact-card {
  background: var(--white); border-radius: 16px;
  padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cc-icon {
  width: 56px; height: 56px; margin: 0 auto 18px;
  background: var(--gold-pale);
  color: var(--gold); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; transition: var(--transition);
}
.contact-card:hover .cc-icon { background: var(--gold); color: var(--white); }
.contact-card h4 { font-weight: 700; margin-bottom: 10px; }
.contact-card p { color: var(--mid); font-size: 0.88rem; line-height: 1.8; }
.contact-card a { color: var(--gold-dk); font-weight: 500; }
.contact-card a:hover { color: var(--gold); }
.social-bar { text-align: center; }
.social-bar p { color: var(--mid); margin-bottom: 16px; font-size: 0.9rem; }
.socials { display: flex; gap: 14px; justify-content: center; }
.socials a {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; box-shadow: var(--shadow);
  transition: var(--transition); border: 2px solid transparent;
}
.socials a:hover { background: var(--gold); color: var(--white); transform: translateY(-3px); border-color: var(--gold); }

/* ===== FOOTER ===== */
.footer { background: var(--charcoal); }
.footer-top { padding: 70px 0 50px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
}
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px; color: var(--white);
}
.footer-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--white);
}
.footer-logo span em { font-style: italic; color: var(--gold); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.875rem; line-height: 1.8; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: var(--white); }
.footer-links h5, .footer-contact h5 {
  color: var(--white); font-size: 0.9rem;
  font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 20px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55); font-size: 0.875rem;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--gold-lt); }
.footer-contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li {
  display: flex; gap: 10px; align-items: flex-start;
  color: rgba(255,255,255,0.55); font-size: 0.875rem; line-height: 1.5;
}
.footer-contact li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.55); transition: color 0.25s; }
.footer-contact a:hover { color: var(--gold-lt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-bottom i { color: #e74c3c; margin: 0 2px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.4); font-size: 0.8rem; transition: color 0.25s; }
.footer-legal a:hover { color: var(--gold-lt); }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 800;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: waPulse 3s infinite;
}
.whatsapp-float:hover {
  background: #1da851; transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}
.wa-tooltip {
  position: absolute; left: calc(100% + 12px); top: 50%;
  transform: translateY(-50%);
  background: var(--charcoal); color: var(--white);
  font-size: 0.78rem; font-weight: 600;
  padding: 6px 12px; border-radius: 6px;
  white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity 0.25s;
}
.wa-tooltip::before {
  content: '';
  position: absolute; right: 100%; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: var(--charcoal);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--charcoal); color: var(--white);
  border: none; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; box-shadow: var(--shadow);
  opacity: 0; transform: translateY(20px);
  transition: var(--transition); pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--gold); transform: translateY(-2px); }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .rates-cards { gap: 18px; }
  .about-grid { gap: 50px; }
}

@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-imgs { display: none; } /* shown via CSS is enough — removed for mobile */
  .apt-showcase { grid-template-columns: 1fr; }
  .highlight-grid { grid-template-columns: 1fr; }
  .hl-text { padding: 60px 40px; }
  .hl-imgs { display: none; }
  .amenities-two-col { grid-template-columns: 1fr; }
  .rates-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .rate-card.featured { transform: none; }
  .booking-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-item:nth-child(5n+1) { grid-column: span 2; }
  .about-imgs { display: block; height: 320px; }
  .about-img-main { height: 320px; }
  .about-img-accent { display: none; }
  .about-badge { display: none; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; height: 100vh; width: 280px;
    background: var(--white);
    flex-direction: column; justify-content: center; gap: 4px;
    padding: 40px 24px;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--mid) !important; font-size: 1rem; padding: 12px 16px; width: 100%; }
  .nav-links a:hover { color: var(--gold) !important; }
  .nav-links .nav-cta {
    background: var(--gold); color: var(--white) !important;
    text-align: center; border-radius: 8px; margin-top: 8px;
  }
  .hero-btns { flex-direction: column; align-items: center; }
  .stats-inner { gap: 0; flex-direction: column; }
  .stat-divider { width: 60px; height: 1px; }
  .stat-item { width: 100%; justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 24px; }
  .booking-rate-summary { flex-direction: column; gap: 16px; }
  .brs-divider { width: 80px; height: 1px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gal-item:nth-child(5n+1) { grid-column: span 1; aspect-ratio: 4/3; }
  .apt-thumb-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .hl-text { padding: 50px 24px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2.4rem; }
  .rates-cards { max-width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gal-item:nth-child(5n+1) { grid-column: span 1; }
  .about-imgs { display: none; }
  .booking-contact-quick { flex-direction: column; }
  .about-actions { flex-direction: column; }
}
