/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --primary: #1B7A3D;
  --primary-dark: #145C2E;
  --primary-light: #2DA855;
  --secondary: #1A3A4A;
  --accent: #D4A843;
  --accent-light: #E8C76A;
  --neutral: #F5F1ED;
  --neutral-dark: #E8E2DB;
  --dark: #1E1E2E;
  --dark-light: #2D2D3D;
  --white: #FFFFFF;
  --gray-100: #F8F9FA;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-400: #CED4DA;
  --gray-500: #ADB5BD;
  --gray-600: #6C757D;
  --gray-700: #495057;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --container: 1200px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(27,122,61,0.15);
  color: var(--dark);
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  /* Safe area for notched phones */
  padding-left: max(24px, env(safe-area-inset-left));
  padding-right: max(24px, env(safe-area-inset-right));
}

.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27,122,61,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: var(--dark);
}
.btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,168,67,0.3);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark-light);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 45px;
  transition: var(--transition);
  filter: brightness(0) invert(1);
}
.navbar.scrolled .navbar-logo img {
  filter: none;
  height: 40px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
  position: relative;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}
.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar.scrolled .navbar-links a {
  color: var(--dark);
}
.navbar.scrolled .navbar-links a:hover {
  color: var(--primary);
}

.navbar-cta {
  padding: 10px 24px !important;
  font-size: 0.85rem !important;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.navbar-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .navbar-toggle span {
  background: var(--dark);
}
.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,30,46,0.75) 0%,
    rgba(26,58,74,0.6) 50%,
    rgba(27,122,61,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--accent-light);
  font-weight: 500;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}
.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== ABOUT ===== */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--primary);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-experience {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--primary);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-experience .number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.about-experience .label {
  font-size: 0.8rem;
  opacity: 0.9;
  margin-top: 4px;
}

.about-content .section-label,
.about-content .section-title {
  text-align: left;
}

.about-text {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature .icon {
  width: 44px;
  height: 44px;
  background: rgba(27,122,61,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-feature span {
  font-weight: 500;
  font-size: 0.95rem;
}

/* ===== ROOMS ===== */
.rooms {
  background: var(--gray-100);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.room-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.room-card:hover .room-card-image img {
  transform: scale(1.08);
}

.room-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.room-card-body {
  padding: 24px;
}

.room-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.room-card-body .room-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.6;
}

.room-card-amenities {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.room-card-amenities span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--gray-600);
}

.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.room-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
.room-price span {
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gray-500);
}

.room-card-footer .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ===== AMENITIES ===== */
.amenities {
  background: var(--white);
}

.amenities-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.amenity-main-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 450px;
}
.amenity-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.amenity-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.amenity-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.amenity-icon {
  width: 52px;
  height: 52px;
  background: rgba(27,122,61,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.amenity-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--dark);
}
.amenity-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ===== EVENTS ===== */
.events {
  background: var(--secondary);
  color: var(--white);
}
.events .section-label { color: var(--accent); }
.events .section-title { color: var(--white); }
.events .section-subtitle { color: rgba(255,255,255,0.7); }

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.event-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.event-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-6px);
}

.event-card-image {
  height: 220px;
  overflow: hidden;
}
.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.event-card:hover .event-card-image img {
  transform: scale(1.05);
}

.event-card-body {
  padding: 24px;
}
.event-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.event-card-body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  line-height: 1.6;
}
.event-price-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.extra-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.extra-service {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  border-radius: var(--radius-md);
}
.extra-service .icon {
  font-size: 1.6rem;
}
.extra-service h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}
.extra-service p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--gray-100);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-filter {
  padding: 10px 24px;
  border: 2px solid var(--gray-300);
  border-radius: 50px;
  background: transparent;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}
