/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set the font globally */
body, html {
    font-family: 'Roboto', sans-serif;
}



.form
{
   width: 100%;
}


/* Main Form Styling */
.agileits_reservation {
    background-color: #ffdd00; /* Yellow background */
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Input Field Styling */
.agileits_reservation .book_date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1 1 15%; /* 15% width for each field to show in one line */
    position: relative;
}

/* Input Fields (Check-In, Check-Out, etc.) */
.agileits_reservation input[type="text"],
.agileits_reservation select {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #fff;
    margin-bottom: 10px;
}

/* Focus effect on input fields */
.agileits_reservation input[type="text"]:focus,
.agileits_reservation select:focus {
    outline: none;
    border-color: #0066b3; /* Focused border color */
}

/* Placeholder styling */
.agileits_reservation input[type="text"]::placeholder {
    color: #aaa;
}

/* Calendar Icon Inside Input */
.agileits_reservation .book_date span em.bi-calendar-fill {
    font-size: 18px;
    color: #0066b3; /* Calendar icon color */
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* Custom Dropdown Arrow Inside Select */
.agileits_reservation select {
    appearance: none;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/4/47/Down_Arrow_Icon.svg/500px-Down_Arrow_Icon.svg.png');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    padding-right: 35px; /* Adjust padding for icon space */
}

/* Book Now Button Styling */
.agileits_reservation .booknowtrack {
    background-color: #0066b3;
    color: white;
    padding: 12px 30px;
    font-weight: bold;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex: 1 1 20%; /* Button gets 20% width */
    margin-top: 20px;
}

.agileits_reservation .booknowtrack:hover {
    background-color: #00509e;
}

/* Media Query for Mobile and Tablets */
@media (max-width: 768px) {
    /* Stacking form fields vertically for smaller screens */
    .agileits_reservation {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .agileits_reservation .book_date {
        width: 100%;
        flex: 1;
    }

    .agileits_reservation .booknowtrack {
        width: 100%;
    }

    /* Input Fields */
    .agileits_reservation input[type="text"],
    .agileits_reservation select {
        font-size: 12px; /* Smaller font size for mobile */
        padding: 8px;
    }

    .agileits_reservation .book_date span em.bi-calendar-fill {
        font-size: 16px;
    }

    .agileits_reservation .booknowtrack {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* Media Query for Smaller Mobile (max-width: 375px) */
@media (max-width: 375px) {
    .agileits_reservation input[type="text"],
    .agileits_reservation select {
        font-size: 12px;
        padding: 8px;
    }

    .agileits_reservation .booknowtrack {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* Custom Grid System */
.col-lg-2 {
    width: 16.6667%!important; /* 2 out of 12 columns for large screens */
    padding: 0 15px; /* Add horizontal padding if necessary */
	float:left;
}

/*
.col-sm-4 {
    width: 33.3333%!important; /* 4 out of 12 columns for medium screens */
    padding: 0 15px; /* Add horizontal padding if necessary */
}*/

/*
.col-xs-12 {
    width: 100% !important;
    padding: 0 15px;
}

/*

/* Media Queries for Responsive Design */
@media (max-width: 1199px) {
    /* For medium screens (between 576px and 1199px), col-sm-4 will be active */
    .col-sm-4 {
        width: 33.3333%; /* 4 columns for small screens */
    }
}

@media (max-width: 1024px) {
	
	.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 130px !important;
    width: 100%;
}

.header {
    background-color: #fff;
    padding: 15px 10px!important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 2px -2px gray;
}

.nav {
    display: flex;
    gap: 21px!important;
    justify-content: flex-end;
}

.phone-btn {
    background-color: #0066b3;
    color: #fff;
    /*padding: 10px 11px!important;*/
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    /*font-size: 15px!important;*/
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 215px;
    width: auto;
    margin-left: 0px!important;
}

.phone-btn .phone-icon {
    margin-right: 0px!important;
    font-size: 20px!important;
}

}


@media (max-width: 767px) {
    /* For extra small screens (less than 576px), col-xs-12 will be active */
    .col-xs-12 {
        width: 100%; /* Full width for small devices */
    }
}




/* Header Styling */
.header {
    background-color: #fff;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 2px -2px gray;
}

/* Container for the header content */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center; /* Center align the logo */
    max-width: 180px; /* Max width for the logo */
    width: 100%; /* Make sure logo scales within the container */
}

/* Logo Styling */
.logo img {
    width: 100%; /* Ensure the logo scales within the container */
    max-width: 180px; /* Max width of the logo */
    height: auto; /* Maintain the aspect ratio */
}

/* Navigation Menu Styling */
.nav {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
    z-index: 99999;
    margin-top: 30px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s;
}

/* Style for the active navigation link */
.nav a.active {
    color: #f7901e; /* A highlight color, like Wyndham's orange */
    font-weight: bold;
    text-decoration: none;
}

.nav a:hover {
    color: #c79568;
}

/* Dropdown Menu Styling */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    font-size: 18px;
    color: #333;
    padding: 12px 20px;
    border: none;
    background-color: inherit;
    cursor: pointer;
    font-weight: 500;
}

.dropbtn:hover {
    color: #c79568;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 251px;
    z-index: 1;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Phone Button Styling */
.phone-btn {
    background-color: #0f2b40;
    color: #fff;
    padding: 10px 10px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 250px;
    width: auto;
    margin-left: 20px; /* Ensure space between phone button and other elements */
}

.phone-btn .phone-icon {
    margin-right: 0px;
    font-size: 20px;
}

.phone-btn:hover {
    background-color: #00509e;
}

/* Hamburger Icon for Mobile */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* Calendar Date Picker Styling */
input[type="date"] {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 15px; /* Spacing between fields */
    background-color: #fff;
}

input[type="date"]:focus {
    outline: none;
    border-color: #0066b3; /* Focused border color */
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background-color: #0066b3; /* Calendar icon color */
}

/* SLIDER WRAPPER */
.slider-container {
    position: relative;
    width: 100%;
    height: 70vh;             /* FIXED HEIGHT FOR ALL DEVICES */
    max-height: 700px;
    overflow: hidden;
}

/* SLIDER TRACK */
.slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

/* EACH SLIDE */
.slide {
    min-width: 100%;          /* FIXED — 1 full slide width */
    height: 100%;
    position: relative;
}

/* SLIDE IMAGES - 100% COVER */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* Fills entire slider perfectly */
}

/* CAPTION */
.caption {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.45);
    padding: 12px 25px;
    border-radius: 8px;
    text-align: center;
}

.caption h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

/* NAV BUTTONS */
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 20;
}

