/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1a2e1a;
  background: #faf9f6;
  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; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --green-dark: #1b4332;
  --green-mid: #2d6a4f;
  --green-bright: #40916c;
  --green-light: #52b788;
  --cream: #faf9f6;
  --cream-dark: #f0efe9;
  --warm: #d4a373;
  --warm-light: #e9c46a;
  --text: #1a2e1a;
  --text-light: #4a6b4a;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(27, 67, 50, 0.08);
  --shadow-lg: 0 12px 48px rgba(27, 67, 50, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--green-bright);
  border-radius: 2px;
}
.section-label-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.section-label-dark::before {
  content: '';
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-dark);
  margin-bottom: 16px;
}
.section-title-dark {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 48px;
}
.section-sub-dark {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin-bottom: 48px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(27, 67, 50, 0.3);
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}
.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-nav {
  background: var(--green-dark);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.88rem;
}
.btn-nav:hover { background: var(--green-mid); }
.btn-white {
  background: var(--white);
  color: var(--green-dark);
}
.btn-white:hover {
  background: var(--cream-dark);
  transform: translateY(-2px);
}
.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-white-outline:hover {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}
.btn-full { width: 100%; }
.btn-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 24px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.btn-map:hover { background: var(--green-mid); transform: translateY(-2px); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 249, 246, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(250, 249, 246, 0.95);
  box-shadow: var(--shadow);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
}
.logo-light { color: var(--white); }
.logo-icon { color: var(--green-mid); }
.logo-light .logo-icon { color: var(--green-light); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color var(--transition);
  position: relative;
}
.nav-links a:not(.btn):hover { color: var(--green-dark); }
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-bright);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--cream);
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape { position: absolute; border-radius: 50%; }
.shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(45,106,79,0.06) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,163,115,0.1) 0%, transparent 70%);
  bottom: -100px; left: -100px;
}
.shape-3 {
  width: 200px; height: 200px;
  background: rgba(82,183,136,0.08);
  top: 30%; left: 45%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph 8s ease-in-out infinite;
}
.shape-4 {
  width: 120px; height: 120px;
  background: rgba(233,196,106,0.15);
  top: 20%; right: 30%;
  border-radius: 20px;
  transform: rotate(45deg);
  animation: float 6s ease-in-out infinite;
}
@keyframes morph {
  0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}
@keyframes float {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(-20px); }
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(45,106,79,0.08);
  border: 1px solid rgba(45,106,79,0.15);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-mid);
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--green-dark);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 24px;
  align-items: center;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-dark);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(27, 67, 50, 0.15);
}
.hero-right { position: relative; }
.hero-img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrapper img {
  width: 100%;
  height: 820px;
  object-fit: cover;
}
.hero-img-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 160px;
  height: 160px;
  background: var(--warm);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.4;
}
.hero-float-card {
  position: absolute;
  bottom: 40px;
  left: -40px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  animation: float 5s ease-in-out infinite;
}
.float-card-icon {
  width: 44px;
  height: 44px;
  background: var(--green-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.float-card-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}
.float-card-value {
  display: block;
  font-size: 0.95rem;
  color: var(--green-dark);
  font-weight: 700;
}

/* ===== ROOMS ===== */
.rooms {
  position: relative;
  padding: 100px 0 120px;
  background: var(--cream);
  overflow: hidden;
}
.rooms .container { position: relative; z-index: 1; }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.room-card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.05); }
.room-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.room-tag.new { background: var(--warm); color: var(--green-dark); }
.room-card-body { padding: 24px; }
.room-name {
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.room-desc {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 18px;
}
.room-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.room-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text);
  font-weight: 500;
}
.room-features li svg { color: var(--green-bright); flex-shrink: 0; }

/* geo accents */
.geo-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  pointer-events: none;
  overflow: hidden;
}
.geo-circle {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--cream-dark);
  bottom: -100px; right: 10%;
}
.geo-triangle {
  position: absolute;
  width: 0; height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid rgba(82,183,136,0.1);
  bottom: -30px; left: 5%;
  transform: rotate(-15deg);
}
.geo-square {
  position: absolute;
  width: 80px; height: 80px;
  background: rgba(212,163,115,0.15);
  border-radius: 12px;
  bottom: -20px; right: 25%;
  transform: rotate(30deg);
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 680px;
  object-fit: cover;
}
.about-img-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-img-float img {
  width: 320px;
  height: 240px;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  top: -20px;
  right: 40px;
  width: 56px;
  height: 56px;
  background: var(--warm);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  animation: float 4s ease-in-out infinite;
}
.about-content .section-title { margin-bottom: 24px; }
.about-text {
  font-size: 1.02rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green-dark);
  transition: all var(--transition);
}
.highlight:hover {
  background: rgba(45,106,79,0.06);
  transform: translateX(4px);
}
.highlight-icon { color: var(--green-bright); flex-shrink: 0; }

