﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');


/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #333;
}
/* ========== HEADER STYLING ========== */

.site-header {
    background: linear-gradient(to bottom, #000000, #22222200);
    color: #F5F5F5;
    padding: 0px 0 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    border-top: 10px solid #df4572;
    margin-top: 0px;
}

.header-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0px 30px 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background: #fff; */
    border-radius: 0px 0px 10px 10px;
}

.header-left {
  display: flex;
  align-items: center;
}

.hamburger-wrapper {
  display: flex;
  align-items: center;
  margin-right: 37px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 18px;
  width: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-right: 14px;
}

.hamburger .bar {
  width: 24px;
  height: 2px;
  background-color: #fff;
  display: block;
  border-radius: 2px;
}

.menu-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #fff;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
}

.location {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #fff;
  opacity: 0.85;
  font-weight: 500;
}

.location span{margin-right: 15px;}

.header-center {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    margin-top: 1px;
}

.logo {
    height: 90px;
    margin-left: 50px; /* Adjust this value as needed */
    padding: 10px;
    background: #fff;
    border-radius: 0 0 10px 10px;
}


.header-right {
  display: flex;
  align-items: center;
}

.phone-link {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  text-decoration: none;
  margin-right: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 7px;
}

.phone-link:hover {
  color: #FFB300;
}


.reserve-btn {
  border: 2px solid #e75682;
  background-color: transparent;
  padding: 8px 16px;
  color: #e75682;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  transition: background 0.3s, color 0.3s;
  font-weight: 600;
}

.reserve-btn:hover {
  background-color: #77162c;
  color: #fff;
}
.gold-text {
  color: #FFC107; /* Gold shade */
  font-weight: bold;
}

@media (max-width: 768px) {
  .site-header {
    padding: 10px 0;
	background: linear-gradient(to bottom, #000000, #222);
  }

  .header-container {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
  }

  .header-left,
  .header-right {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .hamburger-wrapper {
    margin-right: 0;
  }

  .logo {
    height: 60px;
	margin-left: 10px;
	
  }

  .menu-label,
  .location {
    font-size: 12px;
  }

  .time {
    font-size: 12px;
    margin-right: 0;
  }

  .reserve-btn {
    font-size: 13px;
    padding: 6px 10px;
  }

  .header-center {
    justify-content: center;
    width: 100%;
    margin-top: 4px;
    margin-bottom: 4px;
  }
}

/* ========== SLIDE MENU STYLING ========== */

.slide-menu {
  position: fixed;
  top: 0;
  left: -660px;
  width: 660px;
  height: 100vh;
  display: flex;
  transition: left 0.3s ease;
  z-index: 1001;
  overflow: hidden;
  
}

.slide-menu.open {
  left: 0;
}

.slide-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.slide-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-container {
  display: flex;
  height: 100vh;
}

.menu-main {
  position: relative;
  width: 400px;
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  padding: 40px 30px;
  background-color: #111;
  overflow: hidden;
  z-index: 1;
}

.menu-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.92)),
    url('../images/sketch.png') center/cover no-repeat;
  z-index: -1;
}

.menu-header {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: #F5F5F5;
  margin-bottom: 50px;
}

.menu-close {
  background: none;
  border: none;
  font-size: 22px;
  font-weight: 400;
  color: #F5F5F5;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-close:hover {
  transform: rotate(90deg);
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: auto;
}

.menu-list::-webkit-scrollbar {
  display: none;
}

.menu-list li {
  margin: 25px 0;
}

.menu-list li a {
  color: #F5F5F5;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  padding-bottom: 6px;
}

.menu-list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background: #FFB300;
  transition: width 0.3s ease;
}

.menu-list li a:hover::after {
  width: 100%;
  background: #D84315;
}

.menu-list li a:hover {
  color: #D84315;
}

.menu-footer {
  font-size: 12px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #aaa;
}

.menu-footer a {
  color: #ccc;
  text-decoration: none;
}

.menu-footer a:hover {
  text-decoration: underline;
  color: #D84315;
}

.menu-sub {
  display: none;
  margin-top: 10px;
  padding-left: 15px;
  border-left: 2px solid #444;
  animation: fadeInDown 0.3s ease forwards;
}

/* Show submenu on hover */
.has-submenu:hover > .menu-sub {
  display: block;
  animation: fadeInDown 0.3s ease forwards;
}

/* Rotate arrow on hover */
.has-submenu:hover > a .arrow {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}


.menu-sub li {
  margin: 8px 0;
}

.menu-sub a {
  font-size: 16px;
  color: #ccc;
  text-decoration: none;
  padding-left: 8px;
  transition: color 0.3s ease;
}

.menu-sub a:hover {
  color: #FFB300;
}

.has-submenu > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.has-submenu.open > a .arrow {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ========== Add this for the active menu styling ========== */

/* Style for the main active menu link */
.menu-list > li > a.active {
  color: #D84315;
}

/* Style for the underline on the main active menu link */
.menu-list > li > a.active::after {
  width: 100%;
  background: #D84315;
}

/* Style for an active link within a sub-menu */
.menu-sub a.active {
  color: #FFB300;
  font-weight: bold; /* Make it stand out more */
}

/* This will keep the parent menu item's sub-menu open and its arrow rotated
   if the active page is one of its children. The JavaScript will add the 'open' class. */
.has-submenu.open > .menu-sub {
    display: block;
}

.has-submenu.open > a .arrow {
    transform: rotate(90deg);
}

/* Also style the parent link of an active sub-item */
.has-submenu.open > a {
    color: #D84315;
}


/* Core 
Hero Styles */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-color: #121212; /* Deep black background */
  
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.5s ease, visibility 1.5s ease;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  animation: overlayPulse 6s ease-in-out infinite;
}

@keyframes overlayPulse {
  0%, 100% { background: rgba(0, 0, 0, 0.65); }
  50% { background: rgba(0, 0, 0, 0.55); }
}

/* TEXT CONTENT */
.hero-text {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 0 1rem;
  width: 1200px;
}

.subtitle {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 0.8rem;
    text-shadow: 1px 1px 1px #000;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    font-family: 'Playfair Display', serif;
}
.desc {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 1em;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
    text-shadow: 1px 1px 1px #000;
}

/* Buttons */
.btn-primary2, .btn-secondary2 {
  display: inline-block;
  padding: 14px 28px;
  font-size: 0.95rem;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  font-weight: 600;
}

.btn-primary2 {
  background: #eeef0f;
  color: #111;
  border: none;
  margin-bottom: 20px;
}

.btn-primary2:hover {
  background: #e0a800;
  color: #fff;
}

.btn-secondary2 {
  background: transparent;
  color: #ffb200; /* violet-blue split complement */
  border: 2px solid #ffb200;
  margin-top: 20px;
}

.btn-secondary2:hover {
  background: #ffb200;
  color: #fff;
}



/* Vertical Nav Buttons */
.slide-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1rem;
  letter-spacing: 2px;
  color: #df95ac;
  background: transparent;
  cursor: pointer;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
  z-index: 3;
  transition: all 0.3s ease;
}

