﻿@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Orbitron:wght@400..900&display=swap');

/* General Body Styles */
body {
    font-family: 'Montserrat', sans-serif; /* Clean, modern font for body text */
   background-color: #b5e1f8;

    margin: 0;
    padding: 0;
    color: #333; /* Dark text for better readability */
    line-height: 1.6;
}

/* Heading Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif; /* Keep headings consistent with body font */
     /* Matching the logo's color */
    margin: 10px 0;
}

h1 {
    font-size: 36px; /* Large size for main headings */
}

h2 {
    font-size: 28px; /* Medium size for secondary headings */
}

h3 {
    font-size: 22px; /* Smaller for tertiary headings */
}

/* Link (a tag) Styles */
a {
    color: #ffbf00; /* Link color matching the logo */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease; /* Smooth transition for color change */
}

a:hover {
    color: #ff6600; /* Hover color for links */
    text-decoration: underline; /* Underline on hover */
}


/* Top Bar */
.topbar {
    background: linear-gradient(359deg, #0c2b61, #0c2b61); /* Solid dark blue from logo */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 10px 15px;
    margin: 10px auto;
    top: 0;
    z-index: 1000;
    width: 100%;
    max-width: 1500px;
    box-sizing: border-box;
}

/* Container Layout */
.topbar-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Sections */
.topbar-left, .topbar-center, .topbar-right {
    display: flex;
    align-items: center;
    flex: 1;
}

.topbar-left {
    justify-content: flex-start;
}

.topbar-center {
    justify-content: center;
    font-weight: 400;
    color: #ffffff; 
    font-size: 16px;
    text-align: center;
}

.topbar-right {
    justify-content: flex-end;
    gap: 12px;
}

/* Call Link */
.call-link {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 19px;
}

.call-link:hover {
    color: #e60012; /* Bright red from logo */
}

/* Social Media Icons */
.social-icon {
    font-size: 19px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.social-icon i {
    color: #ffffff;
}

.social-icon:hover {
    background: #ffffff;
}

.social-icon:hover i {
    color: #e60012; /* Red */
}

/* Book Now Button */
.book-now {
    background: linear-gradient(to right, #e60012, #ff4d4d); /* Red to soft coral */
    color: #ffffff;
    padding: 9px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.book-now:hover {
    background: linear-gradient(to right, #ff4d4d, #b30000); /* Hover: coral to dark red */
    color: #ffffff;
    transform: scale(1.06);
    text-decoration: none;
}

/* 🔹 Responsive Design - Tablet & Mobile */
@media screen and (max-width: 1024px) {
    .topbar-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .topbar {
        padding: 12px 0;
    }

    .topbar-left,
    .topbar-center,
    .topbar-right {
        width: 100%;
        justify-content: center;
        margin-bottom: 8px;
    }

    .topbar-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }

    .book-now {
        font-size: 13px;
        padding: 7px 14px;
    }
}

/* 🔹 Mobile View Fixes */
@media screen and (max-width: 768px) {
    .topbar {
        flex-direction: column;
        padding: 10px 0;
    }

    .topbar-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .topbar-left,
    .topbar-center,
    .topbar-right {
        width: 100%;
        justify-content: center;
        text-align: center;
        margin-bottom: 6px;
    }

    .topbar-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .book-now {
        font-size: 12px;
        padding: 6px 12px;
    }
}




/* General Header Styles */
.site-header {
    background: linear-gradient(120deg, #F4F7FB, #D6E4F1);  /* Soft, neutral gradient */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 10px 15px;
    margin: 10px auto;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}

/* Header Container */
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Logo */
.logo img {
    height: 50px;
    width: auto;
}

/* Desktop Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    text-decoration: none;
    color: #111111; /* Dark color for readability */
    font-size: 1.05rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #FFBF00; /* Soft yellow accent */
    transition: width 0.4s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color:#d72810; /* Hover color */
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.4);
    transform: scale(1.05);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: #111111; /* Dark color for dropdown text */
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: #ffffff;
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 10px 0;
    z-index: 10;
    overflow: hidden;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    font-size: 1rem;
    color: #111111;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #f0f0f0;
    color: #000000;
    transform: translateX(5px);
}

/* Contact Button */
.contact-btn {
    background-color: #e51919; /* Soft yellow background */
    color: #ffffff; /* Dark text color for better readability */
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #0f3475; /* Darker yellow for hover */
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.6);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    font-size: 1.8rem;
    color: #FFBF00; /* Soft yellow */
    cursor: pointer;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    height: calc(100vh - 76px);
    background-color: #333; /* Dark background for mobile */
    color: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    z-index: 1000;
    padding: 20px 10px;
    overflow-y: auto;
    box-sizing: border-box;
}

.mobile-nav.active {
    display: flex;
}

/* Mobile Header */
.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 15px;
    background-color: #333;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1010;
    box-sizing: border-box;
}

.mobile-header img {
    height: 40px;
}

.mobile-header .mobile-close {
    font-size: 1.4rem;
    padding: 5px;
    color: #FFBF00; /* Soft yellow for close icon */
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-header .mobile-close:hover {
    transform: scale(1.15);
    color: #FF8800; /* Hover effect */
}

.mobile-nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: #FFBF00; /* Hover effect on mobile links */
}

/* Default Mobile View */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }
}

/* Adjustments for small screen sizes */
@media (max-width: 480px) {
    .contact-btn {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .hamburger-menu {
        font-size: 1.3rem;
    }

    .logo img {
        height: 40px;
    }

    .mobile-header {
        padding: 8px 12px;
    }
}
/* Universal Active Navigation Link */
.nav-link.active {
  color: #b23a2a !important; /* Gold */
  border-bottom: 3px solid #FFD200;
  padding-bottom: 3px;
  font-weight:bold;
}

/* Optional: Hover state for active link */
.nav-link.active:hover {
  color: #b23a2a;
}


/* Default Mobile View */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }
}

/* Adjustments for small screen sizes */
@media (max-width: 480px) {
    .contact-btn {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .hamburger-menu {
        font-size: 1.3rem;
    }

    .logo img {
        height: 40px;
    }

    .mobile-header {
        padding: 8px 12px;
    }
}


.divider-svg {
  position: relative;
  height: 100px;
  overflow: hidden;
  margin-top:-10px;
  z-index:1;
  }

.divider-svg svg {
  width: 100%;
  height: 100%;
  display: block;
}
.reversed-divider {
  position: relative;
  height: 100px;
  overflow: hidden;
  margin-top: -100px;
  
}

.reversed-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}



