:root {
  --bg: #f7fafc;
  --text: #102237;
  --muted: #526379;
  --primary: #0ea5e9;
  --primary-deep: #0284c7;
  --white: #ffffff;
  --soft: #edf6fb;
  --radius: 14px;
  --shadow: 0 14px 30px rgba(16, 34, 55, 0.1);
  --top-cta-height: 36px;
}

.home-page {
  --top-cta-height: 0px;
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes flipIn {
  from {
    opacity: 0;
    transform: rotateY(90deg) rotateX(10deg);
  }
  to {
    opacity: 1;
    transform: rotateY(0) rotateX(0);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Animation Classes */
.animate-slide-up {
  animation: slideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.animate-fade-up {
  animation: fadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
}

.animate-scale-up {
  animation: scaleUp 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.animate-flip-in {
  animation: flipIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  opacity: 0;
}

.animate-slide-up p {
  animation: fadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.animate-scale-up img {
  animation: scaleUp 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbff, #f1f7fb 40%, #f8fbff);
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  margin: 0;
}

p {
  margin: 0;
  color: var(--muted);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.top-cta {
  height: var(--top-cta-height);
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--primary), var(--primary-deep));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px 40px 4px 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.top-cta p {
  color: var(--white);
  white-space: nowrap;
}

.top-cta a {
  color: var(--primary-deep);
  text-decoration: none;
  background: var(--white);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.top-cta button {
  position: absolute;
  right: 12px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
}

.navbar {
  position: fixed;
  top: var(--top-cta-height);
  inset-inline: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(14, 165, 233, 0.1);
  box-shadow: 0 4px 20px rgba(16, 34, 55, 0.08);
  transition: all 300ms ease;
}

.navbar:hover {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(14, 165, 233, 0.2);
}

.nav-inner {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  padding: 0 20px;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: all 300ms ease;
}

.brand-logo {
  height: 40px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  transition: all 300ms ease;
}

.brand:hover .brand-logo {
  transform: scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-main {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--primary);
  text-transform: uppercase;
}

.brand-sub {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-deep));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 1px;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 7px 12px;
  border-radius: 10px;
  transition: all 300ms ease;
  border: 1px solid rgba(14, 165, 233, 0.2);
  background: rgba(14, 165, 233, 0.05);
  white-space: nowrap;
}

.phone-link i {
  color: var(--primary);
  font-size: 1rem;
}

.phone-link:hover {
  background: rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(14, 165, 233, 0.1);
}

.phone-link span {
  color: var(--primary);
  font-weight: 600;
}

.btn-book {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: var(--white) !important;
  padding: 8px 16px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 16px rgba(2, 132, 199, 0.2);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-book::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
  opacity: 0;
  transition: opacity 300ms ease;
}

.btn-book::after {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: right 300ms ease;
}

.btn-book:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(2, 132, 199, 0.35);
  background: linear-gradient(135deg, #22b4f0, #0369a1);
}

.btn-book:hover::after {
  right: 100%;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text);
  transition: all 300ms ease;
}

.menu-toggle:hover {
  color: var(--primary);
  transform: scale(1.1);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--top-cta-height) + 70px);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(110deg, rgba(7, 18, 29, 0.88), rgba(7, 18, 29, 0.48));
}

.hero-content {
  position: relative;
  color: var(--white);
  text-align: center;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.85);
}

.eyebrow {
  margin-bottom: 14px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.08;
  margin-bottom: 16px;
}

.hero-content > p {
  margin: 0 auto;
  max-width: 640px;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Hero Slider ── */

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
  width: 90%;
  max-width: 600px;
}

/* Slider Arrow Buttons */
.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
}

.hero:hover .hero-slider-btn {
  opacity: 1;
}

.hero-slider-prev {
  left: 24px;
}

.hero-slider-next {
  right: 24px;
}

.hero-slider-btn:hover {
  background: rgba(14, 165, 233, 0.6);
  border-color: rgba(14, 165, 233, 0.8);
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
}