.slider-controls button {
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 24px;
    padding: 12px 16px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.slider-controls button:hover {
    background: rgba(0,0,0,0.75);
}

/* RESPONSIVE — SMALL DEVICES */
@media (max-width: 768px) {
    .slider-container {
        height: 55vh;
    }
    .caption h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 45vh;
    }
    .caption {
        width: 90%;
        padding: 10px;
    }
    .caption h2 {
        font-size: 18px;
    }
    .slider-controls button {
        font-size: 18px;
        padding: 8px 12px;
    }
}

/* Mobile and Tablet Media Queries */
@media (max-width: 768px) {
    /* Header adjustments */
    .header {
        padding: 10px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 4px 2px -2px gray;
    }

    /* Navigation Menu */
    .nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 20px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav a {
        padding: 12px 20px;
        width: 100%;
        text-align: left;
    }

    /* Hamburger Icon */
    .hamburger {
        display: block;
        font-size: 30px;
        cursor: pointer;
    }

    /* Phone Button */
    .phone-btn {
        font-size: 12px;
        padding: 8px 0px;
        max-width: none;
        width: 40%;
        margin-top: 20px;
        font-weight: 600;
    }

    .phone-btn .phone-icon {
        font-size: 16px;
        margin-right: 6px;
    }

    .phone-btn span {
        font-size: 12px;
    }

    /* Logo */
    .logo {
        max-width: 150px;
        justify-content: flex-start;
    }

    .logo img {
        max-width: 100%;
        height: auto;
    }
}

/* Media Query for Mobile (max-width: 616px) */
@media (max-width: 616px) {
    .header {
        padding: 10px 20px;
    }

    .logo {
        max-width: 150px;
    }

    .hamburger {
        font-size: 26px;
    }

    .phone-btn {
        width: 60%;
        font-size: 14px;
    }
}

/* Media Query for Tablet (616px → 768px) */
@media (min-width: 616px) and (max-width: 768px) {
    /* Adjustments for this range */
    .logo {
        max-width: 180px;
    }

    .hamburger {
        font-size: 28px;
    }

    .phone-btn {
        width: 50%;
        font-size: 14px;
    }
}

/* Active State for Hamburger Menu */
.nav.active {
    display: flex;
}



/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set the font globally */
body, html {
    font-family: 'Roboto', sans-serif;
}

/* Main Form Styling */
.agileits_reservation {
    background-color: #f3793e; /* Yellow background */
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Input Field Styling */
.agileits_reservation .book_date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1 1 15%; /* 15% width for each field to show in one line */
    position: relative;
}

/* Input Fields (Check-In, Check-Out, etc.) */
.agileits_reservation input[type="text"],
.agileits_reservation select {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #fff;
    margin-bottom: 10px;
}

/* Focus effect on input fields */
.agileits_reservation input[type="text"]:focus,
.agileits_reservation select:focus {
    outline: none;
    border-color: #0066b3; /* Focused border color */
}

/* Placeholder styling */
.agileits_reservation input[type="text"]::placeholder {
    color: #aaa;
}