.gallery-filter:hover,
.gallery-filter.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item .gallery-zoom {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}
.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PRICING ===== */
.pricing {
  background: var(--white);
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.pricing-tab {
  padding: 12px 28px;
  border: 2px solid var(--gray-300);
  border-radius: 50px;
  background: transparent;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}
.pricing-tab:hover,
.pricing-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.pricing-content {
  display: none;
}
.pricing-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pricing-table thead {
  background: var(--primary);
  color: var(--white);
}
.pricing-table th {
  padding: 16px 24px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
}
.pricing-table td {
  padding: 16px 24px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--gray-200);
}
.pricing-table tbody tr {
  background: var(--white);
  transition: var(--transition);
}
.pricing-table tbody tr:hover {
  background: var(--gray-100);
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.price-value {
  font-weight: 700;
  color: var(--primary);
}

.price-note {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-style: italic;
}

.pricing-includes {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding: 24px;
  background: rgba(27,122,61,0.05);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
}
.pricing-includes span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.pricing-policies {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.policy-card {
  padding: 24px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
}
.policy-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.policy-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--neutral);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.contact-form > p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.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 select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--dark);
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(27,122,61,0.1);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 12px;
  font-style: italic;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-item:last-child { margin-bottom: 0; }

.contact-item .icon {
  width: 42px;
  height: 42px;
  background: rgba(27,122,61,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item h4 {
  font-size: 0.9rem;
  color: var(--gray-500);
  font-weight: 400;
  margin-bottom: 2px;
}
.contact-item p {
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.contact-social a {
  width: 42px;
  height: 42px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}
.contact-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  background: var(--gray-200);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-about img {
  height: 45px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}
.footer-about p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ===== ROOM MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 1500;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-image {
  height: 280px;
  position: relative;
}
.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0,0,0,0.5);
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: rgba(0,0,0,0.7); }

.modal-body {
  padding: 32px;
}
.modal-body h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.modal-body .modal-desc {
  color: var(--gray-600);
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.modal-amenities {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.modal-amenity-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--gray-100);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

.modal-pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
.modal-pricing-table th {
  padding: 12px 16px;
  background: var(--gray-100);
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
}
.modal-pricing-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9rem;
}
.modal-pricing-table tr:last-child td { border-bottom: none; }

.modal-cta {
  text-align: center;
  padding-top: 8px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  color: var(--white);
  font-size: 1.8rem;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== STAGGER ANIMATION DELAYS ===== */
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE PRICING CARDS (MOBILE) ===== */
.pricing-cards-mobile {
  display: none;
}

.pricing-mobile-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.pricing-mobile-card-header {
  background: var(--primary);
  color: var(--white);
  padding: 16px 20px;
  font-weight: 600;
  font-size: 1rem;
}

.pricing-mobile-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-100);
  gap: 12px;
}
.pricing-mobile-card-row:last-child {
  border-bottom: none;
}
.pricing-mobile-card-row .label {
  font-size: 0.9rem;
  color: var(--gray-700);
  flex: 1;
}
.pricing-mobile-card-row .value {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
  text-align: right;
}
.pricing-mobile-card-row .note {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-style: italic;
  display: block;
}