/* Slider Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-dot.active {
  background: var(--primary);
  border-color: var(--primary);
  width: 32px;
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(14, 165, 233, 0.5);
}

.hero-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.btn {
  text-decoration: none;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.section {
  padding: 78px 0;
}

.section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  text-align: center;
  margin-bottom: 28px;
}

#features {
  position: relative;
  padding-top: 92px;
  padding-bottom: 92px;
  background:
    radial-gradient(circle at 10% 10%, rgba(14, 165, 233, 0.14), transparent 36%),
    radial-gradient(circle at 90% 0%, rgba(3, 105, 161, 0.12), transparent 30%),
    linear-gradient(180deg, #f3f8fc 0%, #e9f1f8 100%);
}

#features .container {
  position: relative;
}

#features h2 {
  margin-bottom: 34px;
  color: #0b2a4a;
  letter-spacing: 0.01em;
}

#features .cards-3 {
  gap: 22px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.feature-card {
  position: relative;
  border: 1px solid rgba(14, 116, 144, 0.12);
  border-radius: 16px;
  padding: 32px 24px 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(237, 246, 251, 0.5));
  box-shadow: 0 8px 24px rgba(16, 34, 55, 0.08);
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, #0ea5e9, #0284c7);
  opacity: 0;
  transition: opacity 300ms ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: 0 20px 40px rgba(14, 89, 128, 0.15);
}

.feature-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(2, 132, 199, 0.08));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 300ms ease;
}

.card-icon i {
  font-size: 28px;
  color: var(--primary);
}

.feature-card:hover .card-icon {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.22), rgba(2, 132, 199, 0.15));
  transform: scale(1.1);
}

#features .card {
  position: relative;
  border: 1px solid rgba(14, 116, 144, 0.15);
  border-radius: 18px;
  padding: 24px 24px 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
  box-shadow: 0 16px 38px rgba(16, 34, 55, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

#features .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, #0ea5e9, #0369a1);
}

#features .card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 165, 233, 0.38);
  box-shadow: 0 24px 44px rgba(14, 89, 128, 0.2);
}

#features .card h3 {
  margin-top: 4px;
  margin-bottom: 10px;
  color: #0c3158;
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
  line-height: 1.15;
}

#features .card p {
  font-size: 1.06rem;
  line-height: 1.5;
  color: #3a4f68;
}

#gallery {
  position: relative;
  background:
    radial-gradient(circle at 16% 8%, rgba(14, 165, 233, 0.15), transparent 35%),
    radial-gradient(circle at 84% 0%, rgba(3, 105, 161, 0.13), transparent 32%),
    linear-gradient(180deg, #eef5fb 0%, #e6eef7 100%);
  padding-top: 92px;
  padding-bottom: 92px;
}

#gallery h2 {
  color: #0b2a4a;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}

#gallery .gallery-grid {
  gap: 22px;
}

.gallery-header {
  margin-bottom: 34px;
}

.home-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#gallery .gallery-grid img {
  border-radius: 18px;
  border: 1px solid rgba(14, 116, 144, 0.18);
  box-shadow: 0 18px 40px rgba(16, 34, 55, 0.15);
  filter: saturate(1.05) contrast(1.03);
  transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}

#gallery .gallery-grid img:hover {
  transform: translateY(-7px) scale(1.01);
  box-shadow: 0 26px 50px rgba(9, 71, 110, 0.26);
  filter: saturate(1.15) contrast(1.06);
}

.section-soft {
  background: var(--soft);
}

.grid {
  display: grid;
  gap: 18px;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.room-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.room-card strong {
  display: inline-block;
  margin-top: 8px;
  color: var(--primary-deep);
}

#rooms {
  position: relative;
  background:
    radial-gradient(circle at 15% 12%, rgba(14, 165, 233, 0.1), transparent 34%),
    radial-gradient(circle at 88% 0%, rgba(2, 132, 199, 0.08), transparent 32%),
    linear-gradient(180deg, #edf4fb 0%, #e8f0f8 100%);
}

.room-header {
  margin-bottom: 40px;
}

.room-header .section-label {
  margin-bottom: 10px;
}

.room-showcase-card {
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(16, 34, 55, 0.08);
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(16, 34, 55, 0.11);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.room-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 44px rgba(7, 70, 109, 0.2);
  border-color: rgba(14, 165, 233, 0.26);
}

.room-image-wrap {
  position: relative;
  overflow: hidden;
}

.room-showcase-card img {
  width: 100%;
  height: 260px;
  border-radius: 0;
  margin-bottom: 0;
  object-fit: cover;
  transition: transform 420ms ease;
}

.room-showcase-card:hover img {
  transform: scale(1.05);
}

.room-price-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #1da6e7, #0d92d2);
  color: #ffffff;
  border-radius: 999px;
  padding: 7px 16px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(3, 105, 161, 0.35);
}

.room-content {
  padding: 22px 28px 24px;
}

.room-content h3 {
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  margin-bottom: 10px;
  color: #0f2947;
}

.room-content p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 14px;
}

.room-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1489cc;
  font-weight: 600;
  font-size: 0.98rem;
}

.room-meta i {
  font-size: 0.95rem;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
}

.cta-section {
  position: relative;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.2), transparent 34%),
    radial-gradient(circle at 82% 0%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(130deg, #0ea5e9 0%, #0284c7 42%, #075985 100%);
  padding-top: 94px;
  padding-bottom: 98px;
}

.cta-box {
  text-align: center;
  max-width: 880px;
  padding: 38px 28px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.09));
  backdrop-filter: blur(7px);
  box-shadow: 0 26px 52px rgba(6, 44, 72, 0.32);
}

.cta-box h2,
.cta-box p {
  color: var(--white);
}

.cta-box h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.cta-box p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.5;
  opacity: 0.95;
}

#contact .hero-actions {
  margin-top: 28px;
  gap: 14px;
}

#contact .btn {
  min-width: 220px;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 1.04rem;
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

#contact .btn-primary {
  background: linear-gradient(90deg, #22b4f0, #0ea5e9);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 24px rgba(10, 102, 151, 0.38);
}

#contact .btn-secondary {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
}

#contact .btn:hover {
  transform: translateY(-2px);
}

#contact .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 1000;
  text-decoration: none;
  background: #1da6e7;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  width: 58px;
  height: 58px;
  box-shadow: 0 14px 28px rgba(3, 105, 161, 0.3);
  font-size: 1.4rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: max(92px, calc(env(safe-area-inset-bottom) + 92px));
  z-index: 1000;
  text-decoration: none;
  background: #22c55e;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  width: 58px;
  height: 58px;
  font-size: 1.45rem;
  box-shadow: 0 14px 28px rgba(34, 197, 94, 0.32);
}

.floating-call:hover,
.floating-whatsapp:hover {
  transform: translateY(-3px);
}

@media (max-width: 960px) {
  .cards-3,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #features {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  #gallery {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .cta-section {
    padding-top: 84px;
    padding-bottom: 88px;
  }

  .cta-box p {
    font-size: 1.12rem;
  }
}

@media (max-width: 720px) {
  :root {
    --top-cta-height: 54px;
  }

  .container {
    width: min(1120px, 94vw);
  }

  .top-cta {
    justify-content: flex-start;
    gap: 6px;
    padding-inline: 10px 36px;
  }

  .top-cta p {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.76rem;
  }

  .top-cta a {
    flex-shrink: 0;
    font-size: 0.68rem;
    padding: 5px 8px;
    white-space: nowrap;
  }

  .top-cta button {
    right: 8px;
    font-size: 18px;
  }

  .nav-inner {
    min-height: 64px;
    gap: 12px;
  }

  .brand {
    font-size: 0.75rem;
    line-height: 1;
    gap: 8px;
  }

  .brand-logo {
    height: 40px;
    max-width: 180px;
  }

  .brand-text {
    gap: 2px;
  }

  .brand-main {
    font-size: 0.65rem;
  }

  .brand-sub {
    font-size: 0.72rem;
  }

  .menu-toggle {
    display: block;
    font-size: 1.35rem;
    line-height: 1;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(14, 165, 233, 0.2);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 8px 14px 10px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    width: 100%;
    padding: 10px 12px;
    font-size: 0.9rem;
    border-radius: 8px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link.active,
  .nav-link:hover {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
  }

  .nav-right {
    display: none;
  }

  .cards-3,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .home-gallery-grid {
    grid-template-columns: 1fr;
  }

  #features {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }

  .section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 12px;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .feature-card {
    padding: 24px 20px 20px;
  }

  .room-showcase-card img {
    height: 230px;
  }

  .room-content {
    padding: 20px 20px 22px;
  }

  .room-content h3 {
    font-size: 1.9rem;
  }

  .room-price-pill {
    top: 12px;
    right: 12px;
    font-size: 0.95rem;
    padding: 6px 14px;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
  }

  .card-icon i {
    font-size: 24px;
  }

  #gallery {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  #gallery h2 {
    margin-bottom: 24px;
  }

  #gallery .gallery-grid {
    gap: 16px;
  }

  #gallery .gallery-grid img {
    border-radius: 16px;
    height: 220px;
  }

  .cta-section {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .cta-box {
    border-radius: 18px;
    padding: 26px 14px;
  }

  .cta-box p {
    font-size: 1rem;
  }

  #contact .hero-actions {
    gap: 10px;
  }

  #contact .btn {
    width: 100%;
    min-width: 0;
    padding: 13px 16px;
    font-size: 0.98rem;
  }

  #features h2 {
    margin-bottom: 24px;
  }

  #features .card {
    border-radius: 16px;
    padding: 18px 16px;
  }

  #features .card::before {
    border-radius: 16px 16px 0 0;
  }

  #features .card h3 {
    font-size: 1.25rem;
  }

  #features .card p {
    font-size: 1rem;
  }

  .floating-call {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: max(76px, calc(env(safe-area-inset-bottom) + 76px));
    width: 54px;
    height: 54px;
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
  }
}

@media (max-width: 420px) {
  .top-cta a {
    padding: 4px 7px;
    font-size: 0.64rem;
  }

  .brand {
    font-size: 1.4rem;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #06162b 0%, #041124 100%);
  color: var(--white);
  padding: 62px 0 24px;
  margin-top: 0;
  border-top: 1px solid rgba(86, 170, 218, 0.18);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1.1fr 0.8fr;
  gap: 34px;
  margin-bottom: 40px;
}

.footer-brand {
  padding-right: 12px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 14px;
}

.footer-logo img {
  width: 190px;
  height: auto;
  display: block;
}

.footer-section h3,
.footer-section h4 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: 2rem;
  font-family: "Fraunces", serif;
  letter-spacing: 0.01em;
}

.footer-section p {
  color: rgba(231, 239, 251, 0.72);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.footer-section a {
  color: rgba(231, 239, 251, 0.76);
  text-decoration: none;
  transition: color 220ms ease;
}

.footer-section a:hover {
  color: #2cb8f4;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(231, 239, 251, 0.76);
  line-height: 1.45;
}

.footer-contact-list i {
  margin-top: 2px;
  color: #25b4ef;
  width: 16px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(9, 46, 77, 0.9);
  border: 1px solid rgba(57, 137, 184, 0.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d4ecfb;
  font-size: 1.05rem;
}

.footer-social a:hover {
  background: rgba(17, 95, 142, 0.88);
  border-color: rgba(89, 183, 235, 0.4);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(86, 170, 218, 0.18);
  padding-top: 26px;
  text-align: center;
  color: rgba(200, 221, 243, 0.65);
  font-size: 1rem;
}

@media (max-width: 960px) {
  .footer-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .footer {
    padding-top: 48px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 26px;
  }

  .footer-logo img {
    width: 170px;
  }

  .footer-section h3,
  .footer-section h4 {
    font-size: 1.65rem;
    margin-bottom: 10px;
  }
}

/* Hero Section for inner pages */
.hero-section {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  padding-top: calc(var(--top-cta-height) + 70px);
  padding-bottom: 60px;
  text-align: center;
}

