.hero::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at center, rgba(198, 154, 43, 0.5), transparent 65%);
  filter: blur(20px);
  opacity: 0.4;
  z-index: 1;
}
.animate {
  opacity: 0;
  transform: translateY(30px);
}

[data-animate] {
  opacity: 0;
}

[data-animate='up'].in-view,
[data-animate='fade'].in-view,
[data-animate='right'].in-view {
  opacity: 1;
  transform: none;
}

[data-animate='up'],
[data-animate='fade'],
[data-animate='right'] {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate='up'] {
  transform: translateY(40px);
}

[data-animate='fade'] {
  transform: translateY(24px);
}

[data-animate='right'] {
  transform: translateX(40px);
}

[data-animate-delay='0'] {
  transition-delay: 0.05s;
}

[data-animate-delay='100'] {
  transition-delay: 0.15s;
}

[data-animate-delay='120'] {
  transition-delay: 0.2s;
}

[data-animate-delay='200'] {
  transition-delay: 0.3s;
}

[data-animate-delay='240'] {
  transition-delay: 0.36s;
}

[data-animate-delay='300'] {
  transition-delay: 0.45s;
}

[data-animate-delay='360'] {
  transition-delay: 0.52s;
}

[data-animate-delay='1200'] {
  transition-delay: 0.8s;
}
:root {
  --bg-dark: #0f172a;
  --bg-light: #f8fafc;
  --brand: #c69a2b;
  --accent: #b78b14;
  --text: #0b1220;
  --muted: #475569;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
}

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

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand);
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

header.hero {
  position: relative;
  min-height: 72vh;
  color: var(--white);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

header.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.35));
  z-index: 1;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  position: relative;
  z-index: 2;
}

.navbar .brand {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.navbar .brand span {
  font-weight: 400;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
}

.nav-links a {
  font-weight: 500;
  color: var(--white);
}

.nav-links .btn {
  background: var(--brand);
  color: var(--white);
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-top: 14vh;
  max-width: 560px;
}

.hero-headline h1 {
  margin: 0;
  position: relative;
  min-height: 3.6rem;
}

.hero-phrase {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-phrase.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-content .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  opacity: 0.8;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 5vw, 3.5rem);
  margin: 0.8rem 0;
}

.hero-content .tagline {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.hero-highlights div {
  padding: 1rem 1.4rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  min-width: 140px;
  display: grid;
  gap: 0.2rem;
}

.hero-highlights .value {
  font-size: 1.4rem;
  font-weight: 600;
}

.hero-highlights .label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.hero-controls {
  display: inline-flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-control {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.45rem 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-control:hover,
.hero-control:focus {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.btn,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn {
  background: var(--brand);
  color: var(--white);
  border: none;
}

.btn-outline {
  border: 1px solid var(--white);
  color: var(--white);
}

.btn:hover,
.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

section {
  padding: 4.5rem 0;
}

.booking {
  margin-top: -4rem;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

.booking-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.booking-form input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
}

.welcome .grid,
.amenities .grid,
.contact .grid,
.rooms .grid,
.about .grid,
.site-footer .grid {
  display: grid;
  gap: 2rem;
}

.welcome .grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.card h3 {
  margin-top: 0;
}

.card ul {
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
}

.welcome-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.welcome-text .stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0 2.5rem;
}

.welcome-text .stats div {
  min-width: 120px;
  padding: 1.2rem 1.4rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(198, 154, 43, 0.14), rgba(198, 154, 43, 0.04));
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.welcome-text .stats strong {
  font-size: 1.6rem;
  color: var(--brand);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-outline.dark {
  border: 1px solid var(--brand);
  color: var(--brand);
  background: transparent;
}

.btn-outline.dark:hover {
  background: var(--brand);
  color: var(--white);
}

.welcome-media {
  display: grid;
  gap: 1.5rem;
}

.hero-figure {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
}

.hero-figure img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
}

.hero-figure figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.85));
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.media-card {
  padding: 1.8rem;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.brand-highlights {
  background: var(--bg-light);
  text-align: center;
}

.brand-highlights h2 {
  margin-bottom: 2.5rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
}

.feature-card {
  background: var(--white);
  padding: 2.2rem 1.8rem;
  border-radius: 20px;
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.08);
  text-align: left;
  display: grid;
  gap: 1rem;
}

.feature-card .icon {
  font-size: 2rem;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.destinations {
  background: var(--white);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.destination-card {
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
}

.destination-image {
  padding-top: 62%;
  background-size: cover;
  background-position: center;
}

.destination-body {
  padding: 1.8rem;
}

.gallery {
  background: var(--bg-light);
}

.home-rooms {
  background: var(--white);
}

.home-rooms .section-header p {
  color: var(--muted);
}

.home-rooms .room-card {
  min-height: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.gallery-grid figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.1);
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.gallery-grid figcaption {
  padding: 1.1rem 1.4rem;
  font-size: 0.95rem;
}

.testimonials {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.85));
  color: rgba(255, 255, 255, 0.9);
}

.testimonials .section-header {
  color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.testimonial-card {
  margin: 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 2.2rem;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
  display: grid;
  gap: 1.4rem;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.8;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-weight: 500;
}

.testimonial-card .location {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.cta-strip {
  text-align: center;
  background: var(--bg-light);
}

.cta-strip h2 {
  margin-bottom: 0.8rem;
}

.cta-strip p {
  max-width: 640px;
  margin: 0 auto 2rem;
  color: var(--muted);
}

.amenities {
  background: var(--bg-light);
  text-align: center;
}

.amenities .grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.amenity {
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.page-hero {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.75)),
    url('https://images.pexels.com/photos/338504/pexels-photo-338504.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 6rem 0 4rem;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.rooms-hero {
  position: relative;
  background: url('https://images.pexels.com/photos/271639/pexels-photo-271639.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
  color: var(--white);
  padding: clamp(6rem, 18vh, 8rem) 0;
}

.rooms-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.55));
}

.rooms-hero .overlay {
  display: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
  z-index: 1;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
}

.hero-card h3 {
  color: var(--white);
  margin-top: 0;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.85);
}