.slide-prev {
  left: 0;
  border-right: 1px solid transparent;
  border-radius: 0 8px 8px 0;
  border-image: linear-gradient(to bottom, #e75682, transparent, #e75682) 1;
}

.slide-next {
  right: 0;
  border-left: 1px solid transparent;
  border-radius: 8px 0 0 8px;
  border-image: linear-gradient(to bottom, #e75682, transparent, #e75682) 1;

}

.slide-nav:hover {
  color: #fff;
  border-color: #fff;
  background: linear-gradient(to bottom, #e75682, transparent, #e75682) 1;
}

/* Counter */
.counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  color: #FFC107;
  font-family: 'Georgia', serif;
  z-index: 3;
  user-select: none;
  display: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-slide {
    background-attachment: scroll;
  }

  .hero-slider {
    margin-top: 130px;
    height: 60vh;
  }

  .title {
    font-size: 2.8rem;
  }

  .desc {
    font-size: 1rem;
  }

  .subtitle {
    font-size: 1.3rem;
  }
}

.welcome-section {
  background: #f9f7f3;
  padding: 50px 20px;
  font-family: 'Montserrat', sans-serif;
  color: #333;
  scroll-behavior: smooth;
}

.welcome-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  transition: all 0.5s ease;
}



/* Divider */
.divider {
  width: 60px;
  height: 4px;
  background: #eeef0f; /* gold */
  margin: 16px 0;
}

/* Paragraphs */
.welcome-left p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
    font-family: 'Montserrat', sans-serif;
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  font-size: 0.95rem;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  font-weight: 600;
}

.btn-primary {
  background: #eeef0f;
  color: #111;
  border: none;
  margin-bottom: 20px;
}

.btn-primary:hover {
  background: #e0a800;
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: #ffb200; /* violet-blue split complement */
  border: 2px solid #ffb200;
  margin-top: 20px;
}

.btn-secondary:hover {
  background: #ffb200;
  color: #fff;
}

/* Hidden Info */
.hidden-info {
  display: none;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .welcome-left h2 {
    font-size: 2rem;
  }
  .welcome-left p, .hidden-info p {
    font-size: 1rem;
    line-height: 1.5;
  }
}
/* Unique Welcome Heading */
.welcome-heading {
  text-align: left;
  font-size: 2.8rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 500;
  color: #2c2c2c;
  position: relative;
  font-family: 'Playfair Display', serif;
}

.welcome-heading span {
  color: #b21338; /* Red highlight from logo */
}



/* Responsive */
@media (max-width: 768px) {
  .welcome-heading {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

.room-section {
  background: #fff;
  padding: 20px 20px;
  font-family: 'Montserrat', sans-serif;
  color: #333;
  text-align: center;
}

.room-heading {
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #d32f2f; /* 🔴 match heading red */
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 1px;
}

.room-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #ffc107; /* 🟡 gold accent */
  margin: 12px auto 0;
}

.room-slider {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
}

.room-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.room-card {
  flex: 0 0 50%; /* 2 cards visible */
  box-sizing: border-box;
  padding: 15px;
}

.room-card img {
  width: 100%;
  border-radius: 6px;
}

.room-info {
  padding: 18px 14px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  text-align: left;
}

.room-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #d32f2f; /* 🔴 red heading */
  font-weight: 600;
}

.room-info p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #444;
}

.room-btn {
  display: inline-block;
  padding: 10px 22px;
  font-size: 0.85rem;
  background: #ffc107; /* 🟡 gold button */
  border: none;
  color: #2c2c2c;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.room-btn:hover {
  background: #d32f2f; /* 🔴 hover to red */
  color: #fff;
}

/* Navigation Arrows */
.room-prev, .room-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent; /* 🟡 gold arrows */
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 8px 19px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
  transition: background 0.3s, color 0.3s;
}

.room-prev:hover, .room-next:hover {
  background: #d32f2f; /* 🔴 red hover */
  color: #fff;
}

.room-prev { left: 10px; }
.room-next { right: 10px; }

/* 📱 Mobile: 1 card visible */
@media (max-width: 768px) {
  .room-card {
    flex: 0 0 100%;
  }
  .room-info {
    text-align: left;
  }
  .room-prev { left: -20px; }
.room-next { right: -20px; }

}


.amenities-unique {
  position: relative;
  padding: 50px 20px;
  background: linear-gradient(210deg, #e6f0ff 50%, #eee5e7 50%);
  overflow: hidden;
  animation: gradientShift 12s ease infinite;
}

section {
    padding: 12px 0 35px 0;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  text-transform: uppercase;
  margin-bottom: 23px;
  font-weight: 500;
  color: #2c2c2c;
  position: relative;
  font-family: 'Playfair Display', serif;
}

.section-title span {
  color: #e30613; /* Red highlight */
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #ffc107;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Style */
.amenity-item {
  background: #fff;
  padding: 40px 25px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border-top: 4px solid transparent;
}

.amenity-item:hover {
  transform: translateY(-12px) scale(1.02);
  border-top: 4px solid #ffc107;
  box-shadow: 0 20px 45px rgba(227,6,19,0.25);
}

/* Icon Circle */
.icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #ffc107;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #2c2c2c;
  transition: all 0.4s ease;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.amenity-item:hover .icon-circle {
  background: #e30613;
  color: #fff;
  box-shadow: 0 0 25px rgba(227,6,19,0.6);
}

.amenity-item h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 400;
  text-transform: uppercase;
}

.amenity-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Background decorative overlay */
.amenities-unique::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 200px;
  height: 200px;
  background: rgba(255,193,7,0.2);
  border-radius: 50%;
  z-index: 0;
}

.amenities-unique::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(227,6,19,0.1);
  border-radius: 50%;
  z-index: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}


/* Room Section */

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 1200px;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}

.clearfix:before, .clearfix:after, .dl-horizontal dd:before, .dl-horizontal dd:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after, .form-horizontal .form-group:before, .form-horizontal .form-group:after, .btn-toolbar:before, .btn-toolbar:after, .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after, .nav:before, .nav:after, .navbar:before, .navbar:after, .navbar-header:before, .navbar-header:after, .navbar-collapse:before, .navbar-collapse:after, .pager:before, .pager:after, .panel-body:before, .panel-body:after, .modal-footer:before, .modal-footer:after {
    display: table;
    content: " ";
}



.title2 {
    font-size: 23px;
    font-weight: 400;
    color: #7a7777;
    font-family: 'Roboto Slab';
    text-transform: capitalize;
    padding: 10px 0px 10px 0px;
    line-height: 42px;
}

.section-title p {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0px 0 16px 0px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #777171;
    font-family: "Poppins", sans-serif;
}

.section-title p::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #f38b74;
    margin: 4px 10px;
}

html:not(.no-js) [data-aos^=fade][data-aos^=fade] {
    opacity: 1;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
}

.testimonials .testimonial-wrap {
    padding-left: 50px;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px 15px;
    margin: 20px 15px;
    min-height: 200px;
    box-shadow: 0px 0px 20px 0px rgba(11, 35, 65, 0.1);
    position: relative;
    background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
    width: 53%;
    border-radius: 10px;
    border: 6px solid #fff;
    position: absolute;
    left: -57px;
    /* right: 0; */
    /* margin: 0 auto; */
    top: 75px;
}

.title3 {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    padding: 0px 0 7px 0;
    text-transform: uppercase;
    text-align: right;
    font-weight: 600;
}

