﻿ 
 
 /* Import Google Font - Adjusted for a clean, modern look */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Jost', sans-serif; /* Matches the modern, clean font of the logo */
}

/* Body Styling */
body {
    background: url('../images/texture.jpg') no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;
    color: #0A2A3A; /* Dark Navy Blue for better readability */
    line-height: 1.6;
    font-size: 16px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 15px;
     /* Deep navy blue for contrast */
}

/* H1 - Main Page Headings */
h1 {
    font-size: 40px;
    line-height: 1.3;
    text-transform: uppercase;
    text-align: center;
   /* Hotel-themed deep blue */
}

/* H2 - Section Titles */
h2 {
    font-size: 32px;
    line-height: 1.4;
    border-bottom: 3px solid #1B80A8; /* Teal Blue accent */
    display: inline-block;
    padding-bottom: 5px;
}

/* H3 - Subheadings */
h3 {
    font-size: 26px;
    font-weight: 500;
    /* Modern Blue */
}

/* Paragraph Styling */
p {
    font-size: 18px;
    font-weight: 400;
    /* Darker Blue for easy readability */
    margin-bottom: 15px;
}

/* Links */
a {
    color: #1B80A8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

a:hover {
    color: #007EA7; /* Lighter blue on hover */
}

/* Buttons */
.btn {
    display: inline-block;
    background: #007EA7;
    color: #ffffff;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background: #005F7F;
    color: #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

/* Lists */
ul {
    list-style-type: none;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 26px;
    }
    h3 {
        font-size: 22px;
    }
    body {
        font-size: 15px;
    }
}


 /* Top Bar Styling */
.top-bar {
    background: linear-gradient(rgba(0, 61, 165, 0.95), rgba(0, 86, 210, 0.95)), url('../images/texture.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 8px 0;
    font-size: 14px;
    width: 100%;
	z-index:9999;
}

/* Top Bar Container */
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Left, Center, Right Sections */
.top-left, .top-right, .top-center {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* Links & Icons */
.top-left a, .top-right a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 12px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 18px;
	 position: relative;
	  z-index: 99999;
}
.top-left a:hover, .top-right a:hover {
    color: #FFD200;
}
/* Social Icons */
.top-center {
	
    justify-content: center;
    width: 100%;
    margin-top: 5px;
}

.top-center a {
    font-size: 18px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.top-center a:hover {
    color: #fcb900;
    transform: scale(1.1);
}

.separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}
/* Mobile & Tablet Layout */
@media (max-width: 1040px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
        padding: 6px;
        gap: 3px;
    }

    .top-left {
        width: 100%;
        text-align: left;
        justify-content: flex-start;
        padding: 5px 10px;
    }

    .top-right {
        width: 100%;
        text-align: right;
        justify-content: flex-end;
        padding: 5px 10px;
    }

    .top-center {
        display: flex;
        justify-content: center;
        margin: 5px 0;
		
    }

    .separator {
        display: none;
    }
}

/* Extra Small Screens (393x852, 430x932, 538x1040, 820x1180) */
@media (max-width: 820px) {
    .top-bar {
        padding: 6px 8px;
        font-size: 13px;
    }

    .top-left, .top-right {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        padding: 5px 15px;
    }

    .top-left {
        text-align: left;
    }

    .top-right {
        text-align: right;
    }

    .top-center {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 6px;
    }

    .top-left a, .top-right a {
        font-size: 12px;
        margin-right: 6px;
    }
}

/* General Header Styles */
.site-header {
    background: linear-gradient(rgba(0, 61, 165, 0.95), rgba(0, 86, 210, 0.95));
    background-size: cover;
    background-position: center;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Header Container */
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* 🏷 Logo Container */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.85);
    padding: 5px 10px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    animation: heartbeat 3s infinite ease-in-out;
    max-width: 200px;
}

/* 🖼 Logo Image */
.logo img {
    height: 100px; /* Increased from 60px */
    width: auto;
    max-width: 100%;
    filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease, filter 0.3s ease;
}
/* ✨ Hover Effect */

.logo:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

/* 📱 Responsive Design */
@media (max-width: 820px) {
    .logo {
        padding: 4px 8px;
        max-width: 180px; /* Slightly smaller */
		
    }
    .logo img {
        height: 38px;
		
    }
}

@media (max-width: 538px) {
    .logo {
        padding: 3px 6px;
        max-width: 160px;
    }
    .logo img {
        height: 35px;
    }
}

