﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Rubik:wght@400;500;700&display=swap');

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background-color: #ffffff;
  color: #333;
}

/* SVG Header Shape */
.svg-header {
  position: relative;
  width: 100%;
  height: 200px; /* increased to accommodate top bar */
  overflow: hidden;
}

.svg-header .svg-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

/* Header Content Positioned Above SVG */
.header-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 10px; /* reduced to lift content */
}

/* Layout Container */
.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  gap: 10px; /* slightly reduced for tighter alignment */
}

/* Logo */
.logo {
  margin-bottom: 0;
}
.logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Nav and Button in One Row */
.nav-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Navigation Menu */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 45px;
  padding: 0;
  margin: 0;
}

.nav-menu li a {
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-size: 19px;
  transition: color 0.3s ease;
}

.nav-menu li a.active,
.nav-menu li a:hover {
  color: #1ec7ec;
}

/* Book Now Button */
.btn-book {
  background-color: #1ec7ec;
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.btn-book:hover {
  background-color: #19b0d5;
}

/* ============================= */
/*        TOP BAR STYLING       */
/* ============================= */

.header-top-bar {
  background: #ffffff;
  padding: 5px 0;
  font-size: 14px;
  color: #333;
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Address left */
.header-top-content .top-left {
  font-weight: 500;
  font-size: 18px;
}

/* Social icons right */
.header-top-content .top-right a {
  color: #0f2d3f;
  text-decoration: none;
  margin-left: 15px;
  font-size: 18px;
  transition: color 0.3s ease;
}

.header-top-content .top-right a:hover {
  color: #1ec7ec;
}
/* ============================= */
/*     HEADER BORDER ANIMATION   */
/* ============================= */

.svg-border-animation {
  transform-origin: center top;
  transform: scale(1.5);
  opacity: 0;
  animation: stampOut 0.6s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes stampOut {
  0% {
    transform: scale(1.5);
    opacity: 0;
  }
  70% {
    transform: scale(0.95);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* ============================= */
/*       Logo Stamp Animation    */
/* ============================= */
.stamp-logo {
  transform: scale(1.5);
  opacity: 0;
  animation: logoStamp 0.6s ease-out forwards;
  animation-delay: 0.4s;
}

@keyframes logoStamp {
  0% {
    transform: scale(1.5);
    opacity: 0;
  }
  70% {
    transform: scale(0.95);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ============================= */
/*     Fade-In for Nav & Button  */
/* ============================= */

.fade-in-menu,
.fade-in-btn {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in-menu {
  animation-delay: 1s;
}

.fade-in-btn {
  animation-delay: 1.2s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ============================= */
/*     MOBILE NAVIGATION         */
/* ============================= */
/* ============================= */
/*     MOBILE NAVIGATION         */
/* ============================= */
/* ============================= */
/*     MOBILE NAVIGATION         */
/* ============================= */
.mobile-nav {
  display: none;
}

@media (max-width: 1180px) {
  .mobile-nav {
    display: block;
    background: #0f2d3f;
    color: white;
    width: 100%;
    z-index: 9999;
    position: relative;
  }

  /* Top bar with hamburger */
  .mobile-nav-top {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 0;
    position: relative;
    z-index: 1001;
  }

  .mobile-menu-toggle {
    font-size: 28px;
    cursor: pointer;
    color: white;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .mobile-menu-toggle:hover {
    color: #1ec7ec;
    transform: scale(1.1);
  }

  /* Slide-down menu */
  .mobile-nav-menu {
    max-height: 0;
    overflow: hidden;
    background: linear-gradient(180deg, #0f2d3f 0%, #163d53 100%);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: max-height 0.5s ease, opacity 0.3s ease;
    opacity: 0;
    text-align: center;
    position: relative;
    z-index: 1000;
  }

  .mobile-nav-menu.open {
    max-height: 600px; /* enough space for menu */
    opacity: 1;
  }

  .mobile-nav-list {
    list-style: none;
    padding: 20px 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .mobile-nav-list li {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .mobile-nav-list li:first-child {
    border-top: none;
  }

  .mobile-nav-list li a {
    display: inline-block;
    padding: 14px 0;
    color: white;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    width: auto;
    transition: all 0.3s ease;
    position: relative;
  }

  .mobile-nav-list li a:hover {
    color: #1ec7ec;
  }

  /* Underline animation */
  .mobile-nav-list li a::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: #1ec7ec;
    transition: transform 0.3s ease;
  }

  .mobile-nav-list li a:hover::after {
    transform: translateX(-50%) scaleX(1);
  }

  /* Book Now button */
  .mobile-nav-list .mobile-btn {
    display: inline-block;
    margin: 25px auto 10px;
    background: #1ec7ec;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(30,199,236,0.4);
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .mobile-nav-list .mobile-btn:hover {
    background: #19b0d5;
    transform: translateY(-2px);
  }

  /* Overlay behind nav */
  body.mobile-menu-open::after {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 998;
    pointer-events: none;
  }

  /* Hide desktop nav */
  .svg-header .nav-cta-row,
  .svg-header .main-nav,
  .svg-header .header-cta {
    display: none;
  }
  
  /* Address left */
.header-top-content .top-left {

  font-size: 13px;
}

/* Social icons right */
.header-top-content .top-right a {
 
  font-size: 13px;
 
}
}
@media (min-width: 1181px) {
  .svg-border-animation {
    transform-origin: center top;
    transform: scale(1.5);
    opacity: 0;
    animation: stampOut 0.6s ease-out forwards;
    animation-delay: 0.3s;
  }

  .stamp-logo {
    transform: scale(1.5);
    opacity: 0;
    animation: logoStamp 0.6s ease-out forwards;
    animation-delay: 0.4s;
  }

  .fade-in-menu,
  .fade-in-btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
  }

  .fade-in-menu {
    animation-delay: 1s;
  }

  .fade-in-btn {
    animation-delay: 1.2s;
  }
}


/* Sticky Header Base */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

/* Hidden state */
.sticky-header.hide {
  transform: translateY(-100%);
  opacity: 0;
}

/* Visible state */
.sticky-header.show {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 1180px) {
  .sticky-header {
    position: relative !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .sticky-header.hide,
  .sticky-header.show {
    transform: none !important;
    opacity: 1 !important;
  }
}

.hero {
  position: relative;
  background: url('../images/new/exterior1.webp') no-repeat center center/cover;
  padding: 120px 20px;
  margin-top: 200px;
  color: #fff;
  z-index: 1;
}

/* Overlay fade effect */
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom right, rgb(15 45 63), /* Deep navy (from header) */ rgb(15 45 63 / 55%), /* Executive blue */ rgba(180, 0, 0, 0.6) /* Subtle red accent */);
  z-index: -1;
}


.hero-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

/* Left Content */
.hero-left {
  flex: 1;
  color: #fff;
}

.hero-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1ec7ec;
  margin-bottom: 15px;
}

.hero-title {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 800px;
}

.hero-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 700px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.btn-primary {
  background: #1ec7ec;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #19b0d5;
}

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
  background: #fff;
  color: #0f2d3f;
}



/* Right Content: Image Slider */
.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-slider {
  position: relative;
  width: 500px;
  height: 500px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  border: 5px solid #fff;
}

.image-slider .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.image-slider .slide.active {
  opacity: 1;
}

.image-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ============================= */
/*   Responsive Styling          */
/* ============================= */
.slide {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Simple overlay caption */
.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px 12px;
  font-size: 18px;
  text-align: center;
  font-weight:500;
  color: #fff;
  background: rgba(0, 0, 0, 0.6); /* subtle dark overlay */
}

/* Tablet (iPad) */
@media (max-width: 1180px) {
	 .hero {
    padding: 60px 15px;
    margin-top: -10px;
  }

  .hero-container {
    flex-direction: column; /* stack on tablets too */
    text-align: center;
    gap: 30px;
  }

  .hero-left {
    flex: unset;
    max-width: 90%;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 36px;
    max-width: 100%;
  }

  .hero-description {
    font-size: 15px;
    max-width: 90%;
    margin: 0 auto 25px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .image-slider {
    width: 400px;
    height: 400px;
  }
}

/* Mobile (Phones) */
@media (max-width: 768px) {
  .hero {
    padding: 60px 15px;
    margin-top: -10px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.6;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
  }

  .image-slider {
  
    max-width: 320px;
    height: 320px;
   
  }
}


.hero-divider {
  position: relative;
  margin-top: -100px; /* overlap into hero */
  z-index: 2;
}

.hero-divider svg {
  display: block;
  width: 100%;
  height: 100px;
  transform: rotate(180deg); /* flips the wave down */
}

.divider-fill {
  fill: #e5f4f7; /* Or gradient to match next section */
}

.welcome-section {
  background: #e5f4f7;
  padding: 40px 20px;
}

.welcome-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Left Side */
.welcome-left {
  position: relative;
  width: 50%;
}

/* Big Image */
.big-image {
  position: relative;
  width: 500px;
  height: 600px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  border: 8px solid transparent; /* Transparent border to create the effect */
  background-image: linear-gradient(135deg, #b40000 0%, #1ec7ec 100%); /* Gradient from logo colors */
  background-origin: border-box; /* Ensures the gradient only covers the border */
}

/* Image inside the big image */
.big-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}


/* Floating Card */
/* Floating Card */
.floating-card {
  position: absolute;
  top: 20px;   /* inside image */
  right: -10px; /* inside image */
  background-image: linear-gradient(135deg, #b40000 0%, #1ec7ec 100%);
  color: #fff;
  padding: 20px 25px;
  border-radius: 50px; /* pill shape */
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.floating-card i {
  font-size: 18px;
}

.floating-card h4 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.floating-card p {
  margin: 0;
  font-size: 13px;
  opacity: 0.9;
}


/* Small Image */
.small-image {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 300px;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  border: 8px solid transparent; /* Transparent border to create the effect */
  background-image: linear-gradient(135deg, #b40000 0%, #1ec7ec 100%); /* Gradient from logo colors */
  background-origin: border-box; /* Ensures the gradient only covers the border */
}

/* Image inside the small image */
.small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}


/* Right Side */
.welcome-right {
  width: 50%;
}

.welcome-subtitle {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #b40000;
  margin-bottom: 10px;
}

.welcome-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #0f2d3f;
}

.readmore-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #0f2d3f;
}

.welcome-description {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #000;
}

/* Initially hidden read-more content */
.read-more-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.6s ease;
  margin-top: 20px;
}

/* When active */
.read-more-content.active {
  max-height: 600px; /* adjust depending on content */
  opacity: 1;
}

/* Buttons */
.read-more-btn, .read-less-btn {
  background: #1ec7ec;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s ease;
  font-size:18px;
}

.read-more-btn:hover, .read-less-btn:hover {
  background: #19b0d5;
}

.read-less-btn {
  display: none; /* hidden by default */
}

/* Expanded layout */
.welcome-container.expanded {
  transition: all 0.6s ease;
}

.welcome-container.expanded .welcome-left {
  display: none;
}

.welcome-container.expanded .welcome-right {
  flex: 1 1 100%;
  max-width: 100%;
  transition: all 0.6s ease;
}
/* 🔹 Animation Keyframes (only once) */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes popIn {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* 🔹 Reusable Animation Classes */
.animate-fadeUp { animation: fadeUp 0.8s ease forwards; }
.animate-fadeRight { animation: fadeRight 0.8s ease forwards; }
.animate-popIn { animation: popIn 0.6s ease forwards; }

/* 🔹 Optional Stagger (JS will add delays) */
[data-delay="0.2s"] { animation-delay: 0.2s; }
[data-delay="0.4s"] { animation-delay: 0.4s; }
[data-delay="0.6s"] { animation-delay: 0.6s; }
[data-delay="0.8s"] { animation-delay: 0.8s; }

/* Mobile and Tablet Responsiveness */
@media (max-width: 1024px) {
  .welcome-container {
    flex-direction: column;
    text-align: center;
  }

  .welcome-left, .welcome-right {
    width: 100%;
    margin-bottom: 30px;
  }

  .big-image {
    width: 90%;  /* Make images take up more space on small screens */
    max-width: 500px;  /* Set maximum width */
    height: auto;      /* Maintain aspect ratio */
    margin: 0 auto 20px;    /* Center images and add some spacing between them */
  }
.small-image{
	  display:none;
  }
  .floating-card {
  display:none;
  }
}

@media (max-width: 768px) {
  .welcome-title {
    font-size: 28px;  /* Slightly smaller title size */
  }

  .welcome-description {
    font-size: 14px;
  }

  .read-more-btn, .read-less-btn {
    font-size: 14px;
  }

  /* Stacking the images vertically */
  .big-image {
    width: 100%;  /* Take up the full width of the container */
    max-width: 400px;  /* Set max width for small images */
    height: auto;
    margin: 0 auto 20px;  /* Center align and provide space between images */
  }
  .small-image{
	  display:none;
  }
  

  .floating-card {
    top: 15px;
    right: 15px;
    width: 85%;
    max-width: 250px;
  }
}



/* Section Background */
.amenities-section {
  background: #0f2d3f;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  color: #fff;
  overflow: hidden;
}


/* Subtitle & Title */
.amenities-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ffdd57;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.6s ease;
}

.amenities-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 60px;
  color: #fff;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.6s ease 0.2s;
}

/* Grid */
.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

/* Each Item */
.amenity-item {
  width: 200px;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.icon-circle {
  width: 200px;
  height: 200px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #0f2d3f;
  font-size: 80px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  border: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.icon-circle::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1ec7ec, #b40000);
  z-index: -1;
  
}

.amenity-item span {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

/* Hover Effects */
.amenity-item:hover .icon-circle {
  transform: rotate(10deg) scale(1.1);
  transition: 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  color:#fff;
}

/* Active Animations */
.amenities-section.active .amenities-subtitle,
.amenities-section.active .amenities-title {
  opacity: 1;
  transform: translateX(0);
}

.amenity-item.amenity-animate {
  opacity: 1;
  transform: translateY(0);
  animation: bounceIn 0.6s ease;
}
/* Mobile and Tablet Responsiveness */
@media (max-width: 1024px) {
  .amenities-grid {
    justify-content: center;
    gap: 20px;
  }

  .amenity-item {
    width: 150px; /* Reduce the size of the items for smaller screens */
  }

  .icon-circle {
    width: 150px;
    height: 150px;
    font-size: 50px; /* Adjust the icon size for better visibility */
  }

  .amenity-item span {
    font-size: 16px; /* Adjust text size */
  }

  .amenities-title {
    font-size: 32px; /* Smaller title for mobile screens */
  }

  .amenities-subtitle {
    font-size: 12px; /* Smaller subtitle */
  }
}

@media (max-width: 768px) {
  .amenities-title {
    font-size: 28px; /* Further adjust the title size */
  }

  .amenities-subtitle {
    font-size: 10px; /* Smaller subtitle */
  }

  .amenity-item {
    width: 120px; /* Further reduce item width */
  }

  .icon-circle {
    width: 120px;
    height: 120px;
    font-size: 40px; /* Smaller icons */
  }

  .amenity-item span {
    font-size: 14px; /* Smaller font for item text */
  }
}
/* Bounce effect */
@keyframes bounceIn {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}
@media (min-width: 769px) {
  .amenities-subtitle {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.6s ease;
  }

  .amenities-title {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.6s ease 0.2s;
  }

  .amenity-item {
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

  .amenities-section.active .amenities-subtitle,
  .amenities-section.active .amenities-title {
    opacity: 1;
    transform: translateX(0);
  }

  .amenity-item.amenity-animate {
    opacity: 1;
    transform: translateY(0);
    animation: bounceIn 0.6s ease;
  }

  @keyframes bounceIn {
    0% { transform: scale(0.5); opacity: 0; }
    60% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
  }
}

/* Divider */
.amenities-divider {
  position: relative;
  Background: #e5f4f7;
  z-index: 2;
}
.amenities-divider svg {
  display: block;
  width: 100%;
  height: 100px;
  transform: rotate(180deg); /* wave points downward */
}
.amenities-divider-fill {
  fill: url(#amenitiesGradient); /* Uses same gradient as section */
}


.hero-divider1 {
  position: relative;
  margin-top: -80px; /* overlap into hero */
  z-index: 2;
  Background:#0f2d3f;
}

.hero-divider1 svg {
  display: block;
  width: 100%;
  height: 100px;
  transform: rotate(180deg); /* flips the wave down */
}

.divider-fill1 {
  fill: #e5f4f7; /* Or gradient to match next section */
}


.rooms-section {
  background: #e5f4f7;
  padding: 100px 20px;
  text-align: center;
}

.rooms-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.rooms-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #b40000;
  margin-bottom: 10px;
}

.rooms-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #0f2d3f;
}

.rooms-desc {
  font-size: 18px;
  color: #000;
  line-height: 1.7;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.room-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.room-card:hover {
  transform: translateY(-10px);
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 8px solid transparent; /* Transparent border to create the effect */
  background-image: linear-gradient(115deg, #ffffff  50%, #b40000 50%); /* Gradient from logo colors */
  background-origin: border-box; /* Ensures the gradient only covers the border */
}



.room-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.room-price {
  font-size: 18px;
  font-weight: 600;
  color: #444;
  margin-bottom: 15px;
}

.room-price span {
  font-size: 26px;
  font-weight: bold;
  color: #1ec7ec;
}

.room-facilities {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

.room-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #1ec7ec;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.room-btn:hover {
  background: #0f2d3f;
}

/* Responsive */
@media (max-width: 991px) {
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  .room-info {
    width: 70%;
    border-radius: 0 50% 50% 0;
  }
}
.room-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-image: linear-gradient(135deg, #b4000080 0%, #1ec7ec80 100%);
  padding: 10px 20px;
  text-align: center;
  border-top-left-radius: 50% 40px;
  border-top-right-radius: 50% 40px;
}

.room-overlay h3 {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.room-facilities {
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
}

.room-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #1ec7ec;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.room-btn:hover {
  background: #0f2d3f;
}

.hero-divider2 {
  position: relative;
  margin-top: -80px; /* overlap into hero */
  z-index: 2;
 Background:#e5f4f7;
}

.hero-divider2 svg {
  display: block;
  width: 100%;
  height: 100px;
  transform: rotate(180deg); /* flips the wave down */
}

.divider-fill2 {
  fill: #fff; /* Or gradient to match next section */
}
.attractions-section {
  padding: 60px 20px;
  background-color: #0f2d3f; /* Keep the white background */
  text-align: center;
}

.attractions-header h2 {
  font-size: 40px;
  color:#fff; /* Dark blue color to match the layout */
  margin-bottom: 10px;
}


.attractions-header p {
  font-size: 16px;
  color: #fff; /* Lighter gray color for description */
  margin-bottom: 40px;
}


  
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.attraction-card {
  background: linear-gradient(135deg, #b40000 0%, #1ec7ec 100%);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.attraction-card:hover {
  transform: translateY(-5px);
}

.attraction-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: 5px solid transparent; /* Transparent border to create the effect */
  background-image: linear-gradient(115deg, #ffffff  0%, #b40000 100%); /* Gradient from logo colors */
  background-origin: border-box; /* Ensures the gradient only covers the border */
}

.attraction-card h3 {
  font-size: 20px;
  color: #fff; /* Dark blue for the heading */
  margin: 15px 0;
}

.attraction-card p {
  font-size: 14px;
  color: #fff; /* Darker gray for description text */
  padding: 0 15px 15px;
}
.hero-divider3 {
  position: relative;
  margin-top: -50px; /* overlap into hero */
  z-index: 2;
  Background:#0f2d3f;
}

.hero-divider3 svg {
  display: block;
  width: 100%;
  height: 100px;
  transform: rotate(180deg); /* flips the wave down */
}

.divider-fill3 {
  fill: #e5f4f7; /* Or gradient to match next section */
}
/* Media Section */
.media-section {
  padding: 60px 8%;
  background: #e5f4f7;
  font-family: 'Montserrat', sans-serif;
}

/* Header */
.media-header {
  text-align: center;
  margin-bottom: 40px;
}

.media-title {
  font-size: 36px; /* Updated font size for title */
  font-weight: 700;
  text-transform: uppercase;
  color: #0f2d3f; /* Dark blue color from your layout */
  margin: 0;
  position: relative;
}



/* Subtitle */
.media-subtitle {
  font-size: 16px;
  color: #000; /* Light grey text color */
  margin-top: 10px;
  line-height: 1.6;
  text-transform: none;
}

/* Flex container for video + gallery */
.media-flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Left - Video */
.media-video {
  flex: 1 1 50%;
}

.video-placeholder {
  background: #222;
  color: #fff;
  width: 100%;
  height: 513px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

.video-placeholder .play-icon {
  width: 70px;
  height: 70px;
  background: #1ec7ec;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #000;
  margin-bottom: 12px;
}

/* Right - Gallery */
.media-gallery {
  flex: 1 1 50%;
}

.media-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* Image Wrapper */
.media-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.media-gallery-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Overlay with plus sign */
.media-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #b4000080 0%, #1ec7ec80 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 6px;
}

/* Plus Sign */
.media-overlay em {
  font-size: 28px;
  color: #000;                 /* Black for strong contrast */
  background: #1ec7ec;         /* Yellow circle */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Hover Effect */
.media-gallery-item:hover img {
  transform: scale(1.05);
}

.media-gallery-item:hover .media-overlay {
  opacity: 1;
}


/* Lightbox */
.media-lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.media-lightbox.active {
  display: flex;
}

.media-lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
}

.media-lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}

/* Tablet */
@media (max-width: 992px) {
  .media-flex {
    flex-direction: column;
    gap: 30px;
  }

  .media-video,
  .media-gallery {
    flex: 1 1 100%;
    width: 100%;   /* ✅ force full width */
  }

  .video-placeholder {
    height: 350px; /* smaller height for tablets */
    width: 100%;   /* ✅ fills container */
  }

  .media-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .media-gallery-item img {
    height: 140px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .media-video,
  .media-gallery {
    flex: 1 1 100%;
    width: 100%;   /* ✅ ensures full width */
  }

  .video-placeholder {
    height: auto;             /* ✅ make it flexible */
    aspect-ratio: 16 / 9;     /* ✅ keep proper video proportions */
    max-height: 220px;        /* limit for small devices */
    width: 100%;
  }

  .media-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .media-gallery-item img {
    height: 120px;
  }

  .media-title {
    font-size: 1.8rem;
  }
}

.site-footer {
  background: linear-gradient(105deg, #b40000, #2c4656);  /* Deep Red to Navy Gradient */
  padding: 60px 20px 30px;
  color: #ffffff;  /* White text for contrast */
  font-size: 18px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
 
 

  /* Outer Border (Red similar to header) */
  border: 6px solid #b40000;   /* Red Border */
  box-shadow: inset 0 0 0 4px #ffffff; /* White inner border for clean contrast */
}

/* Gradient Animation */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

/* Title and layout adjustments */
.footer-col {
  flex: 1 1 320px;
}

/* Titles */
.footer-title {
  font-size: 28px;
  color: #ffffff; /* White for titles */
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 6px;
  display: inline-block;
  min-width: 280px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #ffffff; /* White accent */
}

.footer-title a {
  text-decoration: none;
  color: inherit; /* Inherits white color from .footer-title */
}

.footer-title a:hover {
  text-decoration: none; /* Optional: ensure no underline on hover */
}
.cgsl {
  color: #ffffff; /* White color */
  text-decoration: none; /* No underline */
}

.cgsl:hover {
  text-decoration: none; /* Optional: keeps it clean on hover */
  color: #ffffff; /* Keeps color consistent on hover */
}


/* Links */
.footer-links-columns {
  display: flex;
  gap: 40px;
}

.footer-links-columns a {
  color: #ffffff; /* White for links */
  text-decoration: none;
  font-weight: 500;
 
}

.footer-links-columns a:hover {
  color: #ffeb3b;  /* Bright Yellow Hover Effect */
  border-color: #ffeb3b;  /* Yellow Border on Hover */
}

/* Social Links */
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social a {
  color: #ffffff; /* White for social media links */
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
}

.footer-social a:hover {
  color: #ffeb3b;  /* Yellow Hover Effect */
}

/* Footer Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 50px auto 0;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom-left,
.footer-bottom-right {
  color: #ffffff;  /* White for footer bottom text */
}

.footer-bottom-right a {
  color: #ffffff;  /* White for footer links */
}

.footer-bottom-right a:hover {
  color: #ffeb3b;  /* Yellow on hover */
}

/* Media Queries for responsiveness */

/* Mobile Devices */
/* Mobile Devices */
@media (max-width: 576px) {
  .footer-container {
    flex-direction: column;  /* Stack the columns vertically */
    align-items: center;  /* Center the content */
    gap: 30px;  /* Add some gap between the sections */
  }

  .footer-col {
    width: 100%;  /* Ensure each column takes full width */
    text-align: center;  /* Center-align the text in the columns */
  }

  .footer-title {
    font-size: 24px;  /* Adjust title size */
    text-align: center;  /* Center the title */
    margin-bottom: 20px;
  }

  .footer-links-columns {
    gap: 20px;  /* Reduce the gap between the link columns */
    justify-content: center;  /* Center the links */
    flex-wrap: wrap;  /* Allow wrapping of links */
  }

  .footer-links-columns a {
    font-size: 18px;  /* Smaller font size for mobile */
  }

  .footer-bottom {
    flex-direction: column;  /* Stack the footer bottom content vertically */
    text-align: center;  /* Center-align the text in footer bottom */
  }

  .footer-bottom-left,
  .footer-bottom-right {
    margin-bottom: 15px;  /* Add space between footer bottom sections */
  }
}


/* Tablet Devices */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
.footer-title::after {
 display:none;
}
  .footer-col {
    width: 100%;
    text-align: center;
  }

  .footer-title {
    font-size: 26px;
    text-align: center;
  }

  .footer-links-columns {
    gap: 30px;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}



/* Back to Top Button Styles */
.back-to-top-btn {
  position: fixed;
  bottom: 30px;  /* Position it at the bottom */
  right: 30px;   /* Position it at the right side */
  background-color: transparent;  /* Transparent background */
  color: #b40000;  /* White text */
  border: 2px solid #ffffff; /* White border to make it stand out */
  border-radius: 50%;  /* Circular shape */
  padding: 15px;
  font-size: 50px;
  cursor: pointer;
  z-index: 1000;  /* Ensure it's on top of other elements */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);  /* Add floating shadow effect */
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  display: none;  /* Initially hidden */
  backdrop-filter: blur(10px);  /* Optional: slight blur for transparent background */
}

/* Hover effect for the button */
.back-to-top-btn:hover {
  opacity: 0.8;  /* Slightly fade out on hover */
  transform: scale(1.1);  /* Slightly enlarge the button for emphasis */
}


.inner-hero {
  position: relative;
  height: 600px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* 👈 makes background sticky */
  display: flex;
  align-items: center;
  color: #fff;
  margin-top: 80px;
}


.inner-hero-overlay {
  background: linear-gradient(to bottom right, rgba(15, 45, 63, 0.95), rgba(180, 0, 0, 0.5));
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.inner-hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  padding: 0 40px;
  width: 100%;
  margin: 0 auto;
}

.inner-hero-left {
  flex: 1;
  padding-right: 30px;
}

.inner-hero-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 15px;
}

.inner-hero-description {
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
}

.inner-hero-right {
  flex: 1;
  text-align: right;
}

.inner-hero-right img {
  max-height: 350px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .inner-hero-container {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .inner-hero-left,
  .inner-hero-right {
    flex: unset;
    padding: 0;
  }

  .inner-hero-right {
    margin-top: 20px;
  }

  .inner-hero-title {
    font-size: 28px;
  }

  .inner-hero-description {
    font-size: 14px;
  }

  .inner-hero-right img {
    max-width: 90%;
    max-height: 250px;
  }
}
/* === Logo-Matched Amenities Section === */
.amenities-inner-section {
  padding: 30px 20px;
  background-color: #e5f4f7;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.amenities-inner-wrapper {
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.amenities-inner-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f2d3f;
  letter-spacing: 0.5px;
  position: relative;
}

.amenities-inner-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background-color: #c8040d; /* Red from logo */
  margin: 18px auto 40px;
  border-radius: 2px;
}

.amenities-inner-description {
  font-size: 18px;
  color: #303030;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.amenities-inner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.amenities-inner-card {
  background: radial-gradient(circle at top left, #ffffff, #f9f9f9);
  border-radius: 16px;
  padding: 40px 30px;
  border: 1px solid #eeeeee;
  transition: all 0.35s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.035);
  text-align: center;
  position: relative;
}

.amenities-inner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
  background: #fff;
}

.amenities-inner-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 25px;
  background: linear-gradient(145deg, #ffffff, #f1f1f1);
  border: 2px solid #c8040d;
  box-shadow:
    inset -2px -2px 5px rgba(255, 255, 255, 0.6),
    inset 2px 2px 5px rgba(0, 0, 0, 0.05),
    0 6px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.amenities-inner-card:hover .amenities-inner-icon-wrap {
  background: linear-gradient(145deg, #c8040d, #a8020b); /* Darker red shade */
  box-shadow:
    inset -2px -2px 5px rgba(255, 255, 255, 0.4),
    inset 2px 2px 5px rgba(0, 0, 0, 0.08),
    0 10px 25px rgba(0, 0, 0, 0.15);
}

.amenities-inner-icon-wrap i {
  font-size: 50px;
  color: #c8040d;
  transition: color 0.3s ease;
}

.amenities-inner-card:hover .amenities-inner-icon-wrap i {
  color: #ffffff;
}

.amenities-inner-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #0f2d3f;
}

.amenities-inner-text {
  font-size: 17px;
  color: #303030;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .amenities-inner-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
  }

  .amenities-inner-card {
    padding: 30px 20px;
  }

  .amenities-inner-icon-wrap {
    width: 80px;
    height: 80px;
  }

  .amenities-inner-icon-wrap i {
    font-size: 40px;
  }

  .amenities-inner-title {
    font-size: 32px;
  }

  .amenities-inner-description {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .amenities-inner-name {
    font-size: 18px;
  }

  .amenities-inner-text {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .amenities-inner-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .amenities-inner-wrapper {
    padding: 0 10px;
  }

  .amenities-inner-icon-wrap {
    width: 70px;
    height: 70px;
  }

  .amenities-inner-icon-wrap i {
    font-size: 32px;
  }

  .amenities-inner-card {
    padding: 25px 15px;
  }

  .amenities-inner-title {
    font-size: 26px;
  }

  .amenities-inner-description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .amenities-inner-name {
    font-size: 16px;
  }

  .amenities-inner-text {
    font-size: 13px;
  }
}

/* === Enhanced Full Amenities List === */
.amenities-full-list-section {
  padding: 30px 20px;
  background: #0f2d3f;
  text-align: center;
 
  position: relative;
  z-index: 1;
}

.amenities-full-list-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.amenities-full-list-title {
  font-size: 36px;
  color: #0f2d3f;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}

.amenities-full-list-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #c8040d;
  margin: 18px auto 40px;
  border-radius: 2px;
}

.amenities-full-list-description {
  font-size: 18px;
  color: #555;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.amenities-full-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  text-align: left;
}

.amenities-full-list-category {
  background: #fff;
  border-radius: 14px;
  padding: 30px 25px;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.amenities-full-list-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: #c8040d;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.amenities-full-list-category:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.amenities-full-list-category:hover::before {
  opacity: 1;
}

.amenities-full-list-category h3 {
  font-size: 22px;
  font-weight: 700;
  color: #c8040d;
  margin: 20px 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px dashed #ddd;
}

.amenities-full-list-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenities-full-list-category ul li {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}

.amenities-full-list-category ul li::before {
  content: "\f00c"; /* Font Awesome check icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #c8040d;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .amenities-full-list-title {
    font-size: 28px;
  }

  .amenities-full-list-description {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .amenities-full-list-category h3 {
    font-size: 20px;
  }

  .amenities-full-list-category ul li {
    font-size: 17px;
  }
}
.ttd-section {
  padding: 80px 20px;
  background: #e5f4f7;
}

.ttd-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header - Title Left, Description Right */
.ttd-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  gap: 40px;
}

.ttd-title {
  flex: 1;
  font-size: 38px;
  font-weight: 700;
  color: #0f2d3f;
}

.ttd-description {
  flex: 1;
  font-size: 18px;
  color: #303030;
  line-height: 1.7;
}

/* Slider */
.ttd-slider {
  position: relative;
  display: flex;
  align-items: center;
}

.ttd-track-wrapper {
  overflow: hidden;
  flex: 1;
}

.ttd-track {
  display: flex;
  transition: transform 0.5s ease;
}

.ttd-card {
  flex: 0 0 25%; /* show 4 at a time (3 full + 1 partial) */
  margin-right: 20px;
 
  overflow: hidden;
  position: relative;
}

.ttd-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.ttd-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 15px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

/* Arrows Overlay */
.ttd-arrow {
  background: rgb(255 255 255 / 90%);
  color: #555;
  border: none;
  font-size: 30px;
  font-weight: bold;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: none; /* default hidden, JS will handle */
}


.ttd-prev {
  left: 10px;
}

.ttd-next {
  right: 160px;
}



/* Responsive */
@media (max-width: 992px) {
  .ttd-card {
    flex: 0 0 40%; /* show 2 full + 1 half */
  }
  
}

@media (max-width: 600px) {
  .ttd-header {
    flex-direction: column;
    text-align: center;
  }

  .ttd-card {
    flex: 0 0 80%; /* show 1 full + 1 half */
  }
}

/* === Things To Do Full List === */
.ttd-full-list-section {
  padding: 30px 20px;
  background: #0f2d3f;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ttd-full-list-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.ttd-full-list-title {
  font-size: 36px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}

.ttd-full-list-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #c8040d;
  margin: 18px auto 40px;
  border-radius: 2px;
}

.ttd-full-list-description {
  font-size: 18px;
  color: #ddd;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.ttd-full-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: 30px;
  text-align: left;
}

.ttd-full-list-category {
  background: #fff;
  border-radius: 14px;
  padding: 25px 20px;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ttd-full-list-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: #c8040d;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ttd-full-list-category:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.ttd-full-list-category:hover::before {
  opacity: 1;
}

.ttd-full-list-category h3 {
  font-size: 20px;
  font-weight: 700;
  color: #c8040d;
  margin: 15px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px dashed #ddd;
}

.ttd-full-list-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ttd-full-list-category ul li {
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}

.ttd-full-list-category ul li::before {
  content: "\f041"; /* Font Awesome map-marker-alt */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #c8040d;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .ttd-full-list-title {
    font-size: 28px;
  }

  .ttd-full-list-description {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .ttd-full-list-category h3 {
    font-size: 18px;
  }

  .ttd-full-list-category ul li {
    font-size: 14px;
  }
}
/* === Contact Section === */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #e5f4f7 0%, #0f2d3f 100%);
  text-align: center;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  margin-bottom: 50px;
}

.contact-title {
  font-size: 36px;
  font-weight: 700;
  color: #0f2d3f; /* white for better contrast */
  margin-bottom: 15px;
}

.contact-description {
  font-size: 18px;
  color: #000; /* light gray text for readability */
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: start;
}

.contact-card {
  padding: 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2); /* softer divider */
}

.contact-card:last-child {
  border-right: none;
}

.contact-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #c8040d; /* red from your logo */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.contact-card h3 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff; /* white for titles */
}

.contact-card p {
  font-size: 18px;
  color: #e0e0e0; /* light gray for body text */
  line-height: 1.6;
   
}

/* Responsive */
@media (max-width: 768px) {
  .contact-title {
    font-size: 28px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 30px;
  }

  .contact-card:last-child {
    border-bottom: none;
  }
}
/* Location Section Alt */
.location-section-alt {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #e5f4f7 0%, #0f2d3f 100%);
}

.location-wrapper-alt {
  max-width: 1250px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
}

/* Left Side Info */
.location-info-alt {
  flex: 1;
  min-width: 320px;
}

.location-title {
  font-size: 40px;
  font-weight: 700;
  color: #0f2d3f;
  margin-bottom: 15px;
}

.location-description {
  font-size: 1rem;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.6;
}

.location-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  gap: 15px;
}

.info-card i {
  font-size: 22px;
  color: #c8040d;
  margin-top: 5px;
}

.info-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #0f2d3f;
}

.info-card p {
  font-size: 0.95rem;
  color: #111;
  line-height: 1.4;
}

/* Right Side Map */
.location-map-alt {
  flex: 1.3;
  min-height: 400px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Floating Form */
.route-form-overlay {
  position: absolute;
  bottom: 20px;
  right: 40px;
  background: rgba(15, 45, 63, 0.95);
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  max-width:650px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.route-form-overlay h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #fff;
}

.route-form-overlay form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: none;
  font-size: 0.95rem;
}

.route-form-overlay form button {
  width: 100%;
  padding: 12px;
  background: #c8040d;
  color: #fff;
  border: none;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.route-form-overlay form button:hover {
  background: #a6020a;
}

/* Responsive */
@media (max-width: 992px) {
  .location-wrapper-alt {
    flex-direction: column;
  }

  .location-map-alt {
    height: 350px;
  }

  .route-form-overlay {
    position: static;
    margin-top: 20px;
    max-width: 100%;
  }
}
/* 🌐 Sitemap Section */
.sitemap-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #e5f4f7 0%, #0f2d3f 100%);
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

.sitemap-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sitemap-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color:#0f2d3f; /* Red highlight from logo */
}

.sitemap-subtitle {
  font-size: 18px;
  max-width: 1200px;
  margin: 0 auto 50px;
  color: #0f2d3f; /* Dark navy text for contrast */
  line-height: 1.6;
}

/* Sitemap Grid */
.sitemap-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Block Styling */
.sitemap-block {
  background: #ffffff;
  color: #0f2d3f;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  border-top: 4px solid #c8040d; /* Red accent */
}

.sitemap-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.sitemap-block h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f2d3f;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sitemap-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-block ul li {
  margin-bottom: 14px;
}

.sitemap-block ul li a {
  font-size: 18px;
  text-decoration: none;
  color: #01141f;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.sitemap-block ul li a:hover {
  color: #c8040d; /* Red hover */
}

.sitemap-block ul li a i {
  color: #c8040d; /* Red for icons */
}

/* 📱 Responsive */
@media (max-width: 992px) {
  .sitemap-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .sitemap-links {
    grid-template-columns: 1fr;
  }
}
/* === FAQ Section - Executive Inn & Suites Tyler === */
.faq-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #e5f4f7 0%, #0f2d3f 100%);
  color: #fff;
  text-align: center;
}

.faq-container {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-title {
  font-size: 40px;
  font-weight: 700;
  color: #0f2d3f;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.faq-subtitle {
  font-size: 18px;
  color: #0f2d3f;
  max-width: 1300px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: left;
}

.faq-item {
  background: #ffffff;
  color: #333;
  padding: 25px 30px;
  border-radius: 12px;
  border-left: 5px solid #c8040d; /* Brand red accent */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.faq-item h2 {
  font-size: 23px;
  font-weight: 600;
  color: #0f2d3f;
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
}

.faq-item a {
  color: #c8040d;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.faq-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #c8040d;
  transition: width 0.3s ease;
}

.faq-item a:hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-title {
    font-size: 28px;
  }
  .faq-subtitle {
    font-size: 14px;
  }
  .faq-item h2 {
    font-size: 18px;
  }
  .faq-item p {
    font-size: 14px;
  }
}