hr {
    margin-top: 1rem;
    margin-bottom: 0;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.testimonials .testimonial-item p {
    font-size: 15px;
    font-style: normal;
    margin: 15px auto 15px auto;
    text-align: right !important;
    /* border-bottom: 1px solid #eeeaea; */
    font-family: 'Montserrat', sans-serif;
    line-height: 12px;
}

.testimonial-item .btn-learn-more {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 5px;
    transition: 0.3s;
    line-height: 1;
    color: #ed502e;
    animation-delay: 0.8s;
    border: 2px solid #ed502e;
    margin: 16px 150px 0 160px;
    width: 30%;
    text-decoration: none;
    margin: 52px auto;
    float: right;
}

.testimonial-item .btn-learn-more:hover {
    background: #ed502e;
    color: #fff;
    text-decoration: none;
}

.testimonials .swiper-pagination {
    margin-top: 20px !important;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #ed502e;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #ed502e;
}


.btt {
    position: fixed;
    inset: auto 24px 24px auto;
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: radial-gradient(120% 120% at 30% 30%, #f2d6d5 0%, #e5abab 34%, #bb3a37 100%);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 2147483000;
    opacity: 0;
    transform: translateY(12px) scale(0.92);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 10px 28px rgba(0, 59, 115, 0.35);
}

.btt--show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.btt:hover {
  box-shadow: 0 12px 34px #bb3a37;
}

/* SVG icon */
.btt__icon {
  width: 24px;
  height: 24px;
  pointer-events: none;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .btt {
    transition: none;
  }
}

/* Smaller on phones */
@media (max-width: 600px) {
  .btt { width: 48px; height: 48px; inset: auto 16px 18px auto; }
  .btt__icon { width: 22px; height: 22px; }
}


@media (max-width: 1200px) {
    .container {width: 100%;}

  .phone-link {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    text-decoration: none;
    margin-right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 7px;
  }    

    .logo {
        height: 73px;
        margin-left: 0;
        padding: 10px;
        background: #fff;
        border-radius: 10px 10px 10px 10px;
    }

    .hero-text {
        position: absolute;
        top: 54%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #fff;
        z-index: 2;
        padding: 0 1rem;
        width: 65%;
    }

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}


.title3 {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    padding: 0px 0 7px 0;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
}

.testimonials .testimonial-item .testimonial-img {
    width: 100%;
    border-radius: 10px;
    border: 6px solid #fff;
    position: relative;
    left: 0;
    right: 0;
    /* margin: 0 auto; */
    top: 0;
}


.testimonials .testimonial-item p {
    font-size: 15px;
    font-style: normal;
    margin: 15px auto 15px auto;
    text-align: center !important;
    /* border-bottom: 1px solid #eeeaea; */
    font-family: 'Montserrat', sans-serif;
    line-height: 12px;
}

.testimonial-item .btn-learn-more {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 5px;
    transition: 0.3s;
    line-height: 1;
    color: #ed502e;
    animation-delay: 0.8s;
    border: 2px solid #ed502e;
    margin: 16px 150px 0 160px;
    width: 50%;
    text-decoration: none;
    margin: 52px auto;
    float: none;
}

}


.attractions-section {
  background: #f9f7f3;
  padding: 39px 8% 80px 8%;
  font-family: 'Montserrat', sans-serif;
  color: #333;
}

/* Header */
.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: #2c2c2c;
  margin: 0;
  position: relative;
  font-family: 'Playfair Display', serif;
}

.attractions-title span {
  color: #e30613; /* red highlight from logo */
}

.attractions-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #ffc107; /* gold accent */
  display: block;
  margin: 12px 0 0;
  border-radius: 2px;
}


/* CTA Button */
.action-btn {
  background: #ffc107;
  color: #111;
  border: none;
  padding: 12px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: background .3s, color .3s;
  font-weight: 600;
  text-transform: uppercase;
}
.action-btn:hover {
  background: #e0a800;
  color: #fff;
}

/* Mosaic Grid */
.mt-attractions-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 18px;
}

.mosaic-item {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}

.mosaic-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.mosaic-item.large { grid-column: 1 / span 2; }
.mosaic-item.tall { grid-row: span 2; }

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55) !important;
    opacity: 0.8;
    color: #fff;
    /* display: flex; */
    justify-content: flex-end;
    padding: 20px;
    transition: opacity .3s ease;
    /* z-index: 2000; */
}

.mosaic-item:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  font-size: 22px;
  margin-bottom: 6px;
  color: #ffc107;
}
.overlay p {
  font-size: 15px;
  line-height: 1.5;
  color: #f1f1f1;
  text-shadow: 1px 1px 1px black;
}


/* Responsive */

@media (max-width: 1200px) {

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 30px;
    color: #fff;
    border-top: 1px solid #7c7272;
    width: 100%;
    margin: 35px auto 0;
    padding: 41px 10px 10px 10px;
}

}
@media (max-width: 768px) {
  .attractions-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .mt-attractions-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .mosaic-item {
    height: 200px;
    transform: none;
  }

  .mosaic-item.large,
  .mosaic-item.tall {
    grid-column: auto;
    grid-row: auto;
  }
}

.media-section {
  padding: 60px 8%;
  background: #fff;
  font-family: 'Montserrat', sans-serif;
}

/* Header */
.media-header {
    text-align: center;
    margin-bottom: 10px;
    margin-top: 47px;
}

.media-title {
  font-size: 2.8rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #2c2c2c;
  margin: 0;
  position: relative;
  font-family: 'Playfair Display', serif;
}

.media-title span {
  color: #e30613; /* red highlight from logo */
}

.media-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #ffc107; /* gold accent */
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* 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: #ffc107;
  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 */
/* Overlay with gradient fade using logo colors */
.media-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 235, 0, 0.75),   /* Yellow */
    rgba(243, 140, 40, 0.75),  /* Orange */
    rgba(227, 6, 19, 0.75)     /* Red */
  );
  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: #ffeb00;         /* 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;
  }
}
.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;
}

/* 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(282deg, #f20f08, rgb(255 255 255 / 38%));
    padding: 60px 20px 30px;
    color: #d5635f;
    font-size: 17px;
    line-height: 1.7;
    /* position: relative; */
    z-index: 1;
    background-size: 300% 300%;
    /*animation: gradientShift 12s ease infinite;*/
    /* border: 6px solid #ffeb3b; */
    /* box-shadow: inset 0 0 0 4px #e53935; */
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0px 0px 0px BLACK;
    border-radius: 0px 0px 9500px 0px;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/sketch-2.png) no-repeat center center / cover;
    opacity: 0.08;
    z-index: 0;
}

/* Gradient Animation */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* Gradient Animation */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}



/* === MAP & GALLERY SECTION (Blue Curved Flow Style) === */
.map-gallery-section {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    background: #fce1e8;
    color: #1e2a3a;
    min-height: 100vh;
    border-radius: 0px 950px;
    overflow: visible;
    box-shadow: 0 0 40px rgba(0, 59, 115, 0.08);
    z-index: 1;
}

/* === Decorative Background Overlay (Mirrors Other Sections) === */

/* === MAP AREA === */
.map-area {
  flex: 1;
  min-width: 350px;
  height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  position: relative;
  z-index: 2;
}

.map-box {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 90%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 59, 115, 0.2);
  transition: transform 0.3s ease;
  border: 3px solid #e3acbe;
}

.map-box:hover {
  transform: scale(1.015);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: brightness(1) contrast(1.05);
}