/* Calendar Icon Inside Input */
.agileits_reservation .book_date span em.bi-calendar-fill {
    font-size: 18px;
    color: #0066b3; /* Calendar icon color */
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* Custom Dropdown Arrow Inside Select */
.agileits_reservation select {
    appearance: none;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/4/47/Down_Arrow_Icon.svg/500px-Down_Arrow_Icon.svg.png');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    padding-right: 35px; /* Adjust padding for icon space */
}

/* Book Now Button Styling */
.agileits_reservation .booknowtrack {
    background-color: #0066b3;
    color: white;
    padding: 12px 30px;
    font-weight: bold;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex: 1 1 20%; /* Button gets 20% width */
    margin-top: 0px;
}

.agileits_reservation .booknowtrack:hover {
    background-color: #00509e;
}

/* Media Query for Mobile and Tablets */
@media (max-width: 768px) {
	
	
.horizontal-text.show-horizontal-text {
    display: block;
    padding: 15px;
    border-radius: 15px;
    /*flex: 1;*/
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
	padding:0px;
}
	
	
	
	
    /* Stacking form fields vertically for smaller screens */
    .agileits_reservation {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .agileits_reservation .book_date {
        width: 100%;
        flex: 1;
    }

    .agileits_reservation .booknowtrack {
        width: 100%;
    }

    /* Input Fields */
    .agileits_reservation input[type="text"],
    .agileits_reservation select {
        font-size: 12px; /* Smaller font size for mobile */
        padding: 8px;
    }

    .agileits_reservation .book_date span em.bi-calendar-fill {
        font-size: 16px;
    }

    .agileits_reservation .booknowtrack {
        font-size: 14px;
        padding: 10px 20px;
    }
	
	.col-sm-4 {
    width: 33.3333%!important; /* 4 out of 12 columns for medium screens */
    padding: 0 15px; /* Add horizontal padding if necessary */
}


    .phone-btn {
        width: 39%;
        font-size: 14px;
    }

}

/* Media Query for Smaller Mobile (max-width: 375px) */
@media (max-width: 375px) {
    .agileits_reservation input[type="text"],
    .agileits_reservation select {
        font-size: 12px;
        padding: 8px;
    }

    .agileits_reservation .booknowtrack {
        font-size: 14px;
        padding: 10px 20px;
    }
	
	.col-xs-12 {
    width: 100% !important;
    padding: 0 15px;
}
.caption h2 {
    font-size: 14px;
    margin-bottom: 0px;
    font-weight: 700;
}
.caption {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 9px;
    border-radius: 5px;
    width: 60%;
    max-width: 400px;
    text-align: center;
    bottom: 10px;
}

    .logo {
        max-width: 100px;
    }
	
	    .phone-btn {
        width: 60%;
        font-size: 12px;
        margin-right: 9px;
    }
	
	    .phone-btn .phone-icon {
        font-size: 16px;
        margin-right: 0px;
    }
}





/* Hotel Section Styling */
.hotel-section {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    background-color: #f9f7f1;
    gap: 30px;
	
	    position: relative;
    z-index: 1;
    background: no-repeat url(images/body-bg.png);
    background-attachment: fixed !important;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
}

.hotel-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hotel-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.hotel-right {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hotel-right h1 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
	text-align:Center;
}

.hotel-right h2 {
    font-size: 28px;
    font-weight: 600;
    color: #0066b3;
    margin-bottom: 20px;
}

.hotel-right p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.hotel-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.stat-box {
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
}

.stat-box span {
    font-size: 24px;
    font-weight: bold;
    color: #0066b3;
    display: block;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 16px;
    color: #333;
}

.hotel-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hotel-benefits li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.hotel-benefits li::before {
    content: '✔️';
    margin-right: 10px;
    color: #0066b3;
}

@media (max-width: 768px) {
    .hotel-section {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .hotel-left,
    .hotel-right {
        width: 100%;
        text-align: center;
    }

    .hotel-right h1 {
        font-size: 28px;
    }

    .hotel-right h2 {
        font-size: 24px;
    }

    .hotel-stats {
        flex-direction: column;
        gap: 15px;
    }

    .stat-box {
        width: 80%;
    }

    .hotel-benefits ul {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .hotel-right h1 {
        font-size: 24px;
    }

    .hotel-right h2 {
        font-size: 20px;
    }

    .stat-box {
        padding: 15px;
    }

    .hotel-benefits li {
        font-size: 14px;
    }
}



/* Amenities Section Styling */
.amenities-section {
    text-align: center;
    padding: 50px;
    background-color: #f7f7f7;
}

.amenities-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.amenities-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

/* Grid Layout for Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three columns by default */
    gap: 20px;
    padding: 20px;
    margin: 0 auto;
}


/* Individual Amenity Box */
.amenity-box {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	
	
	
		    position: relative;
    z-index: 1;
    background: no-repeat url(images/amy-box.png);
    background-attachment: fixed !important;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
	
	
}

.amenity-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


.amenity-icon {
    font-size: 40px;
    color: #0077cc;
    margin-bottom: 15px;
}

/* Icon Styling */
.amenity-icon i {
    font-size: 40px;
    margin-bottom: 20px;
    color: #fff; /* Icon color */
}

/* Title Styling */
.amenity-box h3 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

/* Description Styling */
.amenity-box p {
     font-size: 17px;
    color: #fff;
}


/* Media Query for Tablet and Mobile Devices */
@media (max-width: 768px) {
	
	  .amenities-grid {
        grid-template-columns: 1fr 1fr; /* Two columns for smaller screens */
    }
	
	
    /* Stacking form fields vertically for smaller screens */
    .amenities-section {
        padding: 40px 20px; /* Add padding for smaller screens */
    }

    .amenities-section h2 {
        font-size: 30px;
    }

    .amenities-section p {
        font-size: 14px;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 items per row on smaller screens */
    }

    .amenity-box h3 {
        font-size: 20px;
    }

    .amenity-box p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr; /* One column for mobile screens */
    }
}

/* Media Query for Smaller Mobile (max-width: 375px) */
@media (max-width: 375px) {
    .amenities-section h2 {
        font-size: 26px;
    }

    .amenities-section p {
        font-size: 12px;
    }

    .amenities-grid {
        grid-template-columns: 1fr; /* 1 item per row for small mobile screens */
    }

    .amenity-box h3 {
        font-size: 18px;
    }

    .amenity-box p {
        font-size: 12px;
    }
}

0/* ============================
   SECTION STYLING
============================ */
#nearby-attractions {
    background: #0f1115;
    padding: 80px 0;
    color: #fff;
	
}

.nearby-attractions

{

		    position: relative;
    z-index: 1;
    background: no-repeat url(images/attraction.jpg);
    background-attachment: fixed !important;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
	padding-top: 20px;
    padding-bottom: 40px;
	
	
}
.amy-Box{
	
	    position: relative;
    z-index: 1;
    background: no-repeat url(images/amy-box.png);
    background-attachment: fixed !important;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
}
	
}	
	

.section-wrapper {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}

/* Heading */
.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-head h2 {
    font-size: 42px;
    font-weight: 700;
	color: #fff;
}

.underline {
    width: 80px;
    height: 3px;
    background: #d9a35c;
    margin: 15px auto 20px;
}

.section-head p {
    color: #fff;
    font-size: 18px;
}

/* ============================
   GRID
============================ */
.attraction-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ============================
   FLIP CARD