.hero-section h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}

.hero-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Gallery Filters */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--white);
  border: 2px solid #ddd;
  color: var(--text);
  padding: 10px 18px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 300ms ease;
  font-size: 0.95rem;
}

.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active:hover {
  color: var(--white);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 10px 28px rgba(16, 34, 55, 0.12);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(16, 34, 55, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact Page Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 28px;
  color: var(--text);
  text-align: left;
}

.contact-info {
  background: var(--soft);
  padding: 32px;
  border-radius: 18px;
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.contact-info h2 {
  font-size: 1.6rem;
  margin-bottom: 24px;
  color: var(--text);
  text-align: left;
}

.info-item {
  margin-bottom: 28px;
}

.info-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text);
}

.info-item p {
  color: var(--muted);
  line-height: 1.6;
}

.social-links {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-btn {
  flex: 1;
  min-width: 120px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  transition: all 200ms ease;
}

.social-btn:hover {
  background: var(--primary-deep);
  transform: translateY(-2px);
}

/* Form Styles */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 200ms ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  width: 100%;
  margin-top: 8px;
}

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text {
  position: relative;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.about-text h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 24px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.about-text h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-deep));
  border-radius: 2px;
  transform-origin: left;
  animation: expandWidth 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
}

@keyframes expandWidth {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards both;
}