.map-overlay-text {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0, 59, 115, 0.8);
  padding: 10px 20px;
  color: #ffffff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 59, 115, 0.3);
}

.map-overlay-text i {
  color: #00AEEF;
  margin-right: 8px;
}

/* === GALLERY AREA === */
.gallery-area {
  flex: 1;
  min-width: 350px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.gallery-container {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 80%;
  width: 100%;
  justify-content: center;
}

/*.gallery-strip {
  flex: 1;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
  filter: brightness(0.85);
  box-shadow: 0 8px 24px rgba(0, 59, 115, 0.15);
}*/


.gallery-strip {
  flex: 1 1 0%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.5s;
  filter: brightness(0.8) blur(2px);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 24px;
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-strip.main {
  flex: 2;
  filter: brightness(1);
  border: 3px solid #00AEEF;
  border-radius: 20px;
}

.gallery-strip:hover {
  flex: 2;
  filter: brightness(1);
}

.gallery-strip:hover img {
  transform: scale(1.05);
}

/* === BUTTON === */
.view-gallery-btn {
    margin-top: 20px;
    padding: 12px 28px;
    background: transparent;
    color: #9d2a2a;
    border: 2px solid #dd4471;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgb(153 41 41);
}

.view-gallery-btn:hover {
  background: linear-gradient(135deg, rgb(222 127 127), rgb(153 41 41));
  color: #ffffff;
  box-shadow: 0 0 12px rgb(153 41 41);
}

/* === POPUP OVERLAY (Fixed + Locks Scroll) === */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.popup-overlay.active {
  display: flex;
}

/* Centered image inside popup */
.popup-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.25);
}

/* Close Button */

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #FFD369; /* ✅ New Accent Color */
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    z-index: 10000;
}

.close-btn:hover {
  transform: rotate(90deg);
  color: #fff; /* ✅ New Hover Color */
}

/* Slider Navigation */
.popup-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 174, 239, 0.7);
  color: #fff;
  border: none;
  font-size: 40px;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 1000000;
}

.popup-nav:hover {
  background: rgba(0, 174, 239, 0.9);
  box-shadow: 0 0 15px rgba(0, 174, 239, 0.7);
}

.popup-nav.prev { left: 40px; }
.popup-nav.next { right: 40px; }

@media (max-width: 768px) {
  .popup-nav {
    font-size: 28px;
    padding: 8px 12px;
  }
  .popup-nav.prev { left: 15px; }
  .popup-nav.next { right: 15px; }
}


/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .map-gallery-section {
    flex-direction: column;
    border-radius: 100px 0;
  }

  .map-area,
  .gallery-area {
    width: 100%;
    height: auto;
    padding: 20px;
  }

  .map-box {
    height: 320px;
    max-width: 100%;
  }

  .gallery-container {
    flex-direction: row;
    overflow-x: auto;
    gap: 10px;
    height: auto;
    width: 100%;
    padding-bottom: 15px;
  }

  .gallery-strip {
    flex: 0 0 160px;
    height: 200px;
    border-radius: 15px;
    min-width: 160px;
  }

  .gallery-strip.main {
    flex: 0 0 200px;
    height: 220px;
  }

  .view-gallery-btn {
    width: 100%;
    font-size: 14px;
    padding: 10px;
    margin-top: 15px;
  }

  .popup-img {
    max-width: 95%;
    max-height: 70%;
  }

  .close-btn {
    top: 15px;
    right: 20px;
    font-size: 32px;
  }

  .map-overlay-text {
    font-size: 14px;
    padding: 8px 16px;
  }
}

/* End Map & Gallery section */

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 62px;
}

.footer-col1 {
    flex: 1 1 528px;
}

.footer-col2 {
  flex: 1 1 294px;
}

.footer-col3 {
  flex: 0 1 180px;
}

/* Titles */
.footer-title {
  font-size: 28px;
  color: #d5635f; /* Yellow from logo */
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 6px;
  display: inline-block;
  min-width: 180px;
  font-family: 'Playfair Display', serif;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #ff9800; /* Orange accent */
}

/* Info */
.footer-info address,
.footer-info p {
  font-style: normal;
  margin: 10px 0;
  line-height: 1.6;
}

.footer-info h4 a{
    color: #d5635f;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
}

h4 .footer-info span a {
    color: #ec9009;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
}

.footer-info a {
    color: #d5635f;
    text-decoration: none;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.footer-info a:hover {
    color: #ec9009;
}

/* Links */
.footer-links-columns {
  display: flex;
  gap: 40px;
}

.footer-links-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-columns li {
  margin-bottom: 12px;
}

.footer-links-columns a {
  color: #d5635f;
  text-decoration: none;
  font-weight: 400;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
  font-size: 17px;
  font-family: 'Montserrat', sans-serif;
}

.footer-links-columns a:hover {
  color: #ec9009;
  /*border-color: #ec9009;*/
  transform: translateY(-2px);
}

/* Social */
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social li {
  margin-bottom: 12px;
}

.footer-social a {
  color: #d5635f;
  text-decoration: none;
  font-weight: 400;
  font-size: 17px;
  font-family: 'Montserrat', sans-serif;
}

.footer-social i {
  margin-right: 8px;
  color: #d5635f;
}

.footer-social a:hover {
  color: #ec9009;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    font-size: 17px;
    margin-top: 30px;
    color: #d5635f;
    border-top: 2px double #ebc3c2;
    width: 1200px;
    margin: 35px auto 0;
    padding: 41px 10px 10px 10px;
}

.footer-bottom a {
    color: #d5635f;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #000;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-bottom-left small {
  display: block;
  font-size: 0.85rem;
  margin-top: 4px;
}

.footer-bottom-right {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 0.95rem;
}

.footer-bottom-right a,
.footer-bottom-right span,
.footer-bottom-right small {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom-right a:hover {
  text-decoration: underline;
}

.footer-bottom-right span {
  margin: 0 8px;
}

@media (max-width: 768px) {
    .footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 30px;
    color: #fff;
    border-top: 1px solid #7c7272;
    width: 100%;
    margin: 35px auto 0;
    padding: 41px 10px 10px 10px;
}    

.map-box {
        height: 300px;
        max-width: 100%;
    }

    .gallery-strip {
        flex: 0 0 20%;
        height: 200px;
        border-radius: 15px;
    }
}


.title5{
	    font-size: 28px;
    color: #ffeb3b;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 6px;
    display: inline-block;
    min-width: 180px;

}

.title5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #ff9800; /* Orange accent */
}
/* Responsive */
@media (max-width:580px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
    text-align: left;
  }

  .footer-col {
    width: 100%;
  }

  .footer-links-columns {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .footer-links-columns ul {
    width: 45%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-bottom-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* Core Hero Styles */
.hero-amenities {
  position: relative;
  height: 60vh; /* Default height for large screens */
  width: 100%; /* Ensure full width for the section */
  overflow: hidden;
  background-color: #121212; /* Deep black background */
}

.hero-image-amenities {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* Ensure full width coverage */
  height: 100%; /* Ensure full height coverage */
  background-size: cover; /* Ensures the image covers the entire area */
  background-position: center center; /* Focus on the center of the image */
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
}

.overlay-amenities {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 204, 0, 0.5), rgba(255, 0, 0, 0.2)); /* Yellow to Red gradient */
}

