@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --green-900: #166534;
  --green-800: #15803d;
  --green-700: #16a34a;
  --green-500: #22c55e;
  --bg-soft: #f0fdf4;
  --bg-soft-alt: #dcfce7;
  --text-dark: #1e293b;
  --text-heading: #1f2937;
  --text-muted: #64748b;
  --text-body: #475569;
  --border-main: #e2e8f0;
  --border-soft: #dcfce7;
  --white: #ffffff;
  --hero-overlay: rgba(15, 23, 42, 0.5);
  --gradient-main: linear-gradient(135deg, #166534 0%, #15803d 100%);
  --gradient-alt: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 12px;
  --shadow-soft: 0 8px 30px rgba(22, 101, 52, 0.08);
  --shadow-card: 0 12px 28px rgba(22, 101, 52, 0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-body);
  line-height: 1.7;
  background: var(--bg-soft);
}
a { text-decoration: none; color: inherit; }
a:hover { color: var(--green-800); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── HEADER ── */
.site-header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-main);
  padding: 0 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}
.logo-area { display: flex; align-items: center; gap: 12px; }
.logo-area img { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--border-soft); }
.logo-area h1 { color: var(--green-900); font-size: 1.15rem; font-weight: 800; }
.main-nav ul { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  color: var(--text-dark);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 600;
  transition: 0.25s ease;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--bg-soft-alt);
  color: var(--green-900);
}
.book-btn {
  background: var(--gradient-main) !important;
  color: var(--white) !important;
  font-weight: 700;
  border-radius: 999px !important;
  padding: 10px 22px !important;
  box-shadow: var(--shadow-soft);
}
.book-btn:hover { background: var(--gradient-alt) !important; color: var(--white) !important; }
.dropdown { position: relative; }
.dropdown > a::after { content: ' ▾'; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: var(--white);
  padding: 10px;
  box-shadow: var(--shadow-card);
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; white-space: nowrap; }

/* ── HERO ── */
.hero-wrapper {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}
.slider {
  position: absolute;
  inset: 0;
}
.slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.slider img.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(22,101,52,0.6) 0%, rgba(15,23,42,0.55) 100%);
  z-index: 1;
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 30px 20px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.hero-content h2 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  margin-bottom: 16px;
  line-height: 1.2;
}
.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: 0.3s;
}
.dot.active { background: var(--white); transform: scale(1.3); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-main);
  box-shadow: var(--shadow-soft);
}
.stats-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 30px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 48px;
}
.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-800);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-main);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  border: none;
  transition: 0.25s ease;
  cursor: pointer;
  font-size: 0.95rem;
}
.btn-primary {
  background: var(--gradient-main);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(22,101,52,0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gradient-alt);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(22,101,52,0.28);
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { background: var(--white); color: var(--green-900); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; border-radius: 12px; }
.btn-block { width: 100%; }

/* ── SECTIONS ── */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 30px;
}
.section-tag {
  display: inline-block;
  background: var(--bg-soft-alt);
  color: var(--green-800);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 5px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-tag.center { display: block; text-align: center; }
.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3.8vw, 2.4rem);
  color: var(--text-heading);
  margin-bottom: 14px;
  font-weight: 800;
}
.section-title.left-align { text-align: left; }
.section-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 44px; }
.section-dark { background: var(--bg-soft-alt); }