/* ===== AMENITIES ===== */
.amenities {
  position: relative;
  padding: 100px 0;
  background: var(--green-dark);
  overflow: hidden;
}
.amenities-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(82,183,136,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212,163,115,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.amenities .container { position: relative; z-index: 1; }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.amenity-card {
  padding: 32px 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.amenity-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
}
.amenity-icon {
  width: 56px;
  height: 56px;
  background: rgba(82,183,136,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  margin-bottom: 20px;
  transition: all var(--transition);
}
.amenity-card:hover .amenity-icon {
  background: var(--green-bright);
  color: var(--white);
}
.amenity-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.amenity-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: var(--cream);
  overflow: hidden;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: rgba(45,106,79,0.06);
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--warm);
  margin-bottom: 18px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: rgba(45,106,79,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  flex-shrink: 0;
}
.testimonial-name {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--green-dark);
}
.testimonial-source {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== LOCATION ===== */
.location {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}
.location-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.location-text {
  font-size: 1.02rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
}
.location-details { display: flex; flex-direction: column; gap: 20px; }
.loc-detail {
  display: flex;
  align-items: center;
  gap: 16px;
}
.loc-icon {
  width: 48px;
  height: 48px;
  background: rgba(45,106,79,0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  flex-shrink: 0;
}
.loc-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 2px;
}
.loc-value {
  display: block;
  font-size: 0.95rem;
  color: var(--green-dark);
  font-weight: 600;
}
.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-placeholder {
  background: var(--cream-dark);
  height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(45,106,79,0.04) 39px, rgba(45,106,79,0.04) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(45,106,79,0.04) 39px, rgba(45,106,79,0.04) 40px);
}
.map-pin {
  color: var(--green-dark);
  position: relative;
  z-index: 1;
  animation: float 3s ease-in-out infinite;
}
.map-label {
  font-weight: 600;
  font-size: 1rem;
  color: var(--green-dark);
  position: relative;
  z-index: 1;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  background: var(--green-mid);
  overflow: hidden;
}
.cta-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-shape {
  position: absolute;
  border-radius: 50%;
}
.cta-shape-1 {
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.03);
  top: -150px; left: -100px;
}
.cta-shape-2 {
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.04);
  bottom: -100px; right: 5%;
}
.cta-shape-3 {
  width: 100px; height: 100px;
  background: rgba(233,196,106,0.2);
  top: 20%; right: 20%;
  border-radius: 20px;
  transform: rotate(45deg);
  animation: float 5s ease-in-out infinite;
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
}
.cta-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--cream);
  overflow: hidden;
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-text {
  font-size: 1.02rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--green-dark);
  font-weight: 500;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(45,106,79,0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  flex-shrink: 0;
}
.contact-right {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid rgba(27, 67, 50, 0.12);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-bright);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(82,183,136,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(82,183,136,0.08);
  border: 1px solid rgba(82,183,136,0.2);
  border-radius: var(--radius-sm);
  color: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 500;
}
.form-success.show { display: flex; }
.form-success svg { color: var(--green-bright); flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 64px 0 0;
}
.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
}
.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}
.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a,
.footer-col ul li {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { max-width: 500px; }
  .hero-img-wrapper img { height: 560px; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .about-container { grid-template-columns: 1fr; gap: 60px; }
  .about-img-main img { height: 480px; }
  .location-container { grid-template-columns: 1fr; }
  .location-map { order: -1; }
  .map-placeholder { height: 360px; }
  .contact-container { grid-template-columns: 1fr; gap: 48px; }
  .footer-container { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250,249,246,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(27,67,50,0.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-title { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .hero-float-card { display: none; }
  .hero-img-wrapper img { height: 420px; }
  .hero-stats { flex-wrap: wrap; }
  .rooms-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-img-float { right: 0; bottom: -20px; }
  .about-img-float img { width: 240px; height: 180px; }
  .about-highlights { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-right { padding: 28px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-img-wrapper img { height: 340px; }
  .rooms-grid { gap: 20px; }
  .room-card-body { padding: 20px; }
  .room-features { grid-template-columns: 1fr; }
}

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