﻿@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');

/* Reset & Base Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Apply to body and global text */
body {
  font-family:  'Lato', sans-serif;
 font-size:17px;
  color: #111;
background-color: #00557736;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='800' viewBox='0 0 1600 800'%3E%3Cg%3E%3Cpolygon fill='%238fb3bf' points='0 120 800 0 1600 120 1600 320 800 200 0 320'/%3E%3Cpolygon fill='%23a6c6d0' points='0 260 800 120 1600 260 1600 460 800 320 0 460'/%3E%3Cpolygon fill='%23bdd8df' points='0 400 800 260 1600 400 1600 600 800 460 0 600'/%3E%3Cpolygon fill='%23d3e6eb' points='0 540 800 400 1600 540 1600 740 800 600 0 740'/%3E%3Cpolygon fill='%23e9f2f5' points='0 680 800 540 1600 680 1600 880 800 740 0 880'/%3E%3C/g%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
}

/* Headings with emphasis */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 25px;
  z-index: 1000;
  font-size: 22px;
  background: linear-gradient(135deg, #005577, #ec1f32);
  color: #fff;
  border: none;
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  display: none;
}

#backToTop:hover {
  background: linear-gradient(135deg, #ec1f32, #005577);
  color: #fff;
  transform: scale(1.1);
}
/* Top Bar Styling */
.top-bar {
    background: linear-gradient(135deg, #005577, #005577), url(../images/exterior.jpg);
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 8px 0;
    font-size: 14px;
    width: 100%;
    z-index: 9999;
}

/* Top Bar Container */
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Left, Center, Right Sections */
.top-left, .top-right, .top-center {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* Links & Icons */
.top-left a, .top-right a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 12px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 18px;
    position: relative;
    z-index: 99999;
}

.top-left a:hover, .top-right a:hover {
    color: #D0FFD7; /* light mint shade for hover */
}

/* Social Icons */
.top-center {
    justify-content: center;
    width: 100%;
    margin-top: 5px;
}

.top-center a {
    font-size: 18px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.top-center a:hover {
    color: #A8E6B5; /* lighter green */
    transform: scale(1.1);
}

.separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.4);
}

/* Mobile & Tablet Layout */
@media (max-width: 1040px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
        padding: 6px;
        gap: 3px;
    }

    .top-left {
        width: 100%;
        text-align: left;
        justify-content: flex-start;
        padding: 5px 10px;
    }

    .top-right {
        width: 100%;
        text-align: right;
        justify-content: flex-end;
        padding: 5px 10px;
    }

    .top-center {
        display: flex;
        justify-content: center;
        margin: 5px 0;
		
    }

    .separator {
        display: none;
    }
}

/* Extra Small Screens (393x852, 430x932, 538x1040, 820x1180) */
@media (max-width: 820px) {
    .top-bar {
        padding: 6px 8px;
        font-size: 13px;
    }

    .top-left, .top-right {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        padding: 5px 15px;
    }

    .top-left {
        text-align: left;
    }

    .top-right {
        text-align: right;
    }

    .top-center {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 6px;
    }

    .top-left a, .top-right a {
        font-size: 17px;
        margin-right: 6px;
    }
}
/* Transparent Glass Header Styles */
.site-header {
  background-color: rgba(255, 255, 255, 0.85); /* Semi-transparent white */
  padding: 6px 20px; /* Reduced height */
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Header Container */
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Logo Container */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  max-width: 220px;
}