/* ── ABOUT ── */
.about-grid { align-items: center; gap: 60px; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 22px 0;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}
.check {
  width: 22px; height: 22px;
  background: var(--gradient-main);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.about-img-wrap {
  position: relative;
  padding: 20px;
}
.about-badge {
  position: absolute;
  bottom: 10%;
  left: -20px;
  background: var(--green-900);
  color: var(--white);
  padding: 20px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.badge-title { font-size: 1.8rem; font-weight: 800; line-height: 1; }
.badge-text { font-size: 0.95rem; font-weight: 600; line-height: 1.2; opacity: 0.95; }
.room-image {
  width: 100%;
  border-radius: 24px;
  display: block;
  box-shadow: var(--shadow-soft);
}

/* ── CARDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: block;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.card-img-wrap { position: relative; overflow: hidden; }
.card-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card-img-wrap img { transform: scale(1.06); }
.room-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gradient-main);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.card-body { padding: 20px; }
.card-body h3 { margin-bottom: 6px; color: var(--text-heading); font-size: 1rem; }
.card-body .price { color: var(--green-800); font-weight: 800; font-size: 1.05rem; }
.card-body .price span { font-size: 0.8rem; font-weight: 500; color: var(--text-muted); }
.card-cta {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-700);
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.02); box-shadow: var(--shadow-card); }
.gallery-grid .gallery-featured {
  grid-column: span 2;
  height: 280px;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--gradient-main);
  color: var(--white);
  text-align: center;
  padding: 70px 30px;
  position: relative;
  overflow: hidden;
}
.cta-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-circle.c1 { width: 300px; height: 300px; top: -80px; left: -80px; }
.cta-circle.c2 { width: 200px; height: 200px; bottom: -60px; right: -40px; }
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: auto; }
.cta-inner h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; margin-bottom: 12px; }
.cta-inner p { color: rgba(255,255,255,0.85); margin-bottom: 28px; }

/* ── ROOM PAGES ── */
.room-hero { height: 400px; }
.room-details { max-width: 1060px; margin: 0 auto; padding: 56px 30px; }
.room-details h2 { color: var(--text-heading); margin-bottom: 6px; font-size: 2rem; }
.room-price { margin-bottom: 24px; font-size: 1.35rem; color: var(--green-800); font-weight: 800; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 24px 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  background: var(--bg-soft);
}
.feature-item span { font-size: 1.2rem; }
.room-image, .rounded-image {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}
.image-fixed { height: 250px; object-fit: cover; }

/* ── TABLES ── */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 30px 0;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--white);
}
.pricing-table th, .pricing-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border-main);
}
.pricing-table th { background: var(--gradient-main); color: var(--white); }
.pricing-table tbody tr:last-child td { border-bottom: 0; }
.pricing-table tr:hover { background: var(--bg-soft); }

/* ── FORMS (global) ── */
.contact-form {
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}
.contact-form h3 { margin-bottom: 20px; color: var(--text-heading); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; color: var(--text-dark); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-main);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: #fcfefc;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.contact-link { color: var(--green-800); font-weight: 600; }
.contact-link:hover { color: var(--green-900); }
.note { margin-top: 12px; color: var(--text-muted); font-size: 0.88rem; }

/* ── RULES ── */
.rules-content {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow-soft);
}
.rules-content h3 { color: var(--green-900); margin: 24px 0 10px; }
.rules-content p { margin-bottom: 12px; }
.intro-note { font-style: italic; color: var(--text-muted); margin-bottom: 25px !important; }

/* ── MISC ── */
.content-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}
.hero {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(22,101,52,0.65), var(--hero-overlay));
}
.hero-content-inner { position: relative; z-index: 1; max-width: 760px; padding: 28px; }
.hero-banner { background-image: url('images/banner3.jpg'); }
.cta-center { text-align: center; margin-top: 20px; }
.mt-md { margin-top: 14px; }
.mt-lg { margin-top: 20px; }
.mb-md { margin-bottom: 15px; }
.mb-lg { margin-bottom: 20px; }
.inline-list { list-style: disc; padding-left: 20px; margin-bottom: 15px; }

/* ════════════════════════════════════════
   NEW PROFESSIONAL FOOTER STYLES
════════════════════════════════════════ */

