/* ===============================
   GLOBAL STYLES & RESET
   =============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #154360;
  --secondary-color: #1a5276;
  --accent-color: #f39c12;
  --text-color: #333333;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Playfair Display', Arial, sans-serif;
  background: #f5f5f5;
  line-height: 1.6;
  color: var(--text-color);
}

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

/* ===============================
   ACCESSIBILITY
   =============================== */
a:focus, button:focus {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #154360;
  color: white;
  padding: 8px;
  z-index: 10000;
  text-decoration: none;
  transition: var(--transition);
}

.skip-link:focus { 
  top: 0; 
}

/* ===============================
   HEADER STYLES
   =============================== */
#mainHeader { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 15px 20px; 
  background: linear-gradient(270deg, rgba(26,82,118,0.95), rgba(21,64,96,0.95), rgba(26,82,118,0.95));
  position: sticky; 
  top: 0; 
  z-index: 999; 
  transition: var(--transition);
  box-shadow: var(--shadow);
}

#headerLogo { 
  width: 80px; 
  height: 80px; 
  border-radius: 50%; 
  object-fit: cover; 
  border: 3px solid #ffd700; 
  filter: brightness(1.2) contrast(1.2); 
  box-shadow: 0 0 12px rgba(255,215,0,0.6), 0 5px 15px rgba(0,0,0,0.4);
  transition: var(--transition);
}

.logo-wrap { 
  display: flex; 
  align-items: center; 
  gap: 15px; 
}

.brand-box {
  background: #fff; 
  padding: 5px 15px; 
  border-radius: 6px; 
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

#headerText {
  font-family: 'Playfair Display', serif;
  color: #fff; 
  font-weight: 900; 
  font-size: 1rem;
  background: linear-gradient(90deg, #000000, #e74c3c, #000000);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 6px rgba(0,0,0,0.4);
  transition: var(--transition);
}

/* ===============================
   FULL-SCREEN MENU
   =============================== */
#fullScreenMenu {
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
  background: #fff;
  display: none; 
  flex-direction: column; 
  justify-content: flex-start;
  align-items: flex-start; 
  padding: 20px 10px; 
  gap: 5px; 
  z-index: 9999;
  font-family: 'Playfair Display', serif;
}

#closeMenu {  
  position: absolute; 
  top: 25px; 
  right: 30px; 
  font-size: 2rem; 
  color: #154360;
  cursor: pointer; 
  background: #ffd700; 
  border: 2px solid #154360; 
  border-radius: 50%;
  padding: 5px; 
  transition: var(--transition);  
}  

#closeMenu:hover { 
  transform: scale(1.1); 
}

#fullScreenMenu a.menuLink {
  display: flex; 
  align-items: center; 
  gap: 2px; 
  font-size: 1.6rem;
  color: #000; 
  text-decoration: none; 
  padding: 5px 0;
  transition: var(--transition);
}

#fullScreenMenu a.menuLink:hover, 
#fullScreenMenu a.menuLink:focus {
  color: #ffd700; 
  background: rgba(255, 255, 255, 0.05); 
  border-radius: 5px;
}

#fullScreenMenu a.booking-btn {
  font-weight: 700; 
  font-size: 1rem; 
  padding: 6px 12px;
  background: #ffd700; 
  color: #154360; 
  border-radius: 6px; 
  text-decoration: none;
  display: inline-block; 
  margin-top: 20px;
  transition: var(--transition);
}

#fullScreenMenu a.booking-btn:hover, 
#fullScreenMenu a.booking-btn:focus {
  background: #f1c40f; 
  transform: translateY(-2px); 
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

#fullScreenMenu a.booking-btn:active {
  transform: translateY(0); 
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Desktop Menu Icon */
#desktopMenuIcon { 
  background: #ffd700; 
  padding: 7px; 
  border-radius: 8px; 
  border: none; 
  cursor: pointer; 
  transition: var(--transition); 
}