============================ */
.flip-card {
    background: transparent;
    perspective: 1000px;
    height: 330px;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s ease;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

/* FRONT */
.flip-front {
    background: linear-gradient(135deg, #b57b42, #8b562e);
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.flip-front .icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.flip-front h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.distance {
    font-size: 15px;
    opacity: 0.8;
}

/* BACK */
.flip-back {
    background: #1c1f24;
    border: 1px solid #b57b42;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotateY(180deg);
    backface-visibility: hidden;
}

.flip-back h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.flip-back p {
    color: #cfcfcf;
    margin-bottom: 20px;
}

/* BUTTON */
.btn {
    background: #d9a35c;
    color: #000;
    padding: 10px 18px;
    display: inline-block;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #fff;
    color: #000;
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 1024px) {
    .attraction-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .attraction-grid {
        grid-template-columns: 1fr;
    }

    .flip-card {
        height: 300px;
    }
}


/* =========================
   SECTION STYLING
========================= */
/* =========================
      MODAL STYLES
========================= */
/* =========================
      MODAL STYLES
========================= */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8); /* Black background with opacity */
    padding-top: 60px;
    text-align: center;
}

.modal-content {
    max-width: 90%;
    max-height: 80%;
    margin: auto;
    display: block;
    transition: transform 0.25s ease;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: #f1f1f1;
    text-decoration: none;
    cursor: pointer;
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    font-size: 30px;
    color: #fff;
    background-color: rgba(0,0,0,0.6);
    border: none;
    padding: 16px;
    cursor: pointer;
    z-index: 10;
    transform: translateY(-50%);
}

.prev-btn:hover,
.next-btn:hover {
    background-color: rgba(0,0,0,0.8);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

#caption {
    color: #ccc;
    font-size: 18px;
    padding: 10px 0;
}


/* =========================
      EXISTING STYLES
========================= */
.gallery-section {
    padding: 80px 0;
    background: #faf5ef;
    text-align: center;
}

.gallery-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}

.gallery-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
}

.underline {
    width: 80px;
    height: 3px;
    background: #d9a35c;
    margin: 15px auto 20px;
}

.gallery-subtitle {
    color: #555;
    font-size: 18px;
    margin-bottom: 50px;
}

/* =========================
      GRID
========================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* =========================
      IMAGE ZOOM EFFECT
========================= */
.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.gallery-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* Zoom Animation */
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.15); /* ZOOM-IN */
}
.gallery-caption {
    padding: 12px 15px;
    font-size: 15px;
    color: #222;
    text-align: left;
}

/* =========================
      RESPONSIVE
========================= */

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .gallery-image {
        height: 220px;
    }
}


/* ========== Section Base ========== */
.visit-section {
    padding: 70px 0;
    background: #faf7f2;
    text-align: center;
	
	
	
	    position: relative;
    z-index: 1;
    background: no-repeat url(images/body-bg.png);
    background-attachment: fixed !important;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 20px;
    padding-bottom: 40px;
}

.visit-title {
    font-size: 36px;
    font-weight: 700;
}

.visit-underline {
    width: 70px;
    height: 3px;
    background: #c39559;
    margin: 10px auto 40px;
}

/* ========== Two Box Layout ========== */
.visit-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.visit-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    text-align: left;
}

/* MEDIA AREA (MAP / VIDEO) */
.visit-media {
    width: 100%;
    height: 330px;
    background: #ddd;
}

.visit-media iframe {
    width: 100%;
    height: 100%;
}

/* CONTENT AREA */
.visit-content {
    padding: 20px 25px;
}

.visit-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.visit-content p {
    font-size: 15px;
    margin-bottom: 6px;
    color: #444;
}

/* BUTTON */
.visit-btn {
    display: inline-block;
    background: #f3793e;
    color: #fff;
    padding: 10px 22px;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 10px;
    transition: 0.3s;
	
}

.visit-btn:hover {
    background:#1abeff;
}

/* ========== Contact Box ========== */
.contact-box {
    margin: 40px auto 0;
    padding: 30px 40px;
    background: linear-gradient(to right, #b37b4c, #714e2a);
    color: #fff;
    border-radius: 12px;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.contact-box h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-box p {
    margin: 5px 0;
    font-size: 15px;
}

.contact-box i {
    margin-right: 8px;
}

/* Right side hours */
.contact-right span {
    float: right;
    color: #ffe7c2;
}

/* Responsive */
@media (max-width: 991px) {
    .visit-grid {
        grid-template-columns: 1fr;
    }

    .contact-box {
        flex-direction: column;
        text-align: left;
    }

    .contact-right span {
        float: none;
        display: block;
        margin-top: 3px;
    }
}



/* ================= FOOTER BASE ================= */
.footer {
    background: #0f2b40;
    color: #d6d2cc;
    padding: 60px 20px 75px;
    font-family: 'Roboto', sans-serif;
}

.footer-container {
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.footer-social

{
	text-align:Center;
	
}

.footer-col h3,
.footer-col h4 {
    color: #f3793e;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 28px;
}

.footer-about p {
    max-width: 260px;
    line-height: 1.5;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #d6d2cc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #c49b63;
}

/* Contact Text */
.footer-contact p {
    margin: 5px 0;
}

/* Social Icons */
.footer-social a {
    color: #d6d2cc;
    font-size: 18px;
    margin-right: 15px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #ffffff;
}

/* Divider Line */
.footer-line {
    border: 0;
    border-top: 1px solid #1e242d;
    margin: 30px 0;
}

/* Bottom Row */
.footer-bottom {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #c5c1bb;
}

.footer-links
{
	width:100%;
	
}

.footer-links a {
    color: #c49b63;
    text-decoration: none;
    font-size: 14px;
    margin: 0 5px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        margin-bottom: 20px;
    }
}

/* ================= BACK TO TOP BUTTON ================= */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #c49b63;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 22px;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    z-index: 999;
}

.back-to-top:hover {
    background: #a67c45;
}


/* Quick Links Heading */
.quick-links h4 {
    font-size: 26px;
    color: #3da7e5;       /* same blue as screenshot */
    margin-bottom: 20px;
}

/* Grid layout for 2 columns */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* List styling */
.quick-links-grid ul {
    list-style: none;
    padding-left: 0;
}

.quick-links-grid ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}