/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: -100px;
    z-index: 0;
    background-color: #0c2b61; /* Deep navy blue background from logo */
}

.slider-container {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay for optional tint */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:rgb(12 43 97 / 30%); /* semi-transparent navy */
    z-index: 1;
}

/* Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    gap: 30px;
}

/* Hero Content */
.hero-content {
    max-width: 50%;
    color: #ffffff;
    animation: fadeIn 1.5s ease-out;
}

/* Hero Title */
.hero-title {
    font-family: 'Bangers', sans-serif;
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #e60012; /* Bright red from logo */
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

/* Hero Description */
.hero-description {
    font-family: 'Bangers', sans-serif;
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    font-weight: 300;
}

/* Gradient Title Alt */
.hero-title-alt {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #e60012, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

/* Hero Button */
.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    font-size: 1.2rem;
    color: #e60012; /* Red text */
    background: #ffffff; /* White background */
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(236, 45, 45, 0.2);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.hero-button .btn-icon {
    margin-left: 10px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.hero-button:hover {
    transform: translateY(-5px);
    background: #e60012; /* Red background on hover */
    color: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.hero-button:hover .btn-icon {
    transform: translateX(5px);
}

.hero-button .btn-text {
    position: relative;
    z-index: 2;
}

.hero-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
    z-index: 1;
}

.hero-button:hover::before {
    left: 0;
}

.hero-button:focus {
    outline: none;
}

/* Hero Image */
.hero-graphic img {
    width: 100%;
    max-width: 550px;
    border-radius: 220px;
    margin-top: 50px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    border: 5px solid #fff; /* Red border */
}

/* Navigation Arrows */
.prev, .next {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.85);
    color: #e60012;
    font-size: 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 5;
    opacity: 1;
}

.prev:hover, .next:hover {
    background-color: #e60012;
    color: #ffffff;
    transform: scale(1.1);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Navigation Dots */
.nav-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 8;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.dot:hover {
    transform: scale(1.2);
}

.dot.active {
    background: #e60012; /* Active red dot */
}

/* Keyframe for Fade-in Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Prevent Flicker */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 1s ease;
    opacity: 0;
    z-index: 1;
}

.slide.active {
    z-index: 2;
    opacity: 1;
}

/* General Styles for Mobile */
@media (max-width: 768px) {
	
    .hero-slider {
        height: 80vh; /* Reduce height for smaller screens */
    }

    .hero-content-wrapper {
        flex-direction: column-reverse; /* Stack content and image vertically */
        align-items: center; /* Center align */
        gap: 20px; /* Reduce spacing between elements */
    }

    .hero-content {
        max-width: 90%; /* Increase content width */
        text-align: center; /* Center text alignment */
        padding: 0 15px; /* Add padding to avoid edge overlap */
    }

    .hero-title {
        font-size: 2.5rem; /* Reduce title size */
        line-height: 1.2; /* Adjust line height for better spacing */
        margin-bottom: 10px;
    }

    .hero-description {
        font-size: 1rem; /* Reduce description size */
        margin-bottom: 15px;
    }

    .hero-button {
        font-size: 1rem; /* Adjust button font size */
        padding: 10px 30px; /* Adjust padding */
        width: auto; /* Remove fixed width */
        margin: 15px auto; /* Center button */
    }

    .hero-graphic img {
        max-width: 280px; /* Reduce graphic size */
        margin: 0 auto;
        display: block;
    }

    .nav-dots {
        bottom: 15px; /* Adjust position of navigation dots */
    }

    .dot {
        width: 10px; /* Reduce size of dots */
        height: 10px;
    }

    /* Navigation Buttons */
    .prev, .next {
        width: 30px; /* Reduce size */
        height: 30px;
        font-size: 1.2rem;
        top: 45%; /* Adjust position */
    }
}

/* Additional Adjustments for Very Small Screens */
@media (max-width: 480px) {
    .hero-slider {
        height: 70vh; /* Further reduce height */
    }

    .hero-title {
        font-size: 2rem; /* Scale down title */
    }

    .hero-description {
        font-size: 0.9rem; /* Scale down description */
    }

    .hero-button {
        font-size: 0.9rem; /* Scale down button text */
        padding: 8px 20px; /* Adjust padding */
    }

    .hero-graphic img {
        max-width: 40%; /* Limit graphic size further */
		margin-top:70px;
    }

    .nav-dots {
        bottom: 10px; /* Bring dots closer to the bottom */
    }
}

/* Adjustments for Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-slider {
        height: 90vh; /* Slightly reduce height for tablets */
    }

    .hero-content-wrapper {
        gap: 25px; /* Moderate spacing */
    }

    .hero-title {
        font-size: 3rem; /* Slightly smaller title */
    }

    .hero-description {
        font-size: 1.1rem; /* Slightly smaller description */
    }

    .hero-button {
        font-size: 1.1rem; /* Adjust button size */
        padding: 12px 35px; /* Adjust padding */
    }

    .hero-graphic img {
        max-width: 320px; /* Adjust image size */
    }

    .prev, .next {
        width: 35px; /* Moderate button size */
        height: 35px;
        font-size: 1.4rem;
    }
}




/* Reservation Section Styling */
.reservation-section {
    padding: 50px 0;
    text-align: center;
	color:#fff;
	margin-top:-40px;
	
}

/* Reservation Box */
.reservation-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 1300px;
    padding: 20px;
    background: linear-gradient(359deg, #b23a2a, #f79a2a); /* Darker background for contrast */
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);

}

/* Reservation Row Container */
.reservation-row-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

/* Title */
.reservation-title {
    text-align: center;
    margin-bottom: 20px;
    color: #fff; /* Deep orange-red */
    font-size: 24px;
    font-weight: bold;
    border-bottom: 2px solid #b63f2a; /* Deep orange-red */
    padding-bottom: 10px;
}

/* Input and Select Fields */
.reservation-row {
    flex: 1;
    min-width: 180px;
}