.about-text p:nth-child(4) {
  animation-delay: 100ms;
}

.about-text p:nth-child(5) {
  animation-delay: 200ms;
}

.about-text p:nth-child(6) {
  animation-delay: 300ms;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  perspective: 1200px;
}

.about-images img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
  transition: all 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  animation: scaleUp 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards both;
}

.about-images img:first-child {
  animation-delay: 150ms;
}

.about-images img:last-child {
  animation-delay: 300ms;
  transform: translateY(20px);
}

.about-images img:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 30px 60px rgba(14, 165, 233, 0.3);
  filter: brightness(1.05);
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat {
  color: var(--white);
  perspective: 1000px;
  transition: transform 300ms ease;
}

.stat:hover {
  transform: translateY(-8px) scale(1.05);
}

.stat-number {
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  margin: 0 0 8px 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: inline-block;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.95;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Value Cards */
.value-card {
  text-align: center;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.value-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.1), transparent);
  border-radius: 18px;
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.value-card:hover::after {
  opacity: 1;
}

.value-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.value-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 600;
}

.value-card p {
  font-size: 0.98rem;
  line-height: 1.6;
  transition: color 300ms ease;
}

.value-card:hover p {
  color: var(--text);
}

/* Room Meta */
.room-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #eee;
  font-size: 0.88rem;
  color: var(--muted);
}