/* Bullet dots */
.quick-links-grid ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -1px;
    color: #8a8a8a;
    font-size: 18px;
}

/* Link styling */
.quick-links-grid ul li a {
    color: #d6d2cc;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.quick-links-grid ul li a:hover {
    color: #c49b63;
}

/* Responsive */
@media (max-width: 600px) {
    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* Section Container */
.footer-col.quick-links {
    width: 100%;
    max-width: 600px;              /* Keeps size stable on desktop */
    margin: auto;
}

/* Title */
.quick-links h4 {
    font-size: 28px;
    color: #f3793e;
    margin-bottom: 25px;
    font-weight: bold;
}

/* 2 Column Grid */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 27px;
}

/* List reset */
.quick-links-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
	
}

/* Each item */
.quick-links-grid ul li {
    margin-bottom: 14px;
    position: relative;
    padding-left: 16px;
	    width: 100%;
}

/* Bullet dots */
.quick-links-grid ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #b0b0b0;
    font-size: 20px;
}

/* Links */
.quick-links-grid ul li a {
    color: #d6d2cc;
    text-decoration: none;
    font-size: 17px;
    transition: 0.3s ease;
}

.quick-links-grid ul li a:hover {
    color: #c49b63;
}

/* -------------- RESPONSIVE BREAKPOINTS -------------- */