.reservation-input {
    width: 90%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ddd; /* Light gray border */
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.reservation-input:focus {
    border-color: #FF5722; /* Deep orange-red on focus */
    box-shadow: 0 0 5px rgba(255, 87, 34, 0.5); /* Subtle glow effect */
    outline: none;
}

/* Booking Button */
.reservation-btn {
    padding: 12px 20px;
    background: linear-gradient(45deg, #FF5722, #FF9800); /* Gradient from deep orange-red to bright orange */
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 20px;
}

.reservation-btn:hover {
    background: linear-gradient(45deg, #FF9800, #FF5722); /* Inverse gradient on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .reservation-row-container {
        flex-direction: column;
        gap: 10px;
    }

    .reservation-row {
        min-width: 100%;
    }

    .reservation-btn {
        width: 100%;
    }
}





/* Reservation Section */
.reservation-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  background:linear-gradient(to bottom, rgb(181 225 248), rgb(0 43 100));
  background-size: cover; /* Ensure the background image covers the section */
  background-position: center;
  margin-top: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Optional: adds a subtle shadow */
}

/* Reservation Container */
.reservation-container {
  display: flex;
  max-width: 1300px;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
}

/* Images Section */
.reservation-images {
  position: relative;
  width: 50%;
  margin-top:50px;
}

.large-image {
  width: 100%;
  height: auto;
  border-radius: 10px; /* Optional: adds rounded corners to the image */
}

.small-image {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 80%;
  height: auto;
  /* Light white border with slight transparency */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Optional: adds shadow for depth */
  border-radius: 12px; /* Optional: adds rounded corners */
}

/* Content Section */
.reservation-content {
  width: 50%;
  padding: 20px;
}

.reservation-subtitle {
  font-size: 20px;
  color: #ffffff; /* Soft brown text for better readability */
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: -30px;
  font-weight: 500;
}

.reservation-title {
  font-size: 63px;
  color: #ffffff; /* Deep orange-red for the title */
  margin-bottom: 10px;
  font-weight: 700;
}

.reservation-description {
  font-size: 17px;
  color:#ffffff; /* Deep purple for description to match buttons */
  margin-bottom: 30px;
  /* Optional: improves text readability */
}

/* Form Section */
.reservation-form {
  background-color: #434343db;
    padding: 5px 8px 4px 20px;
    border: 2px solid #526e9f6e;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 15px;
  color: #fff; /* Soft brown for labels */
  margin-bottom: 5px;
  font-weight:bold;
}

.form-group select {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #FFD700; /* Gold border */
  background-color: #fff;
  color: #4E2A84; /* Deep purple for text */
  border-radius: 8px;
}

/* Check Availability Button */
.check-availability-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e51919; /* Gold background for button */
  color: #ffffff; /* Dark purple text for contrast */
  font-size: 16px;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  
  border-radius: 50px;
}

.check-availability-btn .btn-icon {
  margin-left: 10px;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.check-availability-btn:hover {
  background-color: #FF5722; /* Darker orange for hover */
  color: #fff;
  box-shadow: 0 15px 30px rgba(255, 140, 0, 0.5);
}

.check-availability-btn:hover .btn-icon {
  transform: translateX(5px); /* Moves the icon on hover */
}

.check-availability-btn .btn-text {
  position: relative;
  z-index: 2;
}

.check-availability-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2); /* Fade effect for button */
  transition: left 0.3s ease;
  z-index: 1;
}

.check-availability-btn:hover::before {
  left: 0; /* Slide the effect over the button */
}

/* Remove outline on focus */
.check-availability-btn:focus {
  outline: none;
}


/* Responsive Design */
@media (max-width: 768px) {
  .reservation-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .reservation-images {
    width: 100%;
  }

  .reservation-content {
    width: 100%;
    text-align: center;
  }

  .small-image {
    position: static;
    margin-top: 20px;
    width: 80%;
  }

  .form-row {
    flex-direction: column;
  }
}





@media (max-width: 820px) {
  .reservation-container {
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center-align elements */
    gap: 20px; /* Space between elements */
    padding: 0 20px; /* Add padding to prevent content from going out */
  }

  .reservation-images {
    width: 100%; /* Ensure images take full width */
    margin-bottom: 20px; /* Space below images */
  }

  .large-image {
    width: 100%; /* Full width for the main image */
  }

  .small-image {
    position: static; /* Reset positioning */
    margin-top: 10px;
    width: 80%; /* Smaller width for better fit */
  }

  .reservation-content {
    width: 100%; /* Full width for content */
    text-align: center; /* Center-align text */
  }

  .reservation-form {
    width: 100%; /* Ensure the form takes full width */
    padding: 20px; /* Consistent padding */
    box-sizing: border-box; /* Include padding in width calculation */
  }

  .form-row {
    flex-direction: column; /* Stack form fields vertically */
    gap: 15px; /* Space between fields */
  }

  .check-availability-btn {
    width: 100%; /* Full-width button */
  }
}


@media (max-width: 480px) {
  .reservation-subtitle {
    font-size: 12px;
  }

  .reservation-title {
    font-size: 40px;
  }

  .reservation-description {
    font-size: 14px;
  }

  .large-image {
    width: 100%;
  }

  .small-image {
    width: 80%;
  }

  .reservation-form {
    padding: 14px;
  }
}
/* Date Picker */
.date-picker {
  width: 90%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ffd700; /* Gold border */
  background-color: #fff;
  color: #4a2c1b; /* Dark brown text */
}

/* Animated Read More Button */
.animated-read-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e51919; /* Warm orange background */
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 10px;
  border-radius:50px;
}

.animated-read-more-btn .btn-icon {
  margin-left: 10px;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.animated-read-more-btn:hover {
  background-color: #153161; /* Bright orange for hover */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.animated-read-more-btn:hover .btn-icon {
  transform: translateX(5px);
}

.animated-read-more-btn .btn-text {
  position: relative;
  z-index: 2;
}

.animated-read-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: 1;
}

.animated-read-more-btn:hover::before {
  left: 0;
}

.read-more-btn:focus {
  outline: none;
}




/* Full Details Modal */
.full-details-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Slightly darker overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Modal Container */
.full-details-container {
  background: #f8f8f8; /* Light gray background for the modal */
  color: #2e3d49; /* Deep teal for text */
  width: 90%;
  max-width: 800px;
  max-height: 90%;
  overflow-y: auto;
  border-radius: 10px;
  padding: 20px;
  position: relative;
}

