/* ============================================
   ROYAL PALMS MOTEL — STYLE SYSTEM
   Palette: Terracotta (#C05640) + Sand (#D4A574)
   Fonts: Outfit (headings) + Inter (body)
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --terracotta: #C05640;
  --terracotta-dark: #A04330;
  --terracotta-light: #D47560;
  --sand: #D4A574;
  --sand-light: #E8C9A0;
  --sand-lighter: #F5E6D3;
  --sand-pale: #FBF5EE;
  --cream: #FFFDF9;
  --dark: #1A1A1A;
  --dark-soft: #2D2D2D;
  --gray-600: #555555;
  --gray-400: #888888;
  --gray-200: #E5E5E5;
  --white: #FFFFFF;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(26,26,26,0.08);
  --shadow-md: 0 4px 16px rgba(26,26,26,0.10);
  --shadow-lg: 0 8px 32px rgba(26,26,26,0.12);
  --shadow-xl: 0 16px 48px rgba(26,26,26,0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192, 86, 64, 0.1);
  transition: var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--dark);
}

.nav__logo-icon {
  color: var(--terracotta);
}

.nav__logo-text {
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav__links a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav__links a:hover {
  color: var(--terracotta);
  background: rgba(192, 86, 64, 0.06);
}

.nav__cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  border-radius: var(--radius-sm) !important;
  padding: 8px 20px !important;
  transition: var(--transition) !important;
}

.nav__cta:hover {
  background: var(--terracotta-dark) !important;
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #C05640 0%, #D47560 30%, #D4A574 60%, #E8C9A0 80%, #F5E6D3 100%);
  padding: 120px 24px 80px;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__shape--circle1 {
  width: 600px;
  height: 600px;
  background: rgba(255, 253, 249, 0.08);
  top: -200px;
  right: -150px;
}

.hero__shape--circle2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 253, 249, 0.06);
  bottom: -80px;
  left: -60px;
}

.hero__shape--rect1 {
  width: 120px;
  height: 120px;
  background: rgba(255, 253, 249, 0.1);
  border-radius: var(--radius-lg);
  top: 20%;
  left: 8%;
  transform: rotate(25deg);
}

.hero__shape--rect2 {
  width: 80px;
  height: 80px;
  background: rgba(255, 253, 249, 0.07);
  border-radius: var(--radius-md);
  bottom: 25%;
  right: 10%;
  transform: rotate(-15deg);
}

.hero__shape--triangle {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 104px solid rgba(255, 253, 249, 0.06);
  top: 30%;
  right: 15%;
  transform: rotate(30deg);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero__badge {
  display: inline-block;
  background: rgba(255, 253, 249, 0.2);
  border: 1px solid rgba(255, 253, 249, 0.3);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__title-accent {
  display: block;
  color: var(--sand-pale);
  font-size: 0.75em;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 253, 249, 0.88);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 253, 249, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  opacity: 0.6;
  transition: var(--transition);
  animation: heroScrollBounce 2s ease-in-out infinite;
}

.hero__scroll:hover {
  opacity: 1;
}

@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--white);
  color: var(--terracotta);
}

.btn--primary:hover {
  background: var(--sand-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background: var(--terracotta);
  color: var(--white);
}

.btn--secondary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 253, 249, 0.5);
}

.btn--outline:hover {
  background: rgba(255, 253, 249, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

.btn--dark:hover {
  background: var(--dark-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(192, 86, 64, 0.08);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ============================================
   INTRO
   ============================================ */
.intro {
  background: var(--sand-pale);
  padding: 80px 24px;
  border-top: 3px solid var(--sand-light);
  border-bottom: 3px solid var(--sand-light);
}

.intro__inner {
  max-width: 800px;
  margin: 0 auto;
}

.intro__text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--dark-soft);
}

.intro__text strong {
  color: var(--terracotta);
  font-weight: 700;
}

/* ============================================
   ROOMS
   ============================================ */
.rooms {
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.rooms__shape {
  position: absolute;
  top: 10%;
  right: -100px;
  color: var(--terracotta);
  opacity: 0.04;
  pointer-events: none;
}

.rooms__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--sand-light);
}

.room-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.room-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.room-card__image-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 50px;
}

.room-card__body {
  padding: 28px;
}

.room-card__header {
  margin-bottom: 12px;
}

.room-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.room-card__subtitle {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-top: 4px;
}

.room-card__desc {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.room-card__features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.room-card__features li {
  background: var(--sand-pale);
  color: var(--dark-soft);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 50px;
  border: 1px solid var(--sand-light);
}

.room-card__body .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================
   AMENITIES
   ============================================ */
.amenities {
  padding: 100px 24px;
  background: var(--sand-pale);
  position: relative;
  overflow: hidden;
}

.amenities__deco {
  position: absolute;
  pointer-events: none;
}

.amenities__deco--top {
  top: 40px;
  right: 40px;
  display: flex;
  gap: 16px;
}

.amenities__deco--bottom {
  bottom: 40px;
  left: 40px;
  display: flex;
  gap: 16px;
}

.deco-shape {
  border-radius: 50%;
}

.deco-shape--circle {
  width: 80px;
  height: 80px;
}

.deco-shape--square {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  transform: rotate(20deg);
}

.deco-shape--triangle {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  transform: rotate(45deg);
}

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 2;
}