/* Logo Image */
.logo img {
  height: 80px;
  width: auto;
  max-width: 80%;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-nav a {
  text-decoration: none;
  color: #2E2E2E;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #ed1b2e; 
}

/* Active Link */
.nav-link.active {
   color: #ed1b2e;
    
  padding-bottom: 3px;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-link {
  display: block;
  color: #2E2E2E;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px;
  transition: color 0.3s ease;
}

.dropdown-link:hover {
  color: #007A33;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background: #ffffff;
  border-radius: 8px;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #2E2E2E;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
  background:#5ea379;
  color: #ffffff;
  
}

/* Contact / CTA Button */
.contact-btn {
  background: linear-gradient(135deg, #005577, #005577);
  color: #ffffff;
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  text-decoration: none;
}

.contact-btn:hover {
  transform: scale(1.08);
  background: linear-gradient(135deg, #005577, #005577);
  color: #ffffff;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #2E2E2E;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgb(246 246 244);
  color: #2E2E2E;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  z-index: 9999;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease-in-out;
}

.mobile-nav.active {
  display: flex;
}

.mobile-header {
  position: absolute;
  top: 160px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-header img {
  height: 70px;
  max-width: 180px;
}

.mobile-header .mobile-close {
  font-size: 1.6rem;
  color: #2E2E2E;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-header .mobile-close:hover {
  color: #007A33;
  transform: rotate(90deg);
}

.mobile-nav a {
  text-decoration: none;
  color: #2E2E2E;
  font-size: 20px;
  font-weight: 600;
  padding: 14px 0;
  text-align: center;
  width: 100%;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #007A33;
}

/* Show Hamburger on Mobile */
@media (max-width: 1024px) {
  .hamburger-menu {
    display: block;
  }
  .main-nav {
    display: none;
  }
  .logo img {
    height: 50px;
  }
}

/* Small Devices Optimization */
@media (max-width: 600px) {
  .contact-btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
  .hamburger-menu {
    font-size: 1.4rem;
  }
  .mobile-nav a {
    font-size: 1.2rem;
    padding: 10px 0;
  }
  .mobile-header .mobile-close {
    font-size: 1.5rem;
  }
  .mobile-header img {
    height: 50px;
  }
}


/* Extra Small Screens (393x852, 430x932) */
@media (max-width: 600px) {
    .site-header {
        padding: 8px 12px;
    }

    .logo img {
        height: 35px;
    }

    .hamburger-menu {
        font-size: 1.6rem;
    }

    .contact-btn {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}
/* 📱 Responsive Design */
@media (max-width: 820px) {
    .logo {
        padding: 4px 8px;
        max-width: 180px; /* Slightly smaller */
		
    }
    .logo img {
        height: 100px;
		
    }
}

@media (max-width: 538px) {
    .logo {
        padding: 3px 6px;
        max-width: 160px;
    }
    .logo img {
        height: 100px;
    }
}

@media (max-width: 430px) {
    .logo {
        padding: 3px 5px;
        max-width: 150px;
    }
    .logo img {
        height: 32px;
    }
}

@media (max-width: 393px) {
    .logo {
        padding: 2px 4px;
        max-width: 140px;
    }
    .logo img {
        height:100px;
    }
}

/* Hero Container */
.hero-slider-boutique {
  position: relative;
  width: 100%;
  height: 120vh;
  overflow: hidden;
  margin-top:-98px;
}

/* Each Slide */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.show {
  opacity: 1;
  z-index: 1;
}

/* Slide background fade overlay */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgb(0 0 0 / 0%), rgb(0 85 119)); /* Black to Holiday Green */
  z-index: 0;
}

/* Inner Container */
.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 90%;
  gap: 40px;
  color: #fff;
  position: relative;
  z-index: 1;
  animation: fadeIn 1s ease forwards;
}

/* Hero Text Panel */
.hero-text {
  flex: 1;
  background: #005577ba; /* Holiday Green with transparency */
  padding: 35px 40px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
  animation: fadeInLeft 1.2s ease both;
}

/* Heading */
.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-align: left;
  color: #FDFDFD; /* White */
}

/* Paragraph */
.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  text-align: left;
  color: #E7F7ED; /* Soft mint */
}

/* CTA Button */
.btn-hero {
  padding: 12px 30px;
  background: linear-gradient(135deg, #005577, #ec3748); /* Green gradient */
  color: #ffffff;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  background: linear-gradient(135deg, #ec3748, #005577);
  color: #ffffff;
}

/* Hero Image (Circle) */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1.4s ease both;
}

.hero-image img {
  width: 600px;
  height: 600px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(0, 122, 51, 0.15), 0 12px 28px rgba(0, 0, 0, 0.5);
  border: 3px solid #ffffffcc;
}

/* Navigation Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: #005577;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.arrow:hover {
  background: #eb3c4b;
  color: #ffffff;
}

.arrow.prev {
  left: 25px;
}

.arrow.next {
  right: 25px;
}

/* Dot Navigation */
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-dots .dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-dots .dot.active {
  background: #ed1d30; /* Holiday Green */
}

/* Animations */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}


/* Mobile Responsiveness */
@media (max-width: 768px) {
	
  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text {
    padding: 20px;
    text-align: center;
  }

  .hero-text h1,
  .hero-text p {
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-image img {
    width: 90%;
    margin-bottom: 20px;
	width: 400px; /* Set a fixed width/height for a perfect circle */
  height: 400px;
	
  }

  .arrow {
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }
}

/* Reset opacity for animation */
.hero-text,
.hero-image {
  opacity: 1;
}
.wave-divider {
  position: relative;
  width: 100%;
  height: 100px;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100'><path fill='%23A8E6B5' d='M924 38c-19 16-71 24-202 0-37-7-81-13-122-10-44 4-76 14-92 27l-8 10-8-10c-16-13-48-23-91-27-41-3-85 3-122 10C148 62 95 54 76 38c-8-7-16-16-16-27 0 13 5 23 15 31 29 24 98 30 205 10 77-14 179-6 209 19 5 4 11 12 11 17 0-5 5-12 11-17 31-25 132-33 210-19 106 20 175 14 204-10 10-8 15-18 15-30 0 10-8 19-16 26Z'/></svg>") no-repeat center;
  background-size: cover;
  z-index: 2;
}

/* Welcome Section Background */
.holidayinn-welcome-section {
    background: #fdfdfdb3;
    padding: 110px 20px;
    position: relative;
    overflow: hidden;
    margin-top: -100px;
}

/* Main Container */
.holidayinn-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Content */
.holidayinn-text {
    flex: 1;
    max-width: 1400px;
}

/* Subtitle */
.section-subtitle {
    font-size: 20px;
    color: #005476; /* Holiday Inn Green */
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Main Title */
.section-title {
    font-size: 40px;
    color: #007A33;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
}

/* Description */
.section-description {
    font-size: 20px;
    color: #2F2F2F;
    margin-bottom: 15px;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

/* Read More Section */
.read-more-section {
    margin-top: 20px;
    position: relative;
}

#read-more-toggle {
    display: none;
}

.read-more-button {
    display: inline-block;
    background: linear-gradient(to right, #6a9cb0, #005577);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.read-more-button:hover {
    background: linear-gradient(to right, #005577, #6a9cb0);
    color: #ffffff;
}

.read-more-content {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: all 0.5s ease;
    margin-top: 0;
    padding: 0;
    color: #2F2F2F;
    font-size: 20px;
    line-height: 1.6;
}

#read-more-toggle:checked ~ .read-more-content {
    max-height: 2000px;
    visibility: visible;
    padding-top: 20px;
}

.read-more-content h3 {
    font-size: 24px;
    color: #007A33;
    margin-top: 25px;
    margin-bottom: 8px;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 768px) {
    .holidayinn-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
    }

    .read-more-content {
        font-size: 14px;
    }

    .read-more-button {
        width: 100%;
    }

    .read-more-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }

    .section-description {
        font-size: 14px;
    }

    .read-more-button {
        font-size: 14px;
        padding: 8px 14px;
    }

    .read-more-content {
        font-size: 13px;
    }

    .read-more-content h3 {
        font-size: 18px;
    }
}
.booking-form {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  background: #baf0c4;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.booking-field {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  min-width: 160px;
  flex-grow: 1;
}

.booking-field label {
  font-weight: 600;
  color: #183b2d;
  margin-bottom: 6px;
  font-size: 14px;
}

.booking-field label i {
  color: #f9c200;
  margin-right: 6px;
}

.booking-field select {
  padding: 8px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  cursor: pointer;
}

/* Booking Form Styling */
.welcome-booking-form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    background:#00557775; 
    padding: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 1400px;
    width: 100%;
    border-radius: 12px;
    margin: 0 auto;
}

