﻿
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* General Styles */
body {
  font-family: 'Poppins', sans-serif; /* Poppins for bold, clean headings */
  background-color: #fff; /* Light background for a clean feel */
  color: #1A1A1A; /* Dark Grey for text to ensure good readability */
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif; /* Poppins for bold, clean headings */
  font-weight: 600; /* Slightly lighter for headings */
  color: #003B5C; /* Deep Blue for headings */
  font-size: 70%; margin: 0, ;
}

/* Paragraphs, Links, List Items */

/* Topbar */
.topbar {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #333;
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  border-bottom: 1px solid #cedeea;
 
}

.topbar-left span {
  margin-right: 15px;
}

.topbar-left .divider {
  display: inline-block;
  height: 14px;
  width: 1px;
  background-color: #cedeea;
  margin: 0 10px;
}

.topbar-right a {
  color: #333;
  margin-left: 10px;
  transition: color 0.3s ease;
}

.topbar-right a:hover {
  color: #004b85;
}
.topbar-left a {
  color: #333;
  text-decoration: none;
}

.topbar-left a:hover {
  color: #004b85;
}

/* Header */
.main-header {
  background: #002643; /* White background */
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d0dbe5;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: #fff; /* Navy */
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  margin-right: 10px;
  font-size: 18px;
}

.logo-text {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}

.logo-text .highlight {
  color: #fff; /* lighter navy accent */
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 22px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 300;
  transition: color 0.3s ease;
  font-size: 18px;
}

.nav-links a:hover {
  color: #fff;
}

.book-btn {
  background: #cedeea;
  color: #333;
  padding: 10px 24px;
  margin-left: 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.book-btn:hover {
  background: #004b85;
  color: #fff;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  color: #ffffff;
  cursor: pointer;
  margin-left: 20px;
}

/* Mobile Drawer Menu */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100%;
  background: #f4f4f4; /* Light background */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #002643; /* Dark text */
  padding: 20px 16px;
  z-index: 99999; /* on top of hero */
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: -6px 0 12px rgba(0,0,0,0.2);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.mobile-logo {
  font-size: 20px;
  font-weight: bold;
  color: #002643; /* Dark color for logo */
}

.mobile-logo span {
  color: #5a7284; /* Light grey accent for part of the logo */
}

.close-btn {
  font-size: 26px;
  cursor: pointer;
  color: #002643; /* Dark color for close button */
}

.mobile-welcome {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
  color: #555; /* Grey for welcome text */
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.mobile-nav-links li {
  border-bottom: 1px solid #cedeea; /* Light grey border */
  padding: 14px 0;
}

.mobile-nav-links a {
  color: #002643; /* Dark blue for links */
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
}

.mobile-nav-links a:hover {
  color: #000; /* Light grey on hover */
}

.mobile-contact-btn {
  margin-top: auto;
  border: 1px solid #002643; /* Dark blue border */
  border-radius: 8px;
  text-align: center;
  padding: 12px;
  background: transparent;
  font-size: 16px;
}

.mobile-contact-btn a {
  color: #002643; /* Dark blue text */
  font-weight: bold;
  text-decoration: none;
}

.mobile-contact-btn a:hover {
  color: #cedeea; /* Light grey on hover */
}

.mobile-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.book-now-btn {
  background-color: #002643; /* Dark blue background for button */
  color: #fff; /* White text */
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
}

.book-now-btn:hover {
  background-color: #cedeea; /* Light grey on hover */
}

.phone-btn {
  background: transparent;
  border: 1px solid #002643; /* Dark blue border */
  color: #002643; /* Dark blue text */
  padding: 14px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
}

.phone-btn:hover {
  background: #002643; /* Dark blue background on hover */
  color: #fff; /* White text on hover */
}
/* Highlight style for active nav link */
.nav-links a.active-link,
.mobile-nav-links a.active-link {
    color: #cedeea;
    font-weight: bold;
    border-bottom: 2px solid #007a79;
}



/* Responsive Adjustments */
@media (max-width: 768px) {
  .logo-text {
    font-size: 26px; /* Slightly smaller font on tablets */
  }

  .logo-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 22px; /* Smaller font size for mobile */
  }

  .logo-icon {
    width: 30px;
    height: 30px;
    font-size: 14px; /* Smaller icon size for mobile */
  }
  .nav-links a.active-link,
.mobile-nav-links a.active-link{
	color: #000;
}
}
/* Responsive */
@media (max-width: 768px) {
  .nav-links,
  .book-btn {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}
/* Mobile & Tablet: Topbar Adjustments */
@media (max-width: 768px) {
	  .nav-links a.active-link,
.mobile-nav-links a.active-link{
	color: #000;
}
  .topbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px 12px;
  }

  .topbar-left,
  .topbar-right {
    width: auto;
    margin-bottom: 6px;
    font-size: 14px;
  }

  .topbar-left {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .topbar-left .divider {
    display: none;
  }

  .topbar-right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 0;
    font-size: 16px;
  }
}

/* iPad & Small Laptops (820px - 1180px) */
@media (max-width: 1180px) and (min-width: 820px) {
	  .nav-links a.active-link,
.mobile-nav-links a.active-link{
	color: #000;
}
  .topbar {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 20px;
  }

  .topbar-left,
  .topbar-right {
    width: auto;
    font-size: 15px;
    margin-bottom: 0;
  }

  .topbar-left {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .topbar-right {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 0;
  }
}

/* Responsive Adjustments for 820px - 1180px (iPads and small laptops) */
@media (max-width: 1180px) and (min-width: 820px) {
  /* Hide Desktop Navigation and Show Hamburger Menu */
  .nav-links,
  .book-btn {
    display: none;
  }

  /* Show Hamburger Menu */
  .menu-toggle {
    display: block;
  }

  /* Mobile Menu */
  .mobile-nav.active {
    right: 0;
  }

  
}



/* Dropdown Container */
.nav-links .dropdown {
  position: relative;
}

/* Dropdown Menu */
.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f2f7fb 100%);
  border-radius: 12px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  min-width: 240px;
  z-index: 9999;
  animation: fadeIn 0.3s ease-in-out;
}

