/* ==========================================================================
   SAN FELIPE SUITES - DESIGN SYSTEM & MODERN STYLESHEET
   Color Palette: Deep Emerald Green & Elegant Metallic Gold
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Color Tokens */
  --primary-emerald: #0C3326;
  --primary-emerald-dark: #072219;
  --primary-emerald-light: #164D3B;
  --accent-gold: #C5A059;
  --accent-gold-light: #E8D39E;
  --accent-gold-dark: #977836;
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #C5A059 50%, #997A15 100%);
  --emerald-gradient: linear-gradient(135deg, #0C3326 0%, #164D3B 100%);
  
  --bg-champagne: #FAFA9F2;
  --bg-card: #FFFFFF;
  --bg-dark: #081D16;
  
  --text-dark: #1E2925;
  --text-muted: #5A6D65;
  --text-light: #F4F7F5;
  
  --border-gold: rgba(197, 160, 89, 0.3);
  --border-light: #E4EAE6;
  
  --shadow-sm: 0 4px 12px rgba(12, 51, 38, 0.05);
  --shadow-md: 0 8px 24px rgba(12, 51, 38, 0.1);
  --shadow-lg: 0 16px 40px rgba(12, 51, 38, 0.15);

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --transition-fast: 0.25s ease;
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: #F8FAF9;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-emerald);
  line-height: 1.25;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold-dark);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  margin-top: 0.75rem;
  border-radius: 2px;
}

.section-title.center::after {
  margin-left: auto;
  margin-right: auto;
}

.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  border: none;
  transition: var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.6);
  background: linear-gradient(135deg, #E5C158 0%, #D4AF37 100%);
}

.btn-emerald {
  background: var(--primary-emerald);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(12, 51, 38, 0.3);
}

.btn-emerald:hover {
  background: var(--primary-emerald-light);
  transform: translateY(-2px);
  color: #FFFFFF;
}

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

.btn-outline-gold:hover {
  background: var(--accent-gold);
  color: #FFFFFF;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: #FFFFFF;
}

.btn-outline-light:hover {
  background: #FFFFFF;
  color: var(--primary-emerald);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.top-bar {
  background: var(--primary-emerald-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-info {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-info span, .top-info a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-info i {
  color: var(--accent-gold);
}

.top-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.top-admin-link {
  color: var(--accent-gold);
  font-weight: 500;
}
.top-admin-link:hover {
  text-decoration: underline;
}

/* Main Navbar */
.main-header {
  background: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-brand img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-emerald);
  letter-spacing: -0.5px;
}

.logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold-dark);
  font-weight: 600;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--accent-gold-dark);
  font-weight: 600;
}

.mobile-toggle {
  display: none;
  font-size: 1.6rem;
  color: var(--primary-emerald);
  cursor: pointer;
}

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero-slider {
  position: relative;
  height: 78vh;
  min-height: 520px;
  background: var(--primary-emerald-dark);
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transform: scale(1.03);
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}

.slide-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(7, 34, 25, 0.85) 0%, rgba(7, 34, 25, 0.3) 100%);
}

.caption-content {
  max-width: 650px;
  color: #FFFFFF;
}

.caption-content h1 {
  color: #FFFFFF;
  font-size: 3.2rem;
  margin-bottom: 1rem;
  line-height: 1.15;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.caption-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.9);
  font-weight: 300;
}

.slider-controls {
  position: absolute;
  bottom: 2rem;
  right: 5%;
  display: flex;
  gap: 0.8rem;
  z-index: 10;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  backdrop-filter: blur(5px);
}

.slider-btn:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 5%;
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background: var(--accent-gold);
  width: 32px;
  border-radius: 6px;
}

/* ==========================================================================
   QUICK BOOKING BAR (SINGLE HORIZONTAL LINE)
   ========================================================================== */
.booking-bar-wrapper {
  margin-top: -55px;
  position: relative;
  z-index: 100;
}

.booking-bar {
  background: rgba(245, 238, 232, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.2rem 2.2rem 1.6rem;
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.8);
  max-width: 1080px;
  margin: 0 auto;
}

.booking-bar-header {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #7A5C28;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 1.2rem;
  align-items: flex-end;
}

.booking-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.booking-form .form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #8C6A2D;
  text-transform: uppercase;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 1rem;
  color: #9E7D3B;
  font-size: 1rem;
  pointer-events: none;
}

