/* ===========================
   CSS VARIABLES & RESET
   =========================== */

:root {
  --navy:        #1E2D5E;
  --navy-dark:   #141f45;
  --navy-light:  #2a3d7a;
  --orange:      #C4622D;
  --orange-dark: #a84f23;
  --orange-light:#e07040;
  --white:       #ffffff;
  --off-white:   #f5f4f0;
  --text-dark:   #1a1a2e;
  --shadow-sm:   0 2px 8px rgba(30, 45, 94, 0.10);
  --shadow-md:   0 6px 24px rgba(30, 45, 94, 0.14);
  --radius:      8px;
  --transition:  0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ===========================
   NAVBAR STYLES
   =========================== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fbfbf5;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--orange);
}

.navbar__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar__logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition);
}

.navbar__logo:hover img {
  transform: scale(1.04);
}

/* Navigation Menu */
.navbar__nav {
  display: flex;
  align-items: center;
}

.navbar__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Nav Links */
.navbar__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  background: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--orange);
  background: rgba(196, 98, 45, 0.06);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  transform: scaleX(1);
}

/* CTA Button */
.navbar__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  margin-left: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  background: var(--orange);
  border-radius: 50px;
  box-shadow: 0 3px 12px rgba(196, 98, 45, 0.35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.navbar__cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(196, 98, 45, 0.45);
}

/* Dropdown */
.navbar__dropdown {
  position: relative;
}

.navbar__chevron {
  transition: transform var(--transition);
  flex-shrink: 0;
}

.navbar__dropdown.open .navbar__chevron {
  transform: rotate(180deg);
}

.navbar__dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 180px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(30, 45, 94, 0.08);
  list-style: none;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  border-top: 3px solid var(--orange);
}

.navbar__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: var(--orange);
}

.navbar__dropdown.open .navbar__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.navbar__dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}

.navbar__dropdown-item:hover {
  background: rgba(196, 98, 45, 0.08);
  color: var(--orange);
}

/* Hamburger Menu */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.navbar__hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar__hamburger.active span:nth-child(1) {
  transform: translateY(8.75px) rotate(45deg);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar__hamburger.active span:nth-child(3) {
  transform: translateY(-8.75px) rotate(-45deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .navbar__hamburger {
    display: flex;
  }
  
  .navbar__nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid rgba(196, 98, 45, 0.2);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
  }
  
  .navbar__nav.open {
    max-height: 400px;
    padding: 12px 0 16px;
  }
  
  .navbar__list {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
    gap: 2px;
    width: 100%;
  }
  
  .navbar__item {
    width: 100%;
  }
  
  .navbar__link,
  .navbar__dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }
  
  .navbar__link::after {
    display: none;
  }
  
  .navbar__cta {
    margin-left: 0;
    margin-top: 8px;
    justify-content: center;
    width: 100%;
    border-radius: var(--radius);
  }
  
  .navbar__dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--orange);
    border-top: none;
    border-radius: 0;
    background: rgba(196, 98, 45, 0.04);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease;
    margin-left: 12px;
  }
  
  .navbar__dropdown-menu::before {
    display: none;
  }
  
  .navbar__dropdown.open .navbar__dropdown-menu {
    max-height: 200px;
    padding: 4px 0;
    transform: none;
  }
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.8s ease, transform 0.8s ease;
  z-index: 0;
}

.hero__slide.active {
  opacity: 1;
  transform: translateX(0%);
  z-index: 1;
}

.hero__slide.exit {
  opacity: 0;
  transform: translateX(-100%);
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(20, 31, 69, 0.88) 0%, rgba(20, 31, 69, 0.75) 45%, rgba(20, 31, 69, 0.55) 100%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 24px 160px;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 98, 45, 0.18);
  border: 1px solid rgba(196, 98, 45, 0.5);
  color: #f0a070;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeUp 0.7s ease both;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #C4622D;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero__title-accent {
  color: #C4622D;
  position: relative;
  display: inline-block;
}

.hero__title-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #C4622D;
  border-radius: 2px;
  opacity: 0.6;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeUp 0.8s 0.45s ease both;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.hero__btn--primary {
  background: #C4622D;
  color: #fff;
  box-shadow: 0 4px 20px rgba(196, 98, 45, 0.45);
}

.hero__btn--primary:hover {
  background: #a84f23;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 98, 45, 0.55);
}

.hero__btn--secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
}

.hero__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.75);
  transform: translateY(-2px);
}

.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(20, 31, 69, 0.92);
  backdrop-filter: blur(10px);
  border-top: 2px solid rgba(196, 98, 45, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeUp 0.8s 0.75s ease both;
  gap: 16px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 18px 36px;
  border-radius: 14px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.25s ease, transform 0.2s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  user-select: none;
}

