/* ============================================
   6-T-7 Motel — Custom Styles
   ============================================ */

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

:root {
  --green-900: #0B2118;
  --green-800: #1B4332;
  --green-700: #2D6A4F;
  --green-600: #40916C;
  --green-500: #52B788;
  --green-400: #74C69D;
  --green-300: #95D5B2;
  --green-200: #B7E4C7;
  --green-100: #D8F3DC;
  --cream: #F7F5F0;
  --cream-light: #FBF9F5;
  --white: #FFFFFF;
  --black: #0A0A0A;
  --gray-900: #1A1A1A;
  --gray-700: #3A3A3A;
  --gray-500: #6B6B6B;
  --gray-300: #B0B0B0;
  --gray-100: #E8E8E8;
  --accent: #D4A843;
  --accent-light: #E8C76A;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(27, 67, 50, 0.06);
  --shadow-md: 0 8px 30px rgba(27, 67, 50, 0.1);
  --shadow-lg: 0 20px 60px rgba(27, 67, 50, 0.12);
  --shadow-xl: 0 30px 80px rgba(27, 67, 50, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--cream);
  color: var(--gray-900);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.15;
  font-weight: 700;
}

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

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

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

/* ============================================
   Floating Decorative Shapes
   ============================================ */
.shape {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
}

.shape-circle {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--green-700);
  top: -200px;
  right: -150px;
}

.shape-rect {
  width: 300px;
  height: 300px;
  background: var(--accent);
  bottom: 20%;
  left: -80px;
  transform: rotate(25deg);
  border-radius: var(--radius-lg);
}

.shape-triangle {
  width: 0;
  height: 0;
  border-left: 150px solid transparent;
  border-right: 150px solid transparent;
  border-bottom: 260px solid var(--green-600);
  top: 45%;
  right: 5%;
  opacity: 0.03;
}

.shape-dots {
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, var(--green-700) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  top: 60%;
  left: 8%;
  opacity: 0.06;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(247, 245, 240, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(247, 245, 240, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
}

.logo-mark {
  background: var(--green-800);
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: -0.02em;
}

.logo-text {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--green-800);
}

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

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

.nav-links a:hover {
  color: var(--green-800);
  background: var(--green-100);
}

.btn-nav {
  background: var(--green-800) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  border-radius: var(--radius-sm) !important;
  padding: 10px 20px !important;
}

.btn-nav:hover {
  background: var(--green-700) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
}

.hamburger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 2px;
  background: var(--green-800);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--green-800);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--green-800);
  border: 2px solid var(--green-800);
}

.btn-outline:hover {
  background: var(--green-800);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-white:hover {
  background: var(--green-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

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

/* ============================================
   Hero Section
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 20%, rgba(45, 106, 79, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(212, 168, 67, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  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;
  background: var(--green-100);
  color: var(--green-800);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--green-900);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero-title .accent {
  color: var(--green-600);
  position: relative;
}

.hero-title .accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--accent);
  opacity: 0.35;
  border-radius: 3px;
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Visual Cards */
.hero-visual {
  position: relative;
  min-height: 500px;
}

.hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-card-main {
  width: 100%;
  position: relative;
}

.hero-card-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.hero-card-float {
  position: absolute;
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  animation: float 4s ease-in-out infinite;
}

.hero-card-float:nth-child(2) { animation-delay: -1s; }
.hero-card-float:nth-child(3) { animation-delay: -2s; }
.hero-card-float:nth-child(4) { animation-delay: -3s; }

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

.hero-card-green {
  background: var(--green-800);
  color: var(--white);
  top: -20px;
  right: -20px;
}

.hero-card-green .float-stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-card-green .float-stat-label {
  font-size: 0.8rem;
  opacity: 0.7;
}

.hero-card-accent {
  background: var(--accent);
  color: var(--green-900);
  bottom: 120px;
  left: -30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-card-accent .float-stat-label {
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-card-dark {
  background: var(--gray-900);
  color: var(--white);
  bottom: -20px;
  right: 40px;
}

.hero-card-dark .float-stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-400);
}

.hero-card-dark .float-stat-label {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ============================================
   Stats Bar
   ============================================ */
.stats {
  background: var(--green-800);
  padding: 0;
  position: relative;
  z-index: 1;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.stat-item:hover {
  background: rgba(255,255,255,0.05);
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.stat-divider {
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}

.stat-divider:last-child { display: none; }

/* ============================================
   Section Shared
   ============================================ */
.section-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-600);
  background: var(--green-100);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-900);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

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

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 540px;
}

/* ============================================
   Rooms Section
   ============================================ */
.rooms {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: 60px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.room-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.room-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: var(--green-900);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.room-card-body {
  padding: 28px;
}

.room-name {
  font-size: 1.25rem;
  color: var(--green-900);
  margin-bottom: 10px;
}

.room-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 20px;
}

.room-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}

.room-features li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gray-700);
  font-weight: 500;
}

