/* Base Styles */
:root {
    --primary-color: #e94e1b; /* Vibrant orange for CTAs */
    --primary-hover: #d04417;
    --secondary-color: #4a6670; /* Teal/blue for secondary elements */
    --secondary-hover: #3a5560;
    --text-color: #333333;
    --light-text: #ffffff;
    --background: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 6px;
    --section-padding: 80px 0;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  
  body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  
  h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--secondary-color);
  }
  
  p {
    margin-bottom: 15px;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--primary-hover);
  }
  
  section {
    padding: var(--section-padding);
    scroll-margin-top: 80px;
  }
  
  .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #666;
  }
  
  /* Buttons and CTAs */
  .cta-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
  }
  
  .cta-button.primary {
    background-color: var(--primary-color);
    color: var(--light-text);
    box-shadow: 0 4px 8px rgba(233, 78, 27, 0.3);
  }
  
  .cta-button.primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(233, 78, 27, 0.4);
  }
  
  .cta-button.secondary {
    background-color: var(--secondary-color);
    color: var(--light-text);
  }
  
  .cta-button.secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
  }
  
  /* Header Styles */
  .sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    padding: 15px 0;
    z-index: 1000;
    transition: var(--transition);
  }
  
  .sticky-header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
  }
  
  .sticky-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo h1 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--secondary-color);
  }
  
  nav ul {
    display: flex;
    list-style: none;
  }
  
  nav ul li {
    margin-left: 25px;
  }
  
  nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
  }
  
  nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
  }
  
  nav ul li a:hover::after {
    width: 100%;
  }
  
  .nav-cta {
    background-color: var(--primary-color);
    color: var(--light-text) !important;
    padding: 8px 16px;
    border-radius: var(--border-radius);
  }
  
  .nav-cta:hover {
    background-color: var(--primary-hover);
  }
  
  .mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 2px 0;
    transition: var(--transition);
  }
  
  /* Hero Section */
  .hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    padding-top: 80px;
  }
  
  .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: 1;
  }
  
  /* Hero Carousel */
  .hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    z-index: -1;
    will-change: opacity;
  }
  
  .carousel-slide.active {
    opacity: 1;
    z-index: 0;
  }
  
  .carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
  }
  
  .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .indicator.active {
    background-color: var(--light-text);
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  .hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .hero-badge {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 15px 25px;
    border-radius: var(--border-radius);
    display: inline-block;
    margin-top: 20px;
  }
  
  /* Experiences Section */
  .experiences-section {
    background-color: var(--background);
  }
  
  .experience-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }
  
  .filter-btn {
    padding: 8px 16px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
  }
  
  .filter-btn:hover,
  .filter-btn.active {
    background-color: var(--secondary-color);
    color: var(--light-text);
    border-color: var(--secondary-color);
  }
  
  .experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .experience-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    background-color: var(--background);
    border: 1px solid var(--border-color);
  }
  
  .experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
  
  .card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 5px 10px;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
  }
  
  .card-image {
    height: 200px;
    overflow: hidden;
  }
  
  .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .experience-card:hover .card-image img {
    transform: scale(1.1);
  }
  
  .card-content {
    padding: 20px;
  }
  
  .card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  .card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
  }
  
  .card-price {
    margin: 15px 0;
  }
  
  .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
  }
  
  .price-includes {
    font-size: 0.85rem;
    color: #666;
    display: block;
    margin-top: 5px;
  }
  
  .card-actions {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .card-actions .cta-button {
    width: 100%;
  }
  
  .details-btn {
    background-color: transparent;
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
  }
  
  .details-btn:hover {
    background-color: #f0f0f0;
  }
  
  /* About Section */
  .about-section {
    background-color: var(--light-bg);
  }
  
  .about-content {
    display: flex;
    align-items: center;
    gap: 50px;
  }
  
  .about-text {
    flex: 1;
  }
  
  .about-image {
    flex: 1;
    position: relative;
  }
  
  .rounded-image {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
  }
  
  .about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
  }
  
  .feature {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
  }
  
  .social-proof {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    font-weight: 600;
    box-shadow: var(--shadow);
  }
  
  .booking-count {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .about-cta {
    margin-top: 30px;
  }
  
  /* Modal */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
  }
  
  .modal.active {
    display: flex;
  }
  
  .modal-content {
    background-color: var(--background);
    border-radius: var(--border-radius);
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
  }
  
  .close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: var(--transition);
  }
  
  .close-modal:hover {
    color: var(--primary-color);
  }
  
  .success-message {
    text-align: center;
    padding: 20px 0;
  }
  
  .success-message i {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 20px;
  }
  
  /* Form Styles */
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
  }
  
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(74, 102, 112, 0.2);
  }
  
  /* Calendar Styles */
  .reservation-calendar {
    display: none;
    position: fixed; /* Changed from absolute to fixed */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center in viewport */
    width: 90%;
    max-width: 350px;
    background-color: var(--background);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25); /* Enhanced shadow */
    padding: 15px;
    z-index: 2000; /* Higher z-index to ensure visibility */
  }
  
  #calendarHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .calendar-nav-btn {
    padding: 8px 12px;
    background-color: var(--secondary-color);
    color: var(--light-text);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
  }
  
  .calendar-nav-btn:hover {
    background-color: var(--secondary-hover);
  }
  
  .calendar-month-display {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary-color);
  }
  
  .calendar-table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .calendar-table th,
  .calendar-table td {
    padding: 10px;
    text-align: center;
  }
  
  .calendar-table th {
    font-weight: 600;
    color: var(--secondary-color);
  }
  
  .calendar-table td {
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
  }
  
  .calendar-table td:hover {
    background-color: var(--light-bg);
  }
  
  .calendar-table td.available {
    background-color: var(--primary-color);
    color: var(--light-text);
  }
  
  .calendar-table td.today {
    border: 2px solid var(--secondary-color);
  }
  
  /* Add a backdrop when calendar is open */
  body.calendar-open::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1999; /* Just below the calendar */
  }
  
  /* Warning message */
  .warning {
    color: #ff3b30;
    display: none;
    margin-top: 10px;
    font-weight: 500;
  }

  /* Check Policy */