@media (max-width: 430px) {
    .logo {
        padding: 3px 5px;
        max-width: 150px;
    }
    .logo img {
        height: 32px;
    }
}

@media (max-width: 393px) {
    .logo {
        padding: 2px 4px;
        max-width: 140px;
    }
    .logo img {
        height: 30px;
    }
}


/* Heartbeat Animation */
@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

/* Active Navigation Link */
.nav-link.active {
    color: #FFD200  !important; /* Gold */
    border-bottom: 3px solid #FFD200;
    padding-bottom: 3px;
}

/* Dropdown Menu Active */
.dropdown-menu .nav-link.active {
    color: #FFD700 !important;
}


/* Desktop Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 25px; /* Reduced gap for balance */
}

.main-nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #FFD200;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Main Link (Clickable) */
.dropdown-link {
    display: block;
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px;
    transition: color 0.3s ease;
}

.dropdown-link:hover {
    color: #FFD200;
}

/* Dropdown Menu (Hidden by Default) */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    background: rgba(0, 61, 165, 0.95);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-menu {
    display: block;

}

/* Dropdown Links */
.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 0.95rem;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
   background: #FFD200;
    color: #003DA5;
}


/* Contact / CTA Button */
.contact-btn {
    background: linear-gradient(135deg, #FFD200, #FFC300);
    color: #003DA5;
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.contact-btn:hover {
  transform: scale(1.08);
    background: linear-gradient(135deg, #FFC300, #FFD200);
    color: #003DA5;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icons a {
    color: #ffffff;
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #e6ff0d;
    transform: scale(1.1);
}

/* Hamburger Button */
.hamburger-menu {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #ffffff;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, #003DA5, #0056D2);
    color: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
}

.mobile-nav.active {
    display: flex;
}

/* Mobile Header with Logo and Close */
.mobile-header {
    position: absolute;
    top: 170px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 40px);
    background: transparent;
}

.mobile-header img {
    height: 100px;
    max-width: 180px;
}

.mobile-header .mobile-close {
    font-size: 1.6rem;
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-header .mobile-close:hover {
    color: #FFD200;
    transform: rotate(90deg);
}

/* Mobile Nav Links */
.mobile-nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 14px 0;
    text-align: center;
    width: 100%;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: #FFD200;
}

/* Optional: Smooth Fade In */
@media (max-width: 1024px) {
    .hamburger-menu {
        display: block;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
    .hamburger-menu {
        display: block;
    }
}

@media (max-width: 600px) {
    .contact-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    .hamburger-menu {
        font-size: 1.4rem;
    }
}
/* Mobile & Tablet Optimization */
@media (max-width: 1040px) {
    .site-header {
        padding: 10px 15px; /* Reduced padding for smaller screens */
        max-width: 100%; /* Ensures full width */
    }

    .logo {
        padding: 5px 10px; /* Adjusted for mobile */
    }

    .logo img {
        height: 40px; /* Reduced further for small screens */
    }

    .main-nav {
        display: none; /* Hide main nav on small screens */
    }

    .hamburger-menu {
        display: block;
        font-size: 1.8rem;
    }

    /* Mobile Navigation */
    .mobile-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px;
        z-index: 1000;
        transition: transform 0.3s ease-in-out;
    }

    .mobile-nav.active {
        display: flex;
    }

    .mobile-nav a {
        font-size: 1.2rem;
        padding: 10px 0;
    }

    /* Mobile Header Close Button */
    .mobile-header .mobile-close {
        font-size: 1.5rem;
    }

    /* Contact Button */
    .contact-btn {
        font-size: 0.9rem;
        padding: 7px 14px;
    }
}

/* Extra Small Screens (393x852, 430x932) */
@media (max-width: 600px) {
    .site-header {
        padding: 8px 12px;
    }

    .logo img {
        height: 35px;
    }

    .hamburger-menu {
        font-size: 1.6rem;
    }

    .mobile-nav a {
        font-size: 1rem;
    }

    .contact-btn {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}



.well5 {
    color: #e0f7f7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
	font-size: 18px;
}
.well5:hover {
	 color: #fff;
	 
}

.hero-slider-boutique {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.show {
  opacity: 1;
  z-index: 1;
}

.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 90%;
  gap: 40px;
  color: #fff;
  z-index: 2;
}

.hero-text {
  flex: 1;
  background: rgba(0, 61, 165, 0.8);
  padding: 30px 40px;
  border-radius: 10px;
  animation: fadeInLeft 1s ease;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-align:left;
  color: #FFD200;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  text-align:left;
  color: #fff;
}

.btn-hero {
  padding: 12px 30px;
  background: linear-gradient(135deg, #FFD200, #FFA500);
  color: #003DA5;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  
  transition: all 0.3s ease;
}

.btn-hero:hover {
  background: linear-gradient(135deg, #FFA500, #FFD200);
  color: #fff;
}

.hero-image {
  flex: 1;
  animation: fadeInUp 1s ease;
}

.hero-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 5px solid #FFD200;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  color: #003DA5;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  z-index: 10;
}

.arrow:hover {
  background: #FFD200;
}

.arrow.prev { left: 25px; }
.arrow.next { right: 25px; }

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-dots .dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
}

.hero-dots .dot.active {
  background: #FFD200;
}

/* Animations */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text {
    padding: 20px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-image img {
    width: 80%;
    margin-bottom: 20px;
  }
}

/* ✨ New Modern Animation Styles */
.animate-slide .hero-text {
  animation: fadeInUp 1s ease forwards;
}
.animate-slide .hero-image {
  animation: zoomIn 1.2s ease forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Optional: Delay inside text elements */
.hero-text h1 {
  animation-delay: 0.2s;
}

.hero-text p {
  animation-delay: 0.4s;
}

.hero-text .btn-hero {
  animation-delay: 0.6s;
}

/* Add initial state to prevent flicker */
.hero-text,
.hero-image {
  opacity: 0;
}




/* Accessibility Assistance Section */
.accessibility-assistance p {
    color: #ffffff;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px;
    border-top: 2px solid #003DA5; /* Deep Blue from Logo */
    position: relative;
    background: rgba(0, 0, 0, 0.7);
}



.accessibility-assistance p {
    position: relative;
    z-index: 2;
    margin: 0;
}

/* Contact Number Styling */
.accessibility-assistance a {
    color: #FFD200; /* Gold from Logo */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.accessibility-assistance a:hover {
    color: #F39200; /* Warm Orange */
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .accessibility-assistance p {
        font-size: 1rem;
        padding: 12px;
    }
}





/* Reservation and About Section Styling */
.reservation-and-about {
    display: flex;
    align-items: flex-start;
    padding: 60px 5%;
    background: linear-gradient(to bottom, #ffffff, #f2f6fb);
    gap: 40px;
    flex-wrap: wrap; /* This ensures content wraps on smaller screens */
}

.container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}
/* Reservation Box */
.reservation-box {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    flex: 1 1 350px;
    max-width: 400px;
    align-self: flex-start;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #DCE3F2;
	text-align:center;
}

.reservation-box h2 {
    font-size: 1.8rem;
    color: #0047AB;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 0.9rem;
    color: #1C1F2A;
    margin-bottom: 5px;
    font-weight: 500;
}

input,
select {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #DCE3F2;
    border-radius: 5px;
    background-color: #fff;
    color: #1C1F2A;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
select:focus {
    border-color: #FFD200;
    box-shadow: 0 0 5px rgba(255, 210, 0, 0.4);
    outline: none;
}

.book-now-btn {
    background: #FFD200;
    color: #003DA5;
    padding: 12px 20px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    text-align: center;
}

.book-now-btn:hover {
    background: #F39200;
    color: #fff;
    border-color: #F39200;
}

/* About Section */
.about-section {
    flex: 2;
    padding: 20px;
}

.about-section h2 {
    font-size: 1.5rem;
    color: #FFD200;
    margin-bottom: 15px;
}

.about-section h1 {
    font-size: 2.5rem;
    color: #0047AB;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 1px 1px 2px #E0E8F5;
    text-align: left;
}

.about-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #1C1F2A;
}

/* About Text Section */
.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    max-height: 4.5rem;
    overflow: hidden;
    transition: max-height 0.5s ease;
    border: 2px dashed #0047AB;
    padding: 15px;
    border-radius: 10px;
    background: #ffffff;
}

.about-text .read-more-content {
    display: none;
}

.about-text.expanded {
    max-height: none;
    overflow: visible;
}

.about-text.expanded .read-more-content {
    display: inline;
}

.read-more-btn {
    padding: 10px 20px;
    background: #FFD200;
    color: #003DA5;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    border: 2px solid #DCE3F2;
}

.read-more-btn:hover {
    background: #F39200;
    border-color: #F39200;
    color: #fff;
}

.read-more-content {
    display: none;
    margin-top: 20px;
}

.read-more-content h3 {
    font-size: 1.3rem;
    color: #003DA5;
    margin-top: 10px;
}

.read-more-content p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #1C1F2A;
}



/* Make sticky only on devices wider than 768px */
@media (min-width: 769px) {
    .reservation-box {
        position: sticky;
        top: 20px;
    }
}




/* Comfort Inn & Suites Nashville Amenities Section */
.comfort-amenities {
    position: relative;
    padding: 100px 5%;
    color: #003DA5;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

/* Background Image using ::before */
.comfort-amenities::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgb(255 255 255 / 82%), rgb(255 255 255 / 50%)), url(../images/singlebed1.jpg) no-repeat center center / cover;
    z-index: 0;
    opacity: 1;
	  background-attachment: fixed;
}

/* Ensure content is above the background */
.comfort-amenities-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


/* Heading */
.comfort-amenities-heading {
    font-size: 52px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: #003DA5;
}

/* Description */
.comfort-amenities-description {
    font-size: 20px;
    color: #333;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Grid */
.comfort-amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Amenity Card */
.amenity-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 61, 165, 0.1);
    border: 1px solid #DCE3F2;
}

