* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --primary: #8B4513;
  --secondary: #D2691E;
  --accent: #F4A460;
  --light: #FFF8DC;
  --dark: #3E2723;
  --text: #333333;
  --white: #FFFFFF;
}

body {
  background-color: var(--light);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

/* HEADER - FIXED FOR DESKTOP */
header {
  display: flex;
  align-items: center;
  padding: 15px 5%;
  background-color: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  gap: 30px;
  transition: all 0.3s ease;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
  min-width: 200px;
}

header img {
  height: 70px;
  width: auto;
  max-width: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.logo-text h1 {
  font-family: 'Audiowide', cursive;
  color: #a00;
  font-size: 1.3rem;
  line-height: 1.2;
  white-space: nowrap;
}

.logo-text span {
  font-size: 0.8rem;
  color: black;
  font-style: italic;
  text-align: right;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  margin-left: auto;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 5px;
}

.nav-links a:hover {
  color: var(--primary);
  background: var(--light);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 50%;
  background-color: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::after {
  width: 80%;
}

/* Mobile menu - HIDDEN ON DESKTOP */
.mobile-menu {
  display: none;
}

/* Mobile Navigation - FIXED */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--white);
  z-index: 1001;
  padding: 80px 25px 30px;
  transition: right 0.4s ease;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 1.1rem;
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.mobile-nav-links a:hover {
  background: var(--light);
  color: var(--primary);
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
  background: var(--light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-nav-close:hover {
  background: var(--primary);
  color: white;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Prevent body scroll when mobile nav is open */
body.no-scroll {
  overflow: hidden;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 90vh;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1.5s ease-in-out;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 600;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  animation: fadeInUp 1.2s ease-out;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: var(--light);
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
  animation: fadeInUp 1.5s ease-out;
}

.hero-btn {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  animation: fadeInUp 1.8s ease-out;
}

.hero-btn:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* SECTIONS COMMON STYLES */
section {
  padding: 80px 20px;
  scroll-margin-top: 80px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title h3 {
  font-family: 'Audiowide', cursive;
  color: var(--primary);
  font-size: 2.2rem;
  display: inline-block;
  position: relative;
}

.section-title h3::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 3px;
  background-color: var(--accent);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* ABOUT SECTION */
.about {
  background: var(--white);
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-text {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.about-card {
  background: var(--light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
}

.about-card h4 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.about-card p {
  color: var(--text);
  margin-bottom: 10px;
}

/* FEATURES SECTION */
.features {
  background: var(--light);
}

.features-container {
  max-width: 1000px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.feature-item {
  background: var(--white);
  padding: 25px 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.feature-item p {
  font-weight: 500;
  color: var(--dark);
}

/* GALLERY SECTION */
.gallery {
  background: var(--white);
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.gallery-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: var(--white);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

/* FAQ SECTION */
.faq {
  background: var(--white);
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: var(--light);
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.faq-question {
  padding: 25px 30px;
  background: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f9f9f9;
}

.faq-question h4 {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.faq-icon {
  color: var(--primary);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--light);
}

.faq-answer p {
  padding: 0 0 25px;
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* NEARBY ATTRACTIONS SECTION */
.attractions {
  background: var(--white);
  padding: 80px 20px;
}

.attractions-container {
  max-width: 1200px;
  margin: 0 auto;
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.attraction-card {
  background: var(--light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
}

.attraction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.attraction-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.attraction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.attraction-card:hover .attraction-image img {
  transform: scale(1.05);
}

.attraction-distance {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255,255,255,0.95);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 5px;
}

.attraction-content {
  padding: 25px;
}

.attraction-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.attraction-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.attraction-description {
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.attraction-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.attraction-feature {
  background: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--dark);
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 5px;
}

.attraction-feature i {
  color: var(--primary);
  font-size: 0.9rem;
}

.attraction-travel {
  background: rgba(139, 69, 19, 0.05);
  padding: 15px;
  border-radius: 10px;
  margin: 20px 0;
  border-left: 3px solid var(--primary);
}

.travel-title {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.travel-options {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.travel-option {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: #666;
}

.travel-option i {
  color: var(--primary);
  font-size: 0.9rem;
}

.attraction-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.attraction-btn {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.attraction-btn.primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
}

.attraction-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.attraction-btn.secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid #ddd;
}

.attraction-btn.secondary:hover {
  background: #f8f9fa;
  border-color: var(--primary);
  color: var(--primary);
}

/* Mini Map Section */
.attractions-map {
  margin-top: 50px;
}

.mini-map-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.mini-map-item {
  background: var(--light);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.mini-map-item:hover {
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.mini-map-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.mini-map-title {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 5px;
}

.mini-map-distance {
  color: #666;
  font-size: 0.9rem;
}

/* BOOKING SECTION */
.booking {
  background: var(--light);
  text-align: center;
}

.booking-content {
  max-width: 800px;
  margin: 0 auto;
}

.booking p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.booking-btn {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.booking-btn:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* TESTIMONIALS SECTION */
.testimonials {
  background: var(--light);
  padding: 80px 20px;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  border-left: 4px solid var(--primary);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.3;
  font-family: serif;
}

.testimonial-content {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 0;
}

.testimonial-rating {
  margin: 15px 0;
  color: #FFD700;
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
}

.testimonial-author-info h4 {
  color: var(--primary);
  margin: 0 0 5px 0;
  font-size: 1.1rem;
}

.testimonial-author-info p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}

/* MAP SECTION */
.map {
  background: var(--white);
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
}

.map-frame {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* CONTACT SECTION */
.contact {
  background: var(--light);
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  background: var(--primary);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-details h4 {
  color: var(--primary);
  margin-bottom: 5px;
}

.contact-details p, .contact-details a {
  color: var(--text);
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--primary);
}

.contact-form {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 20px;
}

input, textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: border 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.submit-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: var(--secondary);
}

/* FOOTER */
footer {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 30px 20px;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Audiowide', cursive;
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--accent);
}

.footer-text {
  margin-bottom: 20px;
  color: #ccc;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-links a {
  color: var(--white);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--accent);
}

.copyright {
  font-size: 0.9rem;
  color: #aaa;
}

/* FLOATING ACTION BUTTONS */
.floating-buttons {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.floating-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}

.floating-btn.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.floating-btn.call {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.floating-btn.booking {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  width: auto;
  padding: 0 25px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* POPUP OFFER MODAL */
.popup-offer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 2001;
  animation: fadeIn 0.3s ease;
}

.popup-offer-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  width: 90%;
  max-width: 380px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  overflow: hidden;
  animation: popIn 0.5s ease 0.3s forwards;
  border: 3px solid var(--primary);
}

.popup-offer-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 20px;
  text-align: center;
  position: relative;
}

.popup-offer-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff4444;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  transform: rotate(5deg);
  box-shadow: 0 3px 10px rgba(255,68,68,0.3);
  border: 2px solid white;
}

.popup-offer-icon {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.popup-offer-header h3 {
  color: white;
  font-size: 1.4rem;
  margin: 0;
  font-weight: 700;
  font-family: 'Audiowide', cursive;
}

.popup-offer-body {
  padding: 25px 20px;
  text-align: center;
}

.popup-offer-message {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.popup-offer-highlight {
  color: #e74c3c;
  font-weight: 800;
  font-size: 1.2rem;
}

.popup-offer-details {
  background: var(--light);
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
  border-left: 3px solid var(--primary);
  text-align: left;
}

.popup-offer-details p {
  margin: 5px 0;
  color: var(--dark);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.popup-offer-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 15px 0;
}

.popup-offer-feature {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--text);
  background: #f8f9fa;
  padding: 5px 8px;
  border-radius: 5px;
}

.popup-offer-feature i {
  color: var(--primary);
  font-size: 0.8rem;
}

.popup-offer-footer {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.popup-offer-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 15px rgba(139, 69, 19, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.popup-offer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(139, 69, 19, 0.4);
}

.popup-offer-btn.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid #ddd;
  box-shadow: none;
  font-size: 0.8rem;
  padding: 8px 15px;
}

.popup-offer-btn.secondary:hover {
  background: #f8f9fa;
  border-color: var(--primary);
  color: var(--primary);
}

.popup-offer-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.2);
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-offer-close:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
}

.popup-offer-note {
  font-size: 0.7rem;
  color: #666;
  margin-top: 5px;
  text-align: center;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  z-index: 2000;
  overflow-y: auto;
}

.modal-content {
  background-color: var(--white);
  margin: 50px auto;
  padding: 0;
  width: 90%;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.3);
  animation: modalFadeIn 0.3s ease;
}

.modal-header {
  background: var(--primary);
  color: var(--white);
  padding: 20px 30px;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
}

.close-modal {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.close-modal:hover {
  transform: scale(1.1);
}

.modal-body {
  padding: 30px;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.booking-submit-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 10px;
}

.booking-submit-btn:hover {
  background: var(--secondary);
}

.booking-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Success & Error Modal Styles */
.success-modal .modal-content,
.error-modal .modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  margin: 10% auto;
  padding: 0;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: slideUp 0.4s ease;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}

.success-modal .modal-header {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 30px;
  text-align: center;
  position: relative;
}

.error-modal .modal-header {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
  padding: 30px;
  text-align: center;
  position: relative;
}

.modal-header i {
  font-size: 4rem;
  margin-bottom: 15px;
  display: block;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.modal-header h3 {
  font-size: 1.8rem;
  margin: 0;
  font-weight: 600;
  font-family: 'Audiowide', cursive;
}

.success-modal .modal-body,
.error-modal .modal-body {
  padding: 40px 30px;
  text-align: center;
}

.success-icon,
.error-icon {
  font-size: 5rem;
  margin-bottom: 20px;
}

.success-icon {
  color: #28a745;
}

.error-icon {
  color: #dc3545;
}

.success-message,
.error-message {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text);
  font-weight: 600;
}

.success-details,
.error-details {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #666;
  line-height: 1.6;
}

.booking-details {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  text-align: left;
}

.booking-details p {
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary);
}

.booking-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.booking-details li {
  padding: 8px 0;
  color: #555;
  font-size: 0.95rem;
}

.success-modal .modal-footer,
.error-modal .modal-footer {
  padding: 0 30px 30px;
  text-align: center;
}

.modal-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(139, 69, 19, 0.3);
  width: 100%;
  max-width: 200px;
}

.modal-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.error-btn {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  box-shadow: 0 5px 20px rgba(220, 53, 69, 0.3);
}

.error-btn:hover {
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from { 
    opacity: 0; 
    transform: translateY(30px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

@keyframes fadeInDown {
  from { 
    opacity: 0; 
    transform: translateY(-30px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

@keyframes popIn {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { 
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to { 
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* RESPONSIVE STYLES */
@media (max-width: 1200px) {
  header {
    padding: 15px 3%;
  }
  
  .nav-links {
    gap: 15px;
  }
  
  .nav-links a {
    font-size: 0.85rem;
    padding: 6px 10px;
  }
}

@media (max-width: 992px) {
  header {
    padding: 15px 20px;
  }
  
  .logo-container {
    min-width: 180px;
  }
  
  header img {
    height: 60px;
  }
  
  .logo-text h1 {
    font-size: 1.2rem;
  }
  
  .logo-text span {
    font-size: 0.75rem;
  }
  
  .nav-links {
    gap: 12px;
  }
  
  .nav-links a {
    font-size: 0.8rem;
    padding: 5px 8px;
  }
  
  .hero h2 {
    font-size: 2.8rem;
  }
  
  .section-title h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu {
    display: block;
    margin-left: auto;
    font-size: 1.4rem;
    background: none;
    border: none;
    color: var(--dark);
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu:hover {
    background: var(--light);
    color: var(--primary);
  }
  
  .mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--white);
    z-index: 1001;
    padding: 80px 25px 30px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    overflow-y: auto;
  }
  
  .mobile-nav.active {
    right: 0;
  }
  
  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .mobile-nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
  }
  
  .mobile-nav-links a:hover {
    background: var(--light);
    color: var(--primary);
    border-color: var(--accent);
    transform: translateX(5px);
  }
  
  .mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    background: var(--light);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
  }
  
  .mobile-nav-close:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
  }
  
  .hero h2 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  section {
    padding: 60px 20px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .gallery-item {
    height: 200px;
  }
  
  .contact-container {
    gap: 30px;
  }
  
  .attractions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .attraction-actions {
    flex-direction: column;
  }
  
  .attraction-btn {
    width: 100%;
  }
  
  .travel-options {
    flex-direction: column;
    gap: 8px;
  }
  
  .mini-map-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-buttons {
    right: 20px;
    bottom: 20px;
    gap: 12px;
  }
  
  .floating-btn {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }
  
  .floating-btn.booking {
    padding: 0 20px;
    font-size: 0.8rem;
  }
  
  .modal-content {
    margin: 20px auto;
    width: 95%;
  }
  
  .modal-body {
    padding: 20px;
  }
  
  .booking-form-grid {
    grid-template-columns: 1fr;
  }
  
  .booking-buttons {
    flex-direction: column;
  }
  
  .success-modal .modal-content,
  .error-modal .modal-content {
    margin: 20% auto;
    width: 95%;
  }
  
  .success-modal .modal-header,
  .error-modal .modal-header {
    padding: 25px 20px;
  }
  
  .modal-header i {
    font-size: 3.5rem;
  }
  
  .modal-header h3 {
    font-size: 1.5rem;
  }
  
  .success-modal .modal-body,
  .error-modal .modal-body {
    padding: 30px 20px;
  }
  
  .success-message,
  .error-message {
    font-size: 1.1rem;
  }
  
  .success-details,
  .error-details {
    font-size: 1rem;
  }
  
  .success-icon,
  .error-icon {
    font-size: 4rem;
  }
  
  .booking-details {
    padding: 15px;
  }
  
  .booking-details li {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  header {
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
  
  .logo-container {
    min-width: auto;
    gap: 10px;
    flex: 1;
  }
  
  header img {
    height: 50px;
  }
  
  .logo-text h1 {
    font-size: 1rem;
  }
  
  .logo-text span {
    font-size: 0.7rem;
    text-align: left;
  }
  
  .mobile-menu {
    margin-left: 10px;
    font-size: 1.3rem;
  }
  
  .mobile-nav {
    width: 85%;
    max-width: 280px;
    padding: 70px 20px 25px;
  }
  
  .mobile-nav-links a {
    font-size: 0.95rem;
    padding: 12px 15px;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-title h3 {
    font-size: 1.5rem;
  }
  
  .about-text {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item {
    height: 250px;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 20px;
  }
  
  .hero-btn, .booking-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .attractions {
    padding: 60px 15px;
  }
  
  .attraction-content {
    padding: 20px;
  }
  
  .attraction-title {
    font-size: 1.1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .attraction-features {
    gap: 5px;
  }
  
  .attraction-feature {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  
  .floating-buttons {
    right: 15px;
    bottom: 15px;
  }
  
  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .floating-btn.booking {
    padding: 0 18px;
    font-size: 0.75rem;
  }
  
  .popup-offer-content {
    max-width: 320px;
  }
  
  .popup-offer-header {
    padding: 15px;
  }
  
  .popup-offer-header h3 {
    font-size: 1.2rem;
  }
  
  .popup-offer-body {
    padding: 20px 15px;
  }
  
  .popup-offer-features {
    grid-template-columns: 1fr;
  }
  
  .popup-offer-btn {
    padding: 15px 20px;
    font-size: 1rem;
    width: 100%;
    margin-bottom: 10px;
  }
}

@media (max-width: 400px) {
  .logo-container {
    min-width: 130px;
  }
  
  header img {
    height: 45px;
  }
  
  .logo-text h1 {
    font-size: 0.9rem;
  }
  
  .logo-text span {
    font-size: 0.65rem;
  }
  
  .mobile-nav {
    width: 90%;
    padding: 60px 15px 20px;
  }
  
  .mobile-nav-links a {
    font-size: 0.9rem;
    padding: 10px 12px;
  }
  
  .hero h2 {
    font-size: 1.5rem;
  }
  
  .hero p {
    font-size: 0.9rem;
  }
  
  .section-title h3 {
    font-size: 1.3rem;
  }
  
  .feature-item {
    padding: 20px 10px;
  }
  
  .feature-icon {
    font-size: 2rem;
  }
}

/* Prevent horizontal scroll on mobile */
body {
  overflow-x: hidden;
}

/* Smooth transitions */
.mobile-nav,
.mobile-nav-links a,
.mobile-menu,
.mobile-nav-close {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Optional: Header shrink on scroll */
header.scrolled {
  padding: 10px 5%;
  box-shadow: 0 2px 30px rgba(0,0,0,0.15);
}

header.scrolled img {
  height: 50px;
}

header.scrolled .logo-text h1 {
  font-size: 1.1rem;
}

/* Scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Mobile nav improvements */
.mobile-nav {
  width: 80%;
  max-width: 300px;
}

.mobile-nav-links a {
  font-size: 1rem;
  padding: 15px;
  margin: 0 -15px;
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
  .floating-btn:hover {
    transform: none;
  }
  
  .room-type-option:hover {
    transform: none;
  }
  
  .offer-card:hover {
    transform: none;
  }
}

/* Ensure modals are above everything on mobile */
.pricing-modal,
.popup-offer,
.booking-modal {
  z-index: 99999 !important;
}

.pricing-modal-content,
.popup-offer-content,
.booking-modal .modal-content {
  z-index: 100000 !important;
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Better touch targets */
.quantity-btn, 
.select-plan-btn,
.pricing-action-btn {
  min-height: 44px;
  min-width: 44px;
}

/* Form inputs mobile friendly */
.form-control {
  font-size: 16px; /* Prevents zoom on iOS */
  padding: 15px;
}

/* PRICING MODAL STYLES */
.pricing-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  z-index: 2002;
  animation: fadeIn 0.3s ease;
}

.pricing-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  width: 95%;
  max-width: 1000px;
  max-height: 90vh;
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.4);
  overflow: hidden;
  animation: slideUp 0.4s ease;
}

.pricing-modal-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 25px 30px;
  color: white;
  position: relative;
}

.pricing-modal-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.pricing-modal-title h3 {
  font-size: 1.8rem;
  margin: 0;
  font-weight: 700;
  font-family: 'Audiowide', cursive;
}

.pricing-modal-subtitle {
  opacity: 0.9;
  font-size: 1rem;
  margin: 0;
}

.pricing-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.2);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-close:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
}

.pricing-modal-body {
  padding: 0;
  max-height: calc(90vh - 120px);
  overflow-y: auto;
}

/* Room Type Selection */
.room-type-selection {
  padding: 30px;
  background: var(--light);
  border-bottom: 1px solid #eee;
}

.room-type-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary);
  text-align: center;
}

.room-type-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.room-type-option {
  background: white;
  padding: 25px 20px;
  border-radius: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #eee;
  position: relative;
}

.room-type-option:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.room-type-option.selected {
  border-color: var(--primary);
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  box-shadow: 0 5px 20px rgba(139, 69, 19, 0.2);
}

.room-type-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.room-type-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.room-type-capacity {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.room-type-pricing {
  margin-top: 15px;
  text-align: center;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.discounted-price {
  color: var(--secondary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.savings {
  color: #27ae60;
  font-size: 0.8rem;
  font-weight: 600;
}

.room-type-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #e74c3c;
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* Special Offer Banner */
.special-offer-banner {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Pricing Tables */
.pricing-table-container {
  display: none;
  padding: 30px;
}

.pricing-table-container.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.pricing-table-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--light);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.pricing-table th {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 20px 15px;
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem;
}

.pricing-table td {
  padding: 18px 15px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: top;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:hover {
  background: #f8f9fa;
}

.plan-name {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

.plan-price {
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.3rem;
  text-align: center;
}

.plan-benefits {
  color: #555;
  line-height: 1.6;
}

.plan-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-benefits li {
  padding: 3px 0;
  position: relative;
  padding-left: 20px;
}

.plan-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.plan-action {
  text-align: center;
}

.select-plan-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  width: 100%;
  max-width: 150px;
}

.select-plan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

/* Guest Selection Section */
.guest-selection {
  padding: 30px;
  background: var(--light);
  border-radius: 15px;
  margin: 20px 0;
}

.guest-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.guest-form .form-group {
  margin-bottom: 20px;
}

.guest-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary);
}

.guest-form .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.guest-form .form-control:focus {
  outline: none;
  border-color: var(--primary);
}

.guest-form .form-control:read-only {
  background-color: #f8f9fa;
  cursor: not-allowed;
}

/* Message Styles */
.validation-message {
  background: #ffeaa7;
  border: 1px solid #fdcb6e;
  color: #e17055;
  padding: 12px 15px;
  border-radius: 8px;
  margin: 15px 0;
  grid-column: 1 / -1;
}

.info-message {
  background: #d6eaf8;
  border: 1px solid #3498db;
  color: #2874a6;
  padding: 12px 15px;
  border-radius: 8px;
  margin: 15px 0;
  grid-column: 1 / -1;
}

.success-message {
  background: #d5f4e6;
  border: 1px solid #58d68d;
  color: #27ae60;
  padding: 12px 15px;
  border-radius: 8px;
  margin: 15px 0;
  grid-column: 1 / -1;
}

.form-actions {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 20px;
}

.continue-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.continue-btn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.continue-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Add-ons Section */
.addons-section {
  padding: 30px;
  background: var(--light);
  border-top: 1px solid #eee;
  display: none;
}

.addons-section.active {
  display: block;
  animation: slideDown 0.5s ease;
}

.addons-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
  text-align: center;
}

.addons-notice {
  background: #e3f2fd;
  border: 1px solid #2196f3;
  color: #1565c0;
  padding: 12px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.addon-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.addon-item:hover {
  border-color: var(--accent);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.addon-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.addon-name {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
}

.addon-price {
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.1rem;
}

.addon-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.addon-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-btn {
  background: var(--light);
  border: 1px solid #ddd;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all 0.2s ease;
}

.quantity-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.quantity-input {
  width: 50px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 5px;
  font-weight: 600;
}

.quantity-label {
  margin-left: 10px;
  font-size: 0.9rem;
  color: #666;
  min-width: 60px;
  display: inline-block;
}

.addon-included {
  background: #e8f5e8;
  color: #27ae60;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
  border: 1px solid #c8e6c9;
}

.addon-auto {
  background: #fff3e0;
  color: #ef6c00;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
  border: 1px solid #ffcc80;
}

/* Pricing Summary */
.pricing-summary {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-top: 20px;
  border-left: 4px solid var(--primary);
}

.summary-title {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.discount-badge {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 700;
}

.summary-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-label {
  color: #666;
  font-weight: 500;
}

.summary-value {
  font-weight: 600;
  color: var(--text);
  text-align: right;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 2px solid var(--primary);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 15px;
}

.special-offers-summary {
  background: linear-gradient(135deg, #fff3e0 0%, #ffecb3 100%);
  border: 1px solid #ffb74d;
  border-radius: 10px;
  padding: 15px;
  margin-top: 15px;
}

.special-offer-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #ffe0b2;
}

.special-offer-item:last-child {
  border-bottom: none;
}

.special-offer-label {
  color: #e65100;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.special-offer-value {
  color: #e65100;
  font-weight: 700;
}

/* Pricing Actions */
.pricing-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
  flex-wrap: wrap;
}

.pricing-action-btn {
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
  justify-content: center;
}

.pricing-action-btn.primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
}

.pricing-action-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.pricing-action-btn.secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid #ddd;
}

.pricing-action-btn.secondary:hover {
  background: #f8f9fa;
  border-color: var(--primary);
  color: var(--primary);
}

/* Enhanced Summary Styles */
.summary-section {
  background: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid #e9ecef;
}

.summary-section-title {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

/* Day-wise Breakdown */
.day-wise-breakdown {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
  border-left: 4px solid var(--primary);
}

.breakdown-title {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
  font-size: 0.9rem;
}

.breakdown-item:last-child {
  border-bottom: none;
}

.breakdown-item.total {
  font-weight: 600;
  background: #f8f9fa;
  padding: 10px 15px;
  margin: 5px -15px;
  border-radius: 5px;
}

.breakdown-item.subtotal {
  border-top: 2px solid var(--primary);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 10px;
  padding-top: 15px;
}

.breakdown-label {
  color: #555;
}

.breakdown-value {
  font-weight: 600;
  color: var(--text);
}

/* Total Breakdown */
.total-breakdown {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 20px;
  border-radius: 10px;
  margin: 15px 0;
}

/* Discount Items */
.summary-item.discount {
  color: #27ae60;
  background: #f8fff8;
  padding: 12px 15px;
  border-radius: 8px;
  margin: 8px 0;
  border-left: 4px solid #27ae60;
}

.summary-item.discount.coupon {
  color: #e67e22;
  background: #fff8e1;
  border-left-color: #e67e22;
}

.summary-item.total-discount {
  border-top: 2px dashed #27ae60;
  padding-top: 15px;
  margin-top: 15px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #27ae60;
}

/* Final Amount */
.final-amount-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border: none;
}

.summary-item.final-amount {
  font-size: 1.4rem;
  font-weight: 700;
  border: none;
  padding: 10px 0;
}

.summary-item.final-amount .summary-label,
.summary-item.final-amount .summary-value {
  color: white;
}

.per-night-final {
  text-align: center;
  margin-top: 10px;
  opacity: 0.9;
}

.per-night-final small {
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .coupon-input-group {
    flex-direction: column;
  }
  
  .coupon-input {
    min-width: auto;
  }
  
  .coupon-codes {
    flex-direction: column;
  }
  
  .coupon-item {
    min-width: auto;
    justify-content: space-between;
  }
  
  .day-wise-breakdown,
  .total-breakdown {
    padding: 12px;
  }
  
  .breakdown-item {
    flex-direction: column;
    gap: 5px;
  }
  
  .breakdown-value {
    text-align: right;
  }
}

/* Additional Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes discountPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.discount-badge {
  animation: discountPulse 2s infinite;
}

/* Responsive Pricing Modal */
@media (max-width: 768px) {
  .pricing-modal-content {
    width: 98%;
    max-height: 95vh;
  }
  
  .pricing-modal-body {
    max-height: calc(95vh - 120px);
  }
  
  .room-type-options {
    grid-template-columns: 1fr;
  }
  
  .pricing-table {
    display: block;
    overflow-x: auto;
  }
  
  .addons-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-actions {
    flex-direction: column;
  }
  
  .pricing-action-btn {
    width: 100%;
    min-width: auto;
  }
  
  .summary-details {
    grid-template-columns: 1fr;
  }
  
  .guest-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .pricing-modal-header {
    padding: 20px;
  }
  
  .pricing-modal-title h3 {
    font-size: 1.5rem;
  }
  
  .room-type-selection,
  .pricing-table-container,
  .addons-section {
    padding: 20px;
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: 12px 8px;
    font-size: 0.9rem;
  }
  
  .plan-price {
    font-size: 1.1rem;
  }
  
  .special-offer-banner {
    font-size: 0.9rem;
    padding: 10px 15px;
  }
}

/* Button Click Effects */
.quantity-btn:active,
.select-plan-btn:active,
.pricing-action-btn:active {
  transform: scale(0.95);
}

/* Ensure modal is above everything */
.pricing-modal {
  z-index: 9999;
}

.pricing-modal-content {
  z-index: 10000;
}

/* Form Validation Styles */
.form-control.error {
  border-color: #e74c3c !important;
  background-color: #fdf2f2;
}

.form-control.success {
  border-color: #27ae60 !important;
  background-color: #f2fdf2;
}

/* Loading States */
.loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Coupon Section Styles */
.coupon-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 25px;
  border-radius: 15px;
  margin: 25px 0;
  border: 2px dashed #dee2e6;
}

.coupon-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.coupon-notice {
  color: #666;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.coupon-input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.coupon-input {
  flex: 1;
  min-width: 200px;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.coupon-input:focus {
  outline: none;
  border-color: var(--primary);
}

.coupon-apply-btn {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.coupon-apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.coupon-remove-btn {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.coupon-remove-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.coupon-codes {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.coupon-item {
  background: white;
  padding: 12px 20px;
  border-radius: 10px;
  border: 2px solid #e9ecef;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 180px;
}

.coupon-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.coupon-code {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.coupon-discount {
  background: #ffeaa7;
  color: #e17055;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.coupon-message {
  padding: 12px 15px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
}

.coupon-message.success {
  background: #d5f4e6;
  border: 1px solid #58d68d;
  color: #27ae60;
}

.coupon-message.error {
  background: #fdf2f2;
  border: 1px solid #f8d7da;
  color: #e74c3c;
}

.coupon-message.info {
  background: #e3f2fd;
  border: 1px solid #bbdefb;
  color: #1565c0;
}

/* Enhanced CAPTCHA Styles - Copy Paste Proof */
.captcha-group {
  margin-bottom: 25px;
}

.captcha-container {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.captcha-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 15px;
  background: white;
  border-radius: 5px;
  border: 1px solid #ddd;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

#captchaText {
  font-family: 'Audiowide', cursive;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 8px;
  color: var(--primary);
  background: linear-gradient(45deg, #8B4513, #D2691E, #8B4513);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 10px 15px;
  border-radius: 5px;
  position: relative;
  display: inline-block;
}

/* CAPTCHA Text Distortion Effects */
#captchaText::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
      linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%),
      repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(139,69,19,0.1) 2px, rgba(139,69,19,0.1) 4px);
  pointer-events: none;
}

.captcha-refresh {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  min-width: 44px;
  min-height: 44px;
}

.captcha-refresh:hover {
  background: var(--secondary);
  transform: rotate(90deg);
}

.captcha-input-group {
  position: relative;
}

#captchaInput {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  transition: border-color 0.3s ease;
  font-family: 'Audiowide', cursive;
  background: white;
}

/* Disable paste and copy */
#captchaInput {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

#captchaInput:focus {
  outline: none;
  border-color: var(--primary);
}

#captchaInput.error {
  border-color: #e74c3c;
  background-color: #fdf2f2;
}

#captchaInput.success {
  border-color: #27ae60;
  background-color: #f2fdf2;
}

/* CAPTCHA Instructions */
.captcha-instructions {
  font-size: 0.8rem;
  color: #666;
  margin-top: 8px;
  text-align: center;
}

.captcha-instructions i {
  color: var(--primary);
  margin-right: 5px;
}

/* CAPTCHA Security Badge */
.captcha-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  padding: 8px;
  background: #e8f5e8;
  border-radius: 4px;
  font-size: 0.75rem;
  color: #27ae60;
  border: 1px solid #c8e6c9;
}

.captcha-security i {
  font-size: 0.9rem;
}

/* CAPTCHA Attempts Warning */
.captcha-warning {
  background: #fff3e0;
  color: #e65100;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-top: 8px;
  border: 1px solid #ffcc80;
  display: none;
}

.captcha-warning.show {
  display: block;
}

/* Disabled state for CAPTCHA input */
#captchaInput:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.7;
}

/* Availability Message Styles */
.availability-message {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border: 1px solid #2196f3;
  border-radius: 12px;
  padding: 20px;
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  animation: slideDown 0.5s ease;
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.1);
}

.availability-icon {
  background: #2196f3;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

.availability-content h4 {
  color: #1976d2;
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.availability-content p {
  color: #1565c0;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Animation for the icon */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes slideDown {
  from {
      opacity: 0;
      transform: translateY(-10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .availability-message {
      padding: 15px;
      gap: 12px;
  }
  
  .availability-icon {
      width: 45px;
      height: 45px;
      font-size: 1.3rem;
  }
  
  .availability-content h4 {
      font-size: 1rem;
  }
  
  .availability-content p {
      font-size: 0.9rem;
  }
}

