/*
Template Name: Grand Hotel
Author: Manyiri Developers
Inspired by: BootstrapMade and Dribbble
Photos by: Pexels
License: manyiridevs.xyz
One growing team. Many Digital talents.
*/

/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Abel",  sans-serif;
  --nav-font: "Mukta",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #070d1a; /* Background color for the entire website, including individual sections */
  --default-color: #e4edf5; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #f2f8fe; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #10a3d7; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #131825; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #e4edf5;  /* The default color of the main navmenu links */
  --nav-hover-color: #10a3d7; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: rgba(22, 29, 44, 0.95); /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: rgba(23, 30, 47, 0.95); /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: rgba(215, 226, 235, 0.645); /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffffff; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #111623;
  --surface-color: #161c2a;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}



a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

  

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  /* padding: 15px; */
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu */
.mobile-nav-toggle {
  color: var(--nav-color);
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 32px;
  line-height: 0;
  cursor: pointer;
  display: block !important;
  z-index: 998;
  transition: 0.3s;
}

.mobile-nav-toggle:hover {
  color: var(--nav-hover-color);
}

.navmenu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -300px;
  z-index: 997;
  transition: 0.3s;
  width: 300px;
  overflow: hidden;
}

.navmenu ul {
  display: block;
  list-style: none;
  padding: 20px 10px;
  margin: 0;
  overflow-y: auto;
  transition: 0.3s;
  z-index: 998;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-dropdown-color);
  padding: 15px 20px;
  font-family: var(--nav-font);
  font-size: 17px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.navmenu a i:hover,
.navmenu a:focus i:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: var(--nav-dropdown-hover-color);
}

.navmenu .active i,
.navmenu .active:focus i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(180deg);
}

.navmenu .dropdown ul {
  position: static;
  display: none;
  z-index: 99;
  padding: 10px 0;
  margin: 10px 20px;
  box-shadow: none;
  transition: all 0.5s ease-in-out;
}

.navmenu .dropdown>.dropdown-active {
  display: block;
  background-color: var(--nav-dropdown-background-color);
  border: 1px solid color-mix(in srgb, var(--nav-dropdown-color), transparent 90%);
}

.mobile-nav-active .mobile-nav-toggle {
  right: 310px;
  font-size: 36px;
}

.mobile-nav-active .navmenu {
  position: fixed;
  overflow: hidden;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: var(--nav-mobile-background-color);
  transition: 0.3s;
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/* .footer {
  color: var(--default-color, #e4edf5);
  background-color: var(--background-color, #111623);
  font-size: 14px;
  padding: 60px 0 30px; 
  position: relative;
  background-image: url('../img/mtwapa-resort-img/facilities-mtwapa-counntry-hotel (7).jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
} */
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  /* background-color: var(--background-color, #111623); */
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
  background-image: url('../img/mtwapa-resort-img/facilities-mtwapa-counntry-hotel (7).jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 22, 35, 0.5); /* semi-transparent dark overlay */
  z-index: 1;
}
.footer .container {
  position: relative;
  z-index: 2;
}



.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}





    



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color, #111623);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
  width: 80px;
  height: 80px;
  background: var(--accent-color, #10a3d7);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(16, 163, 215, 0.5); /* Subtle glow */
  animation: animate-preloader 1.8s ease-in-out infinite;
}

@keyframes animate-preloader {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.4;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}


.slow-load {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slow-load[src]:not([src="/assets/img/mtwapa-resort-img/placeholder-grand-hotel (1).jpg"]) {
  opacity: 1;
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 0;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 0;
  }
}


/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 20px;
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-bottom: 80px;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8); 
  z-index: 0;
}

.hero .hero-content .title {
  font-size: 4.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: -1px;
  color: var(--contrast-color, #fff); /* White for visibility */
}

.hero  .bottom-right-text {
  position: absolute;
  bottom:0;
  right: 30px;
  max-width: 300px;
  text-align: left;
  background-color: color-mix(in srgb, var(--surface-color, #fff), transparent 40%);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.hero .description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--default-color, #333);
  margin-bottom: 1.5rem;
}

.hero .hero-buttons .primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color, #007bff); /* Bootstrap primary blue */
  color: var(--contrast-color, #fff);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero.hero-buttons .primary-btn i {
  margin-left: 8px;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.hero .hero-buttons .primary-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color, #007bff), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color, #007bff), transparent 80%);
}

.hero.hero-buttons .primary-btn:hover i {
  transform: translateX(4px);
}

/* Pulsating Play Button */
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(55% - 47px);
  z-index: 2;
  overflow: hidden;
 
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation: pulsate-play-btn 2s infinite;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
  cursor: pointer;

}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .hero .hero-content .title {
    font-size: 3.8rem;
  }
}

@media (max-width: 991px) {
  .hero .hero-content .title {
    font-size: 3.2rem;
  }
  .hero .hero-content .bottom-right-text {
    position: static;
    max-width: 100%;
    margin-top: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .hero .hero-content .title {
    font-size: 2.8rem;
  }
  .hero .hero-buttons .primary-btn {
  padding: 0.5rem 1rem;
}
}

@media (max-width: 480px) {
  .hero .hero-content .title {
    font-size: 2.4rem;
  }
    .hero .hero-buttons .primary-btn {
  padding: 0.5rem 1rem;
}
.hero  .bottom-right-text {
  padding: 0.5rem;
}
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding: 60px 0;
  background-color: var(--background-color, #111623); /* From light-background */
}

.about .section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.about .section-title .description-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-color, #10a3d7); /* Coastal blue */
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.5rem;
}

.about .section-title h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--heading-color, #f2f8fe);
  margin-bottom: 0;
  font-family: 'Mukta', sans-serif;
}

@media (max-width: 991px) {
  .about .section-title h2 {
    font-size: 1.75rem;
  }
}

.about .about-image-wrapper {
  position: relative;
}

.about .about-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  max-height: 500px;
  object-fit: cover;
}

.about .about-content {
  position: relative;
  z-index: 2;
}

.about .about-content .about-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--default-color, #e4edf5);
  margin-bottom: 1rem;
  font-family: 'Roboto', sans-serif;
}

.about .about-content .about-info p:last-child {
  margin-bottom: 0;
}

.about .hero-buttons .primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color, #10a3d7);
  color: var(--contrast-color, #ffffff);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
}

.about .hero-buttons .primary-btn i {
  margin-left: 8px;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.about .hero-buttons .primary-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color, #10a3d7), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color, #10a3d7), transparent 80%);
}

.about .hero-buttons .primary-btn:hover i {
  transform: translateX(4px);
}

.about .bottom-right-image {
  margin-top: 1.5rem;
  text-align: right;
}

.about .bottom-right-image img {
  max-width: 400px; /* Balanced size */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

@media (max-width: 991px) {
  .about .about-content {
    margin-top: 2rem;
  }

  .about .bottom-right-image {
    text-align: center;
  }

  .about .bottom-right-image img {
    max-width: 350px; /* Smaller on tablet */
  }
}

@media (max-width: 767px) {
  .about .hero-buttons .primary-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .about .bottom-right-image img {
    max-width: 200px; /* Smaller on mobile */
  }
}

@media (max-width: 480px) {
  .about .hero-buttons .primary-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .about .section-title h2 {
    font-size: 1.5rem;
  }

  .about .section-title .description-title {
    font-size: 1rem;
  }
}

/* Animation styles */
.about .about-image-wrapper img {
  animation: fadeIn 1s ease-in-out; 
}

.about .bottom-right-image img {
  animation: zoomIn 1s ease-in-out; 
}
/*--------------------------------------------------------------
# Dining Section
--------------------------------------------------------------*/
.dining {
  padding: 60px 0;
  background-color: var(--background-color, #111623); /* From light-background */
}

.dining .section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.dining .section-title .description-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-color, #10a3d7); /* Coastal blue */
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.5rem;
}

.dining .section-title h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--heading-color, #f2f8fe);
  margin-bottom: 0.5rem;
  font-family: 'Mukta', sans-serif;
}