.amenity-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sand-light);
}

.amenity-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
}

.amenity-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.amenity-card__desc {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================
   LOCATION
   ============================================ */
.location {
  padding: 100px 24px;
  background: var(--cream);
}

.location__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.location__content .section-tag {
  margin-bottom: 16px;
}

.location__content .section-title {
  margin-bottom: 20px;
}

.location__desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 32px;
}

.location__highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.location__highlights li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--dark-soft);
}

.location__highlights li svg {
  color: var(--terracotta);
  flex-shrink: 0;
}

.location__highlights li strong {
  color: var(--dark);
}

.location__map {
  position: relative;
}

.location__map-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.location__map-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.location__map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(192,86,64,0.15), rgba(212,165,116,0.1));
}

.location__map-pin {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  margin-bottom: 12px;
  animation: pinBounce 2s ease-in-out infinite;
}

@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.location__map-label {
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

/* ============================================
   WHY
   ============================================ */
.why {
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-light) 100%);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.06);
  pointer-events: none;
}

.why::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.04);
  pointer-events: none;
}

.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.why__text-block .section-tag {
  background: rgba(255, 253, 249, 0.2);
  color: var(--white);
}

.why__text-block .section-title {
  color: var(--white);
  margin-bottom: 24px;
}

.why__desc {
  font-size: 1.05rem;
  color: rgba(255, 253, 249, 0.88);
  line-height: 1.8;
  margin-bottom: 16px;
}

.why__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-block {
  background: rgba(255, 253, 249, 0.12);
  border: 1px solid rgba(255, 253, 249, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.stat-block:hover {
  background: rgba(255, 253, 249, 0.18);
  transform: translateY(-4px);
}

.stat-block__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-block__label {
  font-size: 0.9rem;
  color: rgba(255, 253, 249, 0.8);
  font-weight: 500;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 24px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.testimonials__shape {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--sand-pale);
  bottom: -200px;
  left: -200px;
  pointer-events: none;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sand-light);
}

.testimonial-card__quote-mark {
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  color: var(--terracotta);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  color: var(--terracotta);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}

.testimonial-card__role {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-top: 2px;
}

/* ============================================
   CTA
   ============================================ */
.cta {
  padding: 100px 24px;
  background: var(--sand-pale);
}

.cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.cta__content .section-tag {
  margin-bottom: 16px;
}

.cta__content .section-title {
  margin-bottom: 20px;
}

.cta__desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 36px;
}

.cta__contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.cta__contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  text-decoration: none;
}

.cta__contact-item:hover {
  border-color: var(--sand-light);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.cta__contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.cta__contact-text {
  display: flex;
  flex-direction: column;
}

.cta__contact-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.cta__contact-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
}

.cta__form-wrap {
  position: sticky;
  top: 100px;
}

.cta__form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.cta__form-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.cta__form-subtitle {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(192, 86, 64, 0.1);
}

.form-input::placeholder {
  color: var(--gray-400);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-top: 16px;
  color: #2E7D32;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-success svg {
  color: #2E7D32;
  flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 64px 24px 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__logo-icon {
  color: var(--sand);
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255, 253, 249, 0.5);
  line-height: 1.7;
}

.footer__link-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 253, 249, 0.4);
  margin-bottom: 20px;
}

.footer__link-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link-col ul li a {
  font-size: 0.9rem;
  color: rgba(255, 253, 249, 0.7);
  transition: var(--transition);
}

.footer__link-col ul li a:hover {
  color: var(--sand);
}

.footer__link-col ul li {
  color: rgba(255, 253, 249, 0.5);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 253, 249, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255, 253, 249, 0.35);
}

.footer__bottom a {
  color: rgba(255, 253, 249, 0.5);
  transition: var(--transition);
}

.footer__bottom a:hover {
  color: var(--sand);
}

/* ============================================
   SCROLL REVEAL (progressive enhancement)
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .location__inner,
  .why__inner,
  .cta__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .cta__form-wrap {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 253, 249, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid var(--gray-200);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }

  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__links a {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
  }

  .nav__toggle {
    display: flex;
  }

  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .hero__shape--circle1 {
    width: 300px;
    height: 300px;
  }

  .hero__shape--circle2 {
    width: 150px;
    height: 150px;
  }

  .hero__trust {
    gap: 16px;
  }

  .rooms__grid {
    grid-template-columns: 1fr;
  }

  .why__stats {
    grid-template-columns: 1fr 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .amenities__deco {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .why__stats {
    grid-template-columns: 1fr;
  }

  .cta__form-card {
    padding: 24px;
  }
}