/* Hover */
.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0, 61, 165, 0.2);
}

/* Icon */
.amenity-icon {
    background: #FFD200;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    transition: background 0.4s ease-in-out;
}

.amenity-card:hover .amenity-icon {
    background: #F39200;
}

/* Icon Font */
.amenity-card em {
    font-size: 38px;
    color: #003DA5;
}

/* Title */
.amenity-card h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #003DA5;
}

/* Description */
.amenity-card p {
    font-size: 18px;
    color: #444;
}

/* Responsive */
@media (max-width: 992px) {
    .comfort-amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .comfort-amenities-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .comfort-amenities-heading {
        font-size: 36px;
    }

    .comfort-amenities-description {
        font-size: 18px;
    }
}





/* Unique Room Slider Section */
.unique-room-slider {
    background: #f4f7fc; /* Light blue-gray background */
    padding: 60px 20px;
    text-align: center;
}

.unique-slider-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #003DA5; /* Deep blue */
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Unique Room Cards */
.unique-rooms-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 0 auto;
    width: 90%;
}

.unique-room-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.unique-room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 61, 165, 0.2);
}

/* Unique Room Image */
.unique-room-image img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #e0e0e0;
}

/* Unique Room Details */
.unique-room-details {
    padding: 20px;
    text-align: left;
}