.input-with-icon input,
.input-with-icon select {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.6rem;
  border: 1px solid #E2D5C7;
  border-radius: 12px;
  background: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #5C451E;
  outline: none;
  transition: var(--transition-fast);
}

.input-with-icon select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%3C8C6A2D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.input-with-icon input:focus,
.input-with-icon select:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

.btn-search {
  padding: 0.85rem 1.8rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  height: 48px;
  background: linear-gradient(135deg, #CBB06B 0%, #B89647 100%);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 15px rgba(184, 150, 71, 0.35);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-search:hover {
  background: linear-gradient(135deg, #D4B974 0%, #C5A059 100%);
  transform: translateY(-2px);
}

/* General Forms (Contact, Admin, Modals) */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-emerald);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.form-group label i {
  color: var(--accent-gold-dark);
}

.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: #FFFFFF;
  outline: none;
  transition: var(--transition-fast);
  box-sizing: border-box;
}

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

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

/* ==========================================================================
   FEATURED SECTIONS & CARDS
   ========================================================================== */
.section-padding {
  padding: 5rem 0;
}

.bg-light {
  background-color: #F3F7F5;
}

.bg-emerald {
  background: var(--emerald-gradient);
  color: #FFFFFF;
}

.bg-emerald h2, .bg-emerald .section-tag {
  color: #FFFFFF;
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  width: 90%;
  height: 420px;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: 0;
  background: var(--gold-gradient);
  color: #FFFFFF;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-img-badge h4 {
  color: #FFFFFF;
  font-size: 2.2rem;
  line-height: 1;
}

.about-img-badge p {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
}

.feature-list li i {
  color: var(--accent-gold);
  font-size: 1.1rem;
}

/* Room Cards Grid */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.room-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

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

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

.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.room-price-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-emerald);
  color: var(--accent-gold-light);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.room-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.room-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.room-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed var(--border-light);
}

.room-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.room-card-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
  flex: 1;
}

.room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.room-tag {
  background: #F0F4F2;
  color: var(--primary-emerald);
  font-size: 0.78rem;
  padding: 0.25rem 0.65rem;
  border-radius: 12px;
  font-weight: 500;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.service-card {
  background: #FFFFFF;
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border: 1px solid var(--border-light);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--bg-champagne);
  color: var(--accent-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.2rem;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon {
  background: var(--gold-gradient);
  color: #FFFFFF;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Gallery Showcase & Filter */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 25px;
  border: 1px solid var(--border-light);
  background: #FFFFFF;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary-emerald);
  color: #FFFFFF;
  border-color: var(--primary-emerald);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 240px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 51, 38, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  color: #FFFFFF;
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
}

.gallery-overlay span {
  font-size: 0.8rem;
  color: var(--accent-gold-light);
  text-transform: uppercase;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 900px;
  max-height: 85vh;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #FFFFFF;
  font-size: 2rem;
  cursor: pointer;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--emerald-gradient);
  color: #FFFFFF;
  padding: 3rem 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.contact-info-card h3 {
  color: #FFFFFF;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.2);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-text h5 {
  color: var(--accent-gold-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}

.info-text p, .info-text a {
  color: #FFFFFF;
  font-size: 1.05rem;
}

.contact-form-card {
  background: #FFFFFF;
  padding: 3rem 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.contact-form-card h3 {
  margin-bottom: 1.5rem;
}

/* Alert Boxes */
.alert {
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.alert-success {
  background: #E6F4EA;
  color: #137333;
  border: 1px solid #CEEAD6;
}

.alert-danger {
  background: #FCE8E6;
  color: #C5221F;
  border: 1px solid #FAD2CF;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.8);
  padding-top: 4rem;
  border-top: 4px solid var(--accent-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  height: 55px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 35px;
  height: 2px;
  background: var(--accent-gold);
  margin-top: 0.4rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.footer-bottom {
  padding: 1.5rem 0;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-normal);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #FFFFFF;
}

/* Map Embed container */
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 350px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-img-main {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-slider {
    height: 60vh;
  }
  .caption-content h1 {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: column;
    text-align: center;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    display: none;
  }
  .nav-menu.active {
    display: flex;
  }
  .booking-form, .form-row-2, .form-row-3 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 2rem;
  }
}