#desktopMenuIcon i { 
  font-size: 2rem; 
}

#desktopMenuIcon:hover { 
  background: #f1c40f; 
  transform: scale(1.1); 
}

/* Resort Name */
.menu-resort-name {
  margin-top: 30px; 
  font-size: 1.7rem; 
  font-weight: 900; 
  color: #000;
  background: rgba(21, 67, 96, 0.85); 
  padding: 10px 15px; 
  text-align: center;
  width: auto; 
  letter-spacing: 10px; 
  font-family: 'Playfair Display', serif; 
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* ===============================
   HERO SECTION
   =============================== */
.hero { 
  position: relative; 
  min-height: 100vh; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  text-align: center; 
  color: #fff; 
  overflow: hidden; 
  padding-top: 80px; 
}

.hero-bg, .hero-bg img { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  z-index: 0; 
  filter: brightness(1.35) contrast(1.2) saturate(1.25); 
}

.hero-overlay { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background: linear-gradient(rgba(255,255,255,0.15), rgba(0,0,0,0.45)); 
  z-index: 1; 
}

.hero-content { 
  position: relative; 
  z-index: 2; 
  max-width: 900px; 
  padding: 0 20px; 
}

.hero-title { 
  font-family: 'Playfair Display', serif; 
  font-weight: 900; 
  font-size: 3rem; 
  margin-bottom: 20px; 
  line-height: 1.2; 
  text-shadow: 0 4px 15px rgba(0,0,0,0.9); 
}

.hero-subtitle { 
  font-size: 1.6rem; 
  font-weight: 600; 
  color: #fefefe; 
  text-shadow: 2px 2px 8px rgba(0,0,0,0.95); 
  margin-bottom: 30px; 
}

/* ===============================
   LAZY LOAD IMAGES
   =============================== */
.lazy-load { 
  opacity: 0; 
  transition: opacity 0.3s; 
  contain: layout;
  contain-intrinsic-size: 300px;
}

.lazy-load.loaded { 
  opacity: 1; 
}
/* ===============================
   ABOUT SECTION
   =============================== */
.about-section {
  padding: 60px 15px;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(135deg, #fff8e8, #e0f7fa);
  border-top: 5px solid #e74c3c;
  text-align: center;
  scroll-margin-top: 80px;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.about-text {
  flex: 1 1 500px;
  text-align: left;
}

.about-text h2 { 
  font-size: 2.5rem; 
  color: #1a202c; 
  margin-bottom: 12px; 
  line-height: 1.3; 
}

.about-text h2 span { 
  color: #e74c3c; 
}

.about-text h3 { 
  font-size: 1.3rem; 
  margin-bottom: 20px; 
  font-style: italic; 
  color: #1a5276; 
}

.about-text p { 
  font-size: 1.05rem; 
  color: #2d3748; 
  line-height: 1.7; 
  margin-bottom: 20px; 
}

.about-btn-wrapper { 
  margin-top: 30px; 
  text-align: left; 
}

.about-booking-btn { 
  display: inline-block; 
  overflow: hidden; 
  position: relative; 
  padding: 14px 30px; 
  background: linear-gradient(135deg, #1a5276, #154360); 
  color: #fff; 
  border-radius: 40px; 
  font-weight: 600; 
  font-size: 1.1rem; 
  text-decoration: none; 
  min-width: 250px; 
  text-align: center; 
  transition: var(--transition);
}

.about-booking-btn:hover,
.about-booking-btn:focus { 
  background: linear-gradient(135deg, #154360, #0b2f44); 
  transform: scale(1.05); 
  outline: none;
}

.btn-slide { 
  display: flex; 
  flex-direction: column; 
  height: 1.3em; 
  overflow: hidden; 
}

.btn-slide span { 
  animation: slideText 12s infinite; 
  white-space: nowrap; 
}

@keyframes slideText { 
  0% { transform: translateY(0); }
  20% { transform: translateY(-100%); }
  40% { transform: translateY(-200%); }
  60% { transform: translateY(-300%); }
  80% { transform: translateY(-200%); }
  100% { transform: translateY(0); }
}

.about-image { 
  flex: 0 1 450px; 
  text-align: center; 
}

.about-image img {
  width: 100%; 
  height: auto; 
  border-radius: 20px; 
  border: 4px solid #ffd700; 
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  transition: var(--transition);
}

.about-image img:hover { 
  transform: scale(1.03); 
}


/* ===============================
   FACILITIES SECTION
   =============================== */
#facilities { 
  padding: 60px 15px; 
  background: linear-gradient(135deg, #fff8e8, #fff1dc);
  text-align: center; 
  scroll-margin-top: 80px;
  font-family: 'Playfair Display', serif;
}

#facilities .container {
  max-width: 1200px;
  margin: 0 auto;
}

#facilities h2 { 
  font-size: 2.5rem; 
  margin-bottom: 15px; 
  color: #1a202c; 
  font-weight: 800;
}

.facilities-subtitle { 
  font-size: 1.1rem; 
  margin-bottom: 40px; 
  color: #2d3748; 
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.facilities-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 30px; 
}

.facility { 
  background: #fffdf7; 
  padding: 25px 20px; 
  border-radius: 18px; 
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
  cursor: pointer;
}

.facility:hover,
.facility:focus { 
  transform: translateY(-5px); 
  box-shadow: 0 12px 30px rgba(0,0,0,0.15); 
  background: #fff;
  outline: none;
}

.facility-icon { 
  font-size: 3.5rem; 
  margin-bottom: 20px; 
  display: block; 
  margin-left: auto; 
  margin-right: auto; 
  transition: var(--transition); 
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.facility:hover .facility-icon,
.facility:focus .facility-icon { 
  transform: scale(1.2); 
}

.facility h3 { 
  font-size: 1.3rem; 
  margin-bottom: 12px; 
  color: #1a5276;
  font-weight: 700;
}

.facility p { 
  font-size: 1rem; 
  color: #2d3748; 
  line-height: 1.6;
  margin: 0;
}

/* ===============================
   GALLERY SECTION
   =============================== */
.gallery-section {  
  padding: 30px 15px;  
  background: linear-gradient(135deg, #f0f2f5, #e0e4e8);
  text-align: center;  
  scroll-margin-top: 80px;
  font-family: 'Playfair Display', serif;
}

.section-heading {  
  font-size: 2.8rem;  
  font-weight: 900;  
  color: #1a202c;  
  margin-bottom: 35px;  
  position: relative;  
}

.section-heading::before, .section-heading::after {  
  content: "✨";  
  font-size: 1.2rem;  
  margin: 0 8px;  
  color: #1a202c;
}  

.gallery-swiper {  
  max-width: 1000px;  
  margin: 0 auto;  
  border-radius: 15px;  
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);  
  overflow: hidden;  
  background: rgba(0,0,0,0.4);
  position: relative;
}

.gallery-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.gallery-swiper .swiper-slide img {  
  width: 100%;  
  height: 450px;  
  object-fit: cover;  
  transition: var(--transition);  
  filter: brightness(1.05) contrast(1.05);
}  

.gallery-swiper .swiper-slide img:hover {  
  transform: scale(1.05);  
  filter: brightness(1.15) contrast(1.1);
}  

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: white;
  padding: 20px 15px 10px;
  font-size: 0.9rem;
  text-align: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-swiper .swiper-slide:hover .image-caption {
  opacity: 1;
}

.gallery-next, .gallery-prev {  
  color: #f1c40f;  
  background: rgba(0,0,0,0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-next:hover, .gallery-prev:hover,
.gallery-next:focus, .gallery-prev:focus {
  background: rgba(0,0,0,0.8);
  outline: 2px solid #f1c40f;
}

.swiper-pagination-bullet {  
  background: #f1c40f;  
  opacity: 0.6;
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(241, 196, 15, 0.3);
  border-radius: 50%;
  border-top-color: #f1c40f;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===============================
   ROOMS SECTION
   =============================== */
.rooms {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
  text-align: center;
  scroll-margin-top: 80px;
  font-family: 'Playfair Display', serif;
}

.rooms-heading {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #1a202c;
  font-weight: 700;
}

.rooms-description {
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.6;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.room-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
  position: relative;
}

.room-card:hover,
.room-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.room-image {
  position: relative;
  overflow: hidden;
}

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

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

.room-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.room-info {
  padding: 25px;
  text-align: left;
}

.room-info h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.4rem;
  color: #2d3748;
  font-weight: 700;
}

.room-info > p {
  font-size: 1rem;
  margin: 0 0 15px 0;
  color: #4a5568;
  line-height: 1.5;
}

.room-info .price {
  font-size: 1.2rem;
  margin: 15px 0;
  color: #e53e3e;
  font-weight: 700;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}

.feature {
  background: #f7fafc;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #4a5568;
  border: 1px solid #e2e8f0;
}

.room-info .btn {
  display: inline-block;
  margin-top: 10px;
  background: linear-gradient(135deg, #f6ad55, #ed8936);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.room-info .btn:hover,
.room-info .btn:focus {
  background: linear-gradient(135deg, #ed8936, #dd6b20);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(237, 137, 54, 0.3);
  outline: none;
}
/* ===============================
   ATTRACTIONS SECTION
   =============================== */
.attractions-section {
  padding: 60px 15px;
  background: linear-gradient(135deg, #f0f8ff, #e6f2ff);
  scroll-margin-top: 80px;
  font-family: 'Playfair Display', serif;
}

.attractions-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.attractions-section .section-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: #1a202c;
  margin-bottom: 20px;
}

.attractions-section .section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.6;
}

.attractions-swiper {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 0 80px; /* extra space for arrows */
}

/* Arrows */
.attractions-swiper .swiper-button-next,
.attractions-swiper .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10; /* arrows above text */
  color: #000; /* change color if needed */
}

.attractions-swiper .swiper-button-next {
  right: 0; /* ya thoda -10px agar chahiye bahar */
}
.attractions-swiper .swiper-button-prev {
  left: 0; /* ya thoda -10px */
}

.attraction-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.attraction-card:hover,
.attraction-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.attraction-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.attraction-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.1) contrast(1.05);
  transition: var(--transition);
}

.attraction-card:hover .attraction-image-wrapper img {
  transform: scale(1.05);
  filter: brightness(1.2) contrast(1.1);
}

.distance-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(26, 82, 118, 0.85);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.attraction-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.attraction-card h3 {
  font-size: 1.3rem;
  color: #1a202c;
  margin: 0 0 12px 0;
  font-weight: 700;
}

.attraction-card p {
  font-size: 0.95rem;
  color: #4a5568;
  margin: 0 0 15px 0;
  line-height: 1.5;
  flex-grow: 1;
}

.attraction-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.attractions-next, 
.attractions-prev {
  color: #1a5276;
  background: rgba(255, 255, 255, 0.9);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.attractions-next:hover, 
.attractions-prev:hover {
  color: #fff;
  background: #1a5276;
}
/* ===============================
   REVIEWS SECTION
   =============================== */
.reviews-section {
  padding: 60px 15px;
  background: #fff3e0;
  scroll-margin-top: 80px;
  font-family: 'Playfair Display', serif;
}

.reviews-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-section .section-heading {
  text-align: center;
  font-size: 2.5rem;
  color: #1a202c;
  margin-bottom: 15px;
  font-weight: 900;
}

.reviews-section .section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.6;
}

.review-swiper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

.review-card {
  background: linear-gradient(145deg, #ffffff, #fff9f4);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.05);
  text-align: left;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.review-card p.review-text {
  font-size: 1.05rem;
  color: #2d3748;
  margin-bottom: 20px;
  position: relative;
  padding-left: 35px;
  line-height: 1.6;
}

.review-card p.review-text::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -15px;
  font-size: 3.5rem;
  color: rgba(231, 76, 60, 0.2);
}

.review-card .stars {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.review-author h4 {
  color: #1a202c;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.review-author span {
  color: #718096;
  font-size: 0.9rem;
}

.review-next, 
.review-prev {
  color: #e74c3c;
  background: rgba(255, 255, 255, 0.9);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.review-next:hover, 
.review-prev:hover {
  color: #fff;
  background: #e74c3c;
}
/* ===============================
   HOW TO REACH SECTION
   =============================== */
.how-to-reach-section {
  font-family: 'Playfair Display', serif;
  background: #e8f0fb;
  padding: 60px 15px;
  scroll-margin-top: 80px;
}

.how-to-reach-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.route-timeline {
  position: relative;
  padding-left: 25px;
  border-left: 3px solid #4c51bf;
  margin-bottom: 30px;
}

.route-step {
  position: relative;
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.route-step:last-child {
  margin-bottom: 0;
}

.step-icon {
  width: 40px;
  height: 40px;
  background: #4c51bf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

.step-content {
  flex-grow: 1;
}

.step-content h3 {
  margin: 0 0 8px 0;
  color: #2d3748;
  font-size: 1.1rem;
  font-weight: 600;
}

.step-content p {
  margin: 0 0 5px 0;
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.5;
}

.step-distance {
  color: #718096;
  font-size: 0.85rem;
}

.travel-tips {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-top: 30px;
}

.tips-heading {
  margin-bottom: 15px;
  color: #2d3748;
  font-size: 1.3rem;
  font-weight: 600;
}

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

.tips-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4a5568;
  margin-bottom: 12px;
  line-height: 1.5;
}

.tips-list li:last-child {
  margin-bottom: 0;
}

.tips-list i {
  color: #4c51bf;
  width: 20px;
  text-align: center;
}

/* ===============================
   BOOKING SECTION
   =============================== */
.booking-section {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  font-family: 'Playfair Display', serif;
  padding: 60px 20px;
  scroll-margin-top: 80px;
}

.booking-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-info-compact {
  background: linear-gradient(135deg,#001f3f);
  padding: 8px;
  border-radius: 8px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  border: 1px solid #ffe066;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.contact-icon {
  color: #2e7d32;
  font-size: 1.1rem;
}

.contact-text a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.contact-text a:hover {
  color: #388e3c;
  text-decoration: underline;
}

.form-heading {
  text-align: center;
  color: #1a5276;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 600;
}

.booking-form {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-group {
  flex: 1;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #2d3748;
  font-size: 0.9rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #4299e1;
  box-shadow: 0 0 0 2px rgba(66, 153, 225, 0.2);
}

.guests-input {
  display: flex;
  gap: 10px;
}

.guest-type {
  flex: 1;
}

.guest-type label {
  font-size: 0.8rem;
  font-weight: 500;
}

.guest-type input {
  text-align: center;
  padding: 8px;
}

.btn-primary {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #1a5276, #154360);
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 15px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #154360, #1c3d4f);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(26, 82, 118, 0.3);
}

.map-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* ===============================
   FOOTER SECTION
   =============================== */
.footer {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: white;
  padding: 40px 20px 20px;
  margin-top: 50px;
  font-family: 'Playfair Display', serif;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 20px;
}

.footer-logo a {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffd700;
  text-decoration: none;
}

.footer-tagline {
  font-style: italic;
  color: #ecf0f1;
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 0.95rem;
  text-align: center; 
  letter-spacing: 0.5px; 
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ffd700;
  font-weight: 600;
  text-align: center; 
}

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

.contact-item {  
  display: flex;  
  align-items: center;  
  gap: 10px;  
  font-size: 0.95rem;  
}

.contact-item span {
  color: #000000;
}

.contact-icon {
  width: 20px;
  text-align: center;
  color: #ffd700;
}

.footer-contact a {
  color: #000000;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #ffd700;
  text-decoration: underline;
}

.footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.facebook { background-color: #3b5998; }
.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.tiktok { background-color: #000000; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

.footer-copy {
  text-align: center;
  font-size: 0.9rem;
  color: #cccccc;
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */
/* Mobile First Approach */
@media (min-width: 320px) {
  /* smartphones */
  .hero-title { font-size: 1.8rem; }
  .hero-subtitle { font-size: 1rem; }
  #fullScreenMenu a { font-size: 1.2rem; }
  .about-text h2 { font-size: 1.8rem; }
  .about-booking-btn { font-size: 0.9rem; padding: 10px 20px; min-width: 200px; }
  #facilities h2 { font-size: 1.8rem; }
  .facilities-grid { grid-template-columns: 1fr; gap: 15px; }
  .facility-icon { font-size: 2.5rem; }
  .facility h3 { font-size: 1.05rem; }
  .section-heading { font-size: 1.8rem; }
  .gallery-swiper .swiper-slide img { height: 220px; }
  .gallery-next, .gallery-prev { width: 35px; height: 35px; }
  .swiper-pagination-bullet { width: 10px; height: 10px; }
  .rooms-heading { font-size: 1.8rem; }
  .room-info { padding: 15px; }
  .room-info h3 { font-size: 1.2rem; }
  .room-info .btn { padding: 10px 20px; font-size: 0.9rem; }
  .feature { font-size: 0.8rem; }
  .attractions-section .section-heading { font-size: 1.8rem; }
  .attraction-image-wrapper { height: 160px; }
  .attraction-features { justify-content: center; }
  .attractions-next, .attractions-prev { width: 35px; height: 35px; }
  .swiper-pagination-bullet { width: 10px; height: 10px; }
  .reviews-section .section-heading { font-size: 1.8rem; }
  .review-swiper { padding: 10px; }
  .review-card { padding: 20px 15px; }
  .review-card p.review-text { padding-left: 25px; }
  .review-card p.review-text::before { font-size: 2.5rem; top: -10px; }
  .review-next, .review-prev { width: 35px; height: 35px; }
  .swiper-pagination-bullet { width: 10px; height: 10px; }
  .section-heading { font-size: 1.6rem; }
  .route-step { flex-direction: column; gap: 10px; text-align: center; }
  .step-icon { align-self: center; }
  .tips-list li { font-size: 0.9rem; }
  .section-heading { font-size: 1.8rem; }
  .contact-item { padding: 6px 12px; }
  .form-heading { font-size: 1.3rem; }
  .footer { padding: 30px 15px 15px; }
  .footer-logo a { font-size: 1.2rem; }
  .footer-logo { text-align: center; margin-bottom: 10px; }
  .contact-item { font-size: 0.9rem; }
}

@media (min-width: 481px) {
  /* portrait e-readers */
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1.2rem; }
  #fullScreenMenu a { font-size: 1.5rem; }
  .about-section { padding: 40px 15px; }
  .about-text h2 { font-size: 2rem; }
  .about-text h3 { font-size: 1.1rem; }
  .about-booking-btn { font-size: 1rem; padding: 12px 25px; min-width: 220px; }
  #facilities { padding: 40px 15px; }
  #facilities h2 { font-size: 2rem; }
  .facilities-subtitle { font-size: 1rem; margin-bottom: 30px; }
  .facilities-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
  .facility { padding: 20px 15px; }
  .facility-icon { font-size: 2.8rem; margin-bottom: 15px; }
  .facility h3 { font-size: 1.1rem; }
  .facility p { font-size: 0.9rem; }
  .section-heading { font-size: 2rem; margin-bottom: 20px; }
  .gallery-swiper .swiper-slide img { height: 280px; }
  .gallery-next, .gallery-prev { width: 40px; height: 40px; }
  .image-caption { font-size: 0.8rem; padding: 15px 10px 8px; }
  .rooms { padding: 40px 15px; }
  .rooms-heading { font-size: 2rem; }
  .rooms-description { font-size: 1rem; margin-bottom: 30px; }
  .rooms-grid { grid-template-columns: 1fr; max-width: 500px; }
  .room-info { padding: 20px; }
  .room-info h3 { font-size: 1.3rem; }
  .room-features { justify-content: center; }
  .attractions-section { padding: 40px 15px; }
  .attractions-section .section-heading { font-size: 2rem; }
  .attractions-section .section-subtitle { font-size: 1rem; margin-bottom: 30px; }
  .attractions-swiper { padding: 0 30px; }
  .attraction-image-wrapper { height: 180px; }
  .attraction-content { padding: 15px; }
  .attraction-card h3 { font-size: 1.2rem; }
  .attractions-next, .attractions-prev { width: 40px; height: 40px; }
  .reviews-section { padding: 40px 15px; }
  .reviews-section .section-heading { font-size: 2rem; }
  .reviews-section .section-subtitle { font-size: 1rem; margin-bottom: 30px; }
  .review-card { padding: 25px 20px; }
  .review-card p.review-text { font-size: 1rem; padding-left: 30px; }
  .review-card p.review-text::before { font-size: 3rem; top: -12px; }
  .review-next, .review-prev { width: 40px; height: 40px; }
  .how-to-reach-section { padding: 40px 15px; }
  .section-heading { font-size: 1.8rem; }
  .section-subtitle { font-size: 1rem; margin-bottom: 30px; }
  .route-timeline { padding-left: 20px; }
  .route-step { gap: 12px; margin-bottom: 20px; }
  .step-icon { width: 35px; height: 35px; font-size: 16px; }
  .step-content h3 { font-size: 1rem; }
  .step-content p { font-size: 0.9rem; }
  .travel-tips { padding: 20px; }
  .tips-heading { font-size: 1.2rem; }
  .booking-section { padding: 40px 15px; }
  .section-heading { font-size: 2rem; }
  .contact-info-compact { flex-direction: column; gap: 10px; }
  .form-row { flex-direction: column; gap: 12px; margin-bottom: 12px; }
  .booking-form { padding: 20px; }
}

@media (min-width: 641px) {
  /* portrait tablets */
  .about-container { flex-direction: column; align-items: center; gap: 30px; }
  .about-text { text-align: center; flex-basis: 100%; }
  .about-btn-wrapper { text-align: center; }
  .about-image { flex-basis: 100%; max-width: 90%; }
  .facilities-grid { gap: 25px; }
  .rooms-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
}

@media (min-width: 961px) {
  /* tablets/laptops */
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

@media (min-width: 1025px) {
  /* desktops */
  .hero-title { font-size: 3rem; }
  .hero-subtitle { font-size: 1.6rem; }
}

@media (min-width: 1281px) {
  /* large desktops */
  .container {
    max-width: 1400px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .btn-slide span { animation: none; transform: translateY(0); }
  .about-booking-btn:hover,
  .about-booking-btn:focus { transform: none; }
  .facility,
  .facility-icon { transition: none; }
  .facility:hover,
  .facility:focus { transform: none; }
  .facility:hover .facility-icon,
  .facility:focus .facility-icon { transform: none; }
  .gallery-swiper .swiper-slide img { transition: none; }
  .gallery-swiper .swiper-slide img:hover { transform: none; filter: brightness(1.05) contrast(1.05); }
  .image-caption { opacity: 1; transition: none; }
}