/* Modal Title */
.modal-title {
  font-size: 28px;
  font-weight: bold;
  color: #FFD700; /* Gold for title */
  margin-bottom: 20px;
  text-align: center;
}

/* Modal Section */
.modal-section h3 {
  font-size: 20px;
  color: #2e3d49; /* Deep teal */
  margin-bottom: 10px;
}

.modal-section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444; /* Dark gray for paragraph text */
}

.modal-section ul {
  margin-left: 20px;
  list-style: disc;
}

.modal-section ul li {
  margin-bottom: 10px;
  color: #444; /* Dark gray for list items */
}

/* Close Modal Button */
.close-modal-btn {
  display: inline-block;
  background-color: #FFD700; /* Gold background for close button */
  color: #2e3d49; /* Deep teal text */
  font-size: 16px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
  text-transform: uppercase;
}

.close-modal-btn:hover {
  background-color: #FF5722; /* Deep orange on hover */
  color: #fff; /* White text when hovered */
}








.amenities-section {
  padding: 50px 20px;
  background-color: #002b64;
  color: #ffffff;
  text-align: center;
}

.section-header h2 {
  font-size: 2.6rem;
  color: #ffffff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
  margin-bottom: 10px;
}

.section-header p {
  color: #d1d1d1;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.amenities-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.amenity {
  background: linear-gradient(135deg, #d41d24, #b0151b);
  color: #ffffff;
  padding: 30px 20px;
  text-align: center;
  clip-path: polygon(25% 0%, 75% 0%, 100% 30%, 100% 70%, 75% 100%, 25% 100%, 0% 70%, 0% 30%);
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.amenity:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #ffffff, #f4f4f4);
  color: #002b64;
  box-shadow: 0 20px 40px rgba(212, 29, 36, 0.5);
}

.amenity em {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ffffff;
  transition: color 0.3s ease;
}

.amenity:hover em {
  color: #d41d24;
}

.amenity p {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.amenity span {
  font-size: 1rem;
  color: #f5f5f5;
  line-height: 1.4;
}

.amenity:hover span {
  color: #002b64;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .amenity em {
    font-size: 2.2rem;
  }

  .amenity p {
    font-size: 1.2rem;
  }
}








/* Section Header */
.section-header h2 {
    font-size: 3rem;
    color: #fff; /* Bright Gold */
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.7); /* Subtle shadow */
    text-align: center; /* Center the header text */
}

.section-header p {
    font-size: 1.2rem;
    color: #fff; /* Blue for contrast */
    margin-bottom: 40px;
    text-align: center; /* Center the paragraph text */
}









.best-stay-section {
  padding: 1px 100px;
     background: linear-gradient(to bottom, rgb(157 212 241), rgb(9 48 87));
  margin-top:-100px;
}

.stay-top-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.stay-left {
  flex: 1;
}

.stay-subtitle {
  font-size: 17px;
  color: #fff; /* White for contrast */
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 300;
}

.stay-title {
     font-size: 3rem;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.7);
   
}

.stay-description {
     font-size: 17px;
    color: #ffffff; /* Light beige for softer contrast */
  line-height: 1.6;
  margin-bottom: 200px;
}

.stay-button {
  display: inline-block;
  background-color: #5e4d45; /* Dark brown to match the background */
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
}

.stay-button:hover {
  background-color: #3b2f28; /* Slightly darker brown on hover */
}

.stay-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stay-right img {
  width: 80%;
  border-radius: 5px;
  object-fit: cover;
   border-radius: 100px;
}

.stay-rooms-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -250px;
}

.room-card {
  position: relative;
  overflow: hidden;
  border-radius: 50px;
}

.room-card img {
  width: 80%;
  height: auto;
  display: block;
  transition: transform 0.3s ease; /* Smooth zoom effect */
 /* Warm red border color */
  /* Optional: rounded corners */
}



.room-info {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent black */
  border-radius: 10px;
  padding: 8px 16px;
  color: #fff;
  text-align: center;
  max-width: 90%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.room-title {
  font-size: 18px;
  margin: 0;
  font-weight: bold;
  color: #fff;
}

.room-card:hover img {
  transform: scale(1.2); /* Slight zoom on hover */
}
.corporate-note {
  color: #091b49;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1.1rem;
}



/* Responsive Design for 820px by 1180px */
@media (max-width: 820px) {
  .stay-top-container {
    flex-direction: column; /* Stack vertically */
    gap: 10px;
	
  }

  .stay-left {
    text-align: center; /* Center-align the text for better readability */
  }

  .stay-right img {
    width: 100%;
    max-height: 400px; /* Adjust max height for image */
    object-fit: cover;
	margin-top:-150px;
  }

  .stay-rooms-container {
    grid-template-columns: repeat(2, 1fr); /* Display 2 columns */
    gap: 20px; /* Adjust spacing between cards */
    margin-top: 0; /* Remove negative margin */
  }

  .room-card img {
    width: 100%;
    height: auto;
  }

  .room-info {
    padding: 8px;
    font-size: 14px; /* Adjust font size */
  }

  .room-price {
    font-size: 14px;
  }

  .room-title {
    font-size: 14px;
	font-weight:bold;
  }
}

/* Responsive Design for screens up to 480px */
@media (max-width: 480px) {
  .stay-rooms-container {
    grid-template-columns: 1fr; /* Display 1 column */
    gap: 15px;
  }

  .room-info {
    padding: 5px;
    font-size: 12px; /* Smaller font for mobile */
  }

  .room-price {
    font-size: 12px;
  }

  .room-title {
    font-size: 14px;
  }
}











/* Deluxe Inn Gallery Section */
.deluxe-gallery-section {
      padding: 60px 50px;
    max-width: 100%;
  margin: auto;
  background: linear-gradient(to bottom, #e0f4ff, #b3e0f7); /* Light blue gradient */
  border-radius: 12px;
}

/* Header */
.deluxe-gallery-header {
  text-align: center;
  margin-bottom: 40px;
}
.deluxe-gallery-header h2 {
  font-size: 36px;
  color: #002b5e;
  font-weight: 800;
}
.deluxe-gallery-header h2 span {
  color: #d60000;
}
.deluxe-gallery-header p {
  color: #333;
  margin-top: 10px;
  font-size: 18px;
}
.deluxe-gallery-button {
  margin-top: 20px;
  display: inline-block;
  background-color: #d60000;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s;
}
.deluxe-gallery-button:hover {
  background-color: #a10000;
}

/* Tabs */
.deluxe-gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
.deluxe-gallery-tabs button {
  background: none;
  border: none;
  font-size: 18px;
  color: #002b5e;
  cursor: pointer;
  font-weight: 600;
}
.deluxe-gallery-tabs button.active {
  color: #d60000;
  position: relative;
}
.deluxe-gallery-tabs button.active::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: #d60000;
  border-radius: 50%;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

/* Gallery Grid */
.deluxe-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.deluxe-gallery-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  background: #fff;
  transition: transform 0.3s;
}
.deluxe-gallery-card:hover {
  transform: translateY(-5px);
}
.deluxe-gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.deluxe-gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 43, 94, 0.85); /* Dark blue transparent */
  color: #fff;
  padding: 10px 16px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.deluxe-gallery-label em {
  color: #FFD200;
}