.room-features li svg {
  color: var(--green-600);
  flex-shrink: 0;
}

/* ============================================
   Amenities Section
   ============================================ */
.amenities {
  padding: 100px 0;
  background: var(--green-800);
  position: relative;
  overflow: hidden;
}

.amenities::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.amenities::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.06);
  pointer-events: none;
}

.amenities .section-tag {
  background: rgba(255,255,255,0.1);
  color: var(--green-300);
}

.amenities .section-title {
  color: var(--white);
}

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

.amenities .section-subtitle {
  color: rgba(255,255,255,0.6);
}

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

.amenities-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.amenities-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.amenity-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.amenity-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.06);
}

.amenity-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.amenity-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.amenities-visual {
  position: relative;
}

.amenities-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.amenity-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.amenity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.amenity-img:hover img {
  transform: scale(1.05);
}

.amenity-img-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  height: 300px;
}

.amenity-img-2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  height: 140px;
}

.amenity-img-3 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  height: 140px;
}

/* ============================================
   Location Section
   ============================================ */
.location {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

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

.location-icon {
  width: 48px;
  height: 48px;
  background: var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-800);
}

.location-detail strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  color: var(--green-900);
  margin-bottom: 4px;
}

.location-detail span {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.location-detail a {
  color: var(--green-700);
  font-weight: 500;
  transition: var(--transition);
}

.location-detail a:hover {
  color: var(--green-900);
}

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

.map-link {
  display: block;
  position: relative;
}

.map-link img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(11, 33, 24, 0.9), transparent);
  color: var(--white);
  padding: 40px 24px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.map-link:hover .map-overlay {
  background: linear-gradient(to top, rgba(11, 33, 24, 1), rgba(11, 33, 24, 0.5));
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.cta-card {
  background: var(--green-800);
  border-radius: var(--radius-xl);
  padding: 72px 60px;
  position: relative;
  overflow: hidden;
}

.cta-shape-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -100px;
  right: -80px;
  pointer-events: none;
}

.cta-shape-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-lg);
  background: var(--accent);
  opacity: 0.1;
  bottom: -60px;
  left: 10%;
  transform: rotate(30deg);
  pointer-events: none;
}

.cta-shape-3 {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--green-500);
  opacity: 0.1;
  top: 20%;
  left: 5%;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  z-index: 1;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  background: var(--cream);
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid transparent;
}

.contact-card:hover {
  background: var(--green-100);
  border-color: var(--green-200);
  transform: translateX(6px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--green-800);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-card-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-card-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  color: var(--green-900);
  font-weight: 600;
  line-height: 1.5;
}

.contact-card-value a {
  color: inherit;
}

.contact-card-value a:hover {
  color: var(--green-600);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--gray-100);
}

.form-title {
  font-size: 1.4rem;
  color: var(--green-900);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--gray-900);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(82, 183, 136, 0.1);
}

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

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

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--green-100);
  border-radius: var(--radius-sm);
  color: var(--green-800);
  font-weight: 500;
  font-size: 0.9rem;
}

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

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--green-900);
  padding: 60px 0 0;
  position: relative;
  z-index: 1;
}

.footer-inner {
  padding-bottom: 40px;
}

.footer-brand {
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo-mark {
  background: var(--accent);
  color: var(--green-900);
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 320px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 40px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  padding: 4px 0;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  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.35);
}

/* ============================================
   Mobile Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .amenities-visual {
    order: -1;
  }

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

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(247, 245, 240, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    box-shadow: var(--shadow-md);
  }

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

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

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-visual {
    min-height: 350px;
  }

  .hero-card-float {
    padding: 12px 16px;
  }

  .hero-card-green .float-stat-number,
  .hero-card-dark .float-stat-number {
    font-size: 1.1rem;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-divider {
    display: none;
  }

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

  .amenities-image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .amenity-img-1 {
    grid-column: auto;
    grid-row: auto;
    height: 220px;
  }

  .amenity-img-2,
  .amenity-img-3 {
    grid-column: auto;
    grid-row: auto;
    height: 180px;
  }

  .cta-card {
    padding: 48px 28px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

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

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

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

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

  .hero-ctas {
    flex-direction: column;
  }

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

  .hero-card-float {
    display: none;
  }

  .hero-card-green {
    display: flex;
    top: -10px;
    right: -10px;
  }

  .room-features {
    grid-template-columns: 1fr;
  }

  .stats-inner {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Animations
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