.unique-room-details h3 {
    font-size: 1.5rem;
    color: #003DA5; /* Deep blue */
    margin-bottom: 10px;
}

.unique-room-details .unique-price {
    font-size: 1.2rem;
    color: #FFD200; /* Bright yellow */
    font-weight: bold;
    margin-bottom: 15px;
}

.unique-room-details .unique-description {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2C2C2C;
}

.unique-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.unique-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size:18px;
    color: #333;
}

.unique-features li em {
    color: #FFD200; /* Icon yellow accent */
    margin-right: 10px;
}

/* Unique Book Now Button */
.unique-book-btn {
    padding: 10px 20px;
    background: #FFD200; /* Bright yellow */
    color: #003DA5;       /* Deep blue text */
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.unique-book-btn:hover {
    background: #F39200; /* Warm orange hover */
    color: #fff;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .unique-rooms-container {
        grid-template-columns: 1fr;
    }

    .unique-room-details {
        text-align: center;
    }

    .unique-book-btn {
        width: 100%;
    }
}





/* Attractions Slider Section */
.custom-attractions-slider-section {
    background: linear-gradient(to bottom, #ffffff, #e6f0fb); /* Clean white to soft blue */
    padding: 60px 5%;
    text-align: center;
    position: relative;
    color: #003DA5;
}

/* Container */
.custom-attractions-slider-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Heading */
.custom-attractions-slider-heading {
    font-size: 50px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #003DA5;
}

/* Description */
.custom-attractions-slider-description {
    font-size: 22px;
    color: #1C1F2A;
    margin-bottom: 50px;
}

/* Slider Wrapper */
.custom-attractions-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Slider */
.custom-attractions-slider {
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
}

.custom-attractions-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Slide */
.custom-attractions-slide {
    flex: 0 0 60%;
    margin: 0 15px;
    position: relative;
    transition: transform 0.4s;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transform: scale(0.85);
}

.custom-attractions-slide.active {
    opacity: 1;
    transform: scale(1);
}

.custom-attractions-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.4s ease-in-out;
}