.footer-section {
  background-color: #0b2a5b; /* Navy blue from logo */
  color: #ffffff; /* White text for contrast */
  padding: 60px 0 40px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 18px;
}

.footer-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-logo-area img {
  max-height: 70px;
}

.footer-social a {
  color: #ffffff;
  font-size: 1.8rem;
  margin: 0 10px;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  color: #e60000; /* Red from logo */
  transform: scale(1.2);
}

.divider {
  height: 2px;
  background-color: #e60000; /* Red divider */
  margin: 20px 0;
}

.footer-middle {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-address,
.footer-links {
  flex: 1;
  min-width: 250px;
}

.title5 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.gen {
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
}

.cgsl {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
}
.cgsl:hover {
  color: #e60000;
}

.footer-links h3 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: disc;
  padding-left: 20px;
  columns: 2;
  column-gap: 30px;
}

.footer-links ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
}
.footer-links ul li a:hover {
  color: #e60000;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 18px;
}

.credits a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}
.credits a:hover {
  color: #e60000;
  text-shadow: 0 0 8px #e60000;
}

@media (max-width: 768px) {
  .footer-top,
  .footer-middle {
    flex-direction: column;
    text-align: center;
  }

  .footer-links ul {
    columns: 1;
  }
}










.inner-page-booking .booking-box {
  max-width: 1300px;
  margin: 30px auto 50px auto;
  padding: 25px 30px;
  background-color: transparent;/* semi-transparent white */
  border: 2px solid #FFD700;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  border-radius: 15px;
  backdrop-filter: blur(10px); /* smooth blur behind */
  display: flex;
  justify-content: center;
}

.booking-form-inline {
  display: flex;
  gap: 25px;
  align-items: flex-end;
  flex-wrap: wrap;
  width: 100%;
}