/* ===== TOUCH-FRIENDLY ENHANCEMENTS ===== */
@media (hover: none) and (pointer: coarse) {
  .room-card:hover { transform: none; }
  .room-card:active { transform: scale(0.98); }
  .event-card:hover { transform: none; }
  .event-card:active { transform: scale(0.98); }
  .amenity-card:hover { transform: none; box-shadow: none; }
  .btn:hover { transform: none; }
  .btn:active { transform: scale(0.97); }
  .gallery-item::after { opacity: 0.3; }
  .gallery-item .gallery-zoom { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE: 1024px (TABLET LANDSCAPE) ===== */
@media (max-width: 1024px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .events-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .contact-grid { gap: 30px; }
  .amenities-showcase { gap: 30px; }
  .about-grid { gap: 40px; }
}

/* ===== RESPONSIVE: 768px (TABLET PORTRAIT) ===== */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }

  .section-padding { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
  .section-subtitle { font-size: 1rem; }

  /* --- Navbar --- */
  .navbar { padding: 12px 0; }
  .navbar.scrolled { padding: 8px 0; }
  .navbar-logo img { height: 38px; }
  .navbar.scrolled .navbar-logo img { height: 34px; }

  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 32px 40px;
    gap: 8px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .navbar-links.open {
    right: 0;
  }
  .navbar-links a {
    color: var(--dark) !important;
    font-size: 1.05rem;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--gray-100);
  }
  .navbar-links a::after { display: none; }
  .navbar-links a:last-of-type { border-bottom: none; }
  .navbar-cta {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
    padding: 14px 24px !important;
    font-size: 0.95rem !important;
  }

  .navbar-toggle { display: flex; }

  .mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
    z-index: 999;
    transition: opacity 0.3s ease;
  }
  .mobile-overlay.active { display: block; }

  /* --- Hero --- */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero p { font-size: 1rem; margin-bottom: 28px; }
  .hero-badge { font-size: 0.8rem; padding: 6px 16px; margin-bottom: 16px; }
  .hero-scroll { display: none; }
  .hero-buttons { gap: 12px; }

  /* --- About --- */
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-image { max-width: 100%; }
  .about-image img { height: 300px; width: 100%; }
  .about-image::before { display: none; }
  .about-experience { padding: 14px 20px; bottom: 16px; right: 16px; }
  .about-experience .number { font-size: 2rem; }
  .about-content .section-label,
  .about-content .section-title { text-align: center; }
  .about-text { text-align: center; font-size: 0.95rem; }
  .about-features { 
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 28px;
  }
  .about-feature .icon { width: 38px; height: 38px; font-size: 1rem; }
  .about-feature span { font-size: 0.85rem; }
  .about-content .btn { display: block; text-align: center; }

  /* --- Rooms --- */
  .rooms-grid { 
    grid-template-columns: 1fr; 
    max-width: 500px; 
    margin: 0 auto;
    gap: 20px;
  }
  .room-card-image { height: 220px; }
  .room-card-body { padding: 20px; }
  .room-card-body h3 { font-size: 1.2rem; }
  .room-price { font-size: 1.3rem; }

  /* --- Amenities --- */
  .amenities-showcase { grid-template-columns: 1fr; gap: 24px; }
  .amenity-main-image { height: 260px; }
  .amenities-grid { grid-template-columns: 1fr; gap: 12px; }
  .amenity-card { padding: 18px; gap: 14px; }
  .amenity-icon { width: 44px; height: 44px; font-size: 1.2rem; }

  /* --- Events --- */
  .events-grid { 
    grid-template-columns: 1fr; 
    max-width: 500px; 
    margin: 0 auto 40px;
    gap: 20px;
  }
  .event-card-image { height: 200px; }
  .event-card-body { padding: 20px; }
  .extra-services { grid-template-columns: 1fr; gap: 12px; }
  .extra-service { padding: 16px 20px; }

  /* --- Gallery --- */
  .gallery-filters { gap: 8px; margin-bottom: 24px; }
  .gallery-filter { padding: 8px 18px; font-size: 0.8rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item { border-radius: var(--radius-sm); }

  /* --- Pricing --- */
  .pricing-tabs { gap: 6px; margin-bottom: 32px; }
  .pricing-tab { padding: 10px 20px; font-size: 0.82rem; }
  .pricing-policies { grid-template-columns: 1fr; gap: 16px; }
  .policy-card { padding: 20px; }
  .pricing-includes { padding: 18px; gap: 16px; }
  .pricing-includes span { font-size: 0.85rem; }

  /* Pricing table responsive */
  .pricing-table { font-size: 0.82rem; }
  .pricing-table th { padding: 12px 10px; font-size: 0.78rem; }
  .pricing-table td { padding: 12px 10px; font-size: 0.82rem; }

  /* --- Contact --- */
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-form { padding: 28px; }
  .contact-form h3 { font-size: 1.4rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 16px; /* Prevents iOS zoom on focus */
  }

  /* --- Footer --- */
  .footer { padding: 48px 0 0; }
  .footer-grid { 
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-about { grid-column: span 2; }
  .footer-bottom { 
    flex-direction: column; 
    gap: 8px; 
    text-align: center;
    padding: 18px 0;
  }

  /* --- Lightbox --- */
  .lightbox img { max-width: 95vw; max-height: 80vh; }
  .lightbox-close { top: 16px; right: 16px; width: 40px; height: 40px; font-size: 1.4rem; }
  .lightbox-nav { width: 44px; height: 44px; font-size: 1.3rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }

  /* --- Modal --- */
  .modal-overlay { padding: 16px; }
  .modal { max-height: 90vh; max-height: 90dvh; border-radius: var(--radius-md); }
  .modal-image { height: 200px; }
  .modal-body { padding: 24px; }
  .modal-body h2 { font-size: 1.3rem; }
  .modal-amenities { gap: 8px; }
  .modal-amenity-tag { font-size: 0.75rem; padding: 5px 10px; }
  .modal-pricing-table th,
  .modal-pricing-table td { padding: 10px 12px; font-size: 0.82rem; }

  /* --- WhatsApp --- */
  .whatsapp-float { 
    bottom: 20px; 
    right: 20px; 
    width: 54px; 
    height: 54px;
    font-size: 1.5rem;
  }
}

/* ===== RESPONSIVE: 480px (SMALL PHONES) ===== */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-padding { padding: 48px 0; }
  .section-header { margin-bottom: 32px; }
  .section-label { font-size: 0.75rem; letter-spacing: 2px; }

  /* --- Hero --- */
  .hero-content { padding-right: 8px; }
  .hero h1 { font-size: 2rem; margin-bottom: 14px; }
  .hero p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 24px; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-badge { font-size: 0.75rem; padding: 6px 12px; }

  /* --- About --- */
  .about-image img { height: 240px; }
  .about-features { 
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .about-feature { 
    background: var(--gray-100);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }
  .about-text { font-size: 0.9rem; }

  /* --- Rooms --- */
  .rooms-grid { max-width: 100%; }
  .room-card-image { height: 200px; }
  .room-card-body { padding: 16px; }
  .room-card-body h3 { font-size: 1.1rem; }
  .room-desc { font-size: 0.85rem !important; }
  .room-card-amenities { gap: 10px; }
  .room-card-amenities span { font-size: 0.75rem; }
  .room-price { font-size: 1.2rem; }
  .room-card-footer .btn { padding: 8px 16px; font-size: 0.8rem; }

  /* --- Amenities --- */
  .amenity-main-image { height: 200px; }
  .amenity-card { padding: 14px; }
  .amenity-icon { width: 40px; height: 40px; font-size: 1.1rem; }
  .amenity-card h4 { font-size: 0.9rem; }
  .amenity-card p { font-size: 0.8rem; }

  /* --- Events --- */
  .events-grid { max-width: 100%; }
  .event-card-image { height: 180px; }
  .event-card-body { padding: 16px; }
  .event-card-body h3 { font-size: 1.1rem; }
  .event-card-body p { font-size: 0.85rem; }
  .extra-service { padding: 14px 16px; flex-wrap: wrap; }

  /* --- Gallery --- */
  .gallery-filters { 
    gap: 6px;
    margin-bottom: 20px;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .gallery-filters::-webkit-scrollbar { display: none; }
  .gallery-filter { 
    padding: 8px 16px; 
    font-size: 0.78rem;
    flex-shrink: 0;
  }
  .gallery-grid { 
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  /* --- Pricing --- */
  .pricing-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    gap: 6px;
    scrollbar-width: none;
  }
  .pricing-tabs::-webkit-scrollbar { display: none; }
  .pricing-tab { 
    padding: 10px 18px; 
    font-size: 0.78rem;
    flex-shrink: 0;
  }

  /* Pricing table scrollable on very small screens */
  .pricing-content {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .pricing-table { min-width: 520px; }
  .pricing-table th { padding: 10px 8px; font-size: 0.75rem; }
  .pricing-table td { padding: 10px 8px; font-size: 0.78rem; }
  .pricing-includes { 
    flex-direction: column;
    gap: 10px;
    padding: 16px;
  }
  .pricing-includes span { font-size: 0.82rem; }
  .policy-card { padding: 16px; }
  .policy-card h4 { font-size: 0.9rem; }
  .policy-card p { font-size: 0.82rem; }

  /* --- Contact --- */
  .contact-form { padding: 20px; }
  .contact-form h3 { font-size: 1.2rem; }
  .contact-form > p { font-size: 0.85rem; margin-bottom: 20px; }
  .form-group { margin-bottom: 16px; }
  .form-group label { font-size: 0.8rem; }
  .contact-info-card { padding: 20px; }
  .contact-info-card h3 { font-size: 1.1rem; margin-bottom: 16px; }
  .contact-item .icon { width: 36px; height: 36px; font-size: 0.95rem; }
  .contact-item p { font-size: 0.88rem; }
  .contact-social a { width: 38px; height: 38px; }

  /* --- Footer --- */
  .footer { padding: 40px 0 0; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-about { grid-column: span 1; }
  .footer h4 { margin-bottom: 14px; font-size: 0.95rem; }
  .footer-links a { font-size: 0.85rem; }
  .footer-about p { font-size: 0.85rem; }

  /* --- Modal --- */
  .modal-overlay { padding: 8px; }
  .modal { border-radius: var(--radius-sm); }
  .modal-image { height: 170px; }
  .modal-body { padding: 18px; }
  .modal-body h2 { font-size: 1.2rem; }
  .modal-body .modal-desc { font-size: 0.85rem; }
  .modal-amenities { gap: 6px; margin-bottom: 18px; }
  .modal-amenity-tag { font-size: 0.7rem; padding: 4px 8px; }
  .modal-pricing-table th,
  .modal-pricing-table td { padding: 8px 10px; font-size: 0.78rem; }
  .modal-cta .btn { width: 100%; justify-content: center; font-size: 0.9rem; }

  /* --- WhatsApp --- */
  .whatsapp-float { 
    bottom: 16px; 
    right: 16px; 
    width: 50px; 
    height: 50px;
    font-size: 1.4rem;
  }
}

/* ===== RESPONSIVE: 360px (VERY SMALL PHONES) ===== */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .hero h1 { font-size: 1.75rem; }
  .hero p { font-size: 0.85rem; }
  .btn { padding: 12px 24px; font-size: 0.88rem; }
  .section-title { font-size: 1.6rem; }
  .room-card-footer { flex-direction: column; gap: 12px; align-items: flex-start; }
  .room-card-footer .btn { width: 100%; justify-content: center; }
  .about-image img { height: 200px; }
  .gallery-grid { gap: 6px; }
  .event-card-image { height: 160px; }
  .contact-form { padding: 16px; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 12px 14px; }
}

/* ===== LANDSCAPE PHONE FIX ===== */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: 100vh; min-height: 100dvh; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 0.9rem; margin-bottom: 20px; }
  .hero-badge { margin-bottom: 12px; }
  .navbar-links {
    padding-top: 70px;
    gap: 4px;
  }
  .navbar-links a { padding: 8px 0; font-size: 0.95rem; }
}

/* ===== PRINT STYLES ===== */
@media print {
  .navbar, .whatsapp-float, .hero-scroll,
  .lightbox, .modal-overlay, .mobile-overlay { display: none !important; }
  .hero { height: auto; min-height: auto; padding: 40px 0; }
  .hero-media { display: none; }
  .hero-content { color: var(--dark); }
  .hero h1 { color: var(--dark); }
  .hero h1 span { color: var(--primary); }
  .reveal { opacity: 1 !important; transform: none !important; }
  .section-padding { padding: 30px 0; }
}
