/* ================ */
/* BASE STYLES */
/* ================ */
:root {
  /* Color Scheme */
  --primary-color: #93ccfa;
  --primary-dark: #7bb8e8;
  --secondary-color: #f8a978;
  --dark-color: #333;
  --light-color: #f8f9fa;
  --text-color: #555;
  --white: #fff;
  --black: #000;
  --hero-text-color: #fff; /* New variable for hero text */
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  
  /* Shadows */
  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.2);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark-color);
  font-weight: 700;
  line-height: 1.2;
}

h7 {
  font-family: var(--font-heading);
  color: var(--light-color);
  font-weight: 700;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  transition: all var(--transition-medium);
  border: none;
  cursor: pointer;
  text-align: center;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

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

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-header p {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ================ */
/* LAYOUT COMPONENTS */
/* ================ */

/* Loader */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Top Bar */
.top-bar {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.875rem;
}

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

.contact-info span {
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.contact-info i {
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  transition: all var(--transition-medium);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all var(--transition-medium);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: auto;
  max-height: 60px;
  transition: all var(--transition-medium);
}

.navbar ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navbar ul li {
  position: relative;
}

.navbar ul li a {
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color var(--transition-medium);
}

.navbar ul li a:hover {
  color: var(--primary-color);
}

.navbar ul li a.active {
  color: var(--primary-color);
}

.navbar ul li a.active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -5px;
  left: 0;
}

.btn-book {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 25px;
  border-radius: 30px;
  transition: all var(--transition-medium);
}

.btn-book:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-color);
  background: none;
  border: none;
  z-index: 1002;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.slide.active {
  opacity: 1;
}

.slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--hero-text-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  max-width: 600px;
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.slider-controls button {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  transition: all var(--transition-medium);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-controls button:hover {
  background-color: var(--primary-color);
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 2;
  gap: 10px;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition-medium);
}

.slider-dots .dot.active {
  background-color: var(--white);
  transform: scale(1.2);
}

/* About Section */
.about-section {
  padding: var(--section-padding);
  background-color: var(--light-color);
}

.about-section .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

.about-content p {
  margin-bottom: 1.25rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.feature {
  text-align: center;
  padding: 20px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium);
}

.feature:hover {
  transform: translateY(-10px);
}

.feature i {
  font-size: 1.875rem;
  color: var(--primary-color);
  margin-bottom: 0.9375rem;
}

.feature h4 {
  margin-bottom: 0.625rem;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

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

/* Rooms Section */
.rooms-section {
  padding: var(--section-padding);
  background-color: var(--white);
}

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

.room-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium);
}

.room-card:hover {
  transform: translateY(-10px);
}

.room-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.room-info {
  padding: 20px;
  background-color: var(--white);
}

.room-info h3 {
  margin-bottom: 0.625rem;
  font-size: 1.375rem;
}

.room-info p {
  margin-bottom: 0.9375rem;
  color: var(--text-color);
}

/* Dining Section */
.dining-section {
  padding: var(--section-padding);
  background-color: var(--light-color);
}

.dining-section .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.dining-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

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

.dining-content {
  flex: 1;
}

.dining-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

.menu-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.category {
  padding: 20px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium);
}

.category:hover {
  transform: translateY(-5px);
}

.category h3 {
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
  display: flex;
  align-items: center;
}

.category h3 i {
  margin-right: 0.625rem;
  color: var(--primary-color);
}

.category p {
  font-size: 0.875rem;
  color: var(--text-color);
}

/* Gallery Section */
.gallery-section {
  padding: var(--section-padding);
  background-color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 200px;
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
  background-size: cover;
  background-position: center;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity var(--transition-medium);
  z-index: 1;
}

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

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-row: span 2;
}

.gallery-item:nth-child(3) {
  grid-column: span 2;
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--section-padding);
  background-color: var(--light-color);
  text-align: center;
}