/* Slide Content */
.custom-attraction-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 61, 165, 0.8); /* Brand deep blue overlay */
    padding: 20px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

/* Hover Effect */
.custom-attractions-slide:hover img {
    transform: scale(1.05);
}

/* Navigation Arrows */
.custom-attractions-prev,
.custom-attractions-next {
    background: #FFD200;
    color: #003DA5;
    border: none;
    padding: 15px;
    font-size: 22px;
    cursor: pointer;
    transition: background 0.3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    border-radius: 50%;
}

.custom-attractions-prev:hover,
.custom-attractions-next:hover {
    background: #F39200;
    color: #fff;
}

.custom-attractions-prev { left: 20px; }
.custom-attractions-next { right: 20px; }

/* Responsive */
@media (max-width: 1200px) {
    .custom-attractions-slide {
        flex: 0 0 70%;
    }
}

@media (max-width: 992px) {
    .custom-attractions-slide {
        flex: 0 0 80%;
    }
}

@media (max-width: 768px) {
    .custom-attractions-slide {
        flex: 0 0 100%;
    }
}


.comfort-gallery-section {
  padding: 80px 20px;
  max-width: 1400px;
  margin: auto;
  background-color: #F4F7FC;
}

.comfort-gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.comfort-gallery-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #003DA5;
}

.comfort-gallery-tabs button {
  background: none;
  border: none;
  font-size: 20px;
  color: #003DA5;
  margin-left: 20px;
  cursor: pointer;
  position: relative;
  font-weight: 500;
}

.comfort-gallery-tabs button.active {
  color: #FFD200;
  font-weight: 700;
}

.comfort-gallery-tabs button.active::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: #FFD200;
  border-radius: 50%;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.comfort-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.comfort-gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 61, 165, 0.08);
  transition: transform 0.3s;
  background: #ffffff;
}

.comfort-gallery-card:hover {
  transform: translateY(-6px);
}

.comfort-gallery-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.comfort-gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 61, 165, 0.8);
  color: #fff;
  padding: 12px 16px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.comfort-gallery-label em {
  color: #FFD200;
}

.comfort-gallery-button-wrapper {
  text-align: center;
  margin-top: 30px;
}

.comfort-gallery-button {
  display: inline-block;
  background: #FFD200;
  color: #003DA5;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 61, 165, 0.2);
}

.comfort-gallery-button:hover {
  background: #F39200;
  color: #fff;
  transform: translateY(-2px);
}

/* Lightbox */
.comfort-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.comfort-lightbox-image {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.comfort-lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 10000;
}

.comfort-lightbox-prev,
.comfort-lightbox-next {
  position: absolute;
  top: 50%;
  font-size: 40px;
  background: rgba(255,255,255,0.3);
  border: none;
  color: #fff;
  padding: 10px 16px;
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
}

.comfort-lightbox-prev:hover,
.comfort-lightbox-next:hover {
  background: #FFD200;
  color: #003DA5;
}

.comfort-lightbox-prev { left: 30px; }
.comfort-lightbox-next { right: 30px; }

@media (max-width: 768px) {
  .comfort-gallery-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .comfort-gallery-tabs {
    margin-top: 20px;
  }
}

/* Map & Booking Section */
.map-booking-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 60px 5%;
    background: linear-gradient(to bottom, #ffffff, #e6f0fb); /* Light to very light blue gradient */
    border-radius: 15px;
    flex-wrap: wrap;
}

/* Map Section */
.map-wrapper-modern {
    flex: 1;
    background: #003DA5; /* Comfort Inn deep blue */
    border-radius: 15px;
    padding: 25px;
    position: relative;
    animation: fadeInLeft 0.8s ease-out;
}