/* TEXT CONTENT */
.hero-text-amenities {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 0 1rem;
  width: 100%; /* Ensure text content takes full width */
  max-width: 800px; /* Max width for readability */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.subtitle-amenities {
  font-size: 1.5rem;
  color: #ffc107;
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.title-amenities {
  font-size: 3rem; /* Adjusted for desktop */
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: #ffc107;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
}

.desc-amenities {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 1em;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.cta-btn-amenities {
  padding: 14px 28px;
  background: #FFC107;
  color: #1a1a1a;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 0.3s ease;
  border-radius: 4px;
}

.cta-btn-amenities:hover {
  background: #e0a800;
  color: #fff;
}

/* Responsive Adjustments for Tablets, Laptops, and Mobile */
@media (max-width: 1024px) { /* iPad, laptops, and tablet screens */
  .hero-amenities {
    height: 40vh; /* Adjusted height for tablets and laptops */
  }

  .hero-text-amenities {
    padding: 0 1rem;
    max-width: 600px; /* Ensure text fits nicely on smaller screens */
    width: 100%;
  }

  .title-amenities {
    font-size: 2.4rem; /* Adjusted title font size for tablets */
  }

  .subtitle-amenities {
    font-size: 1.3rem; /* Adjusted subtitle size for tablets */
  }

  .desc-amenities {
    font-size: 1.1rem; /* Adjusted description font size */
  }

  .cta-btn-amenities {
    font-size: 1rem;
  }
}

@media (max-width: 768px) { /* Mobile screens */
  .hero-amenities {
    height: 40vh; /* Adjusted height for mobile */
	margin-top:100px;
  }

  .hero-text-amenities {
    padding: 0 1rem; /* Adjust padding for mobile */
    max-width: 90%; /* Makes the content more readable on small screens */
    width: 100%; /* Ensure full width */
  }

  .title-amenities {
    font-size: 2rem; /* Adjusted title font size for mobile */
  }

  .subtitle-amenities {
    font-size: 1.2rem; /* Adjusted subtitle size for mobile */
  }

  .desc-amenities {
    display:none;
  }

  .cta-btn-amenities {
    font-size: 0.95rem; /* Button text scaling for mobile */
    padding: 12px 24px; /* Slightly smaller padding for mobile */
  }
}

/* Specific Fix for Small Mobile Devices (393px, 430px) */
@media (max-width: 430px) { /* Small mobile screens (430px and below) */
  .hero-amenities {
    height: 40vh; /* Ensure correct height */'
	margin-top:100px;
  }

  .hero-text-amenities {
    padding: 0 1rem;
    max-width: 90%; /* Make text fit better */
  }

  .title-amenities {
    font-size: 1.6rem; /* Reduced title size for very small screens */
  }

  .subtitle-amenities {
    font-size: 1rem; /* Adjust subtitle size for very small screens */
  }

  .desc-amenities {
    display:none;
  }

  .cta-btn-amenities {
    font-size: 0.8rem; /* Button text scaling for smaller mobile */
    padding: 10px 20px; /* Adjust button padding for smaller screens */
  }
}


/* Core Styling for Amenities Section */
.budget-inn-amenities {
  padding: 60px 20px;
  background-color: #fafafa;
  text-align: center;
}

.budget-inn-section-title .budget-inn-main-title {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.budget-inn-main-title span {
  color: #ff0000; /* Red for "BUDGET INN" */
}

.budget-inn-description {
  font-size: 1.2rem;
  color: #333;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.budget-inn-amenities-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
}

/* Card Styling */
.budget-inn-amenity-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 18%;
  min-width: 230px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 3px solid transparent; /* Initial transparent border */
}

.budget-inn-amenity-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  border-top: 5px solid #ffb200; /* Gold border on hover */
}

/* Icon Styling */
.budget-inn-amenity-item em {
  font-size: 3.5rem;
  color: #ffb200;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.budget-inn-amenity-item:hover em {
  color: #ff0000; /* Change icon color to red on hover */
}

/* Card Title */
.budget-inn-amenity-title {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

/* Card Description */
.budget-inn-amenity-description {
  font-size: 1rem;
  color: #777;
  line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .budget-inn-amenities-row {
    flex-direction: column;
    gap: 20px;
  }

  .budget-inn-amenity-item {
    width: 80%;
    margin: 0 auto;
  }
}

/* Styling for the Amenities Section */
.inn-amenities-section {
  padding: 20px 20px;
  background-color: #fafafa;
  text-align: left;
}

.inn-amenities-description {
  font-size: 1.2rem;
  color: #777;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Container for all the categories */
.inn-amenities-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Responsive grid layout */
  gap: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
}

/* Styling for each amenity category */
.inn-amenity-category {
  background-color: #960608; /* Apply the orange color for the card container */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
  text-align: left;
  border-top: 5px solid #ffb200; /* Gold border on hover */
}

.inn-amenity-category:hover {
  transform: scale(1.05); /* Slight scale effect on hover */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Stronger shadow on hover */
  
}

.inn-amenity-icon {
  font-size: 3rem;
  color: #fff; /* White color for icons to contrast with orange background */
  margin-bottom: 15px;
}

.inn-amenity-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff; /* White title text */
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Styling for the list to add bullets */
.inn-amenity-list {
  list-style-type: disc; /* Add bullets to the list */
  padding-left: 20px; /* Space between bullets and text */
  color: #fff; /* White color for list items to match the text */
  font-size: 1rem;
}

.inn-amenity-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .inn-amenities-description {
    font-size: 1rem; /* Smaller description font size for mobile */
  }

  .inn-amenities-container {
    grid-template-columns: 1fr; /* Stack items vertically on smaller screens */
  }

  .inn-amenity-category {
    padding: 20px;
  }

  .inn-amenity-title {
    font-size: 1.4rem; /* Adjust category title size */
  }

  .inn-amenity-list li {
    font-size: 0.95rem; /* Adjust list item font size */
  }
}

/* Styling for the "Things to Do" Section */
.budget-inn-things-to-do {
  padding: 60px 20px;
  background-color: #fafafa; /* White background to match the layout */
}

.budget-inn-section-title {
  margin-bottom: 40px;
}

.budget-inn-main-title {
  
  text-align: center;
}



.budget-inn-description {
  font-size: 1.2rem;
  color: #555; /* Dark gray color for description */
  margin-top: 10px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-align: center;
}

/* Grid Layout for Attractions */
.budget-inn-attractions-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr)); /* Grid for each category */
  gap: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Styling for each attraction category */
.budget-inn-attraction-category {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.budget-inn-attraction-category-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #cc0000; /* Red color for the category title */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.budget-inn-attraction-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  margin-bottom: 20px;
}

.budget-inn-attraction-card:hover {
  transform: scale(1.05); /* Slight scale effect on hover */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Stronger shadow on hover */
}

.budget-inn-attraction-card h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #cc0000; /* Red color for the card title */
  margin-bottom: 10px;
}

.budget-inn-attraction-card p {
  font-size: 1rem;
  color: #555; /* Dark gray color for the description */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .budget-inn-main-title {
    font-size: 2rem; /* Smaller title font size for mobile */
  }

  .budget-inn-description {
    font-size: 1rem; /* Smaller description font size for mobile */
  }

  .budget-inn-attractions-container {
    grid-template-columns: 1fr; /* Stack items vertically on smaller screens */
    align-items: center;
  }

  .budget-inn-attraction-card {
    padding: 15px;
  }

  .budget-inn-attraction-category-title {
    font-size: 1.6rem; /* Adjust category title size */
  }

  .budget-inn-attraction-card h4 {
    font-size: 1.2rem;
  }

  .budget-inn-attraction-card p {
    font-size: 0.95rem;
  }
}
/* Location Section Header */
.location-section-hero {
  background: #f5f5f573; /* Soft white background */
  padding: 30px 20px;
}