/* Tablet View */
@media (max-width: 992px) {
    .quick-links h4 {
        font-size: 26px;
    }
    .quick-links-grid {
        gap: 30px;
    }
    .quick-links-grid ul li a {
        font-size: 16px;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .footer-col.quick-links {
        max-width: 100%;
        padding: 0 20px;
    }
    .quick-links h4 {
        font-size: 24px;
    }
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobile Portrait (PERFECT SIZE) */
@media (max-width: 480px) {
    .quick-links-grid {
        grid-template-columns: 1fr;   /* Single column */
        gap: 20px;
    }
    .quick-links h4 {
        font-size: 22px;
    }
    .quick-links-grid ul li a {
        font-size: 15px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .quick-links h4 {
        font-size: 20px;
    }
    .quick-links-grid ul li {
        margin-bottom: 10px;
    }
}



.more-content-section {
    margin-top: 20px;
}

.extra-text {
    display: none;
    margin-bottom: 15px;
    color: #444;
    line-height: 1.6;
}

.extra-text.show-text {
    display: block;
}

.readMoreBtn {
    background-color: #f3793e;
    color: #fff;
    padding: 10px 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
}

.readMoreBtn:hover {
    background-color: #1abeff;
}

/* Horizontal Layout for Read More Section */
.horizontal-read-more-section {
    /*margin-top: 30px;*/
	
	/*display: flex;*/
    justify-content: space-between;
    padding: 40px;
    background-color: #f9f7f1;
    gap: 30px;
    position: relative;
    z-index: 1;
    background: no-repeat url(images/body-bg.png);
    background-attachment: fixed !important;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
}
.hori-head
{
	font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.horizontal-content-box {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.horizontal-text {
    display: none;
    margin-bottom: 10px;
    width: 45%;
    color: #444;
    line-height: 1.6;
}

.horizontal-text.show-horizontal-text {
    display: block;
	    background: #ffffff;
    padding: 15px;
    border-radius: 15px;
}

}

.horizontal-btn {
    background-color: #2ecc71;
    color: #fff;
    padding: 10px 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
}

.horizontal-btn:hover {
    background-color: #1abeff;
}



    /* Main Attraction Grid Layout */
    .attraction-grid {
        display: flex;
        gap: 20px;
        justify-content: space-between;
        padding: 0 20px; /* Padding for left and right sides */
        flex-wrap: wrap;
    }

    /* Divider Box Style (50% width on larger screens, 100% on mobile) */
    .divider-box {
        width: 48%; /* Each box takes 50% of the row on larger screens */
        padding: 20px;
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        background-color: #f9f9f9;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
		
		
		    position: relative;
    z-index: 1;
    background: no-repeat url(images/body-bg.png);
    background-attachment: fixed !important;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
	
	
    }

    .divider-box:hover {
        transform: translateY(-5px);
    }

    .divider-box h3 {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 15px;
        color: #333;
    }

    /* Attraction List Style */
    .divider-box ul {
        list-style-type: none;
        padding: 0;
    }

    .divider-box li {
        margin-bottom: 20px;
        padding: 15px;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
    }

    .divider-box li:hover {
        transform: translateY(-5px);
        background-color: #f1f1f1;
    }

    /* Icon Style */
    .divider-box .icon {
        font-size: 30px;
        margin-bottom: 10px;
        color: #f3793e;
    }

    .divider-box h4 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #333;
    }

    .divider-box p {
        font-size: 14px;
        color: #777;
        margin-bottom: 10px;
    }

    .divider-box .btn {
        background-color: #f3793e;
        color: #fff;
        padding: 10px 20px;
        text-decoration: none;
        border-radius: 5px;
        font-size: 14px;
        display: inline-block;
        transition: background-color 0.3s ease;
    }

    .divider-box .btn:hover {
        background-color: #1abeff;
    }

    /* Media Query for Mobile (100% width for boxes) */
    @media screen and (max-width: 768px) {
        .divider-box {
            width: 100%; /* Each box takes 100% width on mobile */
        }
    }
	
.ada-st {
    padding: 1em;
    text-align: center;
    background: #0065b1;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

.phone-ada
{
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}
	
	
.cookie-banner {
        position: fixed;
        bottom: 0; left: 0; right: 0;
        background: #f3793e;
        color: #fff;
        padding: 10px 20px;
        font-size: 15px;
        z-index: 9999;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
        display: flex;
        justify-content: center;
        align-items: center;
    }
.cookie-content {max-width:1200px; width:100%; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:15px;}
.cookie-text a {color:#fff; text-decoration:underline;}
.cookie-accept {background:#004d40; color:#fff; border:none; padding:8px 24px; border-radius:4px; cursor:pointer; font-weight:600;}
@media (max-width:640px) {
	.cookie-content{flex-direction:column; text-align:center;} .cookie-accept{width:100%; max-width:200px;}}

.hone-link
{
	color:#fff;
}

.h1-title
{
	    font-size: 28px;
    font-weight: 600;
    color: #0066b3;
    margin-bottom: 20px;
	    text-decoration: none;
    text-align: center;
    margin: 0 auto;
	
}

.more-txt

{
	font-size:20px;
	color:#0066b3;
}

.phone-link

{
		color:#d6d2cc;
		text-decoration:none;
}

.footer-schema-Text
{
	font-size: 24px; 
	font-weight: 700;
    color: #d6d2cc;
	text-decoration:none;
	
}
/* ===== INNER HERO SECTION ===== */
.inner-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

/* Hero image background */
.hero-image {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Caption Styling */
.hero-caption {
  position: absolute;
  text-align: center;
  color: #ffffff;
  z-index: 0;
  padding: 20px;
  
}

/* Clean & No Box Background */
.caption-bg {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

/* ===== HEADLINE ===== */
.hero-caption h2 {
  font-size: 62px;
   
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: 1px;

  /* Updated shadow using Howard Johnson Blue (#1B4C9A) tone */
  text-shadow: 0 6px 16px rgba(27, 76, 154, 0.65);

  position: relative;
  animation: titleFloat 1.6s ease;
}

@keyframes titleFloat {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== ORANGE UNDERLINE (#F58220) ===== */
.hero-caption h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #F58220;
  border-radius: 3px;
  opacity: 0.95;
}

/* ===== SUBTEXT ===== */
.hero-caption p {
  font-size: 22px;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 30px;

  /* Blue subtle soft shadow */
  text-shadow: 0 4px 12px rgba(27, 76, 154, 0.55);

  animation: fadeInText 1.8s ease forwards;
}

@keyframes fadeInText {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SOFT GRADIENT BEHIND TEXT ===== */
.hero-caption::before {
  content: "";
  position: absolute;
  inset: -40px 0 0 0;

  /* Blue-tinted gradient instead of pure black */
  background: radial-gradient(
    circle at center,
    rgba(27, 76, 154, 0.40) 15%,
    transparent 100%
  );

  z-index: -1;
  opacity: 0.7;
  pointer-events: none;
}

/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {
  .hero-caption h2 { font-size: 36px; }
  .hero-caption p { font-size: 16px; }
  .inner-hero { height: 60vh; }
}

@media (max-width: 480px) {
  .hero-caption h2 { font-size: 30px; }
  .hero-caption p { font-size: 14px; }
}






/* ===== Popular Facilities Section ===== */
.popular-facilities-section {
  background: #f4f8ff;
  padding: 40px 20px;
  position: relative;
}

.popular-facilities-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading Style */
.popular-facilities-header {
  text-align: center;
  margin-bottom: 50px;
}

.facilities-intro-label {
  font-size: 18px;
  font-weight: 600;
  color: #1B4C9A;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.facilities-main-heading {
  font-size: 46px;
  color: #1B4C9A;
  font-weight: 700;
  margin-top: 10px;
 
}

.hotel-address {
  font-size: 16px;
  color: #444;
  margin-top: 5px;
}

.facilities-heading-underline {
  height: 3px;
  width: 80px;
  background-color: #F58220;
  margin: 18px auto;
}

.facilities-subheading {
  font-size: 18px;
  color: #555;
  max-width: 1400px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Grid Layout */
.popular-facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Facility Card */
.facility-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border-top: 4px solid #F58220;
}

.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.facility-card em {
  font-size: 48px;
  color: #1B4C9A;
  margin-bottom: 18px;
}

.facility-card h3 {
  font-size: 20px;
  color: #1B4C9A;
  font-weight: 700;
  margin-bottom: 10px;
}

.facility-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .popular-facilities-section {
    padding: 60px 5%;
  }
  .facilities-main-heading {
    font-size: 34px;
  }
  .facility-card em {
    font-size: 42px;
  }
}


/* ===== Full Facilities Section ===== */
.full-facilities-section {
  padding: 40px 8%;
  
  background: #F4F4F4; /* Light gray background */
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

/* Container */
.full-facilities-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Heading */
.full-facilities-heading {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #0054A4; /* HoJo Blue */
  
  margin-bottom: 20px;
}

/* Divider */
.facilities-divider {
  width: 100px;
  height: 4px;
  background-color: #F57C00; /* HoJo Orange */
  margin: 16px auto 40px;
}

/* Grid */
.facility-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
  width: 100%;
}

/* Cards */
.facility-category {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Heading inside cards */
.facility-category h3 {
  font-size: 25px;
  color: #0054A4; /* HoJo Blue */
  margin-bottom: 14px;
  font-weight: 600;
  border-left: 4px solid #F57C00; /* Orange border */
  padding-left: 15px;
  
}

/* List */
.facility-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.facility-category ul li {
  font-size: 16px;
  color: #444; 
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
  line-height: 1.6;
}

.facility-category ul li::before {
  content: "•";
  color: #F57C00; /* Orange bullet */
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .full-facilities-section {
    padding: 60px 5%;
  }

  .full-facilities-heading {
    font-size: 30px;
  }

  .facility-grid-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
/* ===== Things to Do Section (Color Matched with Facilities) ===== */
.things-grid-section {
  background: #f4f8ff;
  padding: 60px 20px;
  border-radius: 18px;
}
.things-grid-wrap {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.things-grid-header .things-label {
  font-size: 18px;
  font-weight: 600;
  color: #1B4C9A;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.things-title {
  font-size: 46px;
  color: #1B4C9A;
  margin: 10px 0;
  font-weight: 700;
}
.things-underline {
  width: 80px;
  height: 3px;
  background: #F58220;
  margin: 18px auto 40px;
}
.facilities-subheading {
   font-size: 18px;
  color: #555;
  max-width: 1400px;
  margin: 0 auto;
  line-height: 1.7;
}
.things-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.things-item {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #F58220;
}
.things-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}
.things-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1B4C9A;
  margin-bottom: 8px;
}
.things-item p {
   font-size: 18px;
  color: #555;
  line-height: 1.6;
}
.things-img {
  height: 200px;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 10px;
}
.things-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.things-item:hover .things-img img {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .things-title { font-size: 34px; }
  .things-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
  .things-img { height: 160px; }
  .things-item h3 { font-size: 18px; }
}

/* ===== Nearby Highlights Section – Clean & Final (No font-family) ===== */
.nearby-highlights-section {
  background: rgba(255, 255, 255, 0.98);
  padding: 50px 20px;
}
.nearby-highlights-container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}
.nearby-highlights-title {
  font-size: 36px;
  font-weight: 700;
  color: #003087;
  margin-bottom: 12px;
}
.nearby-highlights-underline {
  width: 100px;
  height: 5px;
  background: #FF6200;
  margin: 0 auto 40px;
  border-radius: 3px;
}
.nearby-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}
.nearby-highlight-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-top: 5px solid #FF6200;
}
.nearby-highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.highlight-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #003087;
  background: #f8f9fa;
  padding: 16px 20px;
  margin: 0;
  text-align: left;
}
.highlight-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.highlight-card-list li {
  font-size: 17px;
  color: #333;
  padding: 12px 20px;
  border-bottom: 1px solid #eee;
  transition: background 0.2s;
}
.highlight-card-list li:last-child {
  border-bottom: none;
}
.highlight-card-list li:hover {
  background: #fff8f2;
  color: #003087;
}
@media (max-width: 768px) {
  .nearby-highlights-title { font-size: 30px; }
  .nearby-highlights-grid { gap: 20px; }
  .highlight-card-title { font-size: 20px; padding: 14px 16px; }
  .highlight-card-list li { font-size: 16px; padding: 10px 16px; }
}

.custom-location-header {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 60px 20px;
  backdrop-filter: blur(8px);
}

.custom-location-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #003087; /* Howard Johnson Deep Blue */
  margin-bottom: 20px;
  position: relative;
}

.custom-location-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: #FF6200; /* Howard Johnson Bright Orange */
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

.custom-location-description {
  
  line-height: 1.8;
   font-size: 18px;
  color: #555;
  max-width: 1400px;
  margin: 0 auto;
}
/* ===== Location Section Hero – Howard Johnson Blue & Orange Branding ===== */
.location-section-hero {
  background: #f8f9fa;
  padding: 20px 20px 60px;
}

.location-wrapper-hero {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  overflow: hidden;
  border-top: 6px solid #FF6200; /* HoJo Orange top accent */
}

.location-info-box {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coordinates-area,
.directions-area {
  background: #f5f9ff;
  padding: 24px;
  border-radius: 12px;
  border-left: 5px solid #FF6200; /* Orange accent */
  margin-bottom: 24px;
}

.coordinates-area h4,
.directions-area h4 {
  color: #003087;                 /* HoJo Deep Blue */
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.coordinates-area ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #333;
}

.coordinates-area ul li {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.directions-area form input {
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.directions-area form button {
  width: 100%;
  padding: 14px;
  background: #FF6200;            /* HoJo Orange */
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.directions-area form button:hover {
  background: #e55a00;
}

/* Map Box */
.location-map-box {
  flex: 1;
  min-width: 300px;
}

.location-map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .location-wrapper-hero {
    flex-direction: column;
  }
  .location-map-box iframe {
    min-height: 350px;
  }
}

/* Location Header – Howard Johnson Blue & Orange */
.custom-location-header {
  text-align: center;
  background: rgba(255, 255, 255, 0.98);
  padding: 60px 20px;
  backdrop-filter: blur(8px);
}

.things-grid-header .things-label {
  font-size: 18px;
  font-weight: 600;
  color: #003087;            /* HoJo Deep Blue */
  text-transform: uppercase;
  letter-spacing: 2px;
}

.things-title {
  font-size: 42px;
  font-weight: 700;
  color: #003087;            /* HoJo Deep Blue */
  margin: 12px 0 0;
}

.things-underline {
  width: 100px;
  height: 5px;
  background: #FF6200;       /* HoJo Orange */
  margin: 20px auto 40px;
  border-radius: 3px;
}

.custom-location-description {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  max-width: 1300px;
  margin: 0 auto;
}

/* Contact Header – Same HoJo Branding */
.custom-contact-header {
  text-align: center;
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
}

.custom-contact-header .things-grid-header .things-label {
  color: #003087;
}

.custom-contact-header .things-title {
  color: #003087;
}

.custom-contact-header .things-underline {
  background: #FF6200;
}

.custom-contact-description {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  max-width: 1240px;
  margin: 0 auto;
}

/* Mobile */
@media (max-width: 768px) {
  .things-title { font-size: 34px; }
  .custom-location-description,
  .custom-contact-description { font-size: 16px; }
}
/* 2. Main Contact Info Section – Howard Johnson Blue & Orange Branding */
.contact-section-hero {
  background: #f8f9fa;
  padding: 40px 20px 80px;
}

.contact-wrapper-hero {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  border-top: 6px solid #FF6200; /* HoJo Orange top accent */
}

.contact-info-box {
  flex: 1;
  min-width: 300px;
  padding: 50px 40px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-box p {
  font-size: 18px;
  color: #333;
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-details-area {
  background: #f5f9ff;               /* Light blue tint */
  padding: 28px;
  border-radius: 14px;
  border-left: 6px solid #FF6200;     /* HoJo Orange accent */
}

.contact-details-area h4 {
  color: #003087;                     /* HoJo Deep Blue */
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-details-area ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #333;
}

.contact-details-area ul li {
  margin-bottom: 14px;
  font-size: 17px;
}

.contact-details-area a {
  color: #003087;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-details-area a:hover {
  color: #FF6200;
}

/* Right Side Image */
.contact-image-box {
  flex: 1;
  min-width: 300px;
  overflow: hidden;
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-wrapper-hero {
    flex-direction: column;
  }
  .contact-image-box {
    min-height: 300px;
  }
  .contact-info-box {
    padding: 40px 30px;
  }
}
/* 📍 Howard Johnson Malden Sitemap Section – Blue & Orange Branding */
.sitemap-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa, #ffffff);
    text-align: center;
}

.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
}

.things-grid-header .things-label {
    font-size: 18px;
    font-weight: 600;
    color: #003087;                /* HoJo Deep Blue */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.things-title {
    font-size: 42px;
    font-weight: 700;
    color: #003087;                /* HoJo Deep Blue */
    margin: 12px 0 0;
}

.things-underline {
    width: 100px;
    height: 5px;
    background: #FF6200;           /* HoJo Orange */
    margin: 20px auto 50px;
    border-radius: 3px;
}

.sitemap-subtitle {
    font-size: 18px;
    color: #444;
    margin-bottom: 50px;
    line-height: 1.7;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.sitemap-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sitemap-block {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border-top: 5px solid #FF6200;  /* HoJo Orange accent */
}

.sitemap-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.14);
}

.sitemap-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-block ul li {
    margin-bottom: 18px;
}

.sitemap-block ul li a {
    font-size: 18px;
    color: #003087;                /* HoJo Deep Blue */
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sitemap-block ul li a em {
    margin-right: 12px;
    font-size: 1.1rem;
    color: #FF6200;                /* HoJo Orange */
}

.sitemap-block ul li a:hover {
    color: #FF6200;                /* Orange on hover */
}

/* Responsive */
@media (max-width: 1024px) {
    .sitemap-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .sitemap-links {
        grid-template-columns: 1fr;
    }
    .things-title {
        font-size: 34px;
    }
}

/* 🎯 FAQ Section – Howard Johnson Malden – Official Blue & Orange Branding */
.faq-section {
    padding: 80px 20px;
    background: #f8f9fa;
    text-align: center;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-title a {
    font-size: 42px;
    font-weight: 700;
    color: #003087;                    /* HoJo Deep Blue */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
    margin-top: 50px;
}

.faq-item {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    border-top: 5px solid #FF6200;      /* HoJo Orange accent */
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.14);
}

.faq-item h2 {
    font-size: 24px;
    font-weight: 700;
    color: #003087;                    /* HoJo Deep Blue */
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px dashed #FF6200; /* Orange dashed underline */
}

.faq-item p {
    font-size: 17px;
    color: #333;
    line-height: 1.75;
}

.faq-item a {
    color: #003087;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.faq-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: #FF6200;               /* HoJo Orange */
    transition: width 0.3s ease;
}

.faq-item a:hover {
    color: #FF6200;
}

.faq-item a:hover::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .faq-title a { font-size: 36px; }
    .faq-item h2 { font-size: 22px; }
}

@media (max-width: 768px) {
    .faq-title a { font-size: 32px; }
    .faq-item { padding: 24px; }
    .faq-item h2 { font-size: 20px; }
    .faq-item p { font-size: 16px; }
}

/* Attraction Section – Howard Johnson Malden – Official Blue & Orange */
.attraction-section {
  padding: 90px 20px;
  background: #f8f9fa;
  background-size: cover;
  color: #333;
}

.attraction-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
  gap: 60px;
}

.attraction-image {
  flex: 1 1 420px;
}

.attraction-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
  border-top: 6px solid #FF6200;      /* HoJo Orange accent */
}

.attraction-image:hover img {
  transform: scale(1.04);
}

.attraction-content {
  flex: 1 1 600px;
}

.attraction-heading {
  font-size: 42px;
  font-weight: 700;
  color: #003087;                     /* HoJo Deep Blue */
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.attraction-content p {
  font-size: 18px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 24px;
}

.book-now-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 16px 36px;
  background: #FF6200;                /* HoJo Orange */
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 17px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255,98,0,0.35);
  transition: all 0.3s ease;
}

.book-now-btn:hover {
  background: #e55a00;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255,98,0,0.45);
}

.book-now-btn:active {
  transform: translateY(1px);
}

/* Responsive */
@media (max-width: 992px) {
  .attraction-container {
    flex-direction: column;
    text-align: center;
  }
  .attraction-image {
    order: 2;
  }
  .attraction-content {
    order: 1;
  }
  .attraction-heading {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .attraction-heading {
    font-size: 32px;
  }
  .book-now-btn {
    padding: 14px 30px;
    font-size: 16px;
  }
}
.well{
	color:#000;
	text-decoration:none;
}