.map-heading-modern {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

.map-heading-modern h2 {
    font-size: 36px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 500;
    text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
}

.map-heading-modern p {
    font-size: 1.1rem;
    color: #E0F7F7;
}

/* Map Frame */
.map-frame-modern {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.map-frame-modern iframe {
    width: 100%;
    height: 400px;
    border: none;
    transition: transform 0.4s ease;
}

.map-frame-modern:hover iframe {
    transform: scale(1.02);
}

/* Explore Map Button */
.explore-map-modern {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #FFD200; /* Bright yellow */
    color: #003DA5;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.explore-map-modern:hover {
    background: #F39200;
    color: #fff;
}

/* Booking Section */
.booking-wrapper-modern {
    flex: 1;
    background: #003DA5;
    color: #ffffff;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    animation: fadeInRight 0.8s ease-out;
}

.booking-wrapper-modern h3 {
    font-size: 36px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
}

.booking-wrapper-modern p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #E0F7F7;
}

/* Booking Button */
.booking-btn-modern {
    background: #FFD200;
    color: #003DA5;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 30px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.booking-btn-modern:hover {
    background: #F39200;
    color: #fff;
}

/* Video Container */
.video-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    width: 100%;
    height: 315px;
    border-radius: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .map-booking-modern {
        flex-direction: column;
    }

    .map-frame-modern iframe {
        height: 300px;
    }

    .explore-map-modern {
        bottom: 10px;
        right: 10px;
        padding: 10px 20px;
    }

    .video-container {
        max-width: 100%;
    }

    .booking-wrapper-modern h3 {
        font-size: 28px;
    }

    .map-heading-modern h2 {
        font-size: 28px;
    }
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 🌊 Footer Section */
.custom-footer {
    position: relative;
    background-color: #003DA5; /* Deep Blue - matches header/nav */
    color: #FFFFFF;
    padding: 40px 5%;
    text-align: center;
    overflow: hidden;
    border-top: 6px solid #FFD200; /* Gold Top Border */
}

/* 🟢 Removed Wave Divider */
.footer-wave {
    display: none;
}

/* 🏢 Footer Container */
.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.footer-contact,
.footer-links,
.footer-policies {
    flex: 1 1 30%;
    min-width: 280px;
}

/* 🏠 Footer Main (3 Columns) */
.footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: left;
    gap: 30px;
}

/* 📝 Footer Titles */
.footer-contact h4,
.footer-links h4,
.footer-policies h4,
.footer-social h4 {
    font-size: 28px;
    color: #FFD200;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* 📍 Contact Section */
.footer-contact ul,
.footer-policies ul {
    list-style: none;
    padding: 0;
    font-size: 17px;
    line-height: 1.8;
}

.footer-contact ul li {
    margin-bottom: 6px;
}

.footer-contact ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
}

.footer-contact ul li a:hover {
    color: #FFD200;
}

/* 🔗 Quick Links Columns */
.links-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* 📜 Footer Links */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
}

.footer-links ul li a:hover {
    color: #FFD200;
}

/* 📢 Social Media Icons */
.footer-social {
    margin-top: 30px;
    text-align: center;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #FFD200;
    color: #003DA5;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    margin: 0 5px;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.2);
}

/* 🏁 Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
}

/* 🔗 Footer Links */
.footer-link {
    color: #FFD200;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ⚡ Cyberwebhotels Branding */
.footer-highlight {
    color: #FFD200;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-highlight:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* 📱 **MOBILE & TABLET OPTIMIZATION** */

/* ✅ iPad & Tablets (820x1180, 538x1040) */
@media (max-width: 1024px) {
    .footer-main {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .links-columns {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        text-align: center;
    }

    .footer-links ul {
        text-align: left;
        margin: 0 auto;
    }

    .footer-links ul li {
        width: 100%;
        text-align: left;
    }

    .footer-social {
        text-align: center;
    }
	
}

/* 🔗 Footer Links */
.tag {
    color: #FFD200;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.tag:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ✅ iOS & Android Small Screens (393x852, 430x932) */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .links-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .footer-links ul {
        text-align: center;
    }

    .footer-links ul li {
        text-align: center;
    }

    .footer-social {
        margin-top: 20px;
    }

    .footer-contact ul {
        font-size: 16px;
    }


}

.cgs2 {
	    font-size: 28px;
    color: #FFD200;
    font-weight: 400;
    
    
}

.cgs2:hover  {
	   
    color: #fff;
}


/* Inner Hero Section */
.inner-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
 z-index: 1;
}

.inner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
 
}

.inner-hero-content {
  position: relative;


  padding: 0 20px;
}

.inner-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
    margin-top:20px;
}

.inner-description {
  font-size: 20px;
  color: #f0f0f0;
}

/* Responsive */
@media (max-width: 768px) {
  .inner-hero {
    height: 280px;
  }

  .inner-title {
    font-size: 30px;
  }

  .inner-description {
    font-size: 16px;
  }
}