.testimonial-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial {
  padding: 40px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transition: opacity var(--transition-slow);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.testimonial.active {
  opacity: 1;
  position: relative;
}

.rating {
  color: #ffc107;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
  position: relative;
}

.testimonial p::before,
.testimonial p::after {
  content: '"';
  font-size: 1.5rem;
  color: var(--primary-color);
  opacity: 0.5;
}

.guest-info strong {
  display: block;
  margin-bottom: 0.3125rem;
  color: var(--dark-color);
}

.guest-info span {
  font-size: 0.875rem;
  color: var(--text-color);
}

.testimonial-controls {
  margin-top: 1.875rem;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.testimonial-controls button {
  background-color: transparent;
  border: none;
  color: var(--primary-color);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-medium);
}

.testimonial-controls button:hover {
  color: var(--primary-dark);
  transform: scale(1.2);
}

/* Offers Section */
.offers-section {
  padding: var(--section-padding);
  background-color: var(--white);
}

.offers-section .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.offer-card {
  padding: 30px;
  border-radius: 10px;
  background-color: var(--light-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-medium);
}

.offer-card:hover::before {
  opacity: 1;
}

.offer-card:hover {
  color: var(--white);
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.offer-card.featured {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
}

.offer-card.featured .btn {
  background-color: var(--white);
  color: var(--primary-color);
}

.offer-card.featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(147, 204, 250, 0.3);
}

.offer-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.9375rem;
}

.offer-card p {
  margin-bottom: 1.25rem;
}

/* Contact CTA */
.contact-cta {
  padding: 80px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  text-align: center;
}

.contact-cta h2 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

.contact-cta p {
  font-size: 1.125rem;
  margin-bottom: 1.875rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  min-width: 200px;
}

.cta-buttons .btn i {
  margin-right: 0.625rem;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 80px 0 0;
}

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

.footer-column h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.5625rem;
  position: relative;
  padding-bottom: 0.625rem;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-column p {
  margin-bottom: 1.25rem;
  opacity: 0.8;
}

.footer-column ul li {
  margin-bottom: 0.9375rem;
}

.footer-column ul li a {
  opacity: 0.8;
  transition: all var(--transition-medium);
}

.footer-column ul li a:hover {
  opacity: 1;
  color: var(--primary-color);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.contact-info li i {
  margin-right: 0.9375rem;
  color: var(--primary-color);
  margin-top: 0.3125rem;
}

.newsletter-form input {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 30px;
  margin-bottom: 0.9375rem;
  font-family: var(--font-body);
}

.newsletter-form button {
  width: 100%;
  padding: 12px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-medium);
}

.newsletter-form button:hover {
  background-color: var(--primary-dark);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  margin-top: 50px;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-links a {
  margin-left: 1.25rem;
  opacity: 0.8;
  transition: all var(--transition-medium);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-color);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
  border: none;
  cursor: pointer;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-color);
  color: var(--white);
  padding: 15px 0;
  z-index: 999;
  transform: translateY(100%);
  transition: transform var(--transition-medium);
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-consent .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.cookie-consent p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.btn-accept {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 8px 20px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition-medium);
}

.btn-accept:hover {
  background-color: var(--primary-dark);
}

/* ================ */
/* RESPONSIVE STYLES */
/* ================ */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .about-section .container,
  .dining-section .container {
    flex-direction: column;
  }
  
  .about-image,
  .dining-image {
    margin-top: 40px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: column;
    text-align: center;
  }
  
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    transition: all var(--transition-slow);
    padding-top: 80px;
  }
  
  .navbar.active {
    left: 0;
  }
  
  .navbar ul {
    flex-direction: column;
    padding: 0 30px;
    gap: 15px;
  }
  
  .navbar ul li {
    width: 100%;
    margin: 0;
  }
  
  .navbar ul li.book-now-item {
    margin: 20px 0;
    order: 1;
  }
  
  .navbar ul li a.btn-book {
    width: 100%;
    text-align: center;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .mobile-menu-btn.active {
    position: fixed;
    right: 20px;
    top: 20px;
  }
  
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .hero-content p {
    font-size: 1.125rem;
  }
  
  .section-header h2 {
    font-size: 1.875rem;
  }
  
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  
  .footer-links a {
    margin: 0;
  }
}

