/* ============================================
   SPJST LODGE 6 — Styles
   ============================================ */

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

:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
  --font-display: 'Space Grotesk', 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(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.1);
}

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

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

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

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

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled .nav-inner {
  padding: 12px 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: white;
  letter-spacing: -0.02em;
}

.nav-logo-icon {
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
}

.nav-links a:not(.btn):hover {
  color: white;
  background: rgba(255,255,255,0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal-500);
  color: white;
  padding: 14px 28px;
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.35);
}

.btn-primary:hover {
  background: var(--teal-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.45);
}

.btn-outline {
  background: transparent;
  color: white;
  padding: 14px 28px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-sm);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--teal-500);
  color: white;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  margin-left: 8px;
}

.btn-nav:hover {
  background: var(--teal-400);
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
  font-size: 1rem;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.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;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--slate-950) 0%, var(--teal-900) 40%, var(--teal-700) 70%, var(--teal-500) 100%);
  z-index: 0;
}

.geo {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}

.geo-1 {
  width: 600px;
  height: 600px;
  background: var(--teal-300);
  top: -200px;
  right: -150px;
  animation: float1 20s ease-in-out infinite;
}

.geo-2 {
  width: 400px;
  height: 400px;
  background: var(--teal-400);
  bottom: -100px;
  left: -100px;
  animation: float2 16s ease-in-out infinite;
}

.geo-3 {
  width: 200px;
  height: 200px;
  background: white;
  top: 30%;
  left: 10%;
  animation: float3 12s ease-in-out infinite;
}

.geo-4 {
  width: 120px;
  height: 120px;
  background: var(--teal-200);
  top: 20%;
  right: 20%;
  border-radius: var(--radius-lg);
  transform: rotate(45deg);
  animation: float4 14s ease-in-out infinite;
}

.geo-5 {
  width: 80px;
  height: 80px;
  background: var(--teal-300);
  bottom: 25%;
  right: 10%;
  border-radius: var(--radius-md);
  transform: rotate(30deg);
  animation: float1 10s ease-in-out infinite reverse;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(2, 6, 23, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--teal-200);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  color: white;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--teal-300), var(--teal-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

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

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(40px, -30px) rotate(10deg); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 30px); }
}

@keyframes float4 {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50% { transform: rotate(55deg) translate(20px, -20px); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-600);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--teal-500);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.section-title .accent {
  color: var(--teal-600);
}

.section-sub {
  font-size: 1.1rem;
  color: var(--slate-500);
  line-height: 1.7;
  max-width: 560px;
}

/* ============================================
   ROOMS
   ============================================ */
.rooms {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: white;
}

.rooms-shape {
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 1;
}

.rooms-shape-top {
  top: 0;
  background: linear-gradient(to bottom, var(--teal-700), transparent);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.rooms-shape-bottom {
  bottom: 0;
  background: linear-gradient(to top, var(--teal-700), transparent);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  position: relative;
  z-index: 2;
}

.room-card {
  background: var(--slate-50);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--slate-200);
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--teal-200);
}

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

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.room-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--teal-600);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.room-body {
  padding: 28px;
}

.room-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.room-body > p {
  font-size: 0.95rem;
  color: var(--slate-500);
  line-height: 1.65;
  margin-bottom: 20px;
}

.room-amenities {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.room-amenities li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--slate-700);
  font-weight: 500;
}

.room-amenities li svg {
  color: var(--teal-500);
  flex-shrink: 0;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 120px 0;
  background: var(--slate-900);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--teal-600);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  opacity: 0.08;
}

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

.about-visual {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  z-index: 3;
  border: 4px solid var(--slate-800);
}

.about-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-float-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 24px 20px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.ashape {
  position: absolute;
  border-radius: var(--radius-md);
}

.ashape-1 {
  width: 80px;
  height: 80px;
  background: var(--teal-500);
  top: -20px;
  left: -20px;
  opacity: 0.6;
  transform: rotate(15deg);
}

.ashape-2 {
  width: 50px;
  height: 50px;
  background: var(--teal-400);
  bottom: 60px;
  left: -30px;
  opacity: 0.5;
  border-radius: 50%;
}