/* ── WHATSAPP FLOATING BUTTON ── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 997;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  background: #20b954;
}

.whatsapp-float:active {
  transform: scale(0.95);
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* ── FOOTER ── */
.site-footer {
  background: linear-gradient(180deg, #0a1f0d 0%, #0d2a10 100%);
  color: #e8f5e9;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a5e2a, #2d8a4e, #4caf50, #2d8a4e, #1a5e2a);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 60px 0 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 2px solid rgba(45, 138, 78, 0.3);
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-brand-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1.5px;
}

.footer-brand-subtitle {
  font-size: 0.7rem;
  font-weight: 500;
  color: #4caf50;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #a5d6a7;
  margin-bottom: 20px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #a5d6a7;
}

.contact-item svg {
  flex-shrink: 0;
  color: #4caf50;
  margin-top: 2px;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #2d8a4e;
  border-radius: 2px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list li a {
  color: #a5d6a7;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
}

.footer-links-list li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.room-price {
  font-size: 0.8rem;
  font-weight: 600;
  color: #4caf50;
  background: rgba(76, 175, 80, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

.footer-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 2px solid rgba(45, 138, 78, 0.2);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  border-color: #2d8a4e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid rgba(45, 138, 78, 0.2);
  padding: 24px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright-section {
  flex-shrink: 0;
}

.copyright {
  font-size: 0.85rem;
  color: #81c784;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-bottom-links a {
  color: #81c784;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

.divider-dot {
  color: rgba(76, 175, 80, 0.3);
  font-size: 0.8rem;
}

.developer-section {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.developed-by {
  font-size: 0.8rem;
  color: #81c784;
}

.developer-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #4caf50;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
  padding: 2px 0;
  border-bottom: 1px dashed rgba(76, 175, 80, 0.3);
}

.developer-link:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.developer-link svg {
  transition: transform 0.2s ease;
}

.developer-link:hover svg {
  transform: translate(2px, -2px);
}

/* ════════════════════════════════════════
   CONTACT US PAGE
════════════════════════════════════════ */

/* ── Page Hero ── */
.contact-hero {
  background: var(--gradient-main);
  padding: 100px 20px 60px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -120px; left: -100px;
}
.contact-hero::after {
  content: '';
  position: absolute;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  bottom: -80px; right: -60px;
}
.contact-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.contact-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contact-hero .hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  padding: 5px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

/* ── Info Bar ── */
.contact-info-bar {
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border-bottom: 1px solid var(--border-main);
}
.contact-info-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid var(--border-main);
  transition: background 0.2s;
}
.info-card:last-child { border-right: none; }
.info-card:hover { background: var(--bg-soft); }
.info-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient-main);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.info-text h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.info-text p, .info-text a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  line-height: 1.4;
}
.info-text a:hover { color: var(--green-800); }

/* ── Main Layout ── */
.contact-main {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ── Contact Form Card ── */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
}
.contact-form-wrap h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.contact-form-wrap .form-subtitle {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form-wrap .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.contact-form-wrap .form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 7px;
}
.contact-form-wrap .form-group input,
.contact-form-wrap .form-group select,
.contact-form-wrap .form-group textarea {
  border: 1.5px solid var(--border-main);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-soft);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  font-family: inherit;
  resize: none;
}
.contact-form-wrap .form-group input:focus,
.contact-form-wrap .form-group select:focus,
.contact-form-wrap .form-group textarea:focus {
  border-color: var(--green-700);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.15);
}
.contact-form-wrap .form-group textarea { height: 120px; }
.submit-btn {
  width: 100%;
  background: var(--gradient-main);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  padding: 15px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  letter-spacing: 0.3px;
  margin-top: 6px;
  font-family: inherit;
}
.submit-btn:hover {
  transform: translateY(-2px);
  background: var(--gradient-alt);
  box-shadow: 0 8px 24px rgba(22,101,52,0.3);
}

/* ── Form Success ── */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 14px; }
.form-success h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-900);
  margin-bottom: 8px;
}
.form-success p { color: var(--text-muted); font-size: 0.95rem; }