@media (max-width: 576px) {
  :root {
    --section-padding: 80px 0;
  }
  
  .hero-content h1 {
    font-size: 1.875rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.8125rem;
  }
  
  .testimonial {
    padding: 30px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .slider-controls button {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* ================ */
/* NAVIGATION FIXES */
/* ================ */
.navbar ul li.book-now-item {
  display: block !important;
  margin-left: auto;
}

@media (max-width: 768px) {
  .navbar:not(.active) ul li:not(.book-now-item) {
    display: none;
  }

  .navbar ul li.book-now-item {
    margin: 20px 0;
    order: 1;
  }

  .navbar.active ul li {
    display: block;
  }
}

/* ================ */
/* ROOMS PAGE STYLES */
/* ================ */

/* Page Hero */
.page-hero {
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.page-hero .hero-content {
    width: 100%;
    padding: 0 20px;
}

.page-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.page-hero p {
    color: var(--white);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

/* Rooms Intro */
.rooms-intro {
    padding: 80px 0;
    background-color: var(--light-color);
}

.rooms-intro .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin-bottom: 40px;
}

.intro-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.intro-content p {
    margin-bottom: 1.25rem;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 800px;
}

.intro-features .feature {
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-medium);
}

.intro-features .feature:hover {
    transform: translateY(-10px);
}

.intro-features i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.intro-features h4 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

/* Room Detail */
.room-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.room-detail:last-child {
    border-bottom: none;
}

.room-gallery {
    position: relative;
}

.main-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 15px;
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumb {
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
}

.thumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.thumb:hover::after {
    opacity: 1;
}

.thumb.active::after {
    opacity: 1;
    background-color: rgba(147, 204, 250, 0.5);
}

.room-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.room-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.room-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.875rem;
    color: var(--text-color);
}

.room-meta i {
    color: var(--primary-color);
}

.room-info p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.room-features {
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
}

.room-features i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.room-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Additional Rooms */
.additional-rooms {
    padding: 60px 0;
}

.additional-rooms h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

.room-summary {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.summary-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.summary-header h4 {
    margin: 0;
    font-size: 1.25rem;
}

.toggle-details {
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.summary-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
    background-color: var(--white);
}

.room-summary.active .summary-content {
    max-height: 1000px;
    padding: 30px;
}

/* Room Comparison */
.room-comparison {
    padding: 80px 0;
    background-color: var(--light-color);
}

.comparison-table {
    overflow-x: auto;
    margin-bottom: 30px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th, 
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.comparison-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8125rem;
    letter-spacing: 1px;
}

.comparison-table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02);
}

.comparison-table tr:hover {
    background-color: rgba(147, 204, 250, 0.1);
}

.comparison-table .btn-book {
    padding: 8px 15px;
    font-size: 0.8125rem;
}

.rate-notes {
    font-size: 0.875rem;
    color: var(--text-color);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.rate-notes a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Amenities Section */
.amenities-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.amenity {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--light-color);
    border-radius: 10px;
    transition: all var(--transition-medium);
}

.amenity:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-sm);
}

.amenity i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.amenity h4 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.amenity p {
    font-size: 0.875rem;
    color: var(--text-color);
}

/* Rooms CTA */
.rooms-cta {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/rooms/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
}