.hotelamen-section {
  padding: 40px 20px;
  background: linear-gradient(to bottom, #f2f6fb, #ffffff);
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.hotelamen-title {
  font-size: 2rem;
  color: #003DA5;
  font-weight: 700;
  margin-bottom: 10px;
}

.hotelamen-description {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
}

.hotelamen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.hotelamen-card {
  background: #ffffff;
  border: 2px solid #FFD70033;
  padding: 16px 20px;
  border-radius: 12px;
  text-align: left;
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  box-shadow: 0 5px 20px rgba(0, 61, 165, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hotelamen-card em {
  font-size: 20px;
  color: #FFD700;
}

.hotelamen-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 61, 165, 0.15);
}


/* Simple Fade-in Animation */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}


.accessibility-features-section {
  padding: 40px 20px;
  text-align: center;
  background-color: linear-gradient(to bottom,#ffffff  ,#f2f6fb);
}

.accessibility-features-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.accessibility-title {
  font-size: 1.8rem;
  color: #003DA5;
  font-weight: 700;
  margin-bottom: 8px;
}

.accessibility-note {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 30px;
}

.accessibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  justify-content: center;
}

.accessibility-item {
  background: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #333;
}

.accessibility-item em {
  color: #FFD200;
  font-size: 1.2rem;
}

.nearby-section {
  padding: 40px 20px;
  background: linear-gradient(to bottom, #ffffff,#f2f6fb );
}

.nearby-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.nearby-section-title {
  font-size: 2.4rem;
  color: #003DA5;
  margin-bottom: 10px;
  font-weight: 700;
}

.nearby-section-subtitle {
  color: #666;
  font-size: 1rem;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.nearby-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 61, 165, 0.08);
  overflow: hidden;
  transition: transform 0.4s ease;
  text-align: left;
}

.nearby-card:hover {
  transform: translateY(-8px);
}

.nearby-card-img {
  position: relative;
  height: 180px;
  background-size: cover;
  background-position: center;
}

.nearby-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #FFD700;
  color: #111;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
}

.nearby-card-info {
  padding: 24px;
}

.nearby-card-info h3 {
  font-size: 1.2rem;
  color: #003DA5;
  margin-bottom: 16px;
  font-weight: 600;
}

.nearby-card-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nearby-card-info ul li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  color: #333;
  border-bottom: 1px dashed #eee;
  font-size: 0.95rem;
}



.attraction-intro-section {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(to bottom, #f2f6fb, #ffffff);
  max-width: 1400px;
  margin: 0 auto 50px;
}

.attraction-intro-subtitle {
  font-size: 1.6rem;
  color: #FFD700;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.attraction-intro-title {
  font-size: 2.4rem;
  color: #003DA5;
  font-weight: 700;
  margin-bottom: 25px;
}

.attraction-intro-section p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* Custom Location Section */
.custom-location-section {
  padding: 40px 20px;
  margin-bottom: 40px;
}

.custom-location-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  background: #ffffff; /* White background for clean section */
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
}

/* Header Section */
.custom-location-header {
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
}