.hero-card .btn {
  margin-top: 1.5rem;
  background: var(--brand);
  color: var(--white);
}

.room-intro {
  background: var(--bg-light);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.comfort-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.comfort-list li {
  padding: 1.2rem 1.4rem;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  font-weight: 500;
  color: var(--muted);
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.8rem, 5vw, 2.5rem);
}

.room-card {
  background: var(--white);
  border-radius: 26px;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.room-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 26px;
  border: 1px solid rgba(198, 154, 43, 0.08);
  pointer-events: none;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 38px 70px rgba(15, 23, 42, 0.18);
}

.room-image {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-card:hover .room-image img {
  transform: scale(1.05);
}

.room-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(15, 23, 42, 0.78);
  color: var(--white);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.room-tag.popular {
  top: 16px;
  right: 16px;
  left: auto;
  background: linear-gradient(135deg, #c69a2b, #b78b14);
  box-shadow: 0 10px 25px rgba(198, 154, 43, 0.3);
}

.room-tag.price {
  background: rgba(15, 23, 42, 0.78);
}

.room-body {
  padding: 2.2rem 2rem 2.4rem;
  display: grid;
  gap: 1rem;
}

.room-body h3 {
  margin: 0;
  font-size: 1.6rem;
}

.room-body p {
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

.room-body ul {
  padding-left: 1.1rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.room-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.room-actions .btn {
  background: var(--brand);
  box-shadow: 0 14px 30px rgba(198, 154, 43, 0.3);
}

.room-services {
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.6rem;
}

.service-list li {
  background: var(--white);
  padding: 1.8rem;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.service-list h3 {
  margin-top: 0;
  color: var(--text);
}

.service-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.rooms .grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.room-card {
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 50px rgba(15, 23, 42, 0.08);
}

.room-card .price {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--brand);
}

.room-card .price span {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact .grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.85rem;
  border-radius: 10px;
  border: 1px solid #dce3f1;
  font-size: 1rem;
}

.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 4rem;
}

.site-footer h3 {
  color: var(--white);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.8;
}

.site-footer .btn {
  background: var(--brand);
  color: var(--white);
}

.footer-bar {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.social {
  display: flex;
  gap: 1rem;
}

.social a {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.floating-btn {
  position: fixed;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--white);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 1000;
  gap: 0.6rem;
}

.floating-btn.call {
  left: 24px;
  background: linear-gradient(135deg, #1e3a8a, #0f172a);
}

.floating-btn.whatsapp {
  right: 24px;
  background: linear-gradient(135deg, #0f9d58, #0a7b42);
}

.floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.3);
}

.floating-btn .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.floating-btn .icon svg {
  width: 100%;
  height: 100%;
  fill: var(--white);
}

.floating-btn .label {
  display: inline-block;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 0 0 auto 0;
    transform: translateY(-120%);
    flex-direction: column;
    background: rgba(15, 23, 42, 0.95);
    padding: 4rem 0 2rem;
    gap: 2rem;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .menu-toggle {
    display: flex;
    z-index: 3;
  }

  header.hero {
    min-height: 75vh;
  }

  .hero-content {
    margin-top: 8vh;
  }

  .hero-highlights {
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .booking {
    margin-top: -3rem;
  }

  section {
    padding: 3.5rem 0;
  }

  .floating-btn {
    padding: 0.75rem 1.1rem;
    bottom: 16px;
    font-size: 0.9rem;
  }

  .floating-btn.call {
    left: 12px;
  }

  .floating-btn.whatsapp {
    right: 12px;
  }

  .hero-highlights {
    width: 100%;
  }
}