.booking-form-inline .booking-group {
  flex: 1 1 140px;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.booking-form-inline label {
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.booking-form-inline .booking-input {
  width: 80%;
  padding: 12px 15px;
  font-size: 16px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: all 0.3s ease;
}

.booking-form-inline .booking-input::placeholder {
  color: #eee;
}

.booking-form-inline .booking-input:focus {
  border-color: #FFD200; /* gold/yellow */
  background: rgba(255, 255, 255, 0.4);
  outline: none;
  box-shadow: 0 0 6px #FFD200;
  color: #000;
}

.booking-form-inline .booking-btn {
  flex: 0 0 160px;
  padding: 26px 0;
  font-size: 17px;
  font-weight: 700;
  background: linear-gradient(45deg, #FFD200, #FF8C00);
  border: none;
  border-radius: 10px;
  color: #4a2a00;
  cursor: pointer;
  transition: background 0.3s ease;

}


.booking-form-inline .booking-btn:hover {
  background: linear-gradient(45deg, #FF8C00, #FFD200);
}

@media (max-width: 768px) {
  .booking-form-inline {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
    width: 100%;
  }

  .booking-form-inline .booking-group {
    flex: none;
    width: 100%;
    margin-bottom: 15px; /* spacing between groups */
  }

  .booking-form-inline .booking-input {
    width: 100% !important; /* full width inputs */
    padding: 14px 15px;
    font-size: 16px;
  }

  .booking-form-inline label {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .booking-form-inline .booking-btn {
    width: 100%;
    flex: none;
    padding: 16px 0;
    font-size: 18px;
    border-radius: 12px;
    margin-top: 10px;
  }
}





.hero-slider.single-hero {
  height: 70vh; /* Adjust height as needed */
  margin-top: -180px;
  position: relative;
  overflow: hidden;
}

.hero-slider.single-hero .slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-title {
  font-family: 'Bangers', sans-serif;
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 15px;
  color: #e30505;
  text-shadow: 0 4px 8px rgba(0,0,0,0.8);
}

.hero-description {
  font-family: 'Bangers', sans-serif;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0,0,0,0.6);
  font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-slider.single-hero {
    height: 50vh;
    margin-top: -100px;
  }
}


.top-amenities-section {
	 background: rgb(0 0 0 / 20%); /* very subtle light overlay */
  padding: 60px 15px;
  
  color: #fff;
  
  text-align: center;
}

.section-title {
  font-size: 2.8rem;
  color: #FFD200; /* Gold accent */
  font-weight: 700;
  margin-bottom: 50px;
   
  text-transform: uppercase;
 
 
}

.section-title .section-link {
  color: #FFD200;
  text-decoration: none;
  transition: color 0.3s ease;
  
}

.section-title .section-link:hover {
  text-decoration: underline;
}

.amenities-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 35px 45px;
  max-width: 1200px;
  margin: 0 auto;
}

.amenity-card {
  background:linear-gradient(145deg, #c949246b, #c949246b); /* Warm brown gradient */
  border-radius: 25px;
  padding: 30px 25px 20px;
  box-shadow:
    0 0 15px rgba(255, 191, 0, 0.3), /* softer gold glow */
    inset 0 0 10px rgba(255, 191, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  border: 2px solid #FFD700;
  
}

.amenity-card:hover {
  box-shadow:
    0 0 35px #FFBF00, /* golden glow */
    0 0 50px #FFBF33,
    inset 0 0 18px #FFD700;
  transform: translateY(-10px) scale(1.1);
  background: linear-gradient(145deg, #6b5040, #845e44); /* lighter warm brown */
  border-color: #FFBF00;
  z-index: 10;
}


.amenity-icon {
  font-size: 52px;
  margin-bottom: 18px;
  color: #FFD200;
  filter: drop-shadow(0 0 8px #FFD200);
  animation: glowPulse 3s infinite alternate ease-in-out;
}

@keyframes glowPulse {
  0% {
    filter: drop-shadow(0 0 8px #FFD200);
  }
  100% {
    filter: drop-shadow(0 0 20px #FFAA00);
  }
}

.amenity-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #FFD200;
  
  margin: 0 0 10px 0;

  text-shadow: 0 0 6px #ffd200;
}

.amenity-info {
  max-height: 0;
  opacity: 0;
  transform: translateY(-25px);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
  color: #eee;
  line-height: 1.5;
 
  user-select: text;
}

.amenity-card:hover .amenity-info {
  max-height: 220px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 12px;
}

@media (max-width: 1024px) {
  .amenities-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .amenities-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 35px;
  }
  .amenity-icon {
    font-size: 44px;
  }
}



.additional-amenities-section {
  padding: 60px 15px;
 
  color: #222;
  
  max-width: 1200px;
  margin: 0 auto 80px auto;
  border-radius: 15px;
 
}

.additional-amenities-section .section-title {
  font-size: 2.6rem;
  color:#ffbf00; /* rich dark orange */
  font-weight: 800;
  margin-bottom: 50px;
 
  text-transform: uppercase;
  text-align: center;
  
  text-shadow: 0 0 12px #b35400;
}

.amenities-list-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
  justify-content: center;
}

.amenities-category {
  flex: 1 1 300px;
  background: rgba(255 255 255 / 0.85);
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 5px 18px rgb(0 0 0 / 0.1);
  color: #333;
}

.amenities-category h3 {
  font-size: 1.8rem;
  color:#d72810;
  margin-bottom: 20px;
  font-weight: 900;
  border-bottom: 3px solid #ff7a00;
  padding-bottom: 8px;
}

.amenities-category ul {
  list-style: none;
  padding-left: 0;
  font-size: 1.15rem;
  line-height: 1.9;
  color: #444;
}

.amenities-category ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  font-weight: 600;
  color: #555;
}

.amenities-category ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 5px;
  color: #b35400;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .amenities-list-container {
    gap: 35px 40px;
  }
  .amenities-category {
    flex: 1 1 45%;
  }
}

@media (max-width: 600px) {
  .amenities-list-container {
    gap: 30px 30px;
  }
  .amenities-category {
    flex: 1 1 100%;
  }
}






.things-to-do-section {
  padding: 60px 15px 100px;
  background: transparent; /* Transparent background */
  color: #222;
  
  max-width: 1200px;
  margin: 0 auto 80px auto;
  border-radius: 15px;
  text-align: center;
}

.things-to-do-section .section-title1 {
  font-size: 2.6rem;
  color: #ffbf00; /* rich dark orange */
  font-weight: 800;
  margin-bottom: 50px;
  
  text-transform: uppercase;
  
  text-shadow: 0 0 12px #b35400;
  text-align: center;
}

.things-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
  justify-content: center;
}

.things-card {
  flex: 1 1 300px;
  background: rgba(255 255 255 / 0.85);
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 5px 18px rgb(0 0 0 / 0.1);
  color: #333;
  text-align: left;
  transition: transform 0.3s ease;
  cursor: default;
}

.things-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 22px rgb(0 0 0 / 0.2);
}

.things-card h3 {
  font-size: 1.8rem;
  color: #d72810;
  margin-bottom: 20px;
  font-weight: 900;
  border-bottom: 3px solid #ff7a00;
  padding-bottom: 8px;
 
}

.things-card ul {
  list-style: none;
  padding-left: 0;
  font-size: 1.15rem;
  line-height: 1.9;
  color: #444;
  font-weight: 600;
}

.things-card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  color: #555;
}

.things-card ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 5px;
  color: #b35400;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .things-cards-grid {
    gap: 35px 40px;
  }
  .things-card {
    flex: 1 1 45%;
  }
}

@media (max-width: 600px) {
  .things-cards-grid {
    gap: 30px 30px;
  }
  .things-card {
    flex: 1 1 100%;
  }
}



.things-to-do {
  padding: 40px 0;
  
  text-align: center;
}

.things-title {
  font-size: 3rem;
  color: #ffbf00; /* deep burnt orange */
  margin-bottom: 40px;
  text-transform: uppercase;
  position: relative;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(255, 198, 102, 0.6);
}

.things-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background-color: #ffb300; /* gold/yellow */
  margin: 10px auto;
  border-radius: 2px;
}

/* Container for the things-to-do section */
.things-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
}

/* Slider Styling */
.things-slider {
  flex: 1;
  max-width: 50%;
  min-width: 300px;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(178, 58, 42, 0.3);
}

.custom-hero-slide {
  display: none;
  position: relative;
  background-size: cover;
  background-position: center;
  height: 400px;
  border-radius: 8px;
  box-shadow: inset 0 0 20px #b23a2a88;
}

.custom-hero-slide.active {
  display: block;
}

.custom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  border-radius: 8px;
}

.custom-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff3d3;
  padding: 12px 20px;
  background: rgb(0 0 0 / 43%);
  border-radius: 8px;
  max-width: 90%;
  box-shadow: 0 0 12px #ffb300bb;
}

.custom-hero-content h1 {
  font-size: 24px;
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  text-shadow: 0 0 6px #ffca28cc;
  color: #ffd54f;
}

.custom-hero-content p {
  font-size: 17px;
  margin-bottom: 10px;
  color: #fff3d3;
  font-weight: 500;
  line-height: 1.4;
  text-shadow: 0 0 6px #a0522dcc;
}

.custom-hero-btn {
  margin-top: 8px;
  padding: 10px 22px;
  background-color: #ffb300;
  color: #5a2e00;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px #ffb300bb;
}

.custom-hero-btn:hover {
  background-color: #c17a00;
  transform: scale(1.05);
  box-shadow: 0 6px 18px #c17a0088;
}

/* Content Box Styling */
.things-content-box {
  flex: 1;
  max-width: 40%;
  min-width: 300px;
  padding: 25px;
  color: #4a1c00;
  border-radius: 10px;
  background: #fff4dc;
  box-shadow: 0 0 12px #ffbb0055;
}