/* Show on hover */
.nav-links .dropdown:hover .dropdown-menu,
.nav-links .dropdown-menu:hover {
  display: block;
}

/* Dropdown Items */
.nav-links .dropdown-menu li {
  padding: 0;
  border-bottom: 1px solid #e2e8f0;
}

.nav-links .dropdown-menu li:last-child {
  border-bottom: none;
}

/* Dropdown Links */
.nav-links .dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  color: #002643;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover Style */
.nav-links .dropdown-menu li a:hover {
  background-color: #004b85;
  color: #fff;
  padding-left: 30px;
  border-left: 5px solid #cedeea;
}


.nav-links .dropdown-menu li a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Mobile Dropdown Menu */
.mobile-dropdown-menu {
  display: none;
  margin-top: 10px;
  background: linear-gradient(180deg, #f7fafe 0%, #e2ebf3 100%);
  border-radius: 10px;
  border-left: 5px solid #004b85;
  padding: 8px 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  animation: slideIn 0.3s ease-in-out;
  overflow: hidden;
}

/* Show on hover */
.mobile-dropdown:hover .mobile-dropdown-menu {
  display: block;
}

/* Dropdown Items */
.mobile-dropdown-menu li {
  border-bottom: 1px solid #dce4ec;
}

.mobile-dropdown-menu li:last-child {
  border-bottom: none;
}

/* Dropdown Links */
.mobile-dropdown-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 16px;
  color: #002643;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover Effect */
.mobile-dropdown-menu li a:hover {
  background-color: #004b85;
  color: #ffffff;
  padding-left: 28px;
}

/* Optional: Add arrow on hover */
.mobile-dropdown-menu li a::after {
  content: '\f105'; /* Font Awesome arrow */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateX(-8px);
}

.mobile-dropdown-menu li a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Slide-in animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Section */
.hero-advanced {
  position: relative;
  height: 90vh;
  background: #002643; /* Deep Navy Blue for the hero background */
  overflow: hidden;
}

.hero-layer {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('../images/exterior.webp') center center/cover no-repeat;
  filter: brightness(0.8); /* Slightly darker for better text contrast */
  transition: background-image 1.5s ease-in-out;
  animation: heroParallax 15s ease-in-out infinite alternate;
}

.hero-layer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Slight black fade for depth */
  z-index: 1;
}

@keyframes heroParallax {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.05) translateY(-15px); }
}

/* Hero Text */
.hero-text {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  color: #fff; /* White text */
  top: 50%;
  transform: translateY(-50%);
}

.hero-text h1 {
  font-size: 2.8rem;
  color: #fff; /* White text */
  text-shadow: 0 2px 2px rgba(0,0,0,0);
}

.hero-text h2 {
  font-size: 1.4rem;
  color: #f4f4f4; /* Light grey for the subheading */
  margin-bottom: 0.5em;
}

.hero-text p {
  color: #f4f4f4; font-size: 1.2rem;
}

/* Hero Button */
.hero-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 1.1rem;
  background: #004B87; /* Brand blue for button */
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.4s ease;
}

.hero-btn:hover {
  background: #99C4E5; /* Darker blue on hover */
}