.hero__stat:hover {
  background: rgba(196, 98, 45, 0.15);
  border-color: rgba(196, 98, 45, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(196, 98, 45, 0.2);
}

.hero__stat-number {
  font-size: 1.9rem;
  font-weight: 800;
  color: #C4622D;
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  right: 32px;
  bottom: 100px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll span {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero__content { padding: 80px 20px 140px; }
  .hero__stats { flex-wrap: wrap; padding: 16px 12px; }
  .hero__stat { padding: 8px 20px; width: 50%; }
  .hero__stat-divider { display: none; }
  .hero__scroll { display: none; }
}

/* ===========================
   ROOMS SECTION
   =========================== */

.rooms {
  background: #f5f4f0;
  padding: 100px 24px;
}

.rooms__container {
  max-width: 1280px;
  margin: 0 auto;
}

.rooms__header {
  text-align: center;
  margin-bottom: 60px;
}

.rooms__tag {
  display: inline-block;
  background: rgba(196, 98, 45, 0.10);
  color: #C4622D;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(196, 98, 45, 0.25);
  margin-bottom: 14px;
}

.rooms__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #1E2D5E;
  line-height: 1.2;
  margin-bottom: 14px;
}

.rooms__title-accent {
  color: #C4622D;
  position: relative;
  display: inline-block;
}

.rooms__title-accent::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #C4622D;
  border-radius: 2px;
  opacity: 0.5;
}

.rooms__subtitle {
  font-size: 1rem;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.rooms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.rooms__card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 30px;
  border: 1.5px solid rgba(30, 45, 94, 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 20px rgba(30, 45, 94, 0.06);
}

.rooms__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1E2D5E, #C4622D);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rooms__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(30, 45, 94, 0.14);
  border-color: rgba(196, 98, 45, 0.25);
}

.rooms__card:hover::before { opacity: 1; }