.content-inner h3 {
  font-size: 32px;
  margin-bottom: 12px;
  font-weight: 700;
  color: #b23a2a;
  text-shadow: 0 0 10px #ffca28aa;
}

.content-inner p {
  font-size: 19px;
  margin-bottom: 14px;
  color: #5a2e00;
  line-height: 1.5;
}

.content-inner ul {
  list-style: none;
  padding: 0;
  color: #7a4515;
}

.content-inner ul li {
  font-size: 15px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 24px;
  font-weight: 600;
  color: #7a4515;
}

.content-inner ul li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: #ffb300;
  font-weight: 900;
  font-size: 20px;
}

/* Responsive Design for Tablets and Mobiles */
@media (max-width: 1024px) {
    .things-slider {
        max-width: 80%;
        margin-bottom: 20px;
    }

    .things-content-box {
        max-width: 80%;
        margin: 0 auto;
    }

    .custom-hero-content h1 {
        font-size: 20px;
    }

    .custom-hero-content p {
        font-size: 14px;
    }
	.custom-hero-slide {
        height: 450px;
    }

}

@media (max-width: 768px) {
    .things-container {
        flex-direction: column;
    }

    .things-slider, .things-content-box {
        max-width: 100%;
        margin: 0 auto;
    }

    .custom-hero-slide {
        height: 450px;
    }

    .custom-hero-content h1 {
        font-size: 20px;
    }

    .custom-hero-content p {
        font-size: 14px;
    }

    .custom-hero-btn {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .things-slider, .things-content-box {
        max-width: 80%;
    }

    .custom-hero-slide {
        height: 450px;
    }

    .custom-hero-content h1 {
        font-size: 18px;
    }

    .custom-hero-content p {
        font-size: 12px;
    }

    .custom-hero-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
}


/* Custom Location Section */
.custom-location-section {
  padding: 60px 20px;
  margin-bottom: 20px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.65)
  ); /* black transparent fade */
  border-radius: 12px;
}

.custom-location-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  background: transparent; /* keep transparent so fade is visible */
  border-radius: 12px;
}

/* Header Section */
.custom-location-header {
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
}

.custom-location-title {
  font-size: 3rem;
    color: #ffbf00;
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(255, 198, 102, 0.6);
}

/* Left Side: Text & Form */
.custom-location-text {
  flex: 1;
  max-width: 50%;
  padding: 20px;
}

.custom-location-description {
  font-size: 20px;
  color: #fff; /* soft yellow for readability */
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Coordinates Box */
.custom-coordinates-box {
  background-color:rgb(255 255 255 / 0%); /* faint gold overlay */
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
}

.custom-coordinates-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffbf00;
  font-weight: 600;
  text-shadow: 0 0 6px #b38600;
}

.custom-coordinate-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-coordinate-list li {
  font-size: 16px;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.custom-coordinate-list em {
  color: #ffd54f;
  margin-right: 8px;
  text-shadow: 0 0 4px #b38600;
}

/* Form Styling */
.custom-directions-form {
  margin-top: 20px;
}

.custom-input-field {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 215, 0, 0.7);
  border-radius: 6px;
  font-size: 16px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffd54f;
  box-shadow: inset 0 0 6px rgba(255, 215, 0, 0.3);
  transition: border-color 0.3s ease;
}

.custom-input-field::placeholder {
  color: #ffeb99;
}

.custom-input-field:focus {
  border-color: #ffca28;
  outline: none;
  box-shadow: 0 0 8px #ffca28;
}

.custom-directions-btn {
  width: 100%;
  padding: 12px;
  background:linear-gradient(to right, #d72810, #ffbf00);
  color: #000;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px #b3860050;
}

.custom-directions-btn:hover {
  background: linear-gradient(to right, #b38600, #ffd54f);
  box-shadow: 0 6px 20px #ffca2833;
  color: #000;
}

/* Right Side: Map Image */
.custom-location-image {
  flex: 1;
  max-width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-image {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.35);
  transition: transform 0.3s ease;
}

.custom-image:hover {
  transform: scale(1.03);
}

/* Responsive Design */
@media (max-width: 768px) {
  .custom-location-container {
    flex-direction: column;
  }

  .custom-location-text,
  .custom-location-image {
    max-width: 100%;
  }

  .custom-location-title {
    font-size: 32px;
  }
}



/* 1. Full-width Title Section */
.contact-hero-banner {
   background: linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0.65));
  padding: 60px 20px 40px;
  text-align: center;
}

.contact-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.custom-contact-subtitle {
  font-size: 18px;
  color: #ffbf00; /* gold */
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 8px;
  text-shadow: 0 0 6px #b38600;
}

.custom-contact-title {
 font-size: 3rem;
    color: #ffbf00; /* gold */
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(179, 134, 0, 0.8);
}

.custom-contact-description {
  font-size: 20px;
  color: #eee8c0; /* light creamy */
  font-weight: 400;
  text-shadow: 0 0 4px rgba(0,0,0,0.3);
}

/* 2. Contact Info + Image Section */
.futuristic-contact-section {
  padding: 40px 20px 80px;
  background: linear-gradient(to bottom, rgb(0 0 0 / 66%), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.futuristic-contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.futuristic-contact-info {
  flex: 1;
  max-width: 520px;
  padding: 30px;
  background-color: rgba(255 255 255 / 0.1); /* subtle translucent */
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(255, 191, 0, 0.15); /* gold glow */
  text-align: left;
  color: #fff9d1;
  text-shadow: 0 0 4px rgba(0,0,0,0.5);
}

.futuristic-contact-info p {
  font-size: 20px;
  color: #fff9d1;
  line-height: 1.6;
  text-shadow: 0 0 3px rgba(0,0,0,0.5);
}

.futuristic-info-block {
  margin-top: 20px;
}

.futuristic-info-block h2,
.futuristic-info-block h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: #ffbf00; /* gold */
  font-weight: 600;
  text-shadow: 0 0 4px #b38600;
}

.futuristic-info-block a {
  color: #ffbf00;
  font-weight: bold;
  text-decoration: none;
  text-shadow: 0 0 3px #b38600;
}

.futuristic-info-block a:hover {
  color: #b38600; /* deeper gold */
  text-shadow: none;
}

.futuristic-image-block {
  flex: 1;
  max-width: 520px;
}

.contact-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(255, 191, 0, 0.3);
  transition: transform 0.3s ease;
}