.custom-location-title {
  font-size: 2.5rem;
  color: #003DA5; /* Comfort blue */
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.custom-intro-subtitle {
  font-size: 1.6rem;
  color: #FFD700;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}


/* Left Side: Text & Form */
.custom-location-text {
  flex: 1;
  max-width: 50%;
  padding: 20px;
}

.custom-location-description {
  font-size: 18px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Coordinates Box */
.custom-coordinates-box {
  background-color: #f1f6fd;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 4px solid #FFD700;
}

.custom-coordinates-title {
  font-size: 20px;
  margin-bottom: 12px;
  color: #003DA5;
  font-weight: 600;
}

.custom-coordinate-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-coordinate-list li {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.custom-coordinate-list em {
  color: #FFD700;
  margin-right: 10px;
}

/* Form Styling */
.custom-directions-form {
  margin-top: 20px;
}

.custom-input-field {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  background-color: #f9f9f9;
  color: #333;
}

.custom-directions-btn {
  width: 100%;
  padding: 12px;
  background: #FFD700;
  color: #111;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-directions-btn:hover {
  background: #e6be00;
}

/* 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: 12px;
  box-shadow: 0 8px 25px rgba(0, 61, 165, 0.1);
  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: 2rem;
  }
}

/* 1. Full-width Title Section */
.contact-hero-banner {
  background: linear-gradient(to bottom, #f0f4fc, #ffffff);
  padding: 60px 20px 40px;
  text-align: center;
}

.contact-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.custom-contact-subtitle {
 font-size: 1.6rem;
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.custom-contact-title {
  font-size: 3rem;
  color: #003DA5;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.05);
}

.custom-contact-description {
  font-size: 20px;
  color: #333;
  font-weight: 400;
}


/* 2. Contact Info + Image Section */
.futuristic-contact-section {
  padding: 0px 20px 80px;
  background: linear-gradient(to bottom, #ffffff, #f7f9fc);
}

.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: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 61, 165, 0.05);
  text-align: left;
}

.futuristic-contact-info p {
  font-size: 20px;
  color: #444;
  line-height: 1.6;
}

.futuristic-info-block {
  margin-top: 20px;
}

.futuristic-info-block h2,
.futuristic-info-block h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: #003DA5;
  font-weight: 600;
}

.futuristic-info-block a {
  color: #FFD700;
  font-weight: bold;
  text-decoration: none;
}

.futuristic-info-block a:hover {
  color: #e6be00;
}

.futuristic-image-block {
  flex: 1;
  max-width: 520px;
}

.contact-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 61, 165, 0.08);
  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;
}
}




/* 📍 Comfort Inn & Suites Sitemap Section */
.sitemap-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #fefefe, #eaf4fd, #fefefe); /* light blue gradient */
    text-align: center;
}

.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sitemap-title {
    font-size: 3rem;
    color: #003DA5; /* Comfort blue */
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.sitemap-subtitle {
    font-size: 1.2rem;
    color: #444; /* subtle dark gray for readability */
    margin-bottom: 50px;
    font-weight: 400;
}

.sitemap-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sitemap-block {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 61, 165, 0.08);
    border: 1px solid #e0ecff;
}

.sitemap-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 61, 165, 0.15);
}

.sitemap-block h2 {
    font-size: 1.8rem;
    color: #FFD700; /* Gold heading */
    margin-bottom: 15px;
    font-weight: 600;
}

.sitemap-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-block ul li {
    margin-bottom: 15px;
}

.sitemap-block ul li a {
    font-size: 18px;
    color: #003DA5;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    font-weight: 500;
}

.sitemap-block ul li a i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #FFD700;
}

.sitemap-block ul li a:hover {
    color: #111; /* Slightly darker 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 - Deep Blue & Comfort Gold Theme */
.faq-section {
    padding: 100px 20px;
    background: #f2f6fb;
    color: #1a1a1a;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-title {
    font-size: 3rem;
    font-weight: 700;
    color: #003DA5; /* Deep Comfort Blue */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
}

.faq-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 50px;
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
}

.faq-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 8px 20px rgba(0, 61, 165, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 61, 165, 0.1);
}

.faq-item h2 {
    font-size: 1.8rem;
    color: #003DA5; /* Bright Comfort Yellow */
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px dashed #003DA5;
}

.faq-item p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.75;
    margin-bottom: 10px;
}

.faq-item a {
    color: #003DA5;
    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;
    transition: width 0.3s ease;
}

.faq-item a:hover {
    color: #FFD700;
}

.faq-item a:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .faq-title {
        font-size: 2.5rem;
    }

    .faq-item h2 {
        font-size: 1.5rem;
    }

    .faq-item p {
        font-size: 1rem;
    }
}
/* 🎯 Attraction Section - Deep Blue & Comfort Gold Theme */
.attraction-wrap {
  padding: 30px 20px;
  background-color: #f2f6fb; /* Light background color to match FAQ theme */
  border-top: 1px solid #ddd;
}

.attraction-box {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 40px;
}

.attraction-image {
  flex: 1 1 400px;
}

.attraction-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 61, 165, 0.1); /* Light shadow with Comfort Blue */
}

.attraction-content {
  flex: 1 1 600px;
}

.attraction-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #003DA5; /* Deep Comfort Blue */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.attraction-content p {
  font-size: 1rem;
  color: #333333; /* Dark text for readability */
  line-height: 1.7;
  margin-bottom: 15px;
}

.attraction-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #FFD700; /* Comfort Gold for call to action */
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 61, 165, 0.1);
}

.attraction-btn:hover {
  background-color: #003DA5; /* Deep Comfort Blue for hover */
}