.rooms__card--featured {
  background: linear-gradient(145deg, #1E2D5E 0%, #2a3d7a 100%);
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(30, 45, 94, 0.30);
  transform: translateY(-12px);
}

.rooms__card--featured:hover {
  transform: translateY(-20px);
  box-shadow: 0 28px 60px rgba(30, 45, 94, 0.35);
}

.rooms__card--featured .rooms__card-title { color: #ffffff; }
.rooms__card--featured .rooms__card-desc,
.rooms__card--featured .rooms__card-from,
.rooms__card--featured .rooms__card-features li { color: rgba(255,255,255,0.80); }
.rooms__card--featured .rooms__card-amount { color: #f0a070; }

.rooms__card-icon {
  width: 68px;
  height: 68px;
  background: rgba(196, 98, 45, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C4622D;
  margin-bottom: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.rooms__card:hover .rooms__card-icon {
  background: rgba(196, 98, 45, 0.14);
  transform: scale(1.08) rotate(-3deg);
}

.rooms__card-badge {
  position: absolute;
  top: 22px; right: 22px;
  background: #C4622D;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 50px;
}

.rooms__card-badge--white {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}

.rooms__card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1E2D5E;
  margin-bottom: 10px;
}

.rooms__card-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 22px;
}

.rooms__card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rooms__card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #444;
}

.rooms__card-features li svg { stroke: #C4622D; flex-shrink: 0; }

.rooms__card-price {
  margin-top: auto;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rooms__card-from {
  font-size: 0.75rem;
  font-weight: 500;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rooms__card-amount {
  font-size: 1.7rem;
  font-weight: 800;
  color: #1E2D5E;
  line-height: 1.1;
}

.rooms__card-amount span { font-size: 0.9rem; font-weight: 500; color: #999; }

.rooms__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: #1E2D5E;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.rooms__card-btn:hover {
  background: #C4622D;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 98, 45, 0.35);
}

@media (max-width: 1024px) {
  .rooms__grid { grid-template-columns: repeat(2, 1fr); }
  .rooms__card--featured { transform: none; grid-column: span 2; }
}

@media (max-width: 640px) {
  .rooms { padding: 60px 16px; }
  .rooms__grid { grid-template-columns: 1fr; }
  .rooms__card--featured { grid-column: span 1; transform: none; }
}

/* ===========================
   AMENITIES SECTION
   =========================== */

.amenities {
  background: #ffffff;
  padding: 100px 24px;
}

.amenities__container {
  max-width: 1280px;
  margin: 0 auto;
}

.amenities__header {
  text-align: center;
  margin-bottom: 64px;
}

.amenities__tag {
  display: inline-block;
  background: rgba(196, 98, 45, 0.10);
  color: #C4622D;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(196, 98, 45, 0.25);
  margin-bottom: 14px;
}

.amenities__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #1E2D5E;
  line-height: 1.2;
  margin-bottom: 14px;
}

.amenities__title-accent {
  color: #C4622D;
  position: relative;
  display: inline-block;
}

.amenities__title-accent::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%;
  height: 3px;
  background: #C4622D;
  border-radius: 2px;
  opacity: 0.5;
}

.amenities__subtitle {
  font-size: 1rem;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
}

.amenities__card {
  background: #f5f4f0;
  border-radius: 16px;
  padding: 28px 22px;
  border: 1.5px solid rgba(30, 45, 94, 0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.amenities__card:hover {
  background: #fff;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(30, 45, 94, 0.12);
  border-color: rgba(196, 98, 45, 0.2);
}

.amenities__icon {
  width: 56px;
  height: 56px;
  background: rgba(196, 98, 45, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C4622D;
  transition: background 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.amenities__card:hover .amenities__icon {
  background: #C4622D;
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}

.amenities__card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1E2D5E;
}

.amenities__card-desc {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.6;
}

@media (max-width: 1024px) { .amenities__grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px) { .amenities__grid { grid-template-columns: repeat(3, 1fr); } .amenities { padding: 60px 16px; } }
@media (max-width: 480px) { .amenities__grid { grid-template-columns: repeat(2, 1fr); } }

/* ===========================
   WHY CHOOSE US SECTION
   =========================== */

.why {
  background: #f5f4f0;
  padding: 100px 24px;
}

.why__container { max-width: 1280px; margin: 0 auto; }

.why__header { text-align: center; margin-bottom: 64px; }

.why__tag {
  display: inline-block;
  background: rgba(196, 98, 45, 0.10);
  color: #C4622D;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(196, 98, 45, 0.25);
  margin-bottom: 14px;
}

.why__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #1E2D5E;
  line-height: 1.2;
  margin-bottom: 14px;
}

.why__title-accent {
  color: #C4622D;
  position: relative;
  display: inline-block;
}

.why__title-accent::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 3px;
  background: #C4622D;
  border-radius: 2px;
  opacity: 0.5;
}

.why__subtitle { font-size: 1rem; color: #666; max-width: 560px; margin: 0 auto; line-height: 1.7; }

.why__row { display: grid; gap: 24px; margin-bottom: 24px; }
.why__row--top { grid-template-columns: repeat(3, 1fr); }
.why__row--bottom { grid-template-columns: repeat(2, 1fr); margin-bottom: 0; max-width: 66.66%; margin-left: auto; margin-right: auto; }

.why__card {
  position: relative;
  border-radius: 22px;
  padding: 40px 36px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why__card:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(30, 45, 94, 0.16); }

.why__card--light { background: #ffffff; border: 1.5px solid rgba(30,45,94,0.08); }
.why__card--light .why__card-icon { background: rgba(196,98,45,0.08); color: #C4622D; }
.why__card--light .why__card-title { color: #1E2D5E; }

.why__card--dark { background: linear-gradient(145deg, #1E2D5E, #2a3d7a); }
.why__card--dark .why__card-icon { background: rgba(255,255,255,0.12); color: #fff; }
.why__card--dark .why__card-title { color: #ffffff; }
.why__card--dark .why__card-desc { color: rgba(255,255,255,0.75); }

.why__card--orange { background: linear-gradient(145deg, #C4622D, #e07040); }
.why__card--orange .why__card-icon { background: rgba(255,255,255,0.18); color: #fff; }
.why__card--orange .why__card-title { color: #ffffff; }

.why__card--outline { background: #ffffff; border: 2px solid #1E2D5E; }
.why__card--outline .why__card-icon { background: rgba(30,45,94,0.07); color: #1E2D5E; }

.why__card--split { background: #1E2D5E; background-image: radial-gradient(circle at 90% 10%, rgba(196,98,45,0.25) 0%, transparent 60%); }

.why__card-number {
  position: absolute;
  top: 28px; right: 32px;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.15;
}

.why__card-icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
  margin-bottom: 20px;
}

.why__card-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.why__card-desc { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }

.why__card-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 5px 14px;
  border-radius: 50px;
  width: fit-content;
  background: rgba(196,98,45,0.10);
  color: #C4622D;
}

.why__card-stats {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(30,45,94,0.10);
}

.why__stat span { font-size: 1.3rem; font-weight: 800; color: #C4622D; }
.why__stat small { font-size: 0.72rem; font-weight: 500; color: #888; }

.why__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 11px 24px;
  background: #C4622D;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: background 0.25s ease, transform 0.2s ease;
}

.why__card-cta:hover { background: #fff; color: #1E2D5E; transform: translateY(-2px); }

@media (max-width: 1024px) {
  .why__row--top { grid-template-columns: repeat(2, 1fr); }
  .why__row--bottom { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
}

@media (max-width: 640px) {
  .why { padding: 60px 16px; }
  .why__row--top, .why__row--bottom { grid-template-columns: 1fr; }
  .why__card { padding: 30px 24px; }
}

/* ===========================
   REVIEWS SECTION
   =========================== */

.reviews {
  background: #ffffff;
  padding: 100px 24px;
}

.reviews__container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  align-items: center;
  border: 2px solid rgba(30, 45, 94, 0.12);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(30, 45, 94, 0.08);
}

.reviews__left {
  background: #f5f4f0;
  padding: 48px 40px;
  border-right: 2px solid rgba(30, 45, 94, 0.12);
  height: 100%;
}

.reviews__right {
  padding: 48px 40px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reviews__tag {
  display: inline-block;
  background: rgba(196, 98, 45, 0.10);
  color: #C4622D;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(196, 98, 45, 0.25);
  margin-bottom: 16px;
}

.reviews__title { font-size: 2.4rem; font-weight: 800; color: #1E2D5E; margin-bottom: 6px; }

.reviews__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: #888;
  margin-bottom: 32px;
}

.reviews__rating-block { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; }
.reviews__rating-number { font-size: 5rem; font-weight: 900; color: #1E2D5E; line-height: 1; }
.reviews__stars { display: flex; gap: 3px; align-items: center; }
.reviews__count { font-size: 0.85rem; color: #888; }

.reviews__bars { display: flex; flex-direction: column; gap: 8px; margin-bottom: 36px; }

.reviews__bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: #888;
}

.reviews__bar {
  flex: 1;
  height: 7px;
  background: rgba(30, 45, 94, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.reviews__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #1E2D5E, #C4622D);
  border-radius: 10px;
  width: 0;
}

.reviews__add-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  background: #1E2D5E;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: background 0.25s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(30, 45, 94, 0.25);
}

.reviews__add-btn:hover { background: #C4622D; transform: translateY(-2px); }

.reviews__slider-wrapper {
  width: 100%;
  overflow: hidden;
}

.reviews__slider {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews__card {
  min-width: calc(50% - 12px);
  background: #f5f4f0;
  border-radius: 18px;
  padding: 16px 18px;
  border: 2px solid rgba(30, 45, 94, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reviews__card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(30,45,94,0.10); border-color: #C4622D; }

.reviews__card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }

.reviews__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.reviews__reviewer-name { font-size: 0.92rem; font-weight: 700; color: #1E2D5E; }
.reviews__reviewer-time { font-size: 0.75rem; color: #aaa; }
.reviews__card-stars { margin-left: auto; color: #C4622D; font-size: 0.9rem; }
.reviews__card-text { font-size: 0.83rem; color: #555; line-height: 1.55; }

.reviews__controls { display: flex; align-items: center; justify-content: center; gap: 16px; }

.reviews__ctrl {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(30,45,94,0.15);
  background: #fff;
  color: #1E2D5E;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.reviews__ctrl:hover { background: #C4622D; border-color: #C4622D; color: #fff; }

.reviews__dots { display: flex; gap: 7px; align-items: center; }

.reviews__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(30,45,94,0.18);
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
}

.reviews__dot.active { background: #C4622D; width: 22px; border-radius: 4px; }

@media (max-width: 1024px) {
  .reviews__container { grid-template-columns: 1fr; }
  .reviews__left { border-right: none; border-bottom: 2px solid rgba(30, 45, 94, 0.12); }
  .reviews__card { min-width: 100%; }
}

@media (max-width: 640px) {
  .reviews { padding: 60px 16px; }
  .reviews__left,
  .reviews__right { padding: 30px 24px; }
  .reviews__tag {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    padding: 6px 12px;
    max-width: 100%;
    white-space: normal;
    line-height: 1.3;
  }
  .reviews__slider { gap: 16px; }
}

/* ===========================
   CONTACT SECTION
   =========================== */

.contact {
  background: #f5f4f0;
  padding: 100px 24px;
}

.contact__container { max-width: 1280px; margin: 0 auto; }

.contact__header { text-align: center; margin-bottom: 64px; }

.contact__tag {
  display: inline-block;
  background: rgba(196, 98, 45, 0.10);
  color: #C4622D;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(196, 98, 45, 0.25);
  margin-bottom: 14px;
}

.contact__title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: #1E2D5E; margin-bottom: 14px; }
.contact__title-accent { color: #C4622D; }
.contact__subtitle { font-size: 1rem; color: #666; max-width: 520px; margin: 0 auto; line-height: 1.7; }

.contact__body {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(30, 45, 94, 0.10);
  box-shadow: 0 12px 50px rgba(30, 45, 94, 0.10);
}

.contact__info {
  background: linear-gradient(160deg, #1E2D5E 0%, #2a3d7a 100%);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.07);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  transition: background 0.25s ease, transform 0.25s ease;
}

.contact__info-card:hover { background: rgba(255,255,255,0.12); transform: translateX(4px); }

.contact__info-icon {
  width: 46px; height: 46px;
  background: rgba(196,98,45,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f0a070;
  flex-shrink: 0;
}

.contact__info-text h4 { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.55); text-transform: uppercase; margin-bottom: 4px; }
.contact__info-text a, .contact__info-text p { font-size: 0.9rem; color: rgba(255,255,255,0.90); text-decoration: none; line-height: 1.5; }
.contact__info-text a:hover { color: #f0a070; }

.contact__socials { display: flex; gap: 12px; margin-top: auto; padding-top: 8px; }

.contact__social {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease;
}

.contact__social:hover { background: #C4622D; border-color: #C4622D; color: #fff; transform: translateY(-3px); }

.contact__form-wrap { padding: 48px 44px; position: relative; }

.contact__form { display: flex; flex-direction: column; gap: 20px; }
.contact__form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact__field { display: flex; flex-direction: column; gap: 7px; }

.contact__field label { font-size: 0.8rem; font-weight: 600; color: #1E2D5E; text-transform: uppercase; letter-spacing: 0.06em; }

.contact__field input,
.contact__field select,
.contact__field textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #1E2D5E;
  background: #f5f4f0;
  border: 2px solid rgba(30,45,94,0.10);
  border-radius: 10px;
  padding: 11px 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}

.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  border-color: #C4622D;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(196,98,45,0.10);
}

.contact__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231E2D5E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.contact__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: #C4622D;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  box-shadow: 0 4px 18px rgba(196,98,45,0.35);
  width: 100%;
}

.contact__submit:hover { background: #a84f23; transform: translateY(-2px); }

.contact__form-note { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: #aaa; justify-content: center; }

.contact__success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  height: 100%;
  padding: 40px;
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 0 24px 24px 0;
}

.contact__success.show { display: flex; }

.contact__success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(196,98,45,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C4622D;
  border: 2px solid rgba(196,98,45,0.25);
}

.contact__success h3 { font-size: 1.5rem; font-weight: 800; color: #1E2D5E; }
.contact__success p { font-size: 0.92rem; color: #777; }

.contact__success-back {
  padding: 10px 28px;
  background: #1E2D5E;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}

.contact__success-back:hover { background: #C4622D; }

@media (max-width: 1024px) {
  .contact__body { grid-template-columns: 1fr; }
  .contact__info { padding: 36px 28px; }
  .contact__form-wrap { padding: 36px 28px; }
}

@media (max-width: 640px) {
  .contact { padding: 60px 16px; }
  .contact__form-row { grid-template-columns: 1fr; }
}

/* ===========================
   LOCATION POPUP
   =========================== */

.loc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 22, 54, 0.72);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.loc-overlay.open { opacity: 1; visibility: visible; }

.loc-modal {
  background: var(--off-white);
  border-radius: 24px;
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s ease;
  box-shadow: 0 30px 80px rgba(14, 22, 54, 0.32);
}

.loc-overlay.open .loc-modal { transform: translateY(0) scale(1); }

.loc-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid rgba(30,45,94,0.12);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease, transform 0.3s ease;
}

.loc-close:hover { background: var(--orange); color: var(--white); transform: rotate(90deg); }

.loc-body {
  display: grid;
  grid-template-columns: 1fr 370px;
  overflow: scroll;
  max-height: 90vh;
}

.loc-left {
  overflow-y: auto;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.loc-gallery__main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 255px;
}

.loc-gallery__main img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.loc-gallery__badge {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(20, 31, 69, 0.88);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
}

.loc-gallery__thumbs { display: flex; gap: 8px; margin-top: 10px; }

.loc-gallery__thumbs img {
  width: 72px; height: 54px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.65;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.loc-gallery__thumbs img:hover { opacity: 1; }
.loc-gallery__thumbs img.active { border-color: var(--orange); opacity: 1; }

.loc-info {
  background: var(--white);
  border-radius: 16px;
  padding: 20px 22px;
}

.loc-info__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.loc-info__name { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.loc-info__location { display: flex; align-items: center; gap: 5px; font-size: 0.82rem; color: #888; }
.loc-info__price { text-align: right; }
.loc-info__amount { font-size: 1.5rem; font-weight: 800; color: var(--orange); }
.loc-info__amount small { font-size: 0.78rem; font-weight: 500; color: #aaa; }
.loc-info__rating { display: flex; align-items: center; gap: 8px; }
.loc-stars { color: var(--orange); font-size: 0.9rem; }

.loc-section { display: flex; flex-direction: column; gap: 14px; }

.loc-section__title {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(196,98,45,0.25);
}

.loc-overview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.loc-overview__item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 2px solid rgba(30,45,94,0.08);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #444;
}

.loc-amenities { display: flex; flex-wrap: wrap; gap: 8px; }

.loc-amenity {
  background: var(--white);
  border: 2px solid rgba(30,45,94,0.08);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #444;
}

.loc-map { border-radius: 14px; overflow: hidden; }

.loc-right {
  background: var(--white);
  border-left: 2px solid rgba(30,45,94,0.08);
  overflow-y: auto;
}

.loc-enquiry { padding: 28px 22px; display: flex; flex-direction: column; gap: 18px; }

.loc-enquiry__header {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 14px;
}

.loc-enquiry__icon {
  width: 46px; height: 46px;
  background: rgba(196,98,45,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #f0a070;
}

.loc-enquiry__title { font-size: 1rem; font-weight: 800; color: var(--white); }
.loc-enquiry__sub { font-size: 0.75rem; color: rgba(255,255,255,0.65); }

.loc-form { display: flex; flex-direction: column; gap: 12px; }
.loc-field { display: flex; flex-direction: column; gap: 5px; }

.loc-field label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.loc-field input,
.loc-field select,
.loc-field textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: var(--navy);
  background: var(--off-white);
  border: 2px solid rgba(30,45,94,0.08);
  border-radius: 10px;
  padding: 10px 14px;
  outline: none;
  width: 100%;
}

.loc-field input:focus,
.loc-field select:focus,
.loc-field textarea:focus {
  border-color: var(--orange);
  background: var(--white);
}

.loc-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
}

.loc-submit:hover { background: var(--orange-dark); }

.loc-form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 20px;
  background: rgba(196,98,45,0.06);
  border-radius: 14px;
}

.loc-form-success.show { display: flex; }

.loc-success-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.loc-divider {
  display: flex; align-items: center; gap: 10px;
  color: #bbb;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.loc-divider::before,
.loc-divider::after { content: ''; flex: 1; height: 1px; background: rgba(30,45,94,0.10); }

.loc-pg-info { display: flex; flex-direction: column; gap: 8px; }

.loc-pg-info__item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px;
  background: var(--off-white);
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.loc-pg-info__item:hover { background: rgba(196,98,45,0.07); }

.loc-pg-info__icon {
  width: 34px; height: 34px;
  background: rgba(196,98,45,0.12);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}

.loc-pg-info__item small { font-size: 0.65rem; font-weight: 700; color: #aaa; text-transform: uppercase; }
.loc-pg-info__item span { font-size: 0.83rem; font-weight: 600; color: var(--navy); }

.loc-property-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.loc-property-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(30, 45, 94, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.loc-property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(30, 45, 94, 0.12);
  border-color: rgba(196, 98, 45, 0.3);
}

.loc-property-card__image {
  height: 140px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.loc-property-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

.loc-property-card__content { padding: 14px 16px 18px; }

.loc-property-card__name { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.loc-property-card__price { font-size: 1.1rem; font-weight: 800; color: var(--orange); margin: 8px 0; }
.loc-property-card__price small { font-size: 0.7rem; font-weight: 500; color: #aaa; }

.loc-property-card__amenities { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }

.loc-property-card__amenity {
  font-size: 0.65rem;
  background: rgba(196, 98, 45, 0.08);
  padding: 3px 8px;
  border-radius: 50px;
  color: var(--orange);
  font-weight: 500;
}

.loc-property-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  width: 100%;
  border: none;
  cursor: pointer;
}

.loc-property-card__btn:hover { background: var(--orange); }

@media (max-width: 900px) {
  .loc-body { grid-template-columns: 1fr; }
  .loc-right { border-left: none; border-top: 2px solid rgba(30,45,94,0.08); }
}

@media (max-width: 540px) {
  .loc-left { padding: 20px 16px; }
  .loc-enquiry { padding: 20px 16px; }
  .loc-overview__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================
   FOOTER
   =========================== */

.footer {
  background: #1E2D5E;
  position: relative;
}

.footer__wave { line-height: 0; margin-bottom: -2px; }
.footer__wave svg { display: block; width: 100%; height: 60px; }

.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__brand { display: flex; flex-direction: column; gap: 16px; }

.footer__logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__tagline { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 280px; }

.footer__socials { display: flex; gap: 10px; }

.footer__social {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease;
}

.footer__social:hover { background: #C4622D; border-color: #C4622D; color: #fff; transform: translateY(-3px); }

.footer__col { display: flex; flex-direction: column; gap: 16px; }

.footer__col-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: #C4622D;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(196,98,45,0.25);
}

.footer__links { list-style: none; display: flex; flex-direction: column; gap: 9px; }

.footer__links li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer__links li a:hover { color: #fff; padding-left: 6px; }

.footer__contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.footer__contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}

.footer__contact-list li svg { stroke: #C4622D; flex-shrink: 0; margin-top: 2px; }
.footer__contact-list li a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer__contact-list li a:hover { color: #fff; }

.footer__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), rgba(196,98,45,0.35), rgba(255,255,255,0.08), transparent);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0 32px;
}

.footer__copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

.footer__credits {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
}

.footer__credits-text { color: rgba(255,255,255,0.40); }
.footer__credits-heart { color: #C4622D; animation: heartbeat 1.6s ease-in-out infinite; }

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.28); }
  28% { transform: scale(1); }
  42% { transform: scale(1.18); }
  56% { transform: scale(1); }
}

.footer__credits-name {
  font-weight: 700;
  font-size: 0.85rem;
  padding: 3px 12px;
  border-radius: 20px;
  cursor: pointer;
}

.footer__credits-name--a {
  background: rgba(196,98,45,0.20);
  color: #f0a070;
}

.footer__credits-name--b {
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
}

.footer__bottom-links { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; }
.footer__bottom-links a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer__bottom-links a:hover { color: #C4622D; }

@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: span 3; }
}

@media (max-width: 768px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .footer__bottom { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 480px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
}

/* ===========================
   WHATSAPP BUTTON
   =========================== */

.float-wa {
  position: fixed;
  left: 24px;
  bottom: 32px;
  z-index: 9998;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.40);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.float-wa:hover { transform: translateY(-4px) scale(1.08); }

.float-wa__pulse {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: waPulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

.float-wa__tooltip {
  position: absolute;
  left: 68px;
  background: #1E2D5E;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.float-wa:hover .float-wa__tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ===========================
   CHATBOT
   =========================== */

.chatbot {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 9998;
  width: 58px;
  height: 58px;
}

.chatbot__toggle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1E2D5E, #2a3d7a);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(30,45,94,0.40);
  position: relative;
  transition: transform 0.25s ease;
}

.chatbot__toggle:hover { transform: translateY(-3px) scale(1.06); }

.chatbot__toggle-open,
.chatbot__toggle-close {
  position: absolute;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.chatbot__toggle-close { opacity: 0; transform: rotate(-90deg); }

.chatbot.open .chatbot__toggle-open { opacity: 0; transform: rotate(90deg); }
.chatbot.open .chatbot__toggle-close { opacity: 1; transform: rotate(0deg); }

.chatbot__badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background: #C4622D;
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.chatbot__badge.hidden { display: none; }

.chatbot__window {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: 340px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(30,45,94,0.20);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 520px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.96);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none;
}

.chatbot.open .chatbot__window {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.chatbot__header {
  background: linear-gradient(135deg, #1E2D5E, #2a3d7a);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chatbot__header-avatar {
  position: relative;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.chatbot__header-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
}

.chatbot__online {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  background: #25D366;
  border-radius: 50%;
  border: 2px solid #1E2D5E;
}

.chatbot__header-info h4 { font-size: 0.92rem; font-weight: 700; color: #fff; }
.chatbot__header-info span { font-size: 0.72rem; color: rgba(255,255,255,0.65); }

.chatbot__header-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.chatbot__messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f5f4f0;
}

.chatbot__msg { display: flex; flex-direction: column; gap: 3px; }
.chatbot__msg--bot { align-items: flex-start; }
.chatbot__msg--user { align-items: flex-end; }

.chatbot__msg-bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.83rem;
  line-height: 1.55;
}

.chatbot__msg--bot .chatbot__msg-bubble {
  background: #fff;
  color: #1E2D5E;
  border: 1.5px solid rgba(30,45,94,0.08);
}

.chatbot__msg--user .chatbot__msg-bubble {
  background: #1E2D5E;
  color: #fff;
}

.chatbot__msg-time { font-size: 0.65rem; color: #bbb; padding: 0 4px; }

.chatbot__quick-replies {
  padding: 10px 14px 12px;
  background: #f5f4f0;
  border-top: 1px solid rgba(30,45,94,0.06);
}

.chatbot__menu-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: #C4622D;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-bottom: 8px;
}

.chatbot__menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.chatbot__quick-btn {
  padding: 8px 10px;
  background: #fff;
  border: 1.5px solid rgba(30,45,94,0.10);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #1E2D5E;
  cursor: pointer;
  transition: background 0.2s ease;
  text-align: left;
}

.chatbot__quick-btn:hover {
  background: #C4622D;
  border-color: #C4622D;
  color: #fff;
}

.chatbot__input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: #fff;
  border-top: 1.5px solid rgba(30,45,94,0.08);
}

.chatbot__input {
  flex: 1;
  border: 2px solid rgba(30,45,94,0.10);
  border-radius: 50px;
  padding: 9px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  color: #1E2D5E;
  background: #f5f4f0;
  outline: none;
}

.chatbot__input:focus { border-color: #C4622D; background: #fff; }

.chatbot__send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #C4622D;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.chatbot__send:hover { background: #a84f23; transform: scale(1.08); }

@media (max-width: 480px) {
  .chatbot__window { width: calc(100vw - 32px); }
  .float-wa { left: 16px; bottom: 24px; }
  .chatbot { right: 16px; bottom: 24px; }
}

/* ===========================
   LEAD POPUP
   =========================== */

.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 22, 54, 0.75);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: scroll;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.auth-overlay.open { opacity: 1; visibility: visible; }

.auth-modal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 860px;
  max-height: 92vh;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(14,22,54,0.35);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
}

.auth-overlay.open .auth-modal { transform: translateY(0) scale(1); }

.auth-left {
  background: linear-gradient(150deg, #1E2D5E 0%, #2a3d7a 60%, #C4622D 140%);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.auth-left__logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 28px;
}

.auth-left__title {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.auth-left__title span { color: #f0a070; }

.auth-left__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.7;
  margin-bottom: 32px;
}

.auth-left__stats { display: flex; gap: 12px; flex-wrap: wrap; }

.auth-left__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  text-align: center;
}

.auth-left__stat span { font-size: 1.2rem; font-weight: 800; color: #f0a070; }
.auth-left__stat small { font-size: 0.68rem; font-weight: 600; color: rgba(255,255,255,0.60); text-transform: uppercase; }

.auth-right {
  background: #fff;
  padding: 36px 36px 28px;
  overflow-y: auto;
  position: relative;
}

.auth-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #f5f4f0;
  border: 1.5px solid rgba(30,45,94,0.12);
  color: #1E2D5E;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.3s ease;
  z-index: 5;
}

.auth-close:hover { background: #C4622D; color: #fff; transform: rotate(90deg); }

.auth-form { display: none; flex-direction: column; gap: 16px; }
.auth-form.active { display: flex; }

.auth-form__tag {
  display: inline-block;
  background: rgba(196,98,45,0.10);
  color: #C4622D;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  width: fit-content;
  margin-bottom: 6px;
}

.auth-form__header h3 { font-size: 1.25rem; font-weight: 800; color: #1E2D5E; }
.auth-form__header p { font-size: 0.82rem; color: #888; }

.auth-field { display: flex; flex-direction: column; gap: 6px; }

.auth-field label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #1E2D5E;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.auth-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f5f4f0;
  border: 2px solid rgba(30,45,94,0.10);
  border-radius: 11px;
  padding: 10px 14px;
  transition: border-color 0.2s ease;
}

.auth-input-wrap:focus-within {
  border-color: #C4622D;
  background: #fff;
}

.auth-input-wrap input,
.auth-input-wrap textarea {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: #1E2D5E;
  resize: none;
}

.auth-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #C4622D, #a84f23);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  margin-top: 4px;
}

.auth-submit:hover { background: linear-gradient(135deg, #1E2D5E, #2a3d7a); }

.auth-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: #bbb;
  justify-content: center;
}

.auth-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 32px 20px;
}

.auth-success.show { display: flex; }

.auth-success__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C4622D, #e07040);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-success h3 { font-size: 1.3rem; font-weight: 800; color: #1E2D5E; }
.auth-success p { font-size: 0.85rem; color: #777; }

.auth-success__info {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.auth-success__info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f5f4f0;
  border-radius: 50px;
  padding: 6px 14px;
}

@media (max-width: 768px) {
  .auth-modal { grid-template-columns: 1fr; }
  .auth-left { display: none; }
  .auth-right { padding: 28px 22px; }
}

/* ===========================
   MOBILE TOUCH FIXES
   =========================== */

.navbar__dropdown-item,
.navbar__cta,
.navbar__link,
.navbar__dropdown-toggle,
.float-wa,
.chatbot__toggle,
.reviews__add-btn,
.reviews__ctrl,
.rooms__card-btn,
.hero__btn,
.contact__submit,
.loc-submit,
.property-card__btn,
.loc-property-card__btn,
.why__card-cta,
.auth-submit {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
  .navbar__dropdown-toggle { z-index: 1001; }
  .navbar__dropdown-item { display: block; padding: 12px 16px; pointer-events: auto; }
  .float-wa { z-index: 9999; pointer-events: auto; }
  .chatbot { z-index: 9999; pointer-events: auto; }
  .reviews__add-btn { display: inline-flex; pointer-events: auto; }
}