/* Pulse Button Animation */
.pulse-btn {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0px rgba(0, 51, 102, 0.7); }
  50% { box-shadow: 0 0 15px rgba(0, 51, 102, 0.9); }
  100% { box-shadow: 0 0 0px rgba(0, 51, 102, 0.7); }
}

/* Hero Arrows */
.hero-arrows {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 3;
}

.hero-arrows button {
  background: rgba(255,255,255,0.2);
color: #ffffff;
    border: 2px solid #ffffff;
  border-radius: 50%;
  padding: 12px 16px;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.hero-arrows button:hover {
  background: rgba(255,255,255,0.2); /* Dark blue background on hover */
  color: #fff; /* White color on hover */
}

/* Hero Dots (Pagination) */
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  height: 12px;
  width: 12px;
  background-color: rgb(255 255 255 / 60%); /* Light blue-gray for the dot */
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #ffffff; /* White when active */
}


@media (max-width: 768px) {
  .hero-advanced {
    height: 60vh;
  }

  .hero-text h1 {
    font-size: 2.4rem; /* smaller */
  }

  .hero-text h2 {
    font-size: 1.2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}

/* Reservation Bar */
.reservation-bar {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px 0;
      background: rgb(206 222 234);
  z-index: 10;
}

.reservation-bar-form {
  background: linear-gradient(90deg, #f4f4f4 0%, #ffffff 100%); /* Light grey gradient */
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 18px 20px;
  max-width: 1400px;
  width: 95%;
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fields */
.field {
  display: flex;
  flex-direction: column;
  flex: 1 1 60px;
  min-width: 180px;
  margin: 0 10px;
}

.field label {
 font-family: 'Poppins', sans-serif; 
  font-weight: 600;
  color: #555; /* Dark grey for labels */
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.field input,
.field select {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #cedeea; /* Light grey border */
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Poppins', sans-serif; 
}

.field input:focus,
.field select:focus {
  border-color: #004B87; /* Deep Navy Blue on focus */
  box-shadow: 0 0 8px rgba(0, 51, 102, 0.3); /* Slight shadow effect */
  outline: none;
}

/* Button */
.reservation-bar-form button {
  background: #004B87; 
  color: #fff; /* White text */
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 51, 102, 0.3); /* Shadow with deep blue */
  transition: background 0.3s ease, transform 0.3s ease;
  
    margin-top: 17px;
}

.reservation-bar-form button:hover {
  background: #002643; /* Darker navy blue on hover */
  transform: translateY(-2px); /* Slight movement on hover */
}

.reservation-bar-form button i {
  margin-right: 8px;
}


/* Responsive */
@media (max-width: 1024px) {
  .reservation-bar-form {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .reservation-bar-form {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }

  .field {
    width: 100%;
    margin: 0 0 10px;
  }

  .reservation-bar-form button {
    width: 100%;
    margin-top: 8px;
  }
}

/* About Section */
.about-section {
  background: #fff; /* White background */
  padding: 60px 20px;
  width: 100%;
  text-align: center;
  color: #222; /* Dark text */
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #002643; /* Deep Navy Blue */
  margin: 0 0 30px 0;
}

.about-header h2 span {
  color: #8ea6b8; /* Gold accent for highlighted text */
}

.about-header p {
  max-width: 700px;
  margin: 10px auto 40px;
  font-size: 18px;
  color: #555; /* Softer gray for paragraph text */
}

.about-main {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
}

.about-text {
  flex: 1 1 500px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.1s;
}

.about-text h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #002643; /* Deep Navy Blue for subheading */
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
  line-height: 1.6;
  color: #555; /* Softer gray for text */
  font-size: 18px;
}

.about-btn {
  display: inline-block;
  margin-top: 10px;
 background: #004b85; /* Lighter Navy Blue for button */
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.about-btn:hover {
  background: #002643; /* Darker navy on hover */
   color: #fff;
}

.about-images {
  flex: 1 1 400px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.about-images img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #ddd;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Individual image heights */
.about-images .img-one {
  height: 200px;
  margin-top: 50px;
  border-radius: 8px;
}

.about-images .img-two {
  height: 250px;
  border-radius: 8px;
}

.about-images .img-three {
  width: 200px;
  border-radius: 8px;
  margin-left: 50px;
}

.about-images .img-four {
  height: 220px;
  border-radius: 8px;
}

.more-about-text {
  display: none;
  margin-top: 20px;
  color: #555;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.about-main.expanded {
  justify-content: center;
}

.about-main.expanded .about-text {
  flex: 1 1 100%;
  max-width: 100%;
  text-align: left;
}

@media (max-width: 768px) {
  .about-main.expanded .about-text {
    text-align: center;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .about-main {
    flex-direction: column;
    text-align: center;
  }

  .about-text, .about-images {
    flex: 1 1 100%;
  }

  .about-text {
    text-align: center;
  }
}
@media (max-width: 850px) {
  .reservation-box {
    position: relative;
    z-index: 1000;
  }
  .about-section {
    margin-top: 30px;
  }
}

@media (min-width: 600px) and (max-width: 850px) {
  .about-section {
    margin-top: 10px;
  }
}
/* Individual image heights */
.about-images .img-one {
  height: 200px;
  margin-top: 50px;
  border-radius: 8px;
  animation: fadeInLeft 1s ease forwards;
  animation-delay: 0.2s;
}

.about-images .img-two {
  height: 250px;
  border-radius: 8px;
  animation: fadeInDown 1s ease forwards;
  animation-delay: 0.4s;
}

.about-images .img-three {
  width: 200px;
  border-radius: 8px;
  margin-left: 50px;
  animation: fadeInRight 1s ease forwards;
  animation-delay: 0.6s;
}

.about-images .img-four {
  height: 220px;
  border-radius: 8px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.8s;
}
/* iPad and larger mobile screens (max-width: 1024px) */
@media (max-width: 1024px) {
  /* Individual image heights */
.about-images .img-one {
  height: 200px;
  margin-top: 50px;
  border-radius: 8px;
  animation: fadeInLeft 1s ease forwards;
  animation-delay: 0.2s;
}

.about-images .img-two {
  height: 250px;
  border-radius: 8px;
  animation: fadeInDown 1s ease forwards;
  animation-delay: 0.4s;
}

.about-images .img-three {
  width: 250px;
  border-radius: 8px;
  margin-left: 150px;
  animation: fadeInRight 1s ease forwards;
  animation-delay: 0.6s;
}

.about-images .img-four {
  height: 190px;
  border-radius: 8px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.8s;
}
}
/* Mobile screens (max-width: 768px) */
@media (max-width: 768px) {
   /* Individual image heights */
.about-images .img-one {
  height: 100px;
  margin-top: 50px;
  border-radius: 8px;
  animation: fadeInLeft 1s ease forwards;
  animation-delay: 0.2s;
}

.about-images .img-two {
  height: 150px;

  border-radius: 8px;
  animation: fadeInDown 1s ease forwards;
  animation-delay: 0.4s;
}

.about-images .img-three {
  width: 130px;
  
  border-radius: 8px;
  margin-left: 100px;
  animation: fadeInRight 1s ease forwards;
  animation-delay: 0.6s;
}

.about-images .img-four {
  height: 100px;
  border-radius: 8px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.8s;
}
}



@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@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); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Amenities Section */
.amenities-section {
  padding: 90px 20px;
  background: #ffffff; /* Light grey background */
  color: #222; /* Dark text */
  text-align: center;
   border-top: 1px solid #cedeea; /* Light grey border */
}

.amenities-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #002643; /* Deep Navy Blue */
}

.amenities-header h2 span {
  color: #8ea6b8; /* Light blue accent for span */
}

.amenities-header p {
  font-size: 18px;
  max-width: 700px;
  margin: 10px auto 40px;
  color: #555; /* Softer grey for paragraphs */
}

.amenities-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 40px;
}

.amenity-item {
  background: #ffffff; /* White background for clean look */
  border: 1px solid #cedeea; /* Light grey border for card */
  padding: 20px;
  border-radius: 12px;
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.amenity-item i {
  font-size: 32px;
  margin-bottom: 12px;
  color: #004b85; /* Lighter Navy Blue for icons */
}

.amenity-item h4 {
  font-size: 18px;
  color: #222; /* Dark text for titles */
}

.amenity-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1); /* Slight shadow on hover */
}

/* Button */
.amenities-btn {
  background: #004b85; /* Lighter Navy Blue for button */
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.amenities-btn:hover {
  background: #002643; /* Darker navy on hover */
  color: #fff;
}



@media (max-width: 768px) {
  .amenity-item {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .amenity-item {
    width: 100%;
  }
}

/* Room Section */
.room-section.styled {
  background: #f4f4f4; /* Light grey background */
  color: #002643; /* Deep Navy Blue text */
  padding: 90px 20px;
  text-align: center;
  border-top: 1px solid #cedeea; /* Light grey border */
  
}

.room-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #002643; /* Deep Navy Blue */
}

.room-header h2 span {
  color: #8ea6b8; /* Light Blue for accent */
}

.room-header p {
  color: #555;
  max-width: 700px;
  margin: 10px auto 40px;
  font-size: 18px;
}

.room-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.room-card.fancy {
  background: #ffffff; /* White background for contrast */
  border: 1px solid #cedeea; /* Light grey border */
  border-radius: 16px;
  overflow: hidden;
  width: 320px;
  box-shadow: 0 4px 15px rgba(0, 51, 102, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column; /* Flex to stack content */
  height: 100%; /* Ensure consistent height */
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 51, 102, 0.15); /* On hover */
}

.room-image {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.room-content {
  padding: 20px;
  flex-grow: 1; /* Allow content to grow */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Align content properly */
}

.room-content h4 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #002643; /* Deep Navy Blue for titles */
}

.room-content p {
  color: #555;
  font-size: 16px;
  margin-bottom: 15px;
}

.room-btn {
  background: #004b85; /* Lighter Navy Blue */
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  align-self: center; /* Center align the button */
  transition: background 0.3s ease;
}

.room-btn:hover {
  background: #002643; /* Darker navy blue on hover */
}

@media (max-width: 768px) {
  .room-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* Video Section */
.video-section {
  display: flex;
  flex-wrap: wrap;
  background: #ffffff; /* Light grey background */
  border-top: 1px solid #cedeea; /* Light grey border */
  border-bottom: 1px solid #cedeea; /* Light grey border */
  color: #222;
  padding: 60px 60px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.video-content {
  flex: 1 1 50%;
  max-width: 600px;
}

.video-content h2 {
  font-size: 2.6rem;
  font-weight: bold;
  color: #002643; /* Deep Navy Blue */
}

.video-content h2 span {
  color: #8ea6b8; /* Light Blue for accent */
}

.video-content p {
  margin: 20px 0;
  line-height: 1.6;
  color: #555; /* Softer grey for paragraph text */
}

.video-thumbnail {
  position: relative;
  flex: 1 1 40%;
  min-width: 320px;
  height: 350px;
  cursor: pointer;
}

.video-thumbnail .thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  border: 1px solid #cedeea; /* Light grey border */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: #fff;
  background: rgba(0, 75, 133, 0.7); /* Lighter Navy Blue */
  border: 2px solid #fff;
  border-radius: 10%;
  padding: 25px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.play-button:hover {
  background: rgba(0, 75, 133, 0.9); /* Darker hover effect */
}

/* Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-wrapper {
  position: relative;
  width: 90%;
  max-width: 900px;
  height: 500px;
  background: #000;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
}

.close-btn1 {
  position: absolute;
  top: -30px;
  right: -30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}


/* iPad / Small Laptop */
@media (max-width: 1180px) {
  .video-section {
    flex-direction: column;
    align-items: center;
    padding: 50px 30px;
    gap: 30px;
  }

  .video-content {
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .video-content h2 {
    font-size: 2.2rem;
  }

  .video-thumbnail {
    width: 100%;
    height: 300px;
  }

  .play-button {
    font-size: 40px;
    padding: 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .video-section {
    padding: 40px 20px;
    gap: 20px;
  }

  .video-content h2 {
    font-size: 1.8rem;
  }

  .video-content p {
    font-size: 16px;
  }

  .video-thumbnail {
    height: 220px;
  }

  .play-button {
    font-size: 36px;
    padding: 16px;
  }
}





/* Map Gallery Section */
.map-gallery-section {
  padding: 60px 40px;
  background: #ffffff; /* Light grey background for clean look */
  color: #222; /* Dark text for readability */
  border-top: 1px solid #cedeea; /* Light grey border */
  border-bottom: 1px solid #cedeea; /* Light grey border */
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #002643; /* Deep Navy Blue for main header */
}

.section-header h2 span {
  color: #8ea6b8; /* Light Blue accent for span */
}

.section-header p {
  color: #555; /* Softer grey for the paragraph text */
  max-width: 600px;
  margin: 0 auto;
}

/* Map Gallery Content */
.map-gallery-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Map Container */
.map-container,
.gallery-container {
  flex: 1 1 10%;
}

/* Map iframe */
.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 1px solid #cedeea; /* Light grey border */
  border-radius: 10px;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

/* Gallery Images */
.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Hover Effect for Gallery Images */
.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

/* Lightbox Content */
.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
}

/* Lightbox Close Button */
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .map-gallery-content {
    flex-direction: column;
  }
}

/* Footer Section */
.aligned-footer {
    background: #002643; /* Deep Navy Blue as the solid background */
    color: #fff; /* White text for contrast */
    padding: 60px 5%;
    position: relative;
    overflow: hidden;

    border-top: 1px solid #cedeea; /* Light grey border */
}

/* Top Row: Logo and Social Media */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
    display: block;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.1));
}

/* Footer Social Icons */
.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icon {
    width: 50px; /* Increased size for better visibility */
    height: 50px; /* Increased size for better visibility */
    background: #002643; /* Deep Navy Blue */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid #fff; /* White border to match the screenshot */
}

.footer-social-icon:hover {
    background: #99c4e5; /* Light Blue on hover */
    border-color: #99c4e5; /* Light Blue on hover */
    transform: scale(1.1);
}


/* Footer Main Content */
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.footer-contact,
.footer-links,
.footer-follow {
    flex: 1;
    min-width: 240px;
}

.footer-contact h4,
.footer-links h4,
.footer-follow h4 {
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 15px;
    color: #fff; /* White text for the header */
    display: inline-block;
    padding-bottom: 1px;
}

.footer-contact p,
.footer-contact span,
.footer-contact a {
    color: #fff; /* Light grey for content text */
    text-decoration: none;
	
}


.footer-contact a:hover {
    text-decoration: underline;
    color: #fff; /* Light Blue hover effect */
}

.cgsl {
    color: #99c4e5; /* Light Blue for the link */
    font-weight: bold;
}

.cgsl:hover {
    color: #ffffff; /* White on hover */
}

.cgs2 {
    color: #cedeea; /* Light grey for secondary text */
    font-weight: 600;
}

/* Quick Links */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.footer-links ul li {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 20px;
}

.footer-links ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.footer-links ul li a {
    color: #fff; /* Light grey for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #cadae5; /* Light Blue on hover */
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 45px;
    padding-top: 40px;
    text-align: center;
    color: #fff;
    font-size: 1rem;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
    color: #99c4e5; /* Light Blue on hover */
}




/* Inner Hero Section */
.inner-hero-section {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  background-color: #001d3d;
}

/* Background Image Overlay */
.inner-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5) contrast(1.2) saturate(1.1);
  z-index: 0;
}