/* ── Map Section ── */
.map-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.map-wrap h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 4px;
}
.map-wrap .map-subtitle {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 4px;
}
.map-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
}
.map-frame iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}
.map-directions {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  text-decoration: none;
  color: var(--green-900);
  font-weight: 700;
  font-size: 0.92rem;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.map-directions:hover {
  border-color: var(--green-700);
  background: var(--bg-soft-alt);
  color: var(--green-900);
  transform: translateY(-1px);
}
.map-directions span { font-size: 1.2rem; }

/* ════════════════════════════════════════
   MOBILE RESPONSIVE - FOOTER
════════════════════════════════════════ */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 25px;
  }
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
    padding: 40px 0 30px;
  }
  .footer-brand {
    grid-column: span 2;
    text-align: center;
  }
  .footer-logo {
    justify-content: center;
  }
  .footer-description {
    max-width: 500px;
    margin: 0 auto 20px;
  }
  .footer-contact-info {
    align-items: center;
  }
  .contact-item {
    justify-content: center;
  }
  .footer-heading {
    text-align: left;
  }
  .footer-heading::after {
    left: 0;
    transform: none;
  }
  .footer-links-list li a {
    justify-content: flex-start;
  }
  .room-price {
    margin-left: auto;
  }
  .footer-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .copyright-section {
    order: 1;
    width: 100%;
  }
  .footer-bottom-links {
    order: 2;
    width: 100%;
    justify-content: center;
  }
  .developer-section {
    order: 3;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 30px 0 20px;
  }
  .footer-brand {
    grid-column: span 1;
    text-align: center;
  }
  .footer-logo {
    justify-content: center;
  }
  .footer-logo img {
    width: 40px;
    height: 40px;
  }
  .footer-brand-title {
    font-size: 1rem;
  }
  .footer-brand-subtitle {
    font-size: 0.65rem;
  }
  .footer-description {
    font-size: 0.85rem;
  }
  .contact-item {
    font-size: 0.85rem;
  }
  .footer-heading {
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-align: center;
  }
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-links-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 15px;
  }
  .footer-links-list li {
    margin-bottom: 0;
  }
  .footer-links-list li a {
    font-size: 0.85rem;
    justify-content: center;
    text-align: center;
  }
  .footer-links-list li a:hover {
    padding-left: 0;
    transform: scale(1.05);
  }
  .room-price {
    display: none;
  }
  .footer-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    max-width: 300px;
    margin: 0 auto;
  }
  .gallery-item {
    border-radius: 6px;
  }
  .footer-bottom {
    padding: 20px 0;
  }
  .copyright {
    font-size: 0.78rem;
  }
  .footer-bottom-links a {
    font-size: 0.78rem;
  }
  .developer-link {
    font-size: 0.78rem;
  }
}

@media (max-width: 380px) {
  .whatsapp-float {
    bottom: 12px;
    right: 12px;
    width: 45px;
    height: 45px;
  }
  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }
  .footer-grid {
    gap: 20px;
  }
  .footer-links-list {
    grid-template-columns: 1fr 1fr;
    gap: 6px 10px;
  }
  .footer-links-list li a {
    font-size: 0.8rem;
  }
  .footer-gallery {
    max-width: 250px;
    gap: 4px;
  }
}

/* ════════════════════════════════════════
   GENERAL MOBILE RESPONSIVE
════════════════════════════════════════ */

@media (max-width: 980px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .stats-inner { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .gallery-featured { grid-column: span 2; }
  .contact-main { grid-template-columns: 1fr; }
  .contact-info-inner { grid-template-columns: 1fr; }
  .info-card { border-right: none; border-bottom: 1px solid var(--border-main); }
  .info-card:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .site-header { padding: 0 18px; }
  .nav-container { flex-direction: column; gap: 10px; padding: 12px 0; }
  .main-nav ul { flex-wrap: wrap; justify-content: center; }
  .hero-wrapper { height: 85vh; }
  .hero-content h2 { font-size: 1.9rem; }
  .section, .room-details { padding: 54px 20px; }
  .contact-form, .rules-content, .content-card { padding: 22px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-featured { grid-column: span 1; height: 220px; }
  .about-badge { display: none; }
  .contact-hero h1 { font-size: 2rem; }
  .contact-form-wrap { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .map-frame iframe { height: 300px; }
}