.ashape-3 {
  width: 30px;
  height: 30px;
  background: white;
  top: 40%;
  right: -15px;
  opacity: 0.3;
  border-radius: 50%;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-content .section-label {
  color: var(--teal-400);
}

.about-content .section-label::before {
  background: var(--teal-400);
}

.about-content .section-title {
  color: white;
}

.about-content .section-title .accent {
  color: var(--teal-400);
}

.about-text {
  font-size: 1.05rem;
  color: var(--slate-400);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.afeat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.afeat-icon {
  width: 48px;
  height: 48px;
  background: rgba(13, 148, 136, 0.15);
  border: 1px solid rgba(13, 148, 136, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-400);
  flex-shrink: 0;
}

.afeat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}

.afeat span {
  font-size: 0.9rem;
  color: var(--slate-400);
}

/* ============================================
   EXPERIENCE
   ============================================ */
.experience {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--teal-700) 0%, var(--teal-600) 50%, var(--teal-500) 100%);
  position: relative;
  overflow: hidden;
}

.experience::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  top: -100px;
  left: -100px;
}

.experience::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  bottom: -60px;
  right: 10%;
  transform: rotate(30deg);
}

.exp-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.exp-item {
  padding: 0 32px;
  text-align: center;
}

.exp-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.exp-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.exp-item p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

.exp-divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
  align-self: stretch;
  margin: 24px 0;
}

/* ============================================
   LOCATION
   ============================================ */
.location {
  padding: 120px 0;
  background: var(--slate-50);
  position: relative;
}

.location::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--teal-100);
  border-radius: 50%;
  top: -200px;
  left: -200px;
  opacity: 0.5;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-desc {
  font-size: 1.05rem;
  color: var(--slate-500);
  line-height: 1.75;
  margin-bottom: 40px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ldetail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ldetail-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-600);
  flex-shrink: 0;
}

.ldetail-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-400);
  font-weight: 600;
  margin-bottom: 2px;
}

.ldetail-value {
  display: block;
  font-size: 1rem;
  color: var(--slate-800);
  font-weight: 600;
  line-height: 1.5;
}

.ldetail-value a {
  color: var(--teal-600);
  transition: color 0.2s;
}

.ldetail-value a:hover {
  color: var(--teal-500);
}

.location-map {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 420px;
}

.location-map iframe {
  border-radius: var(--radius-xl);
}

.map-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: white;
  color: var(--slate-800);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  transition: all 0.25s ease;
}

.map-btn:hover {
  background: var(--teal-500);
  color: white;
  transform: translateY(-2px);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 120px 0;
  background: white;
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--teal-100);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  opacity: 0.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-content {
  padding-top: 8px;
}

.contact-desc {
  font-size: 1.05rem;
  color: var(--slate-500);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-quick {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-quick-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.contact-quick-item:hover {
  border-color: var(--teal-300);
  background: var(--teal-50);
  transform: translateX(4px);
}

.cqi-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-600);
  flex-shrink: 0;
}

.cqi-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-400);
  font-weight: 600;
  margin-bottom: 2px;
}

.cqi-value {
  display: block;
  font-size: 1rem;
  color: var(--slate-800);
  font-weight: 600;
}

.contact-form-wrap {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.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: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-700);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--slate-800);
  transition: all 0.25s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--slate-400);
}

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

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  border-radius: var(--radius-sm);
  color: var(--teal-700);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-success.show {
  display: flex;
}

.form-success svg {
  color: var(--teal-500);
  flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--slate-950);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  max-width: 280px;
}

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

.footer-brand p {
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.footer-links a,
.footer-links span {
  font-size: 0.9rem;
  color: var(--slate-500);
  transition: color 0.2s;
  line-height: 1.6;
}

.footer-links a:hover {
  color: var(--teal-400);
}

.hours-val {
  color: var(--teal-400) !important;
  font-weight: 600;
}

.hours-note {
  font-size: 0.8rem !important;
  color: var(--slate-600) !important;
  font-style: italic;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.82rem;
  color: var(--slate-600);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .exp-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .exp-divider {
    display: none;
  }

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--slate-900);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 32px 40px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    padding: 14px 16px;
    font-size: 1rem;
  }

  .btn-nav {
    margin-left: 0;
    margin-top: 16px;
    text-align: center;
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

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

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

  .hero-stats {
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .rooms {
    padding: 80px 0;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about {
    padding: 80px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-img-float {
    right: -10px;
    bottom: -20px;
  }

  .experience {
    padding: 80px 0;
  }

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

  .exp-item {
    padding: 0;
  }

  .location {
    padding: 80px 0;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location-map {
    min-height: 300px;
  }

  .contact {
    padding: 80px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form-wrap {
    padding: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

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

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .room-body {
    padding: 20px;
  }

  .about-img-float {
    width: 60%;
  }
}

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}