.policy-check {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.policy-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0 6px 0 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
}

.policy-check label {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}
  
  /* Reservation Summary */
  .reservation-summary {
    display: none;
    margin-top: 20px;
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
  }
  
  .reservation-summary h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
  }
  
  #summaryDetails {
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .summary-actions {
    display: flex;
    gap: 10px;
  }
  
  /* Fixed CTA */
  .fixed-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    animation: pulse 2s infinite;
  }
  
  .fixed-cta .cta-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    box-shadow: 0 4px 15px rgba(233, 78, 27, 0.4);
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  
  /* Footer */
  footer {
    background-color: #333;
    color: var(--light-text);
    padding: 60px 0 20px;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-logo {
    flex: 2;
  }
  
  .footer-logo h2 {
    color: var(--light-text);
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .footer-links {
    flex: 3;
    display: flex;
    justify-content: space-between;
  }
  
  .footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
  }
  
  .footer-column ul {
    list-style: none;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    color: #ccc;
    transition: var(--transition);
  }
  
  .footer-column ul li a:hover {
    color: var(--primary-color);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Mobile Menu */
  .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background);
    z-index: 1500;
    padding: 80px 20px 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  
  .mobile-nav.active {
    transform: translateX(0);
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .mobile-nav ul {
    list-style: none;
  }
  
  .mobile-nav ul li {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
  }
  
  .mobile-nav ul li a {
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 5px 0;
  }
  
  /* Style for Book Now button in mobile menu */
  .mobile-nav .nav-cta {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: var(--border-radius);
    text-align: center;
  }
  
  .mobile-nav .nav-cta:hover {
    background-color: var(--primary-hover);
  }
  
  .close-mobile-nav {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-bg);
    border-radius: 50%;
  }
  
  /* Accessibility helper */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
  
  /* Experience Gallery Section */
  .gallery-section {
    background-color: var(--light-bg);
    padding: var(--section-padding);
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .gallery-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover {
    transform: translateY(-5px);
  }
  
  .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .gallery-item:hover .gallery-img {
    transform: scale(1.1);
  }
  
  .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }
  
  .gallery-overlay span {
    color: white;
    font-size: 1.5rem;
  }
  
  /* Lightbox */
  .lightbox {
    display: none;
    position: fixed;
    z-index: 2100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
  }
  
  .lightbox.active {
    display: flex;
  }
  
  .lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
  }
  
  .lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    padding: 10px;
  }
  
  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2101;
  }
  
  .lightbox-prev,
  .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 15px;
    z-index: 2101;
  }
  
  .lightbox-prev {
    left: 20px;
  }
  
  .lightbox-next {
    right: 20px;
  }
  
  /* Follow Us Section */
  .social-section {
    background-color: var(--background);
    padding: var(--section-padding);
    text-align: center;
  }
  
  .social-links-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
  }
  
  .social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 40px;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .social-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
  }
  
  .social-link i {
    font-size: 2.5rem;
  }
  
  .social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
  }
  
  .social-link.facebook {
    background-color: #3b5998;
    color: white;
  }
  
  .social-feed {
    margin-top: 30px;
    font-size: 1.2rem;
  }
  
  /* Testimonials Section */
  .testimonials-section {
    background-color: var(--light-bg);
    padding: var(--section-padding);
  }
  
  .testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
  }
  
  .testimonial-slider {
    overflow: hidden;
  }
  
  .testimonial-slide {
    width: 100%;
    padding: 20px;
  }
  
  .testimonial-content {
    background-color: var(--background);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
  }
  
  .testimonial-rating {
    color: #ffcc00;
    margin-bottom: 15px;
  }
  
  .testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .author-info h4 {
    margin-bottom: 5px;
  }
  
  .author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
  }
  
  .testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
  }
  
  .testimonial-control {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--background);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .testimonial-control:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
  }
  
  /* FAQ Section */
  .faq-section {
    background-color: var(--background);
    padding: var(--section-padding);
  }
  
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
  }
  
  .faq-question {
    padding: 20px;
    background-color: var(--light-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  
  .faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
  }
  
  .faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .faq-toggle {
    transform: rotate(45deg);
  }
  
  .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
  }
  
  /* You Might Also Like Section */
  .recommendations-section {
    background-color: var(--light-bg);
    padding: var(--section-padding);
  }
  
  .recommendations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .recommendation-card {
    background-color: var(--background);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
  }
  
  .recommendation-card:hover {
    transform: translateY(-10px);
  }
  
  .recommendation-image {
    height: 200px;
    overflow: hidden;
  }
  
  .recommendation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .recommendation-card:hover .recommendation-image img {
    transform: scale(1.1);
  }
  
  .recommendation-content {
    padding: 20px;
  }
  
  .recommendation-content h3 {
    margin-bottom: 10px;
  }
  
  .recommendation-content p {
    margin-bottom: 20px;
    color: #666;
  }
  
  /* Contact Us Section */
  .contact-section {
    background-color: var(--background);
    padding: var(--section-padding);
  }
  
  .contact-container {
    display: flex;
    gap: 50px;
  }
  
  .contact-info {
    flex: 1;
  }
  
  .contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
  }
  
  .contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
  }
  
  .contact-item h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
  }
  
  .adr-text{
      color: black;
  }
  
  .adr-text:hover{
      color: var(--primary-color);
  }
  
  .contact-form-container {
    flex: 1;
    position: relative;
  }
  
  .contact-form {
    display: block;
  }
  
  .error-message {
    color: #ff3b30;
    font-size: 0.85rem;
    display: none;
  }
  
  .form-message {
    display: none;
    text-align: center;
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 20px;
  }
  
  .form-message.success {
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid #4caf50;
  }
  
  .form-message.error {
    background-color: rgba(255, 59, 48, 0.1);
    border: 1px solid #ff3b30;
  }
  
  .form-message i {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .form-message.success i {
    color: #4caf50;
  }
  
  .form-message.error i {
    color: #ff3b30;
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    .hero-content h1 {
      font-size: 3rem;
    }
  
    .about-content {
      flex-direction: column;
    }
  
    .recommendations-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .sticky-header {
      padding: 10px 0;
    }
  
    section {
      scroll-margin-top: 60px;
    }
  
    .logo h1 {
      font-size: 1.2rem;
    }
  
    nav ul {
      display: none;
    }
  
    .mobile-menu-btn {
      display: flex;
    }
  
    .hero-content h1 {
      font-size: 2.5rem;
    }
  
    .hero-content {
      padding: 0 15px;
      max-width: 100%;
    }
  
    .hero-cta {
      flex-direction: column;
      gap: 15px;
    }
  
    .experience-grid {
      grid-template-columns: 1fr;
    }
  
    .footer-content {
      flex-direction: column;
      gap: 30px;
    }
  
    .footer-links {
      flex-direction: column;
      gap: 30px;
    }
  
    /* Remove the mobile-specific positioning since we now use the same positioning for all devices */
    .summary-actions {
      flex-direction: column;
    }
  
    /* Ensure the calendar isn't too large on small screens */
    .reservation-calendar {
      width: 95%;
      /* max-width: 320px;   original */
    }
  }
  
  @media (max-width: 480px) {
    h2 {
      font-size: 1.8rem;
      margin-bottom: 20px;
    }
  
    .hero-content h1 {
      font-size: 1.8rem;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
  
    .experience-filters {
      flex-direction: column;
      align-items: center;
    }
  
    .filter-btn {
      width: 100%;
      text-align: center;
      margin-bottom: 8px;
    }
  
    .card-actions {
      flex-direction: column;
      gap: 10px;
    }
  
    .fixed-cta {
      bottom: 15px;
      right: 15px;
    }
  
    .fixed-cta .cta-button {
      padding: 10px 15px;
      font-size: 0.9rem;
    }
  
    .modal-content {
      padding: 20px 15px;
      width: 95%;
    }
  
    .gallery-grid {
      grid-template-columns: 1fr;
    }
  
    .testimonial-author {
      flex-direction: column;
      text-align: center;
    }
  
    .faq-question h3 {
      font-size: 1rem;
    }
  }
  
  
  

/* New from AI 2025/6/2 */
/* Mobile Improvements for Recommendations and Contact Sections */
/* Recommendations Section - Mobile Improvements */
@media (max-width: 768px) {
  /* Change to single column layout on mobile */
  .recommendations-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  /* Improve spacing and readability */
  .recommendation-content {
    padding: 15px;
  }
  
  .recommendation-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .social-link{
    padding: 14px 28px;
  }

}

/* Contact Section - Mobile Improvements */
@media (max-width: 768px) {
  /* Stack the contact info and form vertically */
  .contact-container {
    flex-direction: column;
    gap: 30px;
  }
  
  /* Improve contact items spacing and alignment */
  .contact-item {
    align-items: flex-start;
    margin-bottom: 20px;
  }
  
  .contact-item i {
    margin-top: 3px; /* Align icon with text better */
  }
  
  /* Make form elements more touch-friendly */
  .contact-form-container .form-group input,
  .contact-form-container .form-group textarea {
    padding: 14px;
    margin-bottom: 5px;
  }
  
  /* Make submit button full width */
  .contact-form-container .cta-button {
    width: 100%;
    padding: 14px;
  }
}

/* Additional refinements for very small screens */
@media (max-width: 480px) {
  .recommendations-section {
    padding: 50px 0;
  }
  
  .recommendation-image {
    height: 180px;
  }
  
  .contact-item {
    gap: 10px;
  }
}
  