.contact-image:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 768px) {
  .custom-contact-title {
    font-size: 36px;
  }

  .contact-hero-banner,
  .futuristic-contact-section {
    padding: 40px 20px;
  }

  .futuristic-contact-container {
    flex-direction: column;
  }

  .futuristic-contact-info,
  .futuristic-image-block {
    max-width: 100%;
  }

  .custom-contact-description {
    font-size: 16px;
  }
  
  .contact-image {
    margin-bottom: 100px;
  }
}


/* 📍 Updated Sitemap Section - Dunes Motel Hillsboro Theme with Black Fade Background */
.sitemap-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0.65)); /* Black transparent fade */
    text-align: center;
}

.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sitemap-title {
    font-size: 3rem;
    color: #ffbf00; /* Gold/yellow for strong contrast */
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 0 0 8px #b38600; /* subtle glow */
}

.sitemap-subtitle {
    font-size: 1.4rem;
    color: #e6c85a; /* softer gold */
    margin-bottom: 50px;
    font-weight: 400;
}

.sitemap-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sitemap-block {
    background-color: rgba(255, 255, 255, 0.1); /* transparent light overlay */
    padding: 40px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 25px rgba(255, 215, 0, 0.2); /* soft gold glow */
    border: 1px solid rgba(255, 215, 0, 0.3); /* transparent gold border */
}

.sitemap-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.45);
    border-color: #ffd700; /* bright gold on hover */
}

.sitemap-block h2 {
    font-size: 1.8rem;
    color:#ffbf00; /* gold */
    margin-bottom: 15px;
    font-weight: 500;
    text-shadow: 0 0 6px #b38600;
}

.sitemap-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-block ul li {
    margin-bottom: 15px;
}

.sitemap-block ul li a {
    font-size: 20px;
    color: #fff8d1; /* creamy white for readability */
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.sitemap-block ul li a i {
    margin-right: 10px;
    font-size: 1.2rem;
    color:#ffbf00; /* gold icon */
    text-shadow: 0 0 5px #b38600;
}

.sitemap-block ul li a:hover {
    color: #ffb300; /* bright gold on hover */
}

/* 📱 Responsive Design */
@media (max-width: 1024px) {
    .sitemap-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .sitemap-links {
        grid-template-columns: 1fr;
    }
}





/* FAQ Section with Dunes Motel Hillsboro Theme */
.faq-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0.65)); /* Soft warm cream gradient */
    color: #4a2a00; /* Dark brown */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: #b23a2a80; /* Burnt orange bubble with transparency */
    border-radius: 50%;
    opacity: 0.12;
    z-index: 0;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffbf00; /* Burnt orange */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
}

.faq-subtitle {
    font-size: 1.4rem;
    color: #7a4223; /* Medium warm brown */
    margin-bottom: 50px;
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
}

.faq-item {
    background: #fff8e1; /* Light cream */
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #ffd57a; /* Soft gold border */
    box-shadow: 0 10px 25px rgba(178, 58, 42, 0.1); /* Soft burnt orange shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(178, 58, 42, 0.2);
}

.faq-item h2 {
    font-size: 1.8rem;
    color: #b23a2a; /* Burnt orange */
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffbf00; /* Gold accent */
}

.faq-item p {
    font-size: 1.1rem;
    color: #4a2a00; /* Dark brown */
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-item a {
    color: #b23a2a; /* Burnt orange */
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.faq-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700; /* Bright gold underline */
    transition: width 0.3s ease;
}

.faq-item a:hover {
    color: #7a2600; /* Darker burnt orange */
}

.faq-item a:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .faq-list {
        grid-template-columns: 1fr;
    }

    .faq-title {
        font-size: 2.5rem;
    }

    .faq-item h2 {
        font-size: 1.6rem;
    }

    .faq-item p {
        font-size: 1rem;
    }
}








  .sitemap-wrapper {
    background: #66bdf5;
    padding: 40px 20px;
    border-radius: 15px;
    margin: 40px auto;
    max-width: 1100px;
  }

  .sitemap-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
  }

  .sitemap-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    flex: 1 1 45%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .sitemap-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .sitemap-box li {
    margin-bottom: 20px;
  }

  .sitemap-box a {
    text-decoration: none;
    font-size: 1.2rem;
    color: #333;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
  }

  .sitemap-box a:hover {
    color: #ff6600;
  }

  .sitemap-box i {
    color: #ff6600;
    font-size: 1.3rem;
    margin-right: 12px;
    width: 25px;
    text-align: center;
  }

  @media (max-width: 768px) {
    .sitemap-container {
      flex-direction: column;
    }
  }
  
  .inner-reservation-section {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  background:#eaf6ff;
}

.inner-reservation-container {
  width: 100%;
  max-width: 1300px;
  padding: 30px;
  background: #434343db;
  border: 2px solid #526e9f6e;
  border-radius: 20px;
}

.inner-reservation-form {
  width: 100%;
}

.inner-form-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: end;
}

.inner-form-group {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
}

.inner-form-group label {
  font-size: 15px;
  color: #fff;
  margin-bottom: 5px;
  font-weight: bold;
}

.inner-form-group select,
.inner-form-group input[type="date"] {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #FFD700;
  border-radius: 8px;
  background-color: #ffffff;
  color: #002b64;
}

/* Button Styling */
.inner-check-availability-btn {
  padding: 12px 20px;
  background-color: #e51919;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  transition: 0.3s ease all;
}

.inner-check-availability-btn:hover {
  background-color: #FF5722;
  box-shadow: 0 12px 25px rgba(255, 87, 34, 0.4);
}

/* Responsive - stack fields on small screens */
@media (max-width: 991px) {
  .inner-form-row {
    flex-direction: column;
    align-items: stretch;
  }

  .inner-form-group {
    width: 100%;
  }

  .inner-check-availability-btn {
    width: 100%;
  }
}




.custom-map-pin {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 40px;
  height: auto;
  animation: bounce 1.2s infinite;
  z-index: 10;
}

@keyframes bounce {
  0%, 100% {
    transform: translate(-50%, -100%) scale(1);
  }
  50% {
    transform: translate(-50%, -110%) scale(1.1);
  }
}






.lowercase-paragraph {
  font-size: 18px;
  color: #444;
  text-transform: capitalize; /* This capitalizes first letter of every word */
}