.dining .section-title p {
  font-size: 1rem;
  color: var(--default-color, #e4edf5);
  font-family: 'Roboto', sans-serif;
  max-width: 600px;
  margin: 0 auto;
}

.dining .swiper {
  width: 100%;
  padding: 20px 0;
}

.dining .dining-card {
  background: var(--surface-color, #161c2a); /* From light-background */
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.dining .dining-card:hover {
  transform: translateY(-5px);
}

.dining .dining-card .dining-image {
  width: 100%;
  height: 250px; /* Flashy, large images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.dining .dining-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading-color, #f2f8fe);
  margin-bottom: 0.5rem;
  font-family: 'Mukta', sans-serif;
}

.dining .dining-card p {
  font-size: 0.9rem;
  color: var(--default-color, #e4edf5);
  margin-bottom: 0;
  font-family: 'Roboto', sans-serif;
}

.dining .dining-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color, #f2f8fe);
  margin-bottom: 1rem;
  font-family: 'Mukta', sans-serif;
}

.dining .dining-content .dining-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--default-color, #e4edf5);
  margin-bottom: 1rem;
  font-family: 'Roboto', sans-serif;
}

.dining .hero-buttons .primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color, #10a3d7);
  color: var(--contrast-color, #ffffff);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
}

.dining .hero-buttons .primary-btn i {
  margin-left: 8px;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.dining .hero-buttons .primary-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color, #10a3d7), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color, #10a3d7), transparent 80%);
}

.dining .hero-buttons .primary-btn:hover i {
  transform: translateX(4px);
}

.dining .swiper-pagination {
  margin-top: 1.5rem;
}

.dining .swiper-pagination-bullet {
  background-color: var(--default-color, #e4edf5);
  opacity: 0.5;
}

.dining .swiper-pagination-bullet-active {
  background-color: var(--accent-color, #10a3d7);
  opacity: 1;
}

.dining .swiper-button-prev,
.dining .swiper-button-next {
  color: var(--contrast-color, #ffffff);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.dining .swiper-button-prev::before,
.dining .swiper-button-next::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color, #10a3d7);
  border-radius: 50%;
  opacity: 0.8;
  z-index: -1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dining .swiper-button-prev::after,
.dining .swiper-button-next::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 50px;
  border: 2px solid var(--default-color, #e4edf5);
  border-radius: 50%;
  opacity: 0.3;
  z-index: -2;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dining .swiper-button-prev:hover::before,
.dining .swiper-button-next:hover::before {
  opacity: 1;
  transform: scale(1.1);
}

.dining .swiper-button-prev:hover::after,
.dining .swiper-button-next:hover::after {
  opacity: 0.5;
  transform: scale(1.2);
}

.dining .swiper-button-prev {
  left: 10px;
}

.dining .swiper-button-next {
  right: 10px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .dining .section-title h2 {
    font-size: 1.75rem;
  }

  .dining .dining-content {
    margin-top: 2rem;
  }

  .dining .dining-content h2 {
    font-size: 1.75rem;
  }

  .dining .dining-card .dining-image {
    height: 200px;
  }

  .dining .swiper-button-prev,
  .dining .swiper-button-next {
    width: 35px;
    height: 35px;
  }

  .dining .swiper-button-prev::after,
  .dining .swiper-button-next::after {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 767px) {
  .dining .hero-buttons .primary-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .dining .dining-card .dining-image {
    height: 180px;
  }

  .dining .swiper-button-prev,
  .dining .swiper-button-next {
    width: 30px;
    height: 30px;
  }

  .dining .swiper-button-prev::after,
  .dining .swiper-button-next::after {
    width: 40px;
    height: 40px;
  }

  .dining .swiper {
    slidesPerView: 2; /* Show 2 slides on smaller screens */
  }
}

@media (max-width: 480px) {
  .dining .section-title h2 {
    font-size: 1.5rem;
  }

  .dining .section-title .description-title {
    font-size: 1rem;
  }

  .dining .hero-buttons .primary-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .dining .dining-card .dining-image {
    height: 150px;
  }

  .dining .swiper {
    slidesPerView: 1; /* Show 1 slide on smallest screens */
  }
}

/* Animation styles */
.dining .dining-card .dining-image {
  animation: fadeIn 1s ease-in-out; /* Animate.css fadeIn */
}
/*--------------------------------------------------------------
# Suites and Rooms Section
--------------------------------------------------------------*/
.suites-rooms {
  padding: 60px 0;
  background-color: var(--background-color, #112312);
  /* background-color: var(--background-color, #111623);  */
  /* From light-background */
}

.suites-rooms .section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.suites-rooms .section-title .description-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-color, #10a3d7); /* Coastal blue */
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.5rem;
}

.suites-rooms .section-title h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--heading-color, #f2f8fe);
  margin-bottom: 0.5rem;
  font-family: 'Mukta', sans-serif;
}

.suites-rooms .section-title p {
  font-size: 1rem;
  color: var(--default-color, #e4edf5);
  font-family: 'Roboto', sans-serif;
  max-width: 600px;
  margin: 0 auto;
}

.suites-rooms .swiper {
  width: 100%;
  padding: 20px 0;
}

.suites-rooms .swiper-slide {
  display: flex;
  width:33.3%;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0.8; 
  /* Dim non-active slides */
  /* transition: opacity 0.3s ease; */
  transform: scale(1); /* Default scale */
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.suites-rooms .swiper-slide-active {
  opacity: 1; 
  /* transform: scale(1.8); */
  transform: scale(1.1); /* Adjust this to control zoom */
}

.suites-rooms .room-card {
  /* background: var(--surface-color, #161c2a);  */
  /* From light-background */
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); */
  max-width: 350px; /* Constrain slide width for coverflow */
  transform: scale(1); /* Default scale */
  transition: transform 0.5s ease,
}
.suites-rooms .room-card:hover{
 transform: scale(1.1); /* Adjust this to control zoom */
  z-index: 2;
}


.suites-rooms .room-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.suites-rooms .room-card .room-info {
  background: var(--surface-color, #161c2a); 
  padding: 1.5rem;
}

.suites-rooms .room-card .room-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading-color, #f2f8fe);
  margin-bottom: 0.5rem;
  font-family: 'Mukta', sans-serif;
}

.suites-rooms .room-card .room-info p {
  font-size: 0.95rem;
  color: var(--default-color, #e4edf5);
  margin-bottom: 1rem;
  font-family: 'Roboto', sans-serif;
}

.suites-rooms .room-card .room-info .primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color, #10a3d7);
  color: var(--contrast-color, #ffffff);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
}

.suites-rooms .room-card .room-info .primary-btn i {
  margin-left: 8px;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.suites-rooms .room-card .room-info .primary-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color, #10a3d7), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color, #10a3d7), transparent 80%);
}

.suites-rooms .room-card .room-info .primary-btn:hover i {
  transform: translateX(4px);
}

.suites-rooms .swiper-pagination {
  margin-top: 1.5rem;
}

.suites-rooms .swiper-pagination-bullet {
  background-color: var(--default-color, #e4edf5);
  opacity: 0.5;
}

.suites-rooms .swiper-pagination-bullet-active {
  background-color: var(--accent-color, #10a3d7);
  opacity: 1;
}
.suites-rooms .swiper-button-prev,
.suites-rooms .swiper-button-next {
  color: var(--contrast-color, #ffffff); /* White icons for contrast */
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}
.suites-rooms .swiper-button-prev:active,
.suites-rooms .swiper-button-next:active {
 outline:none;
}

.suites-rooms .swiper-button-prev::before,
.suites-rooms .swiper-button-next::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color, #10a3d7); /* Coastal blue */
  border-radius: 50%;
  opacity: 0.8;
  z-index: -1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.suites-rooms .swiper-button-prev::after,
.suites-rooms .swiper-button-next::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid var(--default-color, #e4edf5); /* Subtle border */
  border-radius: 50%;
  opacity: 0.3;
  z-index: -2;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.suites-rooms .swiper-button-prev:hover::before,
.suites-rooms .swiper-button-next:hover::before {
  opacity: 1;
  transform: scale(1.1); /* Slight scale on hover */
}

.suites-rooms .swiper-button-prev:hover::after,
.suites-rooms .swiper-button-next:hover::after {
  opacity: 0.5;
  transform: scale(1.2); /* Larger scale for outer ring */
}

.suites-rooms .swiper-button-prev {
  left: 10px; /* Position slightly inward */
}

.suites-rooms .swiper-button-next {
  right: 10px; /* Position slightly inward */
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .suites-rooms .swiper-button-prev,
  .suites-rooms .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .suites-rooms .swiper-button-prev::after,
  .suites-rooms .swiper-button-next::after {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 767px) {
  .suites-rooms .swiper-button-prev,
  .suites-rooms .swiper-button-next {
    width: 35px;
    height: 35px;
  }

  .suites-rooms .swiper-button-prev::after,
  .suites-rooms .swiper-button-next::after {
    width: 45px;
    height: 45px;
  }

  .suites-rooms .swiper-button-prev {
    left: 5px;
  }

  .suites-rooms .swiper-button-next {
    right: 5px;
  }
}

@media (max-width: 480px) {
  .suites-rooms .swiper-button-prev,
  .suites-rooms .swiper-button-next {
    width: 30px;
    height: 30px;
  }

  .suites-rooms .swiper-button-prev::after,
  .suites-rooms .swiper-button-next::after {
    width: 40px;
    height: 40px;
  }
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .suites-rooms .section-title h2 {
    font-size: 1.75rem;
  }

  .suites-rooms .room-card {
    max-width: 300px;
  }

  .suites-rooms .room-card img {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .suites-rooms .room-card .room-info .primary-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .suites-rooms .room-card img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .suites-rooms .section-title h2 {
    font-size: 1.5rem;
  }

  .suites-rooms .section-title .description-title {
    font-size: 1rem;
  }

  .suites-rooms .room-card .room-info .primary-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .suites-rooms .room-card {
    max-width: 250px;
  }

  .suites-rooms .room-card img {
    height: 150px;
  }
}

/*--------------------------------------------------------------
# Facilities Section
--------------------------------------------------------------*/
.facilities {
  padding: 60px 0;
  background-color: var(--background-color, #111623); /* From light-background */
}

.facilities .section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.facilities .section-title .description-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-color, #10a3d7); /* Coastal blue */
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.5rem;
}

.facilities .section-title h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--heading-color, #f2f8fe);
  margin-bottom: 0.5rem;
  font-family: 'Mukta', sans-serif;
}

.facilities .section-title p {
  font-size: 1rem;
  color: var(--default-color, #e4edf5);
  font-family: 'Roboto', sans-serif;
  max-width: 600px;
  margin: 0 auto;
}

.facilities .facilities-header {
  margin-bottom: 2rem;
}

.facilities .facilities-intro {
  padding-right: 2rem;
}

.facilities .facilities-intro .facilities-tag {
  display: inline-block;
  background-color: var(--accent-color, #10a3d7);
  color: var(--contrast-color, #ffffff);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.facilities .facilities-intro h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color, #f2f8fe);
  margin-bottom: 1rem;
  font-family: 'Mukta', sans-serif;
}

.facilities .facilities-intro p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--default-color, #e4edf5);
  font-family: 'Roboto', sans-serif;
}

.facilities .facilities-intro .hero-buttons .primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color, #10a3d7);
  color: var(--contrast-color, #ffffff);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
}

.facilities .facilities-intro .hero-buttons .primary-btn i {
  margin-left: 8px;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.facilities .facilities-intro .hero-buttons .primary-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color, #10a3d7), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color, #10a3d7), transparent 80%);
}

.facilities .facilities-intro .hero-buttons .primary-btn:hover i {
  transform: translateX(4px);
}

.facilities .swiper {
  width: 100%;
  padding: 20px 0;
}

.facilities .facility-card {
  background: var(--surface-color, #161c2a); /* From light-background */
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  width: 100%;
  /* height:auto; */
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.facilities .facility-card:hover {
  transform: translateY(-5px);
}

.facilities .facility-card .facility-image {
  width: 100%;
  height: auto; /* Large enough to attract */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.facilities .facility-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading-color, #f2f8fe);
  margin-bottom: 0.5rem;
  font-family: 'Mukta', sans-serif;
}

.facilities .facility-card p {
  font-size: 0.9rem;
  color: var(--default-color, #e4edf5);
  margin-bottom: 0;
  font-family: 'Roboto', sans-serif;
}

.facilities .swiper-pagination {
  margin-top: 1.5rem;
}

.facilities .swiper-pagination-bullet {
  background-color: var(--default-color, #e4edf5);
  opacity: 0.5;
}

.facilities .swiper-pagination-bullet-active {
  background-color: var(--accent-color, #10a3d7);
  opacity: 1;
}

.facilities .swiper-button-prev,
.facilities .swiper-button-next {
  color: var(--contrast-color, #ffffff);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}
.facilities .swiper-button-prev:active,
.facilities .swiper-button-next:active {
 outline: none;
}

.facilities .swiper-button-prev::before,
.facilities .swiper-button-next::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color, #10a3d7);
  border-radius: 50%;
  opacity: 0.8;
  z-index: -1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.facilities .swiper-button-prev::after,
.facilities .swiper-button-next::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 50px;
  border: 2px solid var(--default-color, #e4edf5);
  border-radius: 50%;
  opacity: 0.3;
  z-index: -2;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.facilities .swiper-button-prev:hover::before,
.facilities .swiper-button-next:hover::before {
  opacity: 1;
  transform: scale(1.1);
}

.facilities .swiper-button-prev:hover::after,
.facilities .swiper-button-next::after {
  opacity: 0.5;
  transform: scale(1.2);
}

.facilities .swiper-button-prev {
  left: 10px;
}

.facilities .swiper-button-next {
  right: 10px;
}

/* Responsive adjustments */
@media (max-width: 991px) and (min-width: 766px) {
  .facilities .section-title h2 {
    font-size: 1.75rem;
  }

  .facilities .facilities-intro {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .facilities .facilities-intro h2 {
    font-size: 1.75rem;
  }

  .facilities .facility-card {
    width: 550px !important;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .facilities .facility-card .facility-image {
  /* width: 100%   !important; */
  height: auto; /* Large enough to attract */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  }

 
  .facilities .swiper-button-prev,
  .facilities .swiper-button-next {
    width: 35px;
    height: 35px;
  }

  .facilities .swiper-button-prev::after,
  .facilities .swiper-button-next::after {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 767px) {
  .facilities .facilities-intro .hero-buttons .primary-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .facilities .facility-card .facility-image {
    height: auto;
  }

  .facilities .facility-card h4 {
    font-size: 1.1rem;
  }

  .facilities .swiper-button-prev,
  .facilities .swiper-button-next {
    width: 30px;
    height: 30px;
  }

  .facilities .swiper-button-prev::after,
  .facilities .swiper-button-next::after {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .facilities .section-title h2 {
    font-size: 1.5rem;
  }

  .facilities .section-title .description-title {
    font-size: 1rem;
  }

  .facilities .facilities-intro .hero-buttons .primary-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .facilities .facility-card {
    width: 100%;
  }

  .facilities .facility-card .facility-image {
    height: auto;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .container {
  max-width: 1280px;
}

.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}

.contact .contact-info-panel {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 40%));
  color: var(--contrast-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-panel .contact-info-header {
  margin-bottom: 30px;
}

.contact .contact-info-panel .contact-info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .contact-info-panel .contact-info-header p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

.contact .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .info-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.contact .info-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact .info-card .icon-container {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .info-card .icon-container i {
  font-size: 20px;
  color: var(--contrast-color);
}

.contact .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--contrast-color);
}

.contact .info-card .card-content p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.8;
}

.contact .social-links-panel {
  margin-top: 35px;
}

.contact .social-links-panel h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .social-links-panel .social-icons {
  display: flex;
  gap: 12px;
}

.contact .social-links-panel .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--contrast-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact .social-links-panel .social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.contact .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .map-container {
  width: 100%;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact .form-container {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.contact .form-container h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(120deg, var(--heading-color), color-mix(in srgb, var(--heading-color), var(--accent-color) 30%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.contact .form-container p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 25px;
}

.contact .form-container .form-floating {
  margin-bottom: 20px;
}

.contact .form-container .form-floating .form-control {
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 24px 20px 8px 20px;
  height: calc(3.5rem + 3px);
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .form-container .form-floating .form-control:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  background-color: var(--surface-color);
}

.contact .form-container .form-floating .form-control::placeholder {
  color: transparent;
}

.contact .form-container .form-floating label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 1rem 1.25rem 2.5rem 1.25rem;
}

.contact .form-container .form-floating label::after {
  background-color: transparent;
}

.contact .form-container .btn-submit {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 30%));
  color: var(--contrast-color);
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .form-container .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .form-container .btn-submit i {
  transition: transform 0.3s ease;
}

.contact .form-container .btn-submit:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .contact .contact-info-panel {
    padding: 30px 25px;
  }

  .contact .form-container {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .contact .social-links-panel .social-icons {
    flex-wrap: wrap;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding: 60px 0;
  background-color: var(--background-color, #111623); /* From light-background */
}

.contact .section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.contact .section-title .description-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-color, #10a3d7); /* Coastal blue */
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.5rem;
}

.contact .section-title h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--heading-color, #f2f8fe);
  margin-bottom: 0.5rem;
  font-family: 'Mukta', sans-serif;
}

.contact .section-title p {
  font-size: 1rem;
  color: var(--default-color, #e4edf5);
  font-family: 'Roboto', sans-serif;
  max-width: 600px;
  margin: 0 auto;
}

.contact .container {
  max-width: 1280px;
}

.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .contact .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}

.contact .contact-info-panel {
  background: linear-gradient(145deg, var(--accent-color, #10a3d7), color-mix(in srgb, var(--accent-color, #10a3d7), #1a4372 40%));
  color: var(--contrast-color, #ffffff);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact .contact-info-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--contrast-color, #ffffff);
  margin-bottom: 0.75rem;
  font-family: 'Mukta', sans-serif;
}

.contact .contact-info-header p {
  font-size: 0.95rem;
  color: var(--contrast-color, #ffffff);
  opacity: 0.85;
  font-family: 'Roboto', sans-serif;
}

.contact .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 1.5rem;
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .info-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.contact .info-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.contact .info-card .icon-container {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .info-card .icon-container i {
  font-size: 1.25rem;
  color: var(--contrast-color, #ffffff);
}

.contact .info-card .card-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--contrast-color, #ffffff);
  margin-bottom: 0.25rem;
  font-family: 'Mukta', sans-serif;
}

.contact .info-card .card-content p {
  font-size: 0.9rem;
  color: var(--contrast-color, #ffffff);
  opacity: 0.9;
  font-family: 'Roboto', sans-serif;
}

.contact .social-links-panel h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--contrast-color, #ffffff);
  margin-bottom: 0.75rem;
  font-family: 'Mukta', sans-serif;
}

.contact .social-links-panel .social-icons {
  display: flex;
  gap: 10px;
}

.contact .social-links-panel .social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--contrast-color, #ffffff);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact .social-links-panel .social-icons a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.contact .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact .map-container {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact .form-container {
  background: var(--surface-color, #161c2a);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact .form-container h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color, #f2f8fe);
  margin-bottom: 0.75rem;
  font-family: 'Mukta', sans-serif;
}

.contact .form-container p {
  font-size: 0.95rem;
  color: var(--default-color, #e4edf5);
  margin-bottom: 1.5rem;
  font-family: 'Roboto', sans-serif;
}

.contact .form-container .form-floating {
  margin-bottom: 1.25rem;
}

.contact .form-container .form-floating .form-control {
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color, #e4edf5), transparent 70%);
  padding: 1.5rem 1rem 0.5rem 1rem;
  height: auto;
  background: var(--surface-color, #161c2a);
  color: var(--default-color, #e4edf5);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact .form-container .form-floating .form-control:focus {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color, #10a3d7), transparent 80%);
  border-color: var(--accent-color, #10a3d7);
}

.contact .form-container .form-floating label {
  color: color-mix(in srgb, var(--default-color, #e4edf5), transparent 30%);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.contact .form-container .form-floating textarea.form-control {
  padding-top: 1.75rem;
}

.contact .form-container .btn-submit {
  background: var(--accent-color, #10a3d7);
  color: var(--contrast-color, #ffffff);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.contact .form-container .btn-submit i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.contact .form-container .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color, #10a3d7), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color, #10a3d7), transparent 80%);
}

.contact .form-container .btn-submit:hover i {
  transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .contact .section-title h2 {
    font-size: 1.75rem;
  }

  .contact .contact-info-panel {
    padding: 25px;
  }

  .contact .form-container {
    padding: 25px;
  }

  .contact .map-container {
    height: 250px;
  }
}

@media (max-width: 767px) {
  .contact .form-container .btn-submit {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .contact .info-card .icon-container {
    width: 35px;
    height: 35px;
  }

  .contact .info-card .icon-container i {
    font-size: 1rem;
  }

  .contact .social-links-panel .social-icons a {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .contact .section-title h2 {
    font-size: 1.5rem;
  }

  .contact .section-title .description-title {
    font-size: 1rem;
  }

  .contact .contact-info-cards {
    grid-template-columns: 1fr;
  }

  .contact .social-links-panel .social-icons {
    flex-wrap: wrap;
  }
}



/*******************************
 
     Notification Styles
 
 
 ************************** */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  max-width: 320px;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-family: var(--heading-font), sans-serif; /* Montserrat */
  font-size: 16px;
  line-height: 1.5;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.notification.success {
  background-color: #28a745; /* Green for success */
  color: var(--contrast-color); /* #ffffff */
  border-left: 4px solid var(--accent-color); /* #106eea */
}

.notification.error {
  background-color: #dc3545; /* Red for error */
  color: var(--contrast-color); /* #ffffff */
  border-left: 4px solid #b02a37; /* Darker red */
}

.notification.visible {
  opacity: 1;
  transform: translateY(0);
}

.notification.hidden {
  display: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .notification {
    top: 10px;
    right: 10px;
    max-width: 90%;
    font-size: 14px;
    padding: 12px 15px;
  }
}



/*--------------------------------------------------------------
# Receiptionist styles
--------------------------------------------------------------*/
 .form-container {
      background: var(--surface-color);
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      margin: 1.5rem auto;
      max-width: 600px;
    }

    .form-container h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--heading-color);
      margin-bottom: 1rem;
      font-family: var(--heading-font);
      background: linear-gradient(120deg, var(--heading-color), color-mix(in srgb, var(--heading-color), var(--accent-color) 30%));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .btn-submit {
      background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 30%));
      color: var(--contrast-color);
      border: none;
      padding: 0.8rem 1.8rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.95rem;
      font-family: var(--heading-font);
      transition: all 0.3s ease;
      width: 100%;
    }

    .btn-submit:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
    }

    .auth-message {
      text-align: center;
      margin: 1rem 0;
      font-size: 0.95rem;
    }

    .auth-message.success {
      color: #28a745;
    }

    .auth-message.error {
      color: #dc3545;
    }

    /* Edit Room Modal */
    .edit-room-modal .modal-content {
      background-color: var(--surface-color);
      border-radius: 12px;
    }

    .edit-room-modal .modal-body {
      max-height: 80vh;
      overflow-y: auto;
      padding: 2rem;
    }

    .edit-room-modal .swiper-slide {
      position: relative;
    }

    .edit-room-modal .swiper-slide img {
      width: 100%;
      border-radius: 8px;
    }

    .edit-room-modal .swiper-button-prev,
    .edit-room-modal .swiper-button-next {
      background-color: var(--accent-color);
      color: var(--contrast-color);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      --swiper-navigation-size: 20px;
    }

    .edit-room-modal .swiper-button-prev::after,
    .edit-room-modal .swiper-button-next::after {
      font-size: var(--swiper-navigation-size);
    }

    .edit-room-modal .image-action-btn {
      position: absolute;
      top: 10px;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background-color: var(--accent-color);
      color: var(--contrast-color);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 16px;
      transition: transform 0.3s ease;
    }

    .edit-room-modal .image-action-btn:hover {
      transform: scale(1.1);
    }

    .edit-room-modal .image-action-btn.delete {
      left: 10px;
      background-color: #dc3545;
    }

    .edit-room-modal .image-action-btn.add {
      right: 10px;
    }

    .edit-room-modal .form-control-editable {
      border: 2px dashed var(--accent-color);
      background-color: color-mix(in srgb, var(--surface-color), transparent 20%);
      color: var(--default-color);
      font-family: var(--default-font);
      transition: border-color 0.3s ease;
    }

    .edit-room-modal .form-control-editable:focus {
      border-color: var(--accent-color);
      box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
    }

    .edit-room-modal .features-list {
      list-style: none;
      padding: 0;
    }

    .edit-room-modal .features-list li {
      display: flex;
      align-items: center;
      margin-bottom: 0.5rem;
    }

    .edit-room-modal .features-list input {
      flex-grow: 1;
      margin-right: 0.5rem;
    }

    .edit-room-modal .btn-feature-action {
      background-color: var(--accent-color);
      color: var(--contrast-color);
      border: none;
      padding: 0.3rem 0.6rem;
      border-radius: 50px;
      font-size: 0.8rem;
    }

    .edit-room-modal .btn-feature-action.delete {
      background-color: #dc3545;
    }

    /* Confirmation Modals */
    .confirmation-modal .modal-content {
      background-color: var(--surface-color);
      border-radius: 12px;
    }

    .confirmation-modal .modal-body {
      color: var(--default-color);
      font-family: var(--default-font);
      text-align: center;
    }

    .confirmation-modal .btn-confirm {
      background-color: var(--accent-color);
      color: var(--contrast-color);
      border-radius: 50px;
      padding: 0.5rem 1.5rem;
    }

    .confirmation-modal .btn-cancel {
      background-color: #6c757d;
      color: var(--contrast-color);
      border-radius: 50px;
      padding: 0.5rem 1.5rem;
    }

    @media (max-width: 576px) {
      .section-title h2 {
        font-size: 1.75rem;
      }
      .section-title .description-title {
        font-size: 2.5rem;
      }
      .form-container {
        padding: 1.5rem;
      }
      .form-container h3 {
        font-size: 1.25rem;
      }
      .edit-room-modal .modal-body {
        padding: 1.5rem;
      }
      .edit-room-modal .form-control-editable {
        font-size: 0.85rem;
      }
    }
        /* Smooth dark-themed input and select styling */
    .form-control,
    .form-select {
      background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
      color: var(--default-color);
      border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    /* Placeholder text tone */
    .form-control::placeholder {
      color: color-mix(in srgb, var(--default-color), transparent 50%);
    }

    /* Focused state: glow + accent border */
    .form-control:focus,
    .form-select:focus {
      background-color: color-mix(in srgb, var(--surface-color), transparent 5%);
      border-color: var(--accent-color);
      box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
      color: var(--default-color);
    }

    /* Dropdown (select options) appearance */
    .form-select option {
      background-color: var(--surface-color);
      color: var(--default-color);
    }

    /* Optional: for Bootstrap dropdown menus */
    .dropdown-menu {
      background-color: var(--surface-color);
      color: var(--default-color);
      border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
      background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
      color: var(--contrast-color);
    }
/* -------------------------------------------------------------- */
/* ✅ Fixed Dark Table Styling */
.table {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.table thead th {
  background-color: color-mix(in srgb, var(--surface-color), white 10%);
  color: var(--heading-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: color-mix(in srgb, var(--surface-color), white 5%);
}

.table-hover tbody tr:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  color: var(--heading-color);
}

.table th,
.table td {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}


/*--------------------------------------------------------------
# Rooms Gallery 
--------------------------------------------------------------*/
/* Room Gallery Section */
    .room-gallery.section {
      padding: 60px 0;
      background-color: var(--background-color, #111623);
    }
    .room-gallery h1 {
      text-align: center;
      font-size: 2.25rem;
      font-weight: 700;
      color: var(--heading-color, #f2f8fe);
      margin-bottom: 1.5rem;
      font-family: 'Mukta', sans-serif;
    }
    .room-gallery .swiper {
      max-width: 100%;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    .room-gallery .swiper-slide {
      background: var(--surface-color, #161c2a);
      border-radius: 8px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .room-gallery .swiper-slide img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 8px;
      transition: transform 0.4s ease;
    }
    .room-gallery .swiper-slide-active img {
      transform: scale(1.05);
    }
    .room-gallery .swiper-pagination {
      margin-top: 1.5rem;
    }
    .room-gallery .swiper-pagination-bullet {
      background: var(--default-color, #e4edf5);
      opacity: 0.5;
      width: 12px;
      height: 12px;
      transition: all 0.3s ease;
    }
    .room-gallery .swiper-pagination-bullet-active {
      background: var(--accent-color, #10a3d7);
      opacity: 1;
      transform: scale(1.2);
      box-shadow: 0 0 8px rgba(16, 163, 215, 0.6);
    }
    .room-gallery .swiper-button-prev,
    .room-gallery .swiper-button-next {
      color: var(--contrast-color, #fff);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      z-index: 10;
    }
    .room-gallery .swiper-button-prev:active,
    .room-gallery .swiper-button-next:active {
      outline: none;
    }
    .room-gallery .swiper-button-prev::before,
    .room-gallery .swiper-button-next::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: var(--accent-color, #10a3d7);
      border-radius: 50%;
      opacity: 0.8;
      z-index: -1;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .room-gallery .swiper-button-prev::after,
    .room-gallery .swiper-button-next::after {
      content: '';
      position: absolute;
      width: 50px;
      height: 50px;
      border: 2px solid var(--default-color, #e4edf5);
      border-radius: 50%;
      opacity: 0.3;
      z-index: -2;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .room-gallery .swiper-button-prev:hover::before,
    .room-gallery .swiper-button-next:hover::before {
      opacity: 1;
      transform: scale(1.1);
    }
    .room-gallery .swiper-button-prev:hover::after,
    .room-gallery .swiper-button-next:hover::after {
      opacity: 0.5;
      transform: scale(1.2);
    }
    .room-gallery .swiper-button-prev {
      left: 10px;
    }
    .room-gallery .swiper-button-next {
      right: 10px;
    }
    .room-details .accordion {
      margin-bottom: 1.5rem;
    }
    .room-details .accordion-button {
      background: var(--surface-color, #161c2a);
      color: var(--heading-color, #f2f8fe);
      font-family: 'Mukta', sans-serif;
      font-size: 1.25rem;
      font-weight: 600;
      border-radius: 8px;
    }
    .room-details .accordion-button:not(.collapsed) {
      background: var(--accent-color, #10a3d7);
      color: var(--contrast-color, #fff);
    }
    .room-details .accordion-body {
      background: var(--surface-color, #161c2a);
      color: var(--default-color, #e4edf5);
      font-family: 'Roboto', sans-serif;
      border-radius: 8px;
    }
    .room-details ul {
      list-style: none;
      padding: 0;
      margin-bottom: 1rem;
    }
    .room-details ul li {
      font-size: 0.95rem;
      margin-bottom: 0.5rem;
      padding-left: 1.5rem;
      position: relative;
      color: var(--default-color, #e4edf5);
    }
    .room-details ul li:before {
      content: '✓';
      color: var(--accent-color, #10a3d7);
      position: absolute;
      left: 0;
    }
    .room-details .primary-btn {
      display: inline-flex;
      align-items: center;
      background: var(--accent-color, #10a3d7);
      color: var(--contrast-color, #fff);
      padding: 0.8rem 1.8rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      font-family: 'Roboto', sans-serif;
    }
    .room-details .primary-btn i {
      margin-left: 8px;
      font-size: 0.85rem;
      transition: transform 0.3s ease;
    }
    .room-details .primary-btn:hover {
      background: color-mix(in srgb, var(--accent-color, #10a3d7), transparent 20%);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(16, 163, 215, 0.3);
    }
    .room-details .primary-btn:hover i {
      transform: translateX(4px);
    }

    /*--------------------------------------------------------------
# Room categories
--------------------------------------------------------------*/
/* Room Categories Section */
    /* Room Categories Section */
    .room-categories.section {
      padding: 60px 0;
      background-color: var(--background-color, #111623);
    }
    .room-categories .section-title {
      text-align: center;
      margin-bottom: 2rem;
    }
    .room-categories .section-title h2 {
      font-size: 2.25rem;
      font-weight: 700;
      color: var(--heading-color, #f2f8fe);
      margin-bottom: 0.5rem;
      font-family: 'Mukta', sans-serif;
    }
    .room-categories .section-title p {
      font-size: 1rem;
      color: var(--default-color, #e4edf5);
      font-family: 'Roboto', sans-serif;
      max-width: 600px;
      margin: 0 auto;
    }
    .room-categories .swiper {
      width: 100%;
      padding: 20px 0;
    }
    .room-categories .category-card {
      background: var(--surface-color, #161c2a);
      border-radius: 12px;
      padding: 1.5rem;
      text-align: center;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }
    .room-categories .category-card:hover {
      transform: translateY(-5px);
    }
    .room-categories .category-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 1rem;
    }
    .room-categories .category-card h4 {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--heading-color, #f2f8fe);
      margin-bottom: 0.5rem;
      font-family: 'Mukta', sans-serif;
    }
    .room-categories .category-card .primary-btn {
      display: inline-flex;
      align-items: center;
      background: var(--accent-color, #10a3d7);
      color: var(--contrast-color, #fff);
      padding: 0.6rem 1.2rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      font-family: 'Roboto', sans-serif;
    }
    .room-categories .category-card .primary-btn:hover {
      background: color-mix(in srgb, var(--accent-color, #10a3d7), transparent 20%);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(16, 163, 215, 0.3);
    }
    .room-categories .swiper-pagination {
      margin-top: 1.5rem;
    }
    .room-categories .swiper-pagination-bullet {
      background: var(--default-color, #e4edf5);
      opacity: 0.5;
      width: 12px;
      height: 12px;
    }
    .room-categories .swiper-pagination-bullet-active {
      background: var(--accent-color, #10a3d7);
      opacity: 1;
    }
    .room-categories .swiper-button-prev,
    .room-categories .swiper-button-next {
      color: var(--contrast-color, #fff);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      z-index: 10;
    }
    .room-categories .swiper-button-prev:active,
    .room-categories .swiper-button-next:active {
      outline: none;
    }
    .room-categories .swiper-button-prev::before,
    .room-categories .swiper-button-next::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: var(--accent-color, #10a3d7);
      border-radius: 50%;
      opacity: 0.8;
      z-index: -1;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .room-categories .swiper-button-prev::after,
    .room-categories .swiper-button-next::after {
      content: '';
      position: absolute;
      width: 50px;
      height: 50px;
      border: 2px solid var(--default-color, #e4edf5);
      border-radius: 50%;
      opacity: 0.3;
      z-index: -2;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .room-categories .swiper-button-prev:hover::before,
    .room-categories .swiper-button-next:hover::before {
      opacity: 1;
      transform: scale(1.1);
    }
    .room-categories .swiper-button-prev:hover::after,
    .room-categories .swiper-button-next:hover::after {
      opacity: 0.5;
      transform: scale(1.2);
    }
    .room-categories .swiper-button-prev {
      left: 10px;
    }
    .room-categories .swiper-button-next {
      right: 10px;
    }
    /* Booking Modal */
    .booking-modal .modal-content {
      background: var(--surface-color);
      border-radius: 12px;
      border: none;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }
    .booking-modal .modal-header {
      background: var(--background-color);
      border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
      padding: 1rem 1.5rem;
    }
    .booking-modal .modal-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--heading-color);
      font-family: var(--heading-font);
      background: linear-gradient(120deg, var(--heading-color), color-mix(in srgb, var(--heading-color), var(--accent-color) 30%));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .booking-modal .btn-close {
      filter: invert(1) grayscale(100%) brightness(200%);
    }
    .booking-modal .modal-body {
      padding: 1.5rem;
    }
    .booking-modal .form-label {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--heading-color);
      font-family: var(--default-font);
    }
    .booking-modal .form-control {
      background: var(--background-color);
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
      border-radius: 8px;
      color: var(--default-color);
      font-size: 0.9rem;
      padding: 0.75rem;
      transition: all 0.3s ease;
    }
    .booking-modal .form-control:focus {
      box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
      border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
      background: var(--background-color);
    }
    .booking-modal .form-control[type="number"] {
      -webkit-appearance: textfield;
      -moz-appearance: textfield;
      appearance: textfield;
    }
    .booking-modal .form-control[type="number"]::-webkit-inner-spin-button,
    .booking-modal .form-control[type="number"]::-webkit-outer-spin-button {
      -webkit-appearance: none;
      margin: 0;
    }
    .booking-modal .flatpickr-input {
      cursor: pointer;
    }
    .booking-modal .accordion {
      margin-top: 1rem;
    }
    .booking-modal .accordion-item {
      background: var(--surface-color);
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
      border-radius: 8px;
    }
    .booking-modal .accordion-button {
      background: var(--background-color);
      color: var(--heading-color);
      font-family: var(--heading-font);
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 8px;
    }
    .booking-modal .accordion-button:not(.collapsed) {
      background: color-mix(in srgb, var(--accent-color), transparent 20%);
      color: var(--contrast-color);
    }
    .booking-modal .accordion-button::after {
      filter: invert(1) grayscale(100%) brightness(200%);
    }
    .booking-modal .accordion-body {
      background: var(--background-color);
      color: var(--default-color);
      border-radius: 8px;
      padding: 1.5rem;
    }
    .booking-modal .add-on-tile {
      background: var(--surface-color);
      border-radius: 8px;
      padding: 1rem;
      text-align: center;
      transition: transform 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    .booking-modal .add-on-tile:hover {
      transform: translateY(-5px);
    }
    .booking-modal .add-on-tile i {
      font-size: 1.75rem;
      color: var(--accent-color);
      margin-bottom: 0.5rem;
    }
    .booking-modal .add-on-tile h4 {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--heading-color);
      font-family: var(--heading-font);
      margin-bottom: 0.5rem;
    }
    .booking-modal .add-on-tile p {
      font-size: 0.85rem;
      color: var(--default-color);
      margin-bottom: 0.5rem;
    }
    .booking-modal .add-on-tile input[type="checkbox"] {
      accent-color: var(--accent-color);
    }
    .booking-modal .alert {
      font-size: 0.95rem;
      padding: 0.75rem;
      border-radius: 8px;
      margin-top: 1rem;
      text-align: center;
    }
    .booking-modal .alert-info {
      background: color-mix(in srgb, #007bff, transparent 80%);
      color: var(--heading-color);
      border: none;
    }
    .booking-modal .alert-success {
      background: color-mix(in srgb, #28a745, transparent 80%);
      color: var(--heading-color);
      border: none;
    }
    .booking-modal .alert-danger {
      background: color-mix(in srgb, #dc3545, transparent 80%);
      color: var(--heading-color);
      border: none;
    }
    .booking-modal .total-price {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--accent-color);
      background: color-mix(in srgb, var(--accent-color), transparent 90%);
      padding: 0.5rem 1rem;
      border-radius: 8px;
      margin-top: 1rem;
      text-align: center;
      font-family: var(--heading-font);
    }
    .booking-modal .modal-footer {
      border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
      padding: 1rem 1.5rem;
    }
    .booking-modal .btn-primary {
      background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 30%));
      border: none;
      border-radius: 50px;
      padding: 0.8rem 1.8rem;
      font-size: 0.95rem;
      font-weight: 600;
      font-family: var(--nav-font);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    .booking-modal .btn-primary:disabled {
      background: color-mix(in srgb, var(--accent-color), transparent 50%);
      cursor: not-allowed;
    }
    .booking-modal .btn-primary:not(:disabled):hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
      background: linear-gradient(145deg, color-mix(in srgb, var(--accent-color), transparent 20%), color-mix(in srgb, var(--accent-color), #1a4372 50%));
    }
    .booking-modal .btn-primary i {
      margin-left: 0.5rem;
      transition: transform 0.3s ease;
    }
    .booking-modal .btn-primary:not(:disabled):hover i {
      transform: translateX(5px);
    }


    /* input[type="number"].is-invalid {
      border-color: #dc3545 !important;
      box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    } */
    input[id="adults"].is-invalid,
    input[id="children"].is-invalid {
      border-color: #dc3545 !important;
      box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
   }
    input[id="adults"].is-valid,
    input[id="children"].is-valid {
       border-color: #28a745 !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
   }
  

  


    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .booking-modal .modal-title {
        font-size: 1.25rem;
      }
      .booking-modal .form-control {
        font-size: 0.85rem;
      }
      .booking-modal .form-label {
        font-size: 0.9rem;
      }
      .booking-modal .add-on-tile i {
        font-size: 1.5rem;
      }
      .booking-modal .add-on-tile h4 {
        font-size: 0.9rem;
      }
      .booking-modal .add-on-tile p {
        font-size: 0.8rem;
      }
      .booking-modal .btn-primary {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
      }
      .booking-modal .total-price {
        font-size: 1.1rem;
      }
    }
    @media (max-width: 576px) {
      .booking-modal .modal-dialog {
        margin: 0.5rem;
      }
      .booking-modal .modal-body {
        padding: 1rem;
      }
      .booking-modal .modal-footer {
        padding: 0.75rem;
      }
      .booking-modal .btn-primary {
        font-size: 0.85rem;
      }
    }
    /* Responsive Tweaks */
    @media (max-width: 991px) {
      .room-gallery h1, .room-categories .section-title h2 {
        font-size: 1.75rem;
      }
      .room-gallery .swiper-slide img {
        height: 300px;
      }
      .room-categories .category-card img {
        height: 180px;
      }
    }
    @media (max-width: 767px) {
      .room-gallery h1, .room-categories .section-title h2 {
        font-size: 1.5rem;
      }
      .room-gallery .swiper-slide img {
        height: 250px;
      }
      .room-categories .category-card img {
        height: 150px;
      }
      .room-gallery .swiper-button-prev,
      .room-gallery .swiper-button-next,
      .room-categories .swiper-button-prev,
      .room-categories .swiper-button-next {
        width: 35px;
        height: 35px;
      }
      .room-gallery .swiper-button-prev::after,
      .room-gallery .swiper-button-next::after,
      .room-categories .swiper-button-prev::after,
      .room-categories .swiper-button-next::after {
        width: 45px;
        height: 45px;
      }
      .room-details .primary-btn,
      .booking-modal .modal-content .primary-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
      }
      .room-categories .swiper {
        slidesPerView: 2;
      }
    }
    @media (max-width: 480px) {
      .room-gallery .swiper-slide img {
        height: 200px;
      }
      .room-categories .category-card img {
        height: 120px;
      }
      .room-gallery .swiper-button-prev,
      .room-gallery .swiper-button-next,
      .room-categories .swiper-button-prev,
      .room-categories .swiper-button-next {
        width: 30px;
        height: 30px;
      }
      .room-gallery .swiper-button-prev::after,
      .room-gallery .swiper-button-next::after,
      .room-categories .swiper-button-prev::after,
      .room-categories .swiper-button-next::after {
        width: 40px;
        height: 40px;
      }
      /* .booking-modal .modal-content .add-on-tile {
        padding: 0.75rem;
      }
      .booking-modal .modal-content .add-on-tile i {
        font-size: 1.5rem;
      }
      .booking-modal .modal-content .add-on-tile h4 {
        font-size: 0.9rem;
      } */
      .room-categories .swiper {
        slidesPerView: 1;
      }
    }
/*--------------------------------------------------------------
# Check out Section 
--------------------------------------------------------------*/
 .checkout.section {
      padding: 60px 0;
      background-color: var(--background-color, #111623);
      color: var(--default-color, #e4edf5);
      font-family: var(--default-font, 'Roboto', sans-serif);
    }
    .checkout h1 {
      font-size: 2.25rem;
      font-weight: 700;
      color: var(--heading-color, #f2f8fe);
      text-align: center;
      margin-bottom: 2rem;
      font-family: var(--heading-font, 'Mukta', sans-serif);
      background: linear-gradient(120deg, var(--heading-color, #f2f8fe), color-mix(in srgb, var(--heading-color, #f2f8fe), var(--accent-color, #10a3d7) 30%));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    /* Summary */
    .checkout .summary {
      background: var(--surface-color, #161c2a);
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    .checkout .summary h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--heading-color, #f2f8fe);
      margin-bottom: 1.5rem;
      font-family: var(--heading-font, 'Mukta', sans-serif);
    }
    .checkout .summary p {
      font-size: 1rem;
      color: var(--default-color, #e4edf5);
      margin-bottom: 0.5rem;
    }
    .checkout .summary p strong {
      color: var(--heading-color, #f2f8fe);
      font-weight: 600;
    }
    .checkout .summary .total-amount {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--accent-color, #10a3d7);
      background: color-mix(in srgb, var(--accent-color, #10a3d7), transparent 90%);
      padding: 0.5rem 1rem;
      border-radius: 8px;
      display: inline-block;
      margin-top: 1rem;
    }
    /* Form */
    .checkout .auth-form {
      background: var(--surface-color, #161c2a);
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    .checkout .auth-form h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--heading-color, #f2f8fe);
      margin-bottom: 1.5rem;
      font-family: var(--heading-font, 'Mukta', sans-serif);
    }
    .checkout .auth-form .form-control {
      border-radius: 8px;
      border: 1px solid color-mix(in srgb, var(--default-color, #e4edf5), transparent 80%);
      padding: 0.75rem 1rem;
      background: var(--background-color, #111623);
      color: var(--default-color, #e4edf5);
      font-size: 0.95rem;
      font-family: var(--default-font, 'Roboto', sans-serif);
      margin-bottom: 1rem;
      transition: all 0.3s ease;
    }
    .checkout .auth-form .form-control:focus {
      box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color, #10a3d7), transparent 85%);
      border-color: color-mix(in srgb, var(--accent-color, #10a3d7), transparent 40%);
      background: var(--background-color, #111623);
    }
    .checkout .auth-form .form-control::placeholder {
      color: color-mix(in srgb, var(--default-color, #e4edf5), transparent 40%);
    }
    .checkout .auth-form .iti {
      width: 100%;
      margin-bottom: 1rem;
    }
    .checkout .auth-form .iti input {
      width: 100%;
      border-radius: 8px;
    }
    .checkout .auth-form .btn-submit {
      background: linear-gradient(145deg, var(--accent-color, #10a3d7), color-mix(in srgb, var(--accent-color, #10a3d7), #1a4372 30%));
      color: var(--contrast-color, #fff);
      border: none;
      padding: 0.8rem 1.8rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.95rem;
      font-family: var(--nav-font, 'Roboto', sans-serif);
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
    }
    .checkout .auth-form .btn-submit:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color, #10a3d7), transparent 75%);
      background: linear-gradient(145deg, color-mix(in srgb, var(--accent-color, #10a3d7), transparent 20%), color-mix(in srgb, var(--accent-color, #10a3d7), #1a4372 50%));
    }
    .checkout .auth-form .btn-submit i {
      margin-left: 0.5rem;
      font-size: 0.9rem;
      transition: transform 0.3s ease;
    }
    .checkout .auth-form .btn-submit:hover i {
      transform: translateX(5px);
    }
    /* Feedback Messages */
    .checkout .loading,
    .checkout .error-message,
    .checkout .sent-message {
      text-align: center;
      margin-top: 1rem;
      font-size: 0.95rem;
      border-radius: 8px;
      padding: 0.5rem;
    }
    .checkout .loading {
      background: color-mix(in srgb, var(--accent-color, #10a3d7), transparent 80%);
      color: var(--heading-color, #f2f8fe);
    }
    .checkout .error-message {
      background: color-mix(in srgb, #dc3545, transparent 80%);
      color: var(--heading-color, #f2f8fe);
    }
    .checkout .sent-message {
      background: color-mix(in srgb, #28a745, transparent 80%);
      color: var(--heading-color, #f2f8fe);
    }
    /* Phone input styling within checkout */
      .checkout .auth-form .form-group .input-with-icon.iti-container {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
      }

      .checkout .auth-form .form-group .input-with-icon.iti-container i {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: color-mix(in srgb, var(--default-color, #e4edf5), transparent 30%);
        font-size: 18px;
        z-index: 10;
      }

      .checkout .auth-form .form-group .input-with-icon.iti-container .iti {
        display: flex;
        align-items: center;
        width: 100%;
      }

      .checkout .auth-form .form-group .input-with-icon.iti-container .iti__flag-container {
        flex-shrink: 0;
        margin-left: 40px; /* space for icon */
        margin-right: 8px;
        display: flex;
        align-items: center;
      }

      .checkout .auth-form .form-group .input-with-icon.iti-container input[type="tel"] {
        flex: 1;
        border-radius: 8px;
        padding: 0.75rem 1rem 0.75rem 3rem; /* left space for icon + flag */
        font-size: 0.95rem;
        color: var(--default-color, #e4edf5);
        /* background: var(--background-color, #111623); */
        border: 1px solid color-mix(in srgb, var(--default-color, #e4edf5), transparent 80%);
        transition: all 0.3s ease;
        font-family: var(--default-font, 'Roboto', sans-serif);
      }

      .checkout .auth-form .form-group .input-with-icon.iti-container input[type="tel"]:focus {
        border-color: color-mix(in srgb, var(--accent-color, #10a3d7), transparent 40%);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color, #10a3d7), transparent 85%);
        /* background: var(--background-color, #111623); */
      }

      .checkout .auth-form .form-group .input-with-icon.iti-container input[type="tel"].is-invalid {
        border-color: #dc3545 !important;
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
      }
      .checkout .auth-form .form-group .input-with-icon.iti-container .iti__country-list {
        border-radius: 10px;
        box-shadow: 0 8px 20px color-mix(in srgb, var(--background-color, #000000), transparent 80%);
        font-size: 14px;
        max-height: 250px;
        overflow-y: auto;
        z-index: 10000;
        background-color: var(--background-color, #111623); /* 🟢 Dark theme background */
      }


    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .checkout h1 {
        font-size: 1.75rem;
      }
      .checkout .summary,
      .checkout .auth-form {
        padding: 1.5rem;
      }
      .checkout .summary h3,
      .checkout .auth- form h3 {
        font-size: 1.25rem;
      }
      .checkout .summary .total-amount {
        font-size: 1.5rem;
      }
      .checkout .auth-form .btn-submit {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
      }
    }
    @media (max-width: 576px) {
      .checkout h1 {
        font-size: 1.5rem;
      }
      .checkout .summary,
      .checkout .auth-form {
        padding: 1rem;
      }
      .checkout .auth-form .form-control {
        font-size: 0.85rem;
      }
      .checkout .auth-form .btn-submit {
        font-size: 0.85rem;
      }
    }

/*--------------------------------------------------------------
# Payment Section 
--------------------------------------------------------------*/
/* Payment Section */
    .payment.section {
      padding: 60px 0;
      background-color: var(--background-color, #111623);
      color: var(--default-color, #e4edf5);
      font-family: var(--default-font, 'Roboto', sans-serif);
      overflow: clip;
    }
    .payment .section-title {
      text-align: center;
      margin-bottom: 2.5rem;
    }
    .payment .section-title .description-title {
      font-size: 3.25rem;
      font-weight: 700;
      text-transform: uppercase;
      color: color-mix(in srgb, var(--heading-color, #f2f8fe), transparent 95%);
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1;
      font-family: var(--heading-font, 'Mukta', sans-serif);
    }
    .payment .section-title h2 {
      font-size: 2.25rem;
      font-weight: 700;
      color: var(--heading-color, #f2f8fe);
      margin-bottom: 0.5rem;
      position: relative;
      z-index: 2;
      font-family: var(--heading-font, 'Mukta', sans-serif);
    }
    .payment .section-title p {
      font-size: 1rem;
      color: color-mix(in srgb, var(--default-color, #e4edf5), transparent 15%);
      max-width: 600px;
      margin: 0 auto;
      font-family: var(--default-font, 'Roboto', sans-serif);
    }
    .payment .form-container {
      background: var(--surface-color, #161c2a);
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      margin: 0 auto;
      max-width: 600px;
    }
    .payment .form-container h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--heading-color, #f2f8fe);
      margin-bottom: 1rem;
      font-family: var(--heading-font, 'Mukta', sans-serif);
      background: linear-gradient(120deg, var(--heading-color, #f2f8fe), color-mix(in srgb, var(--heading-color, #f2f8fe), var(--accent-color, #10a3d7) 30%));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .payment .form-container p {
      font-size: 0.95rem;
      color: color-mix(in srgb, var(--default-color, #e4edf5), transparent 15%);
      margin-bottom: 1.5rem;
    }
    .payment .summary-box {
      background: color-mix(in srgb, var(--surface-color, #161c2a), transparent 80%);
      border: 1px solid color-mix(in srgb, var(--default-color, #e4edf5), transparent 80%);
      border-radius: 8px;
      padding: 1rem;
      margin-bottom: 1.5rem;
    }
    .payment .summary-box p {
      font-size: 1rem;
      color: var(--default-color, #e4edf5);
      margin-bottom: 0.5rem;
    }
    .payment .summary-box strong {
      color: var(--heading-color, #f2f8fe);
      font-weight: 600;
    }
    .payment .total-amount {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--accent-color, #10a3d7);
      background: color-mix(in srgb, var(--accent-color, #10a3d7), transparent 90%);
      padding: 0.5rem 1rem;
      border-radius: 8px;
      display: inline-block;
      margin-top: 1rem;
    }
    .payment .payment-method {
      margin-bottom: 2rem;
    }
    .payment .payment-method h3 {
      font-size: 1.25rem;
      margin-bottom: 1rem;
    }
    .payment .form-floating {
      margin-bottom: 1rem;
    }
    .payment .form-control {
      border-radius: 8px;
      border: 1px solid color-mix(in srgb, var(--default-color, #e4edf5), transparent 80%);
      padding: 0.75rem 1rem;
      background: var(--background-color, #111623);
      color: var(--default-color, #e4edf5);
      font-size: 0.95rem;
      font-family: var(--default-font, 'Roboto', sans-serif);
      transition: all 0.3s ease;
    }
    .payment .form-control:focus {
      box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color, #10a3d7), transparent 85%);
      border-color: color-mix(in srgb, var(--accent-color, #10a3d7), transparent 40%);
      background: var(--background-color, #111623);
    }
    .payment .form-floating label {
      color: color-mix(in srgb, var(--default-color, #e4edf5), transparent 40%);
      font-size: 0.9rem;
      padding: 1rem;
    }
    .payment .btn-submit {
      background: linear-gradient(145deg, var(--accent-color, #10a3d7), color-mix(in srgb, var(--accent-color, #10a3d7), #1a4372 30%));
      color: var(--contrast-color, #fff);
      border: none;
      padding: 0.8rem 1.8rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.95rem;
      font-family: var(--nav-font, 'Roboto', sans-serif);
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
    }
    .payment .btn-submit:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color, #10a3d7), transparent 75%);
      background: linear-gradient(145deg, color-mix(in srgb, var(--accent-color, #10a3d7), transparent 20%), color-mix(in srgb, var(--accent-color, #10a3d7), #1a4372 50%));
    }
    .payment .btn-submit i {
      margin-left: 0.5rem;
      font-size: 0.9rem;
      transition: transform 0.3s ease;
    }
    .payment .btn-submit:hover i {
      transform: translateX(5px);
    }
    .payment .loading,
    .payment .error-message,
    .payment .sent-message {
      text-align: center;
      margin-top: 1rem;
      font-size: 0.95rem;
      border-radius: 8px;
      padding: 0.5rem;
    }
    .payment .loading {
      background: color-mix(in srgb, var(--accent-color, #10a3d7), transparent 80%);
      color: var(--heading-color, #f2f8fe);
    }
    .payment .error-message {
      background: color-mix(in srgb, #dc3545, transparent 80%);
      color: var(--heading-color, #f2f8fe);
    }
    .payment .sent-message {
      background: color-mix(in srgb, #28a745, transparent 80%);
      color: var(--heading-color, #f2f8fe);
    }
    .payment .welcome-message {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--heading-color, #f2f8fe);
      margin-bottom: 1rem;
      font-family: var(--heading-font, 'Mukta', sans-serif);
      text-align: center;
    }
    .payment .confirm-email,
    .payment .confirm-phone {
      font-size: 0.9rem;
      color: color-mix(in srgb, var(--default-color, #e4edf5), transparent 15%);
      text-align: center;
      margin-bottom: 0.5rem;
    }
    @media (max-width: 768px) {
      .payment .section-title h2 {
        font-size: 1.75rem;
      }
      .payment .section-title .description-title {
        font-size: 2.5rem;
      }
      .payment .form-container {
        padding: 1.5rem;
      }
      .payment .form-container h3 {
        font-size: 1.25rem;
      }
      .payment .total-amount {
        font-size: 1.5rem;
      }
      .payment .btn-submit {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
      }
      .payment .welcome-message {
        font-size: 1.25rem;
      }
    }
    @media (max-width: 576px) {
      .payment .section-title h2 {
        font-size: 1.5rem;
      }
      .payment .section-title .description-title {
        font-size: 2rem;
      }
      .payment .form-container {
        padding: 1rem;
      }
      .payment .form-control {
        font-size: 0.85rem;
      }
      .payment .form-floating label {
        font-size: 0.8rem;
      }
      .payment .btn-submit {
        font-size: 0.85rem;
      }
      .payment .welcome-message {
        font-size: 1.1rem;
      }
      .payment .confirm-email,
      .payment .confirm-phone {
        font-size: 0.85rem;
      }
    }    
    
    /*
    /*--------------------------------------------------------------
#  Auth Modal- SIGN UP AND SIGN UP
--------------------------------------------------------------*/
/* Auth Modal */


/* Global Auth Modal */
.modal-content {
  background-color: var(--surface-color, #161c2a);
  border-radius: 12px;
  border: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.modal-header, .modal-footer {
  border-color: color-mix(in srgb, var(--default-color, #e4edf5), transparent 80%);
}

.modal-title {
  font-family: var(--heading-font, 'Mukta', sans-serif);
  color: var(--heading-color, #f2f8fe);
  background: linear-gradient(120deg, var(--heading-color), color-mix(in srgb, var(--heading-color), var(--accent-color, #10a3d7) 30%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-body {
  color: var(--default-color, #e4edf5);
  font-family: var(--default-font, 'Roboto', sans-serif);
  max-height: 60vh;
  overflow-y: auto;
  padding: 1.5rem;
}

.modal-body::-webkit-scrollbar {
  width: 8px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: var(--accent-color, #10a3d7);
  border-radius: 4px;
}

.modal-body::-webkit-scrollbar-track {
  background: color-mix(in srgb, var(--surface-color, #161c2a), transparent 50%);
}

/* Form Elements */
.modal-body .form-floating .form-control {
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color, #e4edf5), transparent 80%);
  background-color: var(--surface-color, #161c2a);
  color: var(--default-color, #e4edf5);
  font-size: 0.9rem;
  font-family: var(--default-font, 'Roboto', sans-serif);
}

.modal-body .form-floating .form-control:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color, #10a3d7), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color, #10a3d7), transparent 40%);
}

.modal-body .form-floating label {
  color: color-mix(in srgb, var(--default-color, #e4edf5), transparent 40%);
  font-size: 0.9rem;
}

.modal-body .btn-submit {
  background: linear-gradient(145deg, var(--accent-color, #10a3d7), color-mix(in srgb, var(--accent-color, #10a3d7), #1a4372 30%));
  color: var(--contrast-color, #ffffff);
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--heading-font, 'Mukta', sans-serif);
  transition: all 0.3s ease;
  width: 100%;
}

.modal-body .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color, #10a3d7), transparent 75%);
}

.modal-body .toggle-link {
  color: var(--accent-color, #10a3d7);
  cursor: pointer;
  text-decoration: underline;
  font-size: 0.875rem;
  font-family: var(--default-font, 'Roboto', sans-serif);
}

.modal-body .toggle-link:hover {
  color: color-mix(in srgb, var(--accent-color, #10a3d7), #ffffff 20%);
}

.modal-body .guest-close-message {
  font-size: 0.875rem;
  color: var(--default-color, #e4edf5);
  margin-top: 1rem;
}

.modal-body .guest-close-link {
  color: var(--accent-color, #10a3d7);
  text-decoration: underline;
}

.modal-body .guest-close-link:hover {
  color: color-mix(in srgb, var(--accent-color, #10a3d7), #ffffff 20%);
}

.modal-body .error-message,
.modal-body .sent-message,
.modal-body .loading {
  font-size: 0.875rem;
  text-align: center;
  margin: 0.5rem 0;
}

.modal-body .error-message {
  color: #dc3545;
}

.modal-body .sent-message {
  color: #28a745;
}

.modal-body .loading {
  color: var(--default-color, #e4edf5);
}

/* Modal Animation */
.modal.fade .modal-dialog {
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.3s ease;
}

.modal.show .modal-dialog {
  transform: scale(1);
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .modal-body {
    font-size: 0.85rem;
  }
  .modal-body .form-control {
    font-size: 0.85rem;
  }
  .modal-body .btn-submit {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
}

 
/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