.welcome-form-group {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    padding: 14px;
    flex: 1;
    min-width: 180px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.welcome-form-group label {
    font-size: 16px;
    color: #014421;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}

.welcome-form-group i {
    color: #005577; /* Gold icon */
}

.welcome-form-group input,
.welcome-form-group select {
    background: transparent;
    border: none;
    color: #014421;
    font-size: 15px;
    outline: none;
    margin-top: 5px;
    font-weight: 500;
    text-align: center;
}

/* Booking Button */
.welcome-booking-btn {
    background: linear-gradient(to right, #005577, #0055778a); /* Green gradient */
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    font-weight: 600;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.welcome-booking-btn:hover {
    background: linear-gradient(to right, #0055778a, #005577);
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.15);
}

@media (max-width: 820px) {
    .welcome-booking-form {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        padding: 18px;
    }

    .welcome-form-group {
        width: 100%;
        min-width: unset;
    }

    .welcome-booking-btn {
        width: 100%;
    }
}

@media (max-width: 538px) {
    .welcome-booking-form {
        padding: 15px;
    }

    .welcome-form-group label {
        font-size: 14px;
    }

    .welcome-booking-btn {
        padding: 12px;
        font-size: 14px;
    }
}





/* Holiday Inn Amenities Section */
.holiday-inn-amenities {
  position: relative;
  padding: 40px 20px;
  text-align: center;
  background: #FDFDFD;
  z-index: 1;
  overflow: hidden;
}

.holiday-inn-amenities::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background:
    linear-gradient(rgb(255 255 255 / 82%), rgba(255, 255, 255, 0.96)), url(../images/img/RNJBL-Exterior.webp) center center / cover no-repeat;
  z-index: 0;
  opacity: 1;
}

.holiday-inn-amenities > * {
  position: relative;
  z-index: 2;
}

.holiday-inn-amenities-header h5 {
  font-size: 14px;
  color: #2F2F2F;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 600;
}

.holiday-inn-amenities-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #ed1b2e;
  margin-bottom: 12px;
}

.holiday-inn-amenities-header p {
  max-width: 1200px;
  margin: 0 auto 30px;
  color: #444;
  font-size: 18px;
}

.holiday-inn-divider-icon {
  font-size: 20px;
  color: #FFA500;
  margin: 20px 0;
}

.holiday-inn-amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1138px;
  margin: 0 auto;
  padding-top: 20px;
}

.holiday-inn-amenity-box {
  text-align: center;
  padding: 20px;
}

.holiday-inn-amenity-box i {
  font-size: 40px;
  color: #005577;
  margin-bottom: 15px;
}

.holiday-inn-amenity-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1A1A1A;
}