.room-meta span {
  font-weight: 500;
}

/* Amenity Cards */
.amenity {
  text-align: center;
  padding: 16px;
}

.amenity-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.amenity h3 {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  margin: 0;
}

/* Section CTA */
.section-cta {
  text-align: center;
  margin-top: 32px;
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px;
}

@media (max-width: 1024px) {
  .cards-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 480px) {
  .cards-4 {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
}

/* Navigation active state */
.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

  .footer-content {
    gap: 32px;
  }
}

@media (max-width: 720px) {
  .contact-form {
    padding: 24px;
  }

  .contact-info {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-filters {
    gap: 8px;
    margin-bottom: 24px;
  }

  .filter-btn {
    padding: 8px 14px;
    font-size: 0.88rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
  }

  .hero-section {
    padding: calc(var(--top-cta-height) + 70px) 0 40px;
  }

  .hero-section h1 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
  }

  .about-text h2 {
    font-size: 1.6rem;
  }

  .about-text h3 {
    font-size: 1.2rem;
  }

  .stats-grid {
    gap: 20px;
  }

  .stat-number {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
  }

  .footer {
    padding: 48px 0 16px;
  }

  .footer-content {
    gap: 28px;
  }

  .footer-section h3,
  .footer-section h4 {
    font-size: 1.1rem;
  }

  .cards-4 {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

/* Icon Styling */
.amenity-icon {
  font-size: 1.25rem !important;
  color: var(--primary);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 0 !important;
  width: 40px !important;
  height: 40px !important;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(2, 132, 199, 0.05)) !important;
  border-radius: 8px !important;
  flex-shrink: 0 !important;
  transition: all 300ms ease !important;
}

.amenity:hover .amenity-icon {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(2, 132, 199, 0.12)) !important;
  transform: scale(1.05) rotate(5deg) !important;
  color: var(--primary-deep) !important;
}

.value-icon {
  font-size: 3rem !important;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease;
}

.value-card:hover .value-icon {
  color: var(--primary-deep);
  transform: scale(1.15) rotateY(10deg);
}

.info-item h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  margin-bottom: 8px !important;
}

.info-item h3 i {
  font-size: 1.3rem;
  color: var(--primary);
  width: 24px;
  text-align: center;
}

.footer-section p i {
  color: var(--primary);
  margin-right: 8px;
  width: 16px;
  text-align: center;
}

/* Enhanced Card Styling */
.card {
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(14, 165, 233, 0.1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.3);
}

.amenity {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 12px 16px !important;
  border-radius: 12px !important;
  background: var(--white);
  border: 1px solid rgba(14, 165, 233, 0.12) !important;
  box-shadow: 0 4px 12px rgba(16, 34, 55, 0.02) !important;
  text-align: left !important;
  transition: all 300ms ease !important;
  position: relative;
  overflow: hidden;
}

.amenity::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  height: 100% !important;
  background: linear-gradient(180deg, var(--primary), var(--primary-deep));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 300ms ease;
}

.amenity:hover::before {
  transform: scaleY(1) !important;
  transform-origin: top !important;
}