.location-wrapper-hero {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.location-info-box {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info-box h2 {
  font-size: 2.6rem;
  color: #ff0000; /* Budget Inn Yellow */
  margin-bottom: 15px;
  font-weight:500;
}

.location-info-box p {
  font-size: 1.2rem;
  color: #333333; /* Dark grey text for readability */
  margin-bottom: 30px;
  line-height: 1.6;
}

.coordinates-area,
.directions-area {
  background: #90090b; /* Budget Inn Red */
  padding: 20px;
  border-left: 5px solid #ffc107; /* Budget Inn Yellow for accent border */
  margin-bottom: 25px;
  border-radius: 10px;
}

.coordinates-area h4,
.directions-area h4 {
  color: #fff; /* White for headings */
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.coordinates-area ul {
  list-style: none;
  padding-left: 0;
  color: #ffffff; /* White text for better contrast */
}

.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: #ffc107; /* Budget Inn Yellow */
  color: #1a1a1a;
  border: none;
  font-size: 1rem;
  border-radius: 8px;
  transition: background 0.3s;
}

.directions-area form button:hover {
  background: #e0a800; /* Darker yellow on hover */
}

/* Right Side Map */
.location-map-box {
  flex: 1;
  background: #f4f9f6; /* Soft greenish background for map */
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 992px) {
  .location-wrapper-hero {
    flex-direction: column;
  }

  .location-map-box {
    height: 300px;
  }
}

/* Custom Location Header */
.custom-location-header {
  text-align: center;
  padding: 10px 20px;
  background-color: #f5f5f573; /* Light white background */
}

.custom-location-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffc107; /* Budget Inn Yellow */
  margin-bottom: 20px;
  position: relative;
}

.custom-location-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: #ff0000; /* Budget Inn Red accent */
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

.custom-location-description {
  font-size: 20px;
  line-height: 1.8;
  color: #333333; /* Dark grey text */
  max-width: 1280px;
  margin: 0 auto;
}


/* 1. Contact Header Section */
.custom-contact-header {
  text-align: center;
  padding: 20px 20px;
  background-color: #fafafa; /* Soft white background for the header */
}

.custom-contact-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #ff0000; /* Budget Inn Red for the title */
  margin-bottom: 20px;
  position: relative;
}

.custom-contact-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: #ffc107; /* Budget Inn Yellow for accent */
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

.custom-contact-description {
  font-size: 20px;
  line-height: 1.8;
  color: #333; /* Dark gray text for readability */
  max-width: 1200px;
  margin: 0 auto;
}

/* 2. Main Contact Info Section */
.contact-section-hero {
  background: #fafafa; /* Soft white background */
  padding: 30px 20px;
}