.rooms-cta h2 {
    color: var(--white);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.rooms-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.rooms-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .room-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .main-image img {
        height: 350px;
    }
    
    .room-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .page-hero h1 {
        font-size: 2.25rem;
    }
    
    .page-hero p {
        font-size: 1.125rem;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .page-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .page-hero h1 {
        font-size: 1.875rem;
    }
    
    .room-actions .btn {
        width: 100%;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .rooms-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .rooms-cta .cta-buttons .btn {
        width: 100%;
    }
}

/* ================ */
/* RATES PAGE STYLES */
/* ================ */

/* Rates Notice */
.rates-notice {
    padding: 30px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.notice-box {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.notice-box i {
    font-size: 2rem;
}

.notice-box p {
    margin: 0;
    font-size: 1.125rem;
}

/* Seasonal Rates */
.seasonal-rates {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

.rate-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-medium);
}

.rate-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.rate-header {
    padding: 25px;
    color: var(--white);
    text-align: center;
}

.rate-header.high-season {
    background-color: #d35400;
}

.rate-header.regular-season {
    background-color: var(--primary-color);
}

.rate-header.low-season {
    background-color: #16a085;
}

.rate-header h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    display: block;
}

.rate-dates {
    padding: 20px;
    text-align: center;
}

.rate-dates p {
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.rate-dates p:last-child {
    margin-bottom: 0;
}

.rate-notes {
    padding: 15px 20px;
    background-color: rgba(0, 0, 0, 0.05);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rate-notes i {
    color: var(--primary-color);
}

.rate-disclaimer {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 15px 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    font-size: 0.9375rem;
}

/* Accommodation Options */
.accommodation-options {
    padding: 80px 0;
    background-color: var(--white);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.option-card {
    padding: 25px;
    background-color: var(--light-color);
    border-radius: 10px;
    text-align: center;
    transition: all var(--transition-medium);
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.option-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.option-card i {
    color: var(--primary-color);
}

.option-card p {
    margin: 0;
    font-size: 1.125rem;
    color: var(--dark-color);
    font-weight: 600;
}

/* Meal Packages */
.meal-packages {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

.package-card {
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-medium);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.package-card .price {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.package-card .price span {
    font-size: 0.9375rem;
    font-weight: 400;
    display: block;
    color: var(--text-color);
}

.package-card ul {
    margin: 0;
    padding-left: 20px;
}

.package-card li {
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

/* Transfer Options */
.transfer-options {
    padding: 80px 0;
    background-color: var(--white);
}

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

.transfer-card {
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 10px;
}

.transfer-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.transfer-option {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.transfer-option:last-child {
    border-bottom: none;
}

.vehicle-type {
    font-weight: 600;
}

/* Policies Section */
.policies-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.policies-tabs {
    max-width: 1000px;
    margin: 0 auto 40px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tab-btn {
    flex: 1;
    padding: 15px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color);
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    opacity: 1;
}

.tab-content {
    padding: 30px;
    display: none;
}

.tab-content.active {
    display: block;
}

.policy-list {
    margin: 0;
    padding: 0;
}

.policy-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    list-style: none;
}

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

.policy-list i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 3px;
}

.policy-list h4 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.policy-list p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text-color);
}

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

.note-card {
    padding: 25px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.note-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.note-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.note-card p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text-color);
}

/* Rates CTA */
.rates-cta {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/rates/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
}

.rates-cta h2 {
    color: var(--white);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.rates-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.rates-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .notice-box {
        flex-direction: column;
        text-align: center;
    }
    
    .policy-list li {
        flex-direction: column;
        gap: 10px;
    }
    
    .policy-list i {
        margin-bottom: 5px;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-btn {
        padding: 15px 10px;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .tab-btn::after {
        display: none;
    }
    
    .tab-btn.active {
        background-color: rgba(147, 204, 250, 0.1);
    }
}

@media (max-width: 576px) {
    .rates-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .rates-cta .cta-buttons .btn {
        width: 100%;
    }
    
    .policy-notes {
        grid-template-columns: 1fr;
    }
}

/* ================ */
/* BOOKING PAGE STYLES */
/* ================ */

/* Booking Process Steps */
.booking-process {
    padding: 30px 0;
    background-color: var(--light-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-color);
    transition: all var(--transition-medium);
}

.step-label {
    font-size: 0.875rem;
    color: var(--text-color);
    font-weight: 500;
    transition: all var(--transition-medium);
}

.step.active .step-number {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.step.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

/* Booking Form Section */
.booking-form-section {
    padding: 60px 0;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.booking-form-container {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    padding: 40px;
}

.booking-summary {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    align-self: start;
    position: sticky;
    top: 20px;
}

.booking-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.summary-content {
    margin-bottom: 30px;
}

.summary-placeholder {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-color);
    opacity: 0.7;
}

.summary-placeholder i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.summary-dates {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.date, .nights {
    text-align: center;
}

.date .label, .nights .label {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.date .value, .nights .value {
    font-weight: 600;
    font-size: 1.125rem;
}

.summary-guests {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.guests, .room, .meal-plan {
    margin-bottom: 10px;
}

.guests .label, .room .label, .meal-plan .label {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-color);
}

.guests .value, .room .value, .meal-plan .value {
    font-weight: 600;
}

.summary-price .price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-price .label {
    font-size: 0.9375rem;
}

.summary-price .value {
    font-weight: 600;
}

.summary-price .total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.summary-price .total .label {
    font-size: 1.125rem;
}

.summary-price .total .value {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.summary-note {
    font-size: 0.8125rem;
    color: var(--text-color);
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.summary-note p {
    margin-bottom: 0.5rem;
}

.summary-note p:last-child {
    margin-bottom: 0;
}

.need-help {
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    text-align: center;
}

.need-help h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.need-help p {
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.help-phone, .help-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.help-phone i, .help-email i {
    color: var(--primary-color);
}

/* Form Styles */
.booking-form h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.booking-form h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    color: var(--dark-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-medium);
}

.input-with-icon input[type="text"],
.input-with-icon input[type="email"],
.input-with-icon input[type="tel"],
.input-with-icon input[type="password"] {
    padding-left: 40px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(147, 204, 250, 0.3);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2393ccfa' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.radio-checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: all var(--transition-medium);
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-option input[type="radio"]:checked ~ .radio-checkmark {
    border-color: var(--primary-color);
}

.radio-option input[type="radio"]:checked ~ .radio-checkmark::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9375rem;
}

.checkbox-checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    display: inline-block;
    position: relative;
    transition: all var(--transition-medium);
}

.checkbox-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-option input[type="checkbox"]:checked ~ .checkbox-checkmark {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.checkbox-option input[type="checkbox"]:checked ~ .checkbox-checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 0.75rem;
}

.checkbox-option a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 2rem;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

/* Confirmation Message */
.confirmation-message {
    text-align: center;
    padding: 40px 20px;
}

.confirmation-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.confirmation-message h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.confirmation-message p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.confirmation-details {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.confirmation-details h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.confirmation-details h4 span {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
    }
    
    .booking-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .process-steps {
        gap: 20px;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .booking-form-container {
        padding: 30px 20px;
    }
    
    .booking-summary {
        padding: 20px;
    }
    
    .summary-dates {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .date, .nights {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .process-steps {
        gap: 10px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.875rem;
    }
    
    .step-label {
        display: none;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

/* ================ */
/* CONTACT PAGE STYLES */
/* ================ */

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

.contact-info {
    padding-right: 30px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.contact-info p {
    margin-bottom: 2rem;
    color: var(--text-color);
}

.info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.info-content p {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 5px;
}

.map-link i {
    font-size: 0.75rem;
    transition: transform var(--transition-medium);
}

.map-link:hover i {
    transform: translateX(3px);
}

.social-links {
    margin-top: 40px;
}

.social-links h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.social-links .social-icons {
    display: flex;
    gap: 15px;
}

.social-links .social-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
}

.social-links .social-icons a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.contact-form h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
}

.map-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.map-container {
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 30px;
}

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

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background-color: var(--white);
    border: none;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.faq-question:hover {
    background-color: rgba(147, 204, 250, 0.1);
}

.faq-question i {
    transition: transform var(--transition-medium);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
    background-color: var(--white);
}

.faq-answer p {
    padding: 0 20px 20px;
    margin: 0;
    color: var(--text-color);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
    font-size: 1.125rem;
}

.faq-cta a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/contact/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
}

.contact-cta h2 {
    color: var(--white);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 30px;
    }
    
    .info-card {
        flex-direction: column;
    }
    
    .info-icon {
        margin-bottom: 15px;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .contact-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-cta .cta-buttons .btn {
        width: 100%;
    }
    
    .map-container {
        height: 300px;
    }
}

/* ================ */
/* SERVICES PAGE STYLES */
/* ================ */

/* Services Intro */
.services-intro {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.services-intro .intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-intro h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.services-intro p {
    font-size: 1.125rem;
    color: var(--text-color);
}

/* Amenities Section */
.amenities-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

.amenity-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-medium);
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.amenity-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
}

.amenity-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.amenity-card p {
    font-size: 0.9375rem;
    color: var(--text-color);
    margin: 0;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--white);
}

.services-tabs {
    max-width: 1100px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 25px;
    background-color: var(--light-color);
    border: none;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    transition: all var(--transition-medium);
}

.tab-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.service-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.service-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

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

.service-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--dark-color);
}

.service-info p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.service-features i {
    color: var(--primary-color);
    margin-top: 3px;
}

.service-note {
    font-size: 0.875rem;
    font-style: italic;
    color: var(--text-color);
}

/* Special Requests */
.requests-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.request-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.request-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.request-content h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: var(--dark-color);
}

.request-content p {
    margin-bottom: 2rem;
    color: var(--text-color);
}

.request-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services CTA */
.services-cta {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/services/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
}

.services-cta h2 {
    color: var(--white);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .service-details {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        order: -1;
        max-height: 400px;
    }
    
    .request-box {
        grid-template-columns: 1fr;
    }
    
    .request-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .request-content {
        padding: 30px;
    }
    
    .services-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-cta .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
    }
}