.amenity:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.08) !important;
  border-color: rgba(14, 165, 233, 0.25) !important;
}

.value-card {
  padding: 32px 28px !important;
  border: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(14, 165, 233, 0.03));
  box-shadow: 0 8px 24px rgba(16, 34, 55, 0.08);
}

.value-card:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.99), rgba(14, 165, 233, 0.08));
}

.room-card {
  overflow: hidden;
  position: relative;
}

.room-card img {
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover img {
  transform: scale(1.08);
}

/* Form Styling Enhancements */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.1);
}

.form-group input,
.form-group select,
.form-group textarea {
  transition: all 300ms ease;
}

/* Button Enhancements */
.btn {
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 300ms ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(2, 132, 199, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Gallery Item Enhancement */
.gallery-item {
  box-shadow: 0 8px 20px rgba(16, 34, 55, 0.1);
}

.gallery-item:hover {
  box-shadow: 0 16px 40px rgba(14, 165, 233, 0.2);
}

/* Footer Icon Styling */
.footer-section a i {
  margin-right: 6px;
}

/* Social Button Enhancement */
.social-btn {
  transition: all 300ms ease;
}

.social-btn:hover {
  background: var(--primary-deep) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(2, 132, 199, 0.3);
}

/* Filter Button Enhancement */
.filter-btn {
  transition: all 300ms ease;
  position: relative;
}

.filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}

.filter-btn.active {
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

@media (max-width: 720px) {
  .amenity-icon {
    font-size: 2.2rem !important;
    width: 50px;
    height: 50px;
  }

  .value-icon {
    font-size: 2.4rem !important;
  }
}

/* Highlights Box Styling */
.highlights-box {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.02) 0%, rgba(2, 132, 199, 0.06) 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(16, 34, 55, 0.03);
  border: 1px solid rgba(14, 165, 233, 0.12);
  max-width: 900px;
  margin: 48px auto 0;
}

.highlights-box h3 {
  text-align: center;
  margin-bottom: 32px;
  color: var(--text);
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(14, 165, 233, 0.06);
  box-shadow: 0 4px 12px rgba(16, 34, 55, 0.01);
  transition: all 300ms ease;
}

.highlight-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.08);
  border-color: rgba(14, 165, 233, 0.2);
}

.highlight-icon {
  font-size: 1.5rem;
  color: #22c55e;
  line-height: 1;
  margin-top: 2px;
}

.highlight-text h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 6px 0;
}

.highlight-text p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .highlights-box {
    padding: 24px;
  }
}

/* Highlights Banner styling */
.banner-highlights-section {
  padding: 48px 0 24px;
  background: var(--white);
  text-align: center;
}

.beds-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

.beds-badge h2 {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #06162b;
  letter-spacing: 0.05em;
  margin: 0;
}

.ornament-line {
  position: relative;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e2b43b 50%, transparent);
}

.ornament-line::after {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #e2b43b;
  font-size: 0.8rem;
  background: var(--white);
  padding: 0 4px;
}

.highlights-banner {
  background: linear-gradient(135deg, #06162b 0%, #041124 100%);
  border: 2px solid #e2b43b;
  border-radius: 6px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
  box-shadow: 0 10px 30px rgba(6, 22, 43, 0.15);
}

.highlights-banner::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 1px dashed rgba(226, 180, 59, 0.4);
  pointer-events: none;
  border-radius: 4px;
}

.banner-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  position: relative;
}

.banner-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: rgba(226, 180, 59, 0.25);
}

.banner-icon {
  font-size: 1.8rem;
  color: #e2b43b;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-text h3 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 2px 0;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.banner-text p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  color: rgba(231, 239, 251, 0.7);
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .highlights-banner {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .banner-item:nth-child(3)::after {
    display: none;
  }
  .banner-item::after {
    right: -12px;
  }
}

@media (max-width: 768px) {
  .beds-badge h2 {
    font-size: 1.8rem;
  }
  .highlights-banner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  .banner-item::after {
    display: none;
  }
  .banner-item {
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(226, 180, 59, 0.15);
  }
  .banner-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
}

/* Dialog Modal Styling */
.enquiry-modal {
  border: none;
  border-radius: 20px;
  padding: 36px;
  width: min(550px, 92vw);
  background: var(--white);
  box-shadow: 0 25px 50px -12px rgba(6, 22, 43, 0.25);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  z-index: 1100;
  box-sizing: border-box;
}

.enquiry-modal::backdrop {
  background: rgba(4, 17, 36, 0.6);
  backdrop-filter: blur(8px);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal-header h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  color: var(--text);
  margin: 0;
}

.close-modal-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 50%;
  transition: all 200ms ease;
}