.contact-wrapper-hero {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: #fff; /* White background for the content box */
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact-info-box {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-box h2 {
  font-size: 2.6rem;
  color: #ff0000; /* Budget Inn Red for main headings */
  margin-bottom: 15px;
}

.contact-info-box p {
  font-size: 1.2rem;
  color: #4a4a4a; /* Darker gray for description */
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-details-area {
  background: #ffc107; /* Budget Inn Yellow for contact details area */
  padding: 20px;
  border-left: 5px solid #ff0000; /* Budget Inn Red border accent */
  margin-bottom: 25px;
  border-radius: 10px;
}

.contact-details-area h4 {
  color: #ff0000; /* Budget Inn Red for subheadings */
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-details-area ul {
  list-style: none;
  padding-left: 0;
  color: #333; /* Dark gray text */
}

.contact-details-area ul li {
  margin-bottom: 12px;
  font-size: 1rem;
}

.contact-details-area a {
  color: #ff0000; /* Budget Inn Red for links */
  font-weight: 600;
  text-decoration: none;
}

.contact-details-area a:hover {
  color: #d30000; /* Darker red on hover */
  text-decoration: underline;
}

/* 3. Right Side Image */
.contact-image-box {
  flex: 1;
  background: #f4f9f6; /* Soft greenish background for map */
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* 4. Responsive Design */
@media (max-width: 992px) {
  .contact-wrapper-hero {
    flex-direction: column;
  }

  .contact-image-box {
    height: 300px;
  }

  .custom-contact-title {
    font-size: 2rem;
  }

  .custom-contact-description {
    font-size: 1rem;
  }

  .contact-info-box h2 {
    font-size: 2rem;
  }
}
/* 📍 Best Western Plus Safford Sitemap Section */

.container-sitemap{width: 1200px; margin: 0 auto;}
.sitemap-section {
    padding: 30px 20px;
    background: #f5f5f5; /* Soft off-white background */
    text-align: center;
}

.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sitemap-title {
    font-size: 3rem;
    color: #004d2c; /* Dark Green for the title */
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.sitemap-subtitle {
    font-size: 1.2rem;
    color: #4a4a4a; /* Dark gray text */
    margin-bottom: 50px;
    font-weight: 400;
}

.sitemap-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sitemap-block {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 77, 44, 0.08); /* Dark green shadow */
    border: 1px solid #e3e3e3; /* Light gray border */
}

.sitemap-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 77, 44, 0.15); /* Darker green shadow on hover */
}

.sitemap-block h2 {
    font-size: 1.8rem;
    color: #fecb51; /* Yellow accent for subheadings */
    margin-bottom: 15px;
    font-weight: 600;
}

.sitemap-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-block ul li {
    margin-bottom: 15px;
}

.sitemap-block ul li a {
    font-size: 18px;
    color: #ff0000; /* Dark Green for links */
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    font-weight: 500;
}

.sitemap-block ul li a i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #fecb51; /* Yellow for icons */
}

.sitemap-block ul li a:hover {
    color: #00331f; /* Darker green on hover */
}

/* 📱 Responsive Design */
@media (max-width: 1024px) {
    .sitemap-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .sitemap-links {
        grid-template-columns: 1fr;
    }
}
/* 🎯 FAQ Section - Best Western Plus Safford */
.faq-section {
    padding: 30px 20px;
    color: #1a1a1a;
    text-align: center;
    position: relative;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-title a {
    font-size: 3rem;
    font-weight: 700;
    color: #fa1a05; /* Primary Deep Blue for titles */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
}

.faq-subtitle {
    font-size: 1.3rem;
    color: #333333; /* Dark gray for subtitle */
    margin-bottom: 50px;
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
}

.faq-item {
    background: #ffffff; /* White background for each FAQ item */
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e3e3e3; /* Soft light gray border */
    box-shadow: 0 8px 20px rgba(0, 51, 102, 0.08); /* Deep Blue shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #ff6600; /* Orange accent for FAQ top border */
}

.faq-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 51, 102, 0.12); /* Darker blue shadow on hover */
}

.faq-item h2 {
    font-size: 1.8rem;
    color: #fa1a05; /* Deep Blue for FAQ headers */
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px dashed #ff6600; /* Orange dashed underline */
}

.faq-item p {
    font-size: 1.1rem;
    color: #333333; /* Dark gray text for body */
    line-height: 1.75;
    margin-bottom: 10px;
}

.faq-item a {
    color: #fa1a05; /* Deep Blue for links */
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.faq-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6600; /* Orange underline */
    transition: width 0.3s ease;
}

.faq-item a:hover {
    color: #ff6600; /* Orange on hover */
}

.faq-item a:hover::after {
    width: 100%; /* Full width orange underline on hover */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .faq-title {
        font-size: 2.5rem;
    }

    .faq-item h2 {
        font-size: 1.5rem;
    }

    .faq-item p {
        font-size: 1rem;
    }
}

#backToTop {
    position: fixed;
    bottom: 35px;
    right: 30px;
    z-index: 999;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #FFD369, #F9F871);
    color: #0F4C75;
    font-size: 20px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    animation: pulseGlow 2.5s infinite ease-in-out;
    transition: transform 0.3s ease, opacity 0.4s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(34, 45, 50, 0.95);
    color: #ffffff;
    text-align: center;
    padding: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    z-index: 99999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner .cookie-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cookie-banner p {
    margin: 0;
    line-height: 1.4;
}

.cookie-banner button {
    border: none;
    color: #ffffff;
    background: linear-gradient(135deg, #4A90E2, #1C75BC);
    outline: 0;
    cursor: pointer;
    display: inline-flex;
    padding: 14px 25px;
    font-weight: 600;
    transition: .3s ease-in-out;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cookie-banner a {
    color: #F1C40F;
    text-decoration: underline;
    font-weight: 500;
}


























/* --- Interactive Background --- */
.interactive-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(146, 106, 166, 0.05);
    animation: float-particle 20s infinite linear;
}

@keyframes float-particle {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(100px, 100px);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* --- Hotel Amenities Section --- */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.amenity-card {
    background: white;
    border-radius: 16px;
    /* Replaced var(--radius) */
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Replaced var(--shadow) */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Replaced var(--transition) */
    cursor: pointer;
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.amenity-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: rgb(252 224 72);
    /* Replaced variables */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.amenity-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: rgb(30 58 138);
    /* Replaced var(--primary) */
}

.amenity-card p {
    color: #6c757d;
    font-size: 0.95rem;
}

/* --- REVISED Room Types Section (2-Column Layout) --- */
.room-selector-container {
    display: grid;
    grid-template-columns: 1fr 1.0fr;
    gap: 0;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.room-list {
    background: #e9f0f3;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #dce5e8;
    align-self: start;
}

.room-item {
    padding: 35px;
    cursor: pointer;
    border-left: 5px solid transparent;
    transition: all 0.3s ease;
    border-bottom: 1px solid #dce5e8;
}

.room-item:last-child {
    border-bottom: none;
}

.room-item h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #34495e;
}

.room-item:hover {
    background-color: #f4f7f6;
}

.room-item.active {
    background-color: #ffffff;
    border-left: 5px solid rgb(252 224 72);
}

.room-image-display {
    position: relative;
    background-color: #333;
}

.room-image-details {
    width: 100%;
    height: 100%;
    position: relative;
    animation: fadeInDetails 0.6s ease-in-out;
}

.room-image-details img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.room-image-details:hover img {
    transform: scale(1.05);
}

@keyframes fadeInDetails {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .room-selector-container {
        grid-template-columns: 1fr;
    }
    .room-image-display {
        min-height: 450px;
    }
}








/* =================================================================
   Consolidated "Attractions" Styles
   ================================================================= */

/* =========================================
 *  Nearby Attractions Section
 * ========================================= */

.attractions-container {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 40px 20px;
    margin-top: -70px;
    width: 1331px;
}

.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 #eeef0f; /* UPDATED */
}

.attractions-container .category-header {
    padding: 20px;
    background-color: #b21338; /* UPDATED */
    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-info {
    flex: 1;
}

.attractions-container .attraction-name, .title3-attraction {
    margin-bottom: 4px;
    font-size: 16px;
    color: #333;
}

.attractions-container .attraction-type {
    color: #000;
}

.attractions-container .attraction-distance {
    background-color: #eeef0f; /* UPDATED */
    color: black;
    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: #b21338; /* UPDATED */
    transform: scale(1.05);
    color: white;
}



.location-container {
    width: 100%;
    max-width: 100%;
    background: white;
}

.location-title {
    text-align: center;
    color: #b21338; /* CHANGED */
    font-size: 2.4rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #b21338; /* CHANGED */
}

.location-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 90%;
    margin: 0 auto;
    align-items: stretch;
}

.location-info {
    flex: 1;
    min-width: 300px;
}

.coordinates-box {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(178, 19, 56, 0.1); /* CHANGED */
    border: 1px solid rgba(178, 19, 56, 0.1);     /* CHANGED */
}

.coordinates-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #b21338; /* CHANGED */
    font-size: 1.4rem;
    font-weight: 600;
}

.coordinate {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 12px;
    font-size: 19px;
}

.coordinate i {
    color: #eeef0f; /* CHANGED */
    font-size: 1.2rem;
}

.directions-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(178, 19, 56, 0.1); /* CHANGED */
    border: 1px solid rgba(178, 19, 56, 0.1);     /* CHANGED */
}

.directions-form label {
    font-weight: 600;
    color: #b21338; /* CHANGED */
    font-size: 20px;
    text-align: left;
}

.directions-form input {
    padding: 9px;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.directions-form input:focus {
    outline: none;
    border-color: #b21338;                        /* CHANGED */
    box-shadow: 0 0 0 3px rgba(178, 19, 56, 0.2); /* CHANGED */
}

.directions-form button {
    background: #b21338; /* CHANGED */
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.directions-form button:hover {
    background: #eeef0f;       /* CHANGED */
    color: #333;               /* ADDED for readability */
    transform: translateY(-2px);
}

.location-map {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(178, 19, 56, 0.1); /* CHANGED */
    border: 1px solid rgba(178, 19, 56, 0.1);     /* CHANGED */
    transition: transform 0.3s ease;
}

.location-map:hover {
    transform: translateY(-5px);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .location-content {
      flex-direction: column;
    }
    
    .location-info, .location-map {
      width: 100%;
    }
}





.content-wrapper {
    display: flex;
    gap: 30px;
    margin: 0 auto;
    padding: 20px;
    margin-top: -40px;
}

.contact-card {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
    height: 450px;
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-card h2 {
    color: #b21338; /* New Colour */
    margin-bottom: 25px;
    font-size: 1.8rem;
    position: relative;
    text-align: center;
}

.contact-card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #eeef0f; /* New Colour */
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    color: #eeef0f; /* New Colour */
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 24px;
    text-align: center;
}

.info-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #b21338; /* New Colour */
}

.info-text p, .info-text a {
    font-size: 1.1rem;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

.info-text a:hover {
    color: #b21338; /* New Colour */
    text-decoration: underline;
}

.map-container {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
    height: 450px;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .contact-card, .map-container {
        width: 100%;
        height: auto;
    }
    
    .map-container {
        height: 350px;
    }
}


















/* Scoped styles using section ID */
        
        #hotel-navigation-section .container {
            margin: 0 auto;
            padding: 0 20px;
        }
        
        #hotel-navigation-section .navigation-grid {
            display: flex;
            flex-direction: column;
            gap: 20px;
            padding: 20px;
            margin-top: -40px;
        }
        
        #hotel-navigation-section .nav-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        
        #hotel-navigation-section .nav-item {
            display: flex;
            height: 100%;
        }
        
        #hotel-navigation-section .nav-link {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #333;
            text-decoration: none;
            background: white;
            border-radius: 8px;
            padding: 25px 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
            height: 120px; /* Fixed height for rectangular format */
        }
        
        #hotel-navigation-section .nav-link:hover {
            background: #b21338; /* New hover background color */
            color: white;
            box-shadow: 0 8px 16px rgba(178, 19, 56, 0.2); /* New hover shadow color */
            transform: translateY(-3px);
        }
        
        #hotel-navigation-section .nav-icon {
            font-size: 24px;
            margin-bottom: 12px;
            color: #eeef0f; /* New icon color */
            transition: all 0.3s ease;
        }
        
        #hotel-navigation-section .nav-link:hover .nav-icon {
            color: white;
            transform: scale(1.1);
        }
        
        #hotel-navigation-section .nav-text {
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 5px;
        }
        
        #hotel-navigation-section .nav-desc {
            font-size: 13px;
            opacity: 0.8;
            line-height: 1.4;
        }
        
        /* Responsive styles */
        @media (max-width: 992px) {
            #hotel-navigation-section .nav-row {
                grid-template-columns: repeat(2, 1fr);
            }
            
            #hotel-navigation-section .nav-link {
                height: 110px;
                padding: 20px 10px;
            }
        }
        
        @media (max-width: 576px) {
            #hotel-navigation-section .nav-row {
                grid-template-columns: 1fr;
            }
            
            #hotel-navigation-section .nav-link {
                height: 100px;
                padding: 15px 10px;
            }
            
            #hotel-navigation-section {
                padding: 30px 0;
            }
        }