/* Content Box */
.inner-hero-content {
  position: relative;
  z-index: 1;
  padding: 30px;
  max-width: 960px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.inner-slider-title {
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  color: #ffffff;
}

.inner-slider-description {
  font-size: 22px;
  margin-top: 16px;
  font-weight: 400;
  color: #e1e9f2;
}



/* Responsive Design */
@media (max-width: 1024px) {
    .inner-slider-title {
        font-size: 38px;
    }
    .inner-slider-description {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .inner-hero-section {
        height: 50vh;
    }
    .inner-slider-title {
        font-size: 32px;
    }
    .inner-slider-description {
        font-size: 16px;
    }
}

@media (max-width: 430px) {
    .inner-hero-section {
        height: 40vh;
    }
    .inner-slider-title {
        font-size: 28px;
    }
    .inner-slider-description {
        font-size: 14px;
    }
}


/* New Facility Section */
.new-facility-section {
    padding: 60px 20px;
   background: linear-gradient(to bottom, #ffffff, #f4f4f4); 
    text-align: center;
    color: #002643; /* Navy for contrast */
}

.new-facility-title {
    font-size: 3rem;
    color: #002643; /* Dark navy text */
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
	 font-weight: 800;
}

.new-facility-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #007a79; /* Teal underline for consistency */
    margin: 15px auto;
}

/* Grid Styling */
.facility-grid-creative {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    justify-items: center;
	
}

/* Facility Box */
.facility-box-creative {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.facility-box-creative:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* Icon Background */
.icon-background {
    background: linear-gradient(to bottom, #004b85, #004d5a);
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: #ffffff;
    position: relative;
    border-bottom: 5px solid #004d5a;
}

.facility-box-creative:hover .icon-background {
    background: linear-gradient(to right, #004d5a, #004b85);
}

/* Facility Information */
.facility-info {
    padding: 30px;
    text-align: center;
}

.facility-info h3 {
    font-size: 1.6rem;
    color: #002643; /* Navy text */
    margin-bottom: 15px;
}

.facility-info p {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .facility-grid-creative {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .facility-grid-creative {
        grid-template-columns: 1fr;
    }

    .facility-box-creative {
        max-width: 100%;
    }

    .icon-background {
        padding: 20px;
    }
}

/* Facility Section Wrapper */
.facility-section {
    padding: 60px 20px;
    background: linear-gradient(to top, #ffffff, #f4f4f4); 
    color: #002643;
    text-align: center;
	
}

/* Title */
.facility-title {
    font-size: 2.8rem;
     font-weight: 800;
    color: #002643;
    margin-bottom: 40px;
    position: relative;
}

.facility-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #007a79; /* Teal underline */
    margin: 12px auto;
    border-radius: 2px;
}

/* Grid */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Column Boxes */
.facility-column {
    background: #f9f9f9; /* Light grey card background for separation */
    color: #002643;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    text-align: left;
}

.facility-column:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

/* Category Title */
.facility-column h3 {
    font-size: 1.5rem;
    color: #004d5a;
    margin-bottom: 16px;
    border-bottom: 2px solid #007a79; /* Teal accent */
    padding-bottom: 6px;
    text-transform: uppercase;
}

/* Facility List */
.facility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facility-list li {
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    line-height: 1.5;
    transition: 0.3s ease;
}

.facility-list li em {
    font-size: 1.3rem;
    color: #004b85; /* Teal icon */
    margin-right: 12px;
}

.facility-list li:hover {
    background-color: #eef8f8; /* Very light teal hover */
    padding-left: 8px;
    border-radius: 6px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .facility-title {
        font-size: 2rem;
    }

    .facility-column h3 {
        font-size: 1.3rem;
    }

    .facility-list li {
        font-size: 1rem;
    }
}



.highlighted-attractions-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #fff, #cfdde2); /* Soft blue gradient */
  text-align: center;
}

.attractions-container {
  max-width: 1200px;
  margin: 0 auto;
}

.main-title {
  font-size: 2.5rem;
  color: #2c3e50; /* Deep slate */
  margin-bottom: 20px;
   font-weight: 800;
}

.main-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #007a79; /* Teal underline */
    margin: 12px auto;
    border-radius: 2px;
}

.things-description {
  color: #3d566e;
  font-size: 1.2rem;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.nearby-list-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.nearby-category {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(44, 62, 80, 0.1);
}

.category-title {
  font-size: 1.5rem;
  color: #004d5a; /* Soft teal blue */
  margin-bottom: 15px;
  text-transform: uppercase;
  border-bottom: 2px solid #2980b9;
  padding-bottom: 10px;
}

.nearby-item {
  font-size: 1.1rem;
  color: #34495e;
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.nearby-item i {
  font-size: 1.5rem;
  color: #004b85; /* Sky blue */
  margin-right: 10px;
}

.nearby-item:hover {
  background-color: #ebf5fb;
  border-radius: 5px;
  transition: 0.3s ease-in;
}

@media (max-width: 768px) {
  .nearby-list-container {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .nearby-list-container {
    grid-template-columns: 1fr 1fr;
  }
}




/* Modern Location Section */
.modern-location-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    background: linear-gradient(to bottom, #fff, #cfdde2);
    color: #2c3e50;
}

.location-header {
    text-align: center;
    margin-bottom: 40px;
}

.location-main-title {
    font-size: 2.8rem;
    color: #2c3e50;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.location-main-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #007a79;
    margin: 12px auto 0;
    border-radius: 2px;
}

.location-description {
    font-size: 1.2rem;
    color: #4a6572;
    margin-top: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Container */
.modern-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	margin-top:-50px;
}

/* Left Text */
.location-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Coordinates */
.coordinates-box {
    background: #ccd9df;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.coordinates-title {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.coordinate-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coordinate {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #2c3e50;
}

.coordinate em {
    font-size: 1.3rem;
    margin-right: 10px;
    color: #002643;
}

/* Form */
.directions-form {
    margin-top: 20px;
}

.input-field {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccd9df;
    background-color: #f9f9f9;
    color: #2c3e50;
    font-size: 1rem;
}

.directions-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(to right, #004b87, #004b87);
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.directions-btn:hover {
    background: linear-gradient(to right, #004b87, #002643);
    color: #ffffff;
}

/* Right Image (optional if needed) */
.location-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.location-image .image {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-image .image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1180px) {
    .modern-container {
        flex-direction: column;
        padding: 30px;
    }

    .location-text {
        margin-bottom: 20px;
    }

    .location-image {
        margin-top: 30px;
    }

    .coordinates-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 932px) {
    .location-title {
        font-size: 2.4rem;
    }

    .location-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 538px) {
    .coordinates-box {
        padding: 15px;
    }

    .coordinates-title {
        font-size: 1.5rem;
    }

    .coordinate-container {
        flex-direction: column;
    }

    .coordinate {
        font-size: 20px;
    }

    .directions-btn {
        font-size: 1rem;
    }

    .location-image .image {
        max-width: 400px;
    }
}

@media (max-width: 393px) {
    .location-title {
        font-size: 2rem;
    }

    .location-description {
        font-size: 1rem;
    }

    .input-field {
        font-size: 0.9rem;
    }

    .directions-btn {
        font-size: 1rem;
    }

    .location-image .image {
        max-width: 350px;
    }
}

/* 1. Full-width Title Section */
.contact-hero-banner {
  background: linear-gradient(to bottom, #eaf6f9, #cfdde2); /* Light blue gradient */
  padding: 60px 20px 40px;
  text-align: center;
}

.contact-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.custom-contact-title {
  font-size: 3rem;
  color: #2c3e50; /* Deep blue */
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 800;
  position: relative;
}

.custom-contact-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #00a3c4; /* Aqua line */
  margin: 12px auto 0;
  border-radius: 2px;
}

.custom-contact-description {
  font-size: 20px;
  color: #2f4f60; /* Medium-dark blue */
  font-weight: 400;
}

/* 2. Contact Info + Image Section */
.futuristic-contact-section {
  padding: 40px 20px 80px;
  background:  linear-gradient(to top, #eaf6f9, #cfdde2); /* Softer section */
}

.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, 76, 109, 0.15); /* Blue tone shadow */
  text-align: left;
  color: #2c3e50;
}

.futuristic-contact-info p {
  font-size: 18px;
  line-height: 1.6;
  color: #2c3e50;
}

.futuristic-info-block {
  margin-top: 20px;
}

.futuristic-info-block h2,
.futuristic-info-block h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #2c3e50; /* Light blue highlight */
  font-weight: 600;
}

.futuristic-info-block a {
  color: #007a9b;
  font-weight: bold;
  text-decoration: none;
}

.futuristic-info-block a:hover {
  color: #005f78;
}

/* Image Block */
.futuristic-image-block {
  flex: 1;
  max-width: 410px;
}

.contact-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 76, 109, 0.2);
  transition: transform 0.3s ease;
}

.contact-image:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 768px) {
  .custom-contact-title {
    font-size: 2.2rem;
  }

  .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: 1rem;
  }

  .contact-image {
    margin-bottom: 40px;
  }
}




/* 📍 Updated Sitemap Section - Beaverton Budget Inn Theme with Light Gradient Background */
.sitemap-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #eaf6f9, #cfdde2); /* Light blue gradient */
    text-align: center;
}

.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sitemap-title {
    font-size: 3rem;
    color: #2c3e50; /* Deep teal-blue */
    margin-bottom: 20px;
   font-weight: 800;
    
}

.sitemap-subtitle {
    font-size: 1.4rem;
    color: #3a6d84; /* Muted blue-gray */
    margin-bottom: 50px;
    font-weight: 400;
}

.sitemap-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sitemap-block {
    background-color: rgba(255, 255, 255, 0.6); /* soft white background */
    padding: 40px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 91, 127, 0.1); /* soft shadow */
    border: 1px solid #bdd7df; /* light border */
}

.sitemap-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 91, 127, 0.2);
    border-color: #7dbacb; /* deeper blue border on hover */
}