.close-modal-btn:hover {
  background: var(--soft);
  color: var(--text);
}

.contact-form-popup {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form-popup .form-group {
  margin-bottom: 0;
}

.contact-form-popup .btn {
  margin-top: 10px;
  width: 100%;
}

/* Success State */
.popup-success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 0;
}

.popup-success-state .success-icon {
  font-size: 3.5rem;
  color: #22c55e;
  margin-bottom: 18px;
}

.popup-success-state h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 10px;
}

.popup-success-state p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.enquiry-modal:not([open]) {
  display: none !important;
}

/* Properties Page & Cards Showcase */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 24px;
}

.property-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(6, 22, 43, 0.05);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(226, 180, 59, 0.1);
  position: relative;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(6, 22, 43, 0.12);
  border-color: var(--primary);
}

.property-image-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.property-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.property-card:hover .property-image-container img {
  transform: scale(1.08);
}

.property-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
}

.badge-gender {
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.badge-boys {
  background: #0284c7;
  color: var(--white);
}

.badge-girls {
  background: #db2777;
  color: var(--white);
}

.badge-beds {
  background: var(--primary);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.property-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.property-card-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 8px;
}

.property-sharing {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.property-sharing i {
  font-size: 0.85rem;
}

.property-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Card key features grid from the poster */
.property-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
  margin: 16px 0 20px 0;
  padding: 14px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid rgba(226, 180, 59, 0.08);
}

.property-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.property-feature-item i {
  color: #e2b43b; /* Premium gold accent to match the poster */
  font-size: 0.95rem;
  width: 18px;
  text-align: center;
}

.property-card-footer {
  margin-top: auto;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

/* Property Details Modal styling */
.property-details-modal {
  border: none;
  border-radius: 20px;
  padding: 0;
  width: min(850px, 94vw);
  background: var(--white);
  box-shadow: 0 25px 50px -12px rgba(6, 22, 43, 0.3);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  z-index: 1200;
  box-sizing: border-box;
  overflow: hidden;
}

.property-details-modal:not([open]) {
  display: none !important;
}

.property-modal-header {
  position: relative;
  padding: 24px 30px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.property-modal-header h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  color: var(--text);
  margin: 0;
}

.property-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: all 200ms ease;
}

.property-modal-close:hover {
  color: var(--text);
}

.property-modal-body {
  padding: 30px;
  max-height: calc(90vh - 100px);
  overflow-y: auto;
}

.property-modal-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 30px;
}

@media (max-width: 768px) {
  .property-modal-grid {
    grid-template-columns: 1fr;
  }
}

.property-modal-left img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.property-specs-list {
  background: #f8fafc;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #e2e8f0;
  font-size: 0.95rem;
}

.spec-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.spec-label {
  color: var(--muted);
  font-weight: 500;
}

.spec-val {
  color: var(--text);
  font-weight: 600;
}

.property-modal-right h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 12px;
}

.property-modal-right p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.property-modal-amenities {
  margin-bottom: 24px;
}

.modal-amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}

.modal-amenity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text);
}

.modal-amenity-item i {
  color: #22c55e;
  font-size: 1rem;
}

.property-modal-contacts {
  border-top: 1.5px solid #f1f5f9;
  padding-top: 24px;
  margin-top: 24px;
}

.property-modal-contacts h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 14px;
  color: var(--text);
}

.modal-contacts-flex {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.modal-contact-row .btn {
  flex: 1;
  min-width: 150px;
  font-size: 0.9rem;
  padding: 12px 16px;
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--white);
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background-color: #128c7e;
  border-color: #128c7e;
  transform: translateY(-2px);
}

/* ── Hero Slider Responsive ── */
@media (max-width: 768px) {
  .hero-slider-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    opacity: 1;
  }

  .hero-slider-prev {
    left: 12px;
  }

  .hero-slider-next {
    right: 12px;
  }

  .hero-slider-dots {
    bottom: 20px;
    padding: 8px 14px;
    gap: 8px;
  }

  .hero-dot {
    width: 10px;
    height: 10px;
  }

  .hero-dot.active {
    width: 26px;
  }
}