.faq-section {
    margin: 20px auto;
    padding: 0 20px;
    margin-top: -40px;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    color: #b21338; /* New Colour */
    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, #b21338, #eeef0f); /* New Colours */
    border-radius: 2px;
}

.faq-header p {
    color: black;
    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 #b21338; /* New Colour */
}

.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: #eeef0f; /* New Colour */
    color: #333; /* Adjusted text color for better readability on yellow */
    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: #333;
}

.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, #b21338, transparent); /* New Colour */
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.faq-answer a {
    color: #b21338; /* New Colour */
    font-weight: 600;
    text-decoration: none !important;
}

.faq-answer a:hover {
    color: #eeef0f; /* New Colour */
    border-bottom-color: #eeef0f; /* New Colour */
}

.faq-answer .fa-caret-right {
    color: #eeef0f; /* New Colour */
    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;
    }
}































.highlighted-attraction-section {
            color: black;
            text-align: center;
            margin-top: -60px;
        }

        .highlighted-container {
            max-width: 1200px;
            margin: 40px auto;
            border: 1px solid #e0e0e0;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            background: #ffffff;
        }

        .highlighted-header {
            margin-bottom: 40px;
            padding: 20px;
            background: linear-gradient(135deg, #f7f9fc, #dfeaf1);
        }

        .highlighted-title {
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .highlighted-subtitle {
            font-size: 1.3rem;
        }

        .highlighted-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
            padding: 30px;
        }

        .highlighted-description {
            flex: 1;
            text-align: left;
        }

        .highlighted-features {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }

        .highlighted-features li {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: #444;
            display: flex;
            align-items: center;
        }

        .highlighted-features li strong {
            color: #fcb100;
        }

        .highlighted-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #444;
            margin-bottom: 15px;
        }

        .highlighted-reservation-btn {
            display: inline-block;
            padding: 12px 24px;
            background: #fcb100;
            color: #fff !important;
            text-transform: uppercase;
            font-weight: bold;
            text-decoration: none;
            border-radius: 8px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .highlighted-reservation-btn:hover {
            background: #f1a74b;
            transform: translateY(-3px);
        }

        .highlighted-image {
            flex: 1;
            max-height: 300px;
            overflow: hidden;
        }

        .highlighted-img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .highlighted-img:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }

        @media (max-width: 768px) {
            .highlighted-content {
                flex-direction: column;
            }

            .highlighted-title {
                font-size: 2rem;
            }

            .highlighted-subtitle {
                font-size: 1.1rem;
            }
        }

        .highlighted-hospital-section {
            padding: 80px 20px;
            background: #fdfcfb;
            color: #fcb100;
            text-align: center;
        }

        .highlighted-hospital-container {
            max-width: 1200px;
            margin: 0 auto;
            border: 1px solid #e0e0e0;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            background: #ffffff;
            padding: 40px;
        }

        .hospital-header {
            margin-bottom: 40px;
            padding: 20px;
            background: linear-gradient(135deg, #f7f9fc, #dfeaf1);
            border-radius: 15px;
        }

        .hospital-title {
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: bold;
            color: #0d3d67;
        }

        .hospital-subtitle {
            font-size: 1.3rem;
            color: #2B81A2;
        }

        .hospital-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .hospital-description {
            flex: 1;
            text-align: left;
        }

        .hospital-features {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }

        .hospital-features li {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: #444;
            display: flex;
            align-items: center;
        }

        .hospital-features li strong {
            color: #fcb100;
        }

        .hospital-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #444;
            margin-bottom: 15px;
        }

        .hospital-reservation-btn {
            display: inline-block;
            padding: 12px 24px;
            background: #fcb100;
            color: #fff;
            text-transform: uppercase;
            font-weight: bold;
            text-decoration: none;
            border-radius: 8px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .hospital-reservation-btn:hover {
            background: #f1a74b;
            transform: translateY(-3px);
        }

        .hospital-image {
            flex: 1;
            max-height: 300px;
            overflow: hidden;
        }

        .hospital-img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hospital-img:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }

        @media (max-width: 768px) {
            .hospital-content {
                flex-direction: column;
            }

            .hospital-title {
                font-size: 2rem;
            }

            .hospital-subtitle {
                font-size: 1.1rem;
            }
        }



        /* Gallery Grid Styling */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(156px, 1fr));
    gap: 15px;
    margin: 0px auto;
    padding: 20px;
    margin-top: -40px;
    /* width: 1225px; */
}

.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; /* Ensures images fill the container without distortion */
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Hover effect on gallery thumbnails */
.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); /* Semi-transparent background */
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;

    /* Animation: Fade-in effect */
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

/* This class will be added by JavaScript to show the lightbox */
.lightbox.active {
    visibility: visible;
    opacity: 1;
}

/* Animation: Zoom-in effect for the image */
#lightbox-img {
    max-width: 90vw;
    max-height: 80vh;  /* Adjusted max-height to make room for caption */
    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);
}

/* ▼▼▼ THIS IS THE NEW CSS FOR THE CAPTION ▼▼▼ */
#lightbox-caption {
    text-align: center;
    color: #f1f1f1;
    padding: 10px 0;
    margin-top: 10px;
    font-size: 1.1em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: opacity 0.4s ease-in-out; /* Fades in with lightbox */
}


/* Navigation & Close Buttons */
.close-btn, .prev-btn, .next-btn {
    position: absolute;
    color: white;
    cursor: pointer;
    font-weight: bold;
    user-select: none; /* Prevents text selection */
    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;
}

.container-contact{width: 1236px; margin: 0 auto;}