.holiday-inn-amenity-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.view-all-amenities {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(to right, #005577, #0055778c);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 122, 51, 0.3);
}

.view-all-amenities:hover {
  background: linear-gradient(to right, #0055774d, #005577);
  box-shadow: 0 6px 14px rgba(0, 122, 51, 0.4);
}



/* Room Section */
.room-section {
  padding: 30px 20px;
  text-align: center;
  background:linear-gradient(to top, #00557773, #ffffff); /* Light warm background for contrast */
}

.room-header h2 {
 font-size: 38px;
    font-weight: 700;
    color: #e91b2d;
    margin-bottom: 12px;
}

.room-header p {
  color: #3c3c3c;
  margin-bottom: 30px;
}

.btn-see-more {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(to right, #007A33, #A8E6B5); /* Green to Gold */
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-see-more:hover {
  background: linear-gradient(to left, #007A33, #A8E6B5);
  color: #fff;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.room-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  border: 1px solid #d9e5dd;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.room-img {
  position: relative;
  overflow: hidden;
}

.room-img img {
  width: 100%;
  height: auto;
  display: block;
}

.price-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #FFD700; /* Golden badge */
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  color: #014421;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.price-tag small {
  font-weight: normal;
  margin-left: 10px;
  font-size: 14px;
  color: #014421;
}

.room-details {
  padding: 20px;
  text-align: left;
}

.room-details h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #005577;
}

.room-amenities {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: #333;
}

.room-amenities li {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f6f8f3;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
}







/* Attractions Section */
.attractions-section-alt {
  padding: 40px 20px;
  background:linear-gradient(to bottom, #005577d6, #005577c9);

  background-blend-mode: multiply;
  backdrop-filter: blur(1px);
  color: #ffffff;
}

.attractions-alt-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading Area */
.attractions-heading {
  text-align: center;
  margin-bottom: 50px;
}

.attractions-heading h5 {
  font-size: 18px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.attractions-heading h2 {
  font-size: 36px;
  margin-bottom: 12px;
  font-weight: bold;
  color:#ffffff;
  
}

.attractions-heading p {
  font-size: 18px;
  max-width: 1200px;
  margin: 0 auto;
  color: #d6d0d0;
  line-height: 1.7;
  
}

.divider-icon {
  font-size: 24px;
  color: #ffffff;
  margin-top: 20px;
}

/* Row Layout */
.attraction-row {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 40px;
  gap: 30px;
  flex-wrap: wrap;
}

.attraction-row.reverse {
  flex-direction: row-reverse;
}

/* Image Block */
.attraction-image {
  flex: 1 1 45%;
}

.attraction-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Text Block */
.attraction-text {
  flex: 1 1 50%;
}

.attraction-text h3 {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.attraction-text p {
  font-size: 19px;
  color: #fff;
  line-height: 1.7;
  
}

/* Badge Number */
.badge {
  display: inline-block;
  background-color: #ffffff;
  color: #ed1c2f;
  font-weight: bold;
  border-radius: 10px;
  padding: 10px 20px;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}


/* Responsive */
@media (max-width: 768px) {
  .attraction-row,
  .attraction-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .attraction-text {
    padding-top: 20px;
  }
}




.video-showcase-section {
  background: linear-gradient(to top , #8cd49f8f,#007a33d9); 
  padding: 0px 20px;
 
  
}

.video-showcase-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.video-box {
  flex: 1 1 450px;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-content {
  flex: 1 1 500px;
}

.video-subtitle {
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-size: 14px;
}

.video-title {
  font-size: 36px;
  color: #012d1e;
  margin-bottom: 16px;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.video-description {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 25px;
}

.watch-more-btn {
  display: inline-block;
  padding: 12px 26px;
  background: linear-gradient(to right, #007A33, #A8E6B5);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 122, 51, 0.3);
}

.watch-more-btn:hover {
  background: linear-gradient(to right, #A8E6B5, #007A33);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 122, 51, 0.4);
}


@media (max-width: 768px) {
  .video-showcase-container {
    flex-direction: column;
    text-align: center;
	margin-bottom:-200px;
  }

  .video-box {
    width: 100%;
    padding-bottom: 56.25%; /* Maintain 16:9 aspect ratio */
    height: 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
  }

  .video-box iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 0;
  }

  .video-content {
    padding-top: 0;
  }
}




/* Gallery & Map Section */
.gallery-map-section-enhanced {
  padding: 60px 0;
  background:linear-gradient(to bottom, #005577, #ffffffb5); /* light green overlay */
}

.gallery-map-flexbox {
  display: flex;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

/* Gallery Side */
.gallery-side {
  flex: 1 1 50%;
  padding: 40px;
  background: #ffffff;
}

.gallery-header h5 {
  font-size: 14px;
  color: #005577;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.gallery-header h2 {
  font-size: 30px;
  font-weight: 700;
  color: #005577;
  margin-bottom: 10px;
}

.accent-line {
  width: 50px;
  height: 4px;
  background-color: #0055775e;
  margin-bottom: 20px;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.gallery-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* Hover Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 122, 51, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay-text {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

/* Map Side */
.map-side {
  flex: 1 1 50%;
  padding: 40px;
  background-color: #fefefe;
}

.map-header h5 {
  font-size: 14px;
  color: #005577;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.map-header h2 {
  font-size: 30px;
  font-weight: 700;
  color:#005577;
  margin-bottom: 10px;
}

.map-side iframe {
  width: 100%;
  height: 360px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}


/* Mobile Responsive */
@media (max-width: 768px) {
	.gallery-map-section-enhanced {
margin-top:50px;
 
}

  .gallery-map-flexbox {
    flex-direction: column;
  }

  .gallery-side, .map-side {
    flex: 1 1 100%;
  }

  .map-side iframe {
    min-height: 300px;
  }
}

/* Footer Section */
.aligned-footer {
  background: linear-gradient(to bottom right, #eafff2, #d2f5de, #b4e4c6, #a1d9b2);
  color: #163c4b;
  padding: 70px 6% 40px;
  position: relative;
  overflow: hidden;
  background-image: url("data:image/svg+xml,%3Csvg width='1600' height='400' viewBox='0 0 1600 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='grad' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%239abfca'/%3E%3Cstop offset='35%25' stop-color='%23b7d6de'/%3E%3Cstop offset='70%25' stop-color='%23cfe7ec'/%3E%3Cstop offset='100%25' stop-color='%23e5f2f5'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23grad)' d='M0 40 C400 10 1200 120 1600 40 L1600 400 L0 400 Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  margin-top: -107px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
  flex-wrap: wrap;
  border-bottom: 2px solid #0055770d;
  padding-bottom: 25px;
}

.footer-logo img {
  max-width: 120px;
  height: auto;
  display: block;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.25));
}

.footer-social-icons {
  display: flex;
  gap: 15px;
}

.footer-social-icon {
  width: 42px;
  height: 42px;
  background: radial-gradient(circle, #a8e6b5 0%, #fffaf2 100%);
  background: radial-gradient(circle, #a8e6b5 0%, #fffaf2 100%);
  border-radius: 50%;
  color: #005577;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-social-icon:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(0, 122, 51, 0.4);
}

.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: 250px;
}

.footer-contact h4,
.footer-links h4,
.footer-follow h4 {
  font-size: 24px;
  color: #005577;
  position: relative;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-contact h4::after,
.footer-links h4::after,
.footer-follow h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, #ee2436, #0055776b);
  border-radius: 2px;
}

.footer-contact p,
.footer-links ul li a,
.footer-bottom {
  color: #163c4b;
  font-size: 17px;
  
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.footer-links ul li {
  position: relative;
  padding-left: 20px;
}

.footer-links ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: #163c4b;
  
}

.footer-links ul li a {
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-links ul li a:hover {
  transform: translateX(5px);
  color: #163c4b;
}

.footer-bottom {
  background:#005577;
  color: #ffffff;
  text-align: center;
  padding: 18px 0;
  font-size: 16px;
  margin-top: 50px;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2);
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
    transition: color 0.3s ease;
    line-height: 2;
}

.footer-bottom a:hover {
  color: #a8e6b5;
}
.title {
  font-weight: 600;
  font-size: 22px;
  background: #014421;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}
/* .title - for business name or highlighted titles */
.title-link {
  font-weight: 700;
  font-size: 22px;
  background: #005577;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
}

.title-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, #007a33, #a8e6b5);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.title-link:hover::after {
  width: 100%; /* animate underline on hover */
}


/* .cgsl - for clickable contact links like phone/email */
.cgsl {
	
  background: #163c4b;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cgsl:hover {
  background: #007a33;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}





.inner-hero-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px 100px;
  position: relative;
  text-align: center;
  color: #ffffff;
  margin-top: -100px;
}

.inner-hero-overlay {
  background: rgba(0, 84, 118, 0.75); /* Blue overlay */
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  margin-top:40px;
}

.inner-subtitle {
  font-size: 1.3rem;
  color: #ed1b2e; /* Red Accent */
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.inner-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .inner-title {
    font-size: 2rem;
  }
  .inner-subtitle {
    font-size: 1.1rem;
  }
}

.amenities-inner-section {
  background: linear-gradient(to bottom, #f9f9f9, #005476);
  padding: 40px 20px;
  text-align: center;
  margin-top: -100px;
}

.amenities-inner-header h2 {
  font-size: 42px;
  color: #005476; /* Blue */
  margin-bottom: 15px;
      margin-top: 15px;
}

.amenities-inner-header p {
  font-size: 18px;
  color: #2c2c2c;
  max-width: 750px;
  margin: 0 auto 30px;
}

.amenities-icon-bar {
  margin-top: 10px;
  margin-bottom: 50px;
}

.amenities-icon-bar em {
  font-size: 26px;
  color: #ed1b2e; /* Red Accent */
  margin: 0 12px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.6; }
}

.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 60px;
}

.amenity-card {
  background: #ffffff;
  width: 300px;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
  border-left: 5px solid #ed1b2e; /* Red */
}

.amenity-card:hover {
  transform: translateY(-8px);
  border-left-color: #005476; /* Blue on hover */
}

.amenity-icon {
  font-size: 40px;
  color: #005476; /* Blue */
  margin-bottom: 18px;
}

.amenity-title {
  font-size: 25px;
  font-weight: 600;
  color: #005476;
  margin-bottom: 10px;
}

.amenity-desc {
  font-size: 18px;
  color: #555;
  line-height: 1.5;
}

/* Footer Trust Banner */
.amenities-footer-banner {
  background: #005476; /* Blue */
  padding: 35px 20px;
  border-radius: 15px;
  color: #fff;
  max-width: 900px;
  margin: auto;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  font-size: 30px;
}

.trust-row em {
  margin-right: 10px;
}

.explore-rooms-btn {
  background: #ed1b2e; /* Red button */
  color: #ffffff;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.explore-rooms-btn:hover {
  background: #005476; /* Blue hover */
  color: #fff;
}

/* Mobile View */
@media (max-width: 768px) {
  .amenity-card {
    width: 90%;
  }

  .trust-row {
    flex-direction: column;
    gap: 15px;
  }

  .amenities-inner-header h2 {
    font-size: 32px;
  }
}
.well {
  font-size: 18px;
  color: #444444; /* Dark Gray for readability */
  max-width: 1300px;
  margin: 0 auto 30px;
  line-height: 1.7;
  text-align: center;
}

.additional-amenities-section {
  padding: 0px 20px;
  background: linear-gradient(to top, #f9f9f9, #005476);
  color: #333333;
  max-width: 1600px;
  margin: 0 auto;
}

.additional-amenities-section .section-title5 {
  font-size: 2.6rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 50px;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 0 12px #ed1b2e; /* Red glow */
}

.amenities-list-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
  padding-bottom: 0px;
}

.amenities-category {
  flex: 1 1 300px;
  background: #ffffff;
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);
  color: #333333;
  border-left: 5px solid #ed1b2e; /* Red accent */
}

.amenities-category h3 {
  font-size: 1.8rem;
  color: #005476; /* Blue */
  margin-bottom: 20px;
  font-weight: 900;
  border-bottom: 3px solid #005476; /* Blue underline */
  padding-bottom: 8px;
}

.amenities-category ul {
  list-style: none;
  padding-left: 0;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444444;
}

.amenities-category ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  font-weight: 500;
  color: #444444;
}

.amenities-category ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 4px;
  color: #005476; /* Blue bullet */
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .amenities-list-container {
    gap: 35px 40px;
  }
  .amenities-category {
    flex: 1 1 45%;
  }
}

@media (max-width: 600px) {
  .amenities-list-container {
    gap: 30px 30px;
  }
  .amenities-category {
    flex: 1 1 100%;
  }
}

/* ===== Contact Header Section ===== */
.custom-contact-header {
  text-align: center;
  padding: 20px 20px;
  background-color: #f9f9f9;
}

.custom-contact-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #ed1b2e;
  margin-bottom: 25px;
  position: relative;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
}

.custom-contact-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ed1b2e, #005476);
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

.custom-contact-description {
  font-size: 18px;
  line-height: 1.8;
  color: #000000;
  max-width: 1100px;
  margin: 30px auto 0;
  font-weight: 400;
}

.custom-contact-description strong {
  color: #ed1b2e;
  font-weight: 600;
}

.custom-contact-description a {
  color: #ed1b2e;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.custom-contact-description a:hover {
  color: #005476;
  text-decoration: none;
}

@media (max-width: 767px) {
  .custom-contact-header {
    padding: 40px 15px;
  }
  .custom-contact-title {
    font-size: 2rem;
  }
  .custom-contact-description {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* ===== Main Contact Info Section ===== */
.contact-section-hero {
  background: #f9f9f9;
  padding: 20px 20px;
}

.contact-wrapper-hero {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.contact-info-box {
  flex: 1;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-box h2 {
  font-size: 2.6rem;
  color: #ed1b2e;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-box p {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.8;
  font-weight: 400;
}

.contact-details-area {
  background: #f9f9f9;
  padding: 22px;
  border-left: 5px solid #ed1b2e;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-details-area:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(237, 27, 46, 0.25);
}

.contact-details-area h4 {
  color: #000000;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-details-area ul {
  list-style: none;
  padding-left: 0;
  color: #000000;
}

.contact-details-area ul li {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-details-area a {
  color: #ed1b2e;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details-area a:hover {
  color: #005476;
  text-decoration: underline;
}

.contact-image-box {
  flex: 1;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 3px solid #ed1b2e;
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

@media (max-width: 992px) {
  .contact-wrapper-hero {
    flex-direction: column;
  }
  .contact-info-box {
    padding: 30px 25px;
  }
  .contact-image-box {
    height: 300px;
  }
  .contact-info-box h2 {
    font-size: 2rem;
  }
  .contact-info-box p {
    font-size: 1rem;
  }
}

.faq-section {
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap; 
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    color: #ed1b2e;
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #ed1b2e, #005476);
    border-radius: 2px;
}

.faq-header p {
    color: #000000;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
}

.faq-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 4px solid #ed1b2e;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.faq-question {
    padding: 25px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: #ed1b2e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 18px;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.faq-answer {
    padding: 25px;
    position: relative;
}

.faq-answer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(to right, transparent, #ed1b2e, transparent);
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
}

.faq-answer a {
    color: #ed1b2e;
    font-weight: 600;
    text-decoration: none !important;
}

.faq-answer a:hover {
    color: #005476;
    border-bottom-color: #005476;
}

.faq-answer .fa-caret-right {
    color: #ed1b2e;
    margin-right: 8px;
}

@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-header h2 {
        font-size: 28px;
    }
    .faq-question {
        padding: 20px;
    }
    .faq-answer {
        padding: 20px;
    }
}

/* ===== Sitemap Section ===== */
.sitemap-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #ffffff, #f9f9f9, #ffffff);
  text-align: center;
}

.sitemap-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sitemap-title {
  font-size: 3rem;
  color: #ed1b2e;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
}

.sitemap-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ed1b2e, #005476);
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

.sitemap-subtitle {
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 50px;
  font-weight: 400;
  line-height: 1.8;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.sitemap-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sitemap-block {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(10, 32, 80, 0.08);
  border: 1px solid rgba(237, 27, 46, 0.25);
}

.sitemap-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(237, 27, 46, 0.2);
}

.sitemap-block h2 {
  font-size: 1.8rem;
  color: #ed1b2e;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.sitemap-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-block ul li {
  margin-bottom: 15px;
}

.sitemap-block ul li a {
  font-size: 18px;
  color: #000000;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.3s ease, transform 0.3s ease;
  font-weight: 500;
}

.sitemap-block ul li a em {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #ed1b2e;
  transition: color 0.3s ease;
}

.sitemap-block ul li a:hover {
  color: #005476;
  transform: translateX(5px);
}

.sitemap-block ul li a:hover i {
  color: #005476;
}

@media (max-width: 1024px) {
  .sitemap-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .sitemap-links {
    grid-template-columns: 1fr;
  }
  .sitemap-title {
    font-size: 2.2rem;
  }
  .sitemap-block h2 {
    font-size: 1.4rem;
  }
  .sitemap-block ul li a {
    font-size: 16px;
  }
}

/* ===== Location Section Hero ===== */
.location-section-hero {
  background: #f9f9f9;
  padding: 60px 20px;
}

.location-wrapper-hero {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.location-info-box {
  flex: 1;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info-box h2 {
  font-size: 2.6rem;
  color: #ed1b2e;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.location-info-box p {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.8;
}

.coordinates-area,
.directions-area {
  background: #f9f9f9;
  padding: 22px;
  border-left: 5px solid #ed1b2e;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coordinates-area:hover,
.directions-area:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(237, 27, 46, 0.25);
}

.coordinates-area h4,
.directions-area h4 {
  color: #000000;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.coordinates-area ul {
  list-style: none;
  padding-left: 0;
  color: #000000;
}

.coordinates-area ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.directions-area form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.directions-area form button {
  width: 100%;
  padding: 12px;
  background: #ed1b2e;
  color: #fff;
  border: none;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.directions-area form button:hover {
  background: #005476;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 84, 118, 0.25);
}

.location-map-box {
  flex: 1;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 3px solid #ed1b2e;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .location-wrapper-hero {
    flex-direction: column;
  }
  .location-info-box {
    padding: 30px 25px;
  }
  .location-map-box {
    height: 300px;
  }
  .location-info-box h2 {
    font-size: 2rem;
  }
}

/* App Layout */
.New-attraction-app-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.New-attraction-attraction-quality-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 600px) {
    .New-attraction-attraction-quality-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .New-attraction-attraction-quality-cards {
        grid-template-columns: repeat(6, 1fr);
    }
    .New-attraction-card:nth-child(-n+3) {
        grid-column: span 2;
    }
    .New-attraction-card:nth-child(4) {
        grid-column: 2 / span 2;
    }
    .New-attraction-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

.New-attraction-card {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.New-attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(237, 27, 46, 0.1);
}

.New-attraction-card-image-container {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.New-attraction-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.New-attraction-card:hover .New-attraction-card-image {
    transform: scale(1.05);
}

.New-attraction-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.New-attraction-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #ed1b2e;
}

.New-attraction-card-description {
    font-size: 1rem;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.New-attraction-card-details {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #000000;
}

.New-attraction-card-details li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.New-attraction-card-details li + li {
    margin-top: 0.75rem;
}

.New-attraction-card-details i {
    color: #ed1b2e;
    font-size: 16px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.New-attraction-card-details a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.New-attraction-card-details a:hover {
    color: #005476;
}

/* ===================================================================
   --- 3. NEARBY ATTRACTIONS SECTION ---
   =================================================================== */

.attractions-section {
  background: white;
  padding: 39px 8% 80px 8%;
  color: #333;
}

.attractions-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.attractions-title {
  font-size: 2.8rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
  position: relative;
}

.attractions-title span {
  color: #ed1b2e;
}

.attractions-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #ed1b2e;
  display: block;
  margin: 12px 0 0;
  border-radius: 2px;
}

.attractions-container {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 40px 20px;
    max-width: 1500px;
}

.attractions-container .category {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex: 1;
}

.attractions-container .category:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.attractions-container .category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 4px solid #ed1b2e;
}

.attractions-container .category-header {
    padding: 20px;
    background-color: #ed1b2e;
    color: white;
    text-align: center;
}

.attractions-container .category-header h2, .title2 {
    color: white;
    margin: 0;
    font-size: 24px;
}

.attractions-container .attraction-list {
    padding: 20px;
}

.attractions-container .attraction {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.attractions-container .attraction:last-child {
    border-bottom: none;
}

.attractions-container .attraction-name, .title3-attraction {
    margin-bottom: 4px;
    font-size: 16px;
    color: #000000;
}

.attractions-container .attraction-type {
    color: #000000;
}

.attractions-container .attraction-distance {
    background-color: #ed1b2e;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    min-width: 70px;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.attractions-container .attraction:hover .attraction-distance {
    background-color: #005476;
    transform: scale(1.05);
    color: white;
}

/* --- Green Theme Contact Section --- */

.contact-hero-banner {
  background: #f9f9f9; 
  padding: 100px 20px;
  text-align: center;
  margin-top: -100px;
}

.contact-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.custom-contact-subtitle {
  font-size: 18px;
  color: #ed1b2e; /* Red */
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
  text-shadow: 0 0 4px rgba(237, 27, 46, 0.4);
}

.custom-contact-title {
  font-size: 3rem;
  color: #005476; /* Blue */
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: 800;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}

.custom-contact-description {
  font-size: 20px;
  color: #444444;
  font-weight: 400;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}

.futuristic-contact-section {
  padding: 40px 20px 80px;
  background: #f9f9f9; 
}

.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, 0, 0, 0.08);
  text-align: left;
  color: #005476;
}

.futuristic-contact-info p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

.futuristic-info-block {
  margin-top: 20px;
}

.futuristic-info-block h2,
.futuristic-info-block h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: #005476; /* Blue */
  font-weight: 700;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

.futuristic-info-block a {
  color: #005476; /* Blue */
  font-weight: bold;
  text-decoration: none;
}

.futuristic-info-block a:hover {
  color: #ed1b2e; /* Red on hover */
  text-decoration: underline;
}

.futuristic-image-block {
  flex: 1;
  max-width: 450px;
}

.contact-image:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .contact-hero-banner,
  .futuristic-contact-section {
    padding: 40px 20px;
  }
  .futuristic-contact-container {
    flex-direction: column;
  }
  .futuristic-contact-info,
  .futuristic-image-block {
    max-width: 100%;
  }
  .contact-image {
    margin-bottom: 60px;
  }
}

.new-facility-title {
  color: #005476; /* Blue */
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.new-facility-title:hover {
  color: #ed1b2e; /* Red hover */
  text-decoration: none;
}
.inner-page-container {
    width: 100%;
    padding: 130px 10%;
    background: #f9f9f9;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    margin-top: -99px;
    margin-bottom: 40px;
    transition: transform 0.3s ease-in-out;
}
.page-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-title {
    font-size: 48px;
    font-weight: bold;
    color: #005476;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.page-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background-color: #005476;
    margin: 20px auto;
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 0 5%;
    flex-wrap: wrap;
}

.description {
    flex: 0 0 55%;
    line-height: 1.8;
    color: #555;
    padding-right: 20px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.description p {
    margin-bottom: 20px;
}

.image-gallery {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    object-fit: cover;
    height: 300px;
}

.gallery-image:hover {
    transform: scale(1.05);
}

.image-gallery .gallery-image:last-child {
    height: 329px;
}

.call-to-action {
    text-align: center;
    margin-top: 40px;
}

.cta-button {
    padding: 18px 35px;
    background-color: #005476;
    color: white;
    font-size: 22px;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #ed1b2e;
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.cta-button:active {
    transform: scale(1);
}

@media (max-width: 1024px) { 
    .content-wrapper { flex-direction: column; padding: 0 5%; }
    .description { flex: 0 0 100%; margin-bottom: 20px; }
    .image-gallery { flex: 0 0 100%; }
    .cta-button { width: 70%; font-size: 20px; padding: 16px 30px; }
    .page-title { font-size: 36px; }
}

@media (max-width: 768px) {
    .content-wrapper { padding: 0 8%; }
    .cta-button { width: 80%; font-size: 18px; padding: 14px 25px; }
    .page-title { font-size: 32px; }
}

@media (max-width: 480px) {
    .content-wrapper { padding: 0 6%; }
    .description { margin-bottom: 15px; }
    .cta-button { width: 80%; font-size: 16px; padding: 12px 20px; }
    .page-title { font-size: 28px; }
}

/* Trade Center Specific Section */
.trade-center-content {
    width: 100%;
    padding: 130px 10%;
    background: #f9f9f9;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    margin-top: -99px;
    margin-bottom: 40px;
    transition: transform 0.3s ease-in-out;
}

.header-section {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.trade-title {
    font-size: 48px;
    font-weight: bold;
    color: #005476;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.trade-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background-color: #005476;
    margin: 20px auto;
}

.content-section {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 0 5%;
    flex-wrap: wrap;
}

.text-description {
    flex: 0 0 100%;
    line-height: 1.8;
    color: #555;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.text-description p {
    margin-bottom: 20px;
}

.cta-section {
    text-align: center;
    margin-top: 40px;
}

.cta-link {
   padding: 18px 35px;
    background-color: #005476;
    color: white;
    font-size: 22px;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    letter-spacing: 1px;
}

.cta-link:hover {
     background-color: #ed1b2e;
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.cta-link:active {
    transform: scale(1);
}

/* Cookie Consent custom styling */
.cc-window.cc-banner {
  background-color: #f0f6f9 !important; /* Light Blue */
  border-top: 4px solid #005476 !important; /* Blue */
}

.cc-window.cc-banner .cc-btn {
  background-color: #005476 !important; /* Blue */
  color: #ffffff !important;
  border-radius: 4px !important;
  padding: 8px 16px !important;
  font-size: 14px;
  text-transform: uppercase;
}

.cc-window.cc-banner .cc-btn:hover {
  background-color: #ed1b2e !important; /* Red */
}

.cc-window.cc-banner .cc-reject {
  background-color: transparent !important;
  color: #005476 !important; /* Blue */
  text-decoration: underline;
}

.accessibility-banner {
  background: #005476; 
  color: #ffffff;
  text-align: center;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 500;
  border-top: 3px solid #ed1b2e;
  border-bottom: 3px solid #ed1b2e;
}

.accessibility-banner a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  margin-left: 6px;
}

.accessibility-banner a:hover {
  text-decoration: underline;
}

.accessibility-banner em {
  color: #ffffff;
  margin-left: 8px;
  margin-right: 4px;
}

/* Gallery Grid Styling */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 0px auto;
    padding: 20px;
    margin-top: -40px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* --- Lightbox Styling --- */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.lightbox.active {
    visibility: visible;
    opacity: 1;
}

#lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active #lightbox-img {
    transform: scale(1);
}

#lightbox-caption {
    text-align: center;
    color: #f1f1f1;
    padding: 10px 0;
    margin-top: 10px;
    font-size: 1.1em;
    transition: opacity 0.4s ease-in-out;
}


/* Navigation & Close Buttons */
.close-btn, .prev-btn, .next-btn {
    position: absolute;
    color: white;
    cursor: pointer;
    font-weight: bold;
    user-select: none;
    transition: color 0.2s ease;
}

.close-btn:hover, .prev-btn:hover, .next-btn:hover {
    color: #bbb;
}

.close-btn {
    top: 20px;
    right: 35px;
    font-size: 40px;
}

.prev-btn, .next-btn {
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    padding: 16px;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}