.sitemap-block h2 {
    font-size: 1.8rem;
    color:#2c3e50;
    margin-bottom: 15px;
    font-weight: 500;
    
}

.sitemap-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-block ul li {
    margin-bottom: 15px;
}

.sitemap-block ul li a {
    font-size: 20px;
    color: #2c3e50; /* dark gray-blue */
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.sitemap-block ul li a i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #007a99; /* brighter teal */
    text-shadow: 0 0 4px rgba(0, 122, 153, 0.2);
}

.sitemap-block ul li a:hover {
    color: #007a99;
}

/* 📱 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 — Beaverton Budget Inn */
.faq-section {
  padding: 30px 20px;
  background: linear-gradient(to top, #eaf6f9, #cfdde2);
  color: #2c3e50; /* Deep slate text */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(44, 62, 80, 0.1); /* soft slate accent */
  border-radius: 50%;
  z-index: 0;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-title {
  font-size: 3rem;
  font-weight: 800;
  color: #007a79; /* Teal headline */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  
}

.faq-subtitle {
  font-size: 1.4rem;
  color: #4a6572; /* slate gray */
  margin-bottom: 50px;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: left;
}

.faq-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #d1e5e8; /* light teal border */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.faq-item h2 {
  font-size: 1.8rem;
  color: #004d5a; /* deeper teal */
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #007a79;
}

.faq-item p {
  font-size: 1.1rem;
  color: #2c3e50;
  line-height: 1.8;
  margin-bottom: 15px;
}

.faq-item a {
  color: #007a79;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}

.faq-item a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #4a6572;
  transition: width 0.3s ease;
}

.faq-item a:hover {
  color: #004d5a;
}

.faq-item a:hover::after {
  width: 100%;
}

/* 🔧 Responsive */
@media (max-width: 1024px) {
  .faq-list {
    grid-template-columns: 1fr;
  }

  .faq-title {
    font-size: 2.5rem;
  }

  .faq-item h2 {
    font-size: 1.6rem;
  }

  .faq-item p {
    font-size: 1rem;
  }
}

.well1 {
	color: #3d566e;
    font-size: 1.2rem;
   max-width: 1200px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}
.well {
	color: #3d566e;
    font-size: 1.2rem;
  
    margin: 0 auto 40px auto;
    line-height: 1.6;
}