/* =========================================
   Lumina Hotel & Resort - Modern CSS
========================================= */

/* Variables */
:root {
  --primary: #16274a;
  /* Warm Luxury Gold/Taupe */
  --primary-dark: #a88d66;
  --secondary: #16274a;
  /* Deep Navy */
  --accent: #e5d8c6;
  --text-main: #333333;
  --text-light: #777777;
  --bg-light: #fafafa;
  --white: #ffffff;

  --font-sans: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;

  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  color: var(--secondary);
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Utilities */
.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

.rounded {
  border-radius: 12px;
}

.shadow {
  box-shadow: var(--shadow-md);
}

/* Components */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197, 168, 128, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--secondary);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn-text {
  background: transparent;
  color: var(--primary);
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.btn-text i {
  transition: transform 0.3s ease;
}

.btn-text:hover {
  color: var(--primary-dark);
}

.btn-text:hover i {
  transform: translateX(5px);
}

/* Stretched Link Utility */
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  content: "";
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled .nav-container {
  padding: 1rem 0;
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a,
.navbar.scrolled .mobile-menu-btn {
  color: var(--secondary);
}

.top-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 0;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar a:hover {
  color: var(--primary);
}

.top-bar-left,
.top-bar-right {
  display: flex;
  gap: 1.5rem;
}

.navbar.scrolled .top-bar {
  height: 0;
  padding: 0;
  border: none;
  opacity: 0;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.navbar.scrolled .logo img {
  height: 50px;
}

/* Hide cloned logo from desktop menu */
.mobile-menu-logo {
  display: none !important;
}

.logo-icon {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--white);
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary);
  bottom: -5px;
  left: 0;
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--primary) !important;
}


.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 6.5s ease;
}

/* Zoom effect on active slide */
.hero-swiper .swiper-slide-active .slide-bg {
  transform: scale(1.05);
}

.hero-swiper .swiper-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}

.subtitle {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 1rem;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.2s;
}

.title {
  font-size: 4.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 800px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.4s;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

.desc {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  font-weight: 300;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.6s;
}

.slide-content .btn {
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.8s;
}

.swiper-slide-active .subtitle,
.swiper-slide-active .title,
.swiper-slide-active .desc,
.swiper-slide-active .btn {
  transform: translateY(0);
  opacity: 1;
}

/* Swiper Controls */
.swiper-button-next,
.swiper-button-prev {
  color: var(--white);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(5px);
  transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.2rem;
}

.swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
}

/* Booking Bar - Glassmorphism */
.booking-bar-wrapper {
  position: absolute;
  bottom: -40px;
  width: 100%;
  z-index: 10;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 180px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group label i {
  color: var(--primary);
}

.form-group input,
.form-group select {
  border: none;
  background: transparent;
  font-size: 1.1rem;
  font-family: var(--font-sans);
  color: var(--secondary);
  font-weight: 500;
  outline: none;
  cursor: pointer;
  padding: 0.5rem 0;
}

.form-divider {
  width: 1px;
  height: 50px;
  background: rgba(0, 0, 0, 0.1);
}

/* Sections */
.section {
  padding: 2rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.section-desc {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Rooms Grid */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

/* Compact 4-Column Grid */
.rooms-grid-4-cols {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.25rem !important; /* Smaller gap */
}

.rooms-grid-4-cols .room-info {
  padding: 1.25rem !important; /* Smaller padding */
}

.rooms-grid-4-cols .room-info h3 {
  font-size: 1.2rem !important; /* Smaller title */
  margin-bottom: 0.75rem !important;
}

.rooms-grid-4-cols .room-amenities {
  gap: 0.75rem !important;
  margin-bottom: 1rem !important;
  padding-bottom: 1rem !important;
}

.rooms-grid-4-cols .room-amenities span {
  font-size: 0.75rem !important;
}

.rooms-grid-4-cols .room-info p {
  font-size: 0.85rem !important;
  margin-bottom: 1rem !important;
  line-height: 1.5 !important;
}

.rooms-grid-4-cols .room-price {
  padding: 0.6rem 1.2rem !important;
  font-size: 1.05rem !important;
  bottom: 0px !important;
  right: 0px !important;
}

/* Responsive adjustment for 4-col grid */
@media (max-width: 1200px) {
  .rooms-grid-4-cols {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .rooms-grid-4-cols {
    grid-template-columns: 1fr !important;
  }
}

.room-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.room-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.room-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.room-card:hover .room-img-wrapper img {
  transform: scale(1.1);
}

.room-price {
  position: absolute;
  bottom: -3px;
  right: -1px;
  background: var(--primary);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  font-size: 1.2rem;
  border-top-left-radius: 12px;
  z-index: 5;
}

.room-price span {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.9;
}

.room-info {
  padding: 2rem;
}

.room-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.room-amenities {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
  flex-wrap: wrap;
}

.room-amenities span {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.room-info p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Parallax Separator Bar */
.parallax-separator-bar {
  height: 450px;
  width: 100%;
  background-image: url('images/63f2422086f6f.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

/* Visibility Utilities */
@media (max-width: 1024px) {
  .desktop-only {
    display: none !important;
  }
}

/* Intro Mosaic Gallery */
.intro-mosaic-section {
  background-color: var(--white);
}

.mosaic-header {
  margin-bottom: 0rem;
}

.mosaic-title {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--secondary);
}

.mosaic-divider {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mosaic-divider img {
  width: 48px;
}

.mosaic-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
}

.mosaic-item {
  width: 50%;
  padding: 1.5rem;
}

.mosaic-item.mosaic-text-block {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.mosaic-item .text-content {
  max-width: 450px;
}

.mosaic-item .sub-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.mosaic-item p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.mosaic-swiper {
  width: 100%;
  height: 500px;
  border-radius: 4px;
  overflow: hidden;
}

.mosaic-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-outline-dark {
  background: transparent;
  color: var(--secondary);
  border: 1px solid var(--secondary);
}

.btn-outline-dark:hover {
  background: var(--secondary);
  color: var(--white);
}

@media (max-width: 991px) {
  .mosaic-item {
    width: 100%;
    order: initial !important;
  }

  .mosaic-swiper {
    height: 400px;
  }

  .mosaic-title {
    font-size: 1.8rem;
  }
}

/* Full Width Gallery Carousel */
.full-width-carousel-section {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.full-width-swiper {
  width: 100%;
  height: 65vh;
  min-height: 450px;
}

.full-width-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Custom Pagination for Full Width Swiper */
.full-width-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--white);
  opacity: 0.5;
  transition: var(--transition);
}

.full-width-swiper .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 6px;
  background: var(--primary);
  opacity: 1;
}

@media (max-width: 768px) {
  .full-width-swiper {
    height: 40vh;
    min-height: 300px;
  }
}

/* Agencies & Partners - Modernized */
.agencies-section {
  background: linear-gradient(to bottom, #ffffff 0%, var(--bg-light) 100%);
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
}

.agencies-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.05), transparent);
}

.agency-swiper {
  padding: 3rem 0;
  width: 100%;
}

.agency-card {
  background: var(--white);
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.03);
  margin: 10px 0;
}

.agency-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.agency-logo {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  filter: grayscale(100%);
  opacity: 0.5;
}

.agency-card:hover .agency-logo {
  filter: grayscale(0%);
  opacity: 1;
}

.agency-logo img {
  max-width: 85%;
  max-height: 45px;
  object-fit: contain;
}

.agency-fallback {
  display: none;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .agencies-section {
    padding: 6rem 0;
  }

  .agency-card {
    height: 90px;
    padding: 1rem;
    border-radius: 12px;
  }

  .agency-logo img {
    max-height: 35px;
  }
}

@media (max-width: 991px) {
  .agencies-section {
    padding: 5rem 0;
  }

  .agency-logo {
    height: 60px;
    padding: 0 1rem;
  }

  .agency-logo img {
    max-width: 140px;
    max-height: 40px;
  }
}

/* Instagram Section */
.home-instagram-container {
  padding: 8rem 0 0;
  background-color: var(--white);
  overflow: hidden;
}

.home-instagram-content-wrapper {
  margin-bottom: 2.5rem;
  padding: 0 5%;
}

.instagram-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}

.home-instagram-title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 5px;
  font-weight: 700;
  color: var(--secondary);
  margin: 0;
  text-transform: uppercase;
}

.home-instagram-cta {
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.instagram-swiper {
  width: 100%;
  padding: 100px 0;
  /* More space for the growth */
}

.instagram-swiper .swiper-slide {
  width: 260px;
  height: 260px;
  transition: all 0.5s ease;
  /* Faster, snappier transition */
  opacity: 0.4;
  cursor: pointer;
  transform: scale(0.9);
  /* Default slightly smaller */
  z-index: 1;
}

.instagram-swiper .swiper-slide:hover {
  opacity: 0.8;
  transform: scale(1.1);
  z-index: 101;
}

.instagram-swiper .swiper-slide-active {
  transform: scale(1.2);
  opacity: 1;
  z-index: 100;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.instagram-swiper .swiper-slide-active:hover {
  transform: scale(1.3);
  opacity: 1;
}

.instagram-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .home-instagram-container {
    padding: 5rem 0 0;
  }

  .instagram-swiper .swiper-slide {
    width: 160px;
    height: 160px;
  }

  .instagram-header-flex {
    flex-direction: row;
    align-items: center;
  }
}

/* Footer */
.footer {
  background: #151722;
  color: var(--white);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
  display: inline-flex;
  color: #fff !important;
}

.brand-col p {
  color: #999;
  margin-bottom: 2rem;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--white);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.footer-col ul li {
  margin-bottom: 1rem;
}

.footer-col ul li a {
  color: #999;
}

.footer-col ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.contact-info-list li {
  display: block;
  color: #999;
  margin-bottom: 2rem !important;
  line-height: 1.6;
}

.contact-info-list li strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Modern Tabbed Footer Contact */
.footer-contact-tabs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-tabs-nav {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.footer-tabs-nav::-webkit-scrollbar {
  display: none;
}

.footer-tab-btn {
  background: none;
  border: none;
  color: #777;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 5px 0;
  position: relative;
  white-space: nowrap;
  transition: var(--transition);
}

.footer-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -11px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.footer-tab-btn.active {
  color: var(--white);
}

.footer-tab-btn.active::after {
  width: 100%;
}

.footer-tab-content {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.footer-tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-item {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  color: #999;
  transition: var(--transition);
  font-size: 0.95rem;
}

.contact-item i {
  color: var(--primary);
  width: 20px;
  text-align: center;
  margin-top: 4px;
  font-size: 1rem;
}

.contact-item span {
  flex: 1;
}

.contact-item a {
  color: inherit;
}

.contact-item:hover {
  color: var(--white);
}

.contact-item:hover i {
  transform: scale(1.1);
}


.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #777;
  font-size: 0.9rem;
}

/* =========================================
   Room Details Page
========================================= */
.page-header {
  height: 350px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 80px;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.page-header-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.page-title {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.breadcrumb {
  font-size: 0.95rem;
  color: #ccc;
}

.breadcrumb a {
  color: var(--primary);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb .current {
  color: var(--white);
}

.room-details-section {
  padding: 5rem 0;
}

.room-details-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.room-main-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  min-width: 0;
}

/* Room Gallery */
.room-gallery {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.gallery-main {
  height: 400px;
  width: 100%;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  height: 100px;
  box-sizing: border-box;
  padding: 10px 0;
}

.gallery-thumbs .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.5;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid var(--primary);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content Blocks */
.content-block h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
  color: var(--secondary);
}

.content-block p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-main);
  font-size: 1.05rem;
}

.feature-item i {
  color: var(--primary);
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.rules-list {
  list-style: none;
}

.rules-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1rem;
  color: var(--text-main);
  font-size: 1.05rem;
}

.rules-list li i {
  color: var(--primary);
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

/* Sidebar Booking Widget */
.room-sidebar {
  position: sticky;
  top: 100px;
}

.booking-widget {
  flex-direction: column;
  align-items: stretch;
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid #eee;
  backdrop-filter: none;
}

.widget-price {
  text-align: center;
  margin-bottom: 1rem;
}

.widget-price .price-value {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--primary);
}

.widget-price .price-unit {
  color: var(--text-light);
  font-size: 1rem;
}

.widget-divider {
  border: 0;
  border-top: 1px solid #eee;
  margin-bottom: 2rem;
}

.form-group-vertical {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.form-group-vertical label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group-vertical label i {
  color: var(--primary);
}

.widget-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--secondary);
  outline: none;
  transition: var(--transition);
  background: var(--white);
}

.widget-input:focus {
  border-color: var(--primary);
}

.price-breakdown {
  margin: 1.5rem 0;
  padding: 1rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.breakdown-row.total {
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.2rem;
  margin-top: 1rem;
  margin-bottom: 0;
}

.btn-block {
  width: 100%;
  display: block;
}

.widget-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Inner Page Navbar */
.inner-page .navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.inner-page .top-bar {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.inner-page .top-bar a {
  color: var(--text-light);
}

.inner-page .top-bar a:hover {
  color: var(--primary);
}

.inner-page .nav-container {
  padding: 1rem 0;
}

.inner-page .logo,
.inner-page .nav-links a,
.inner-page .mobile-menu-btn {
  color: var(--secondary);
}

/* =========================================
   Contact Page
========================================= */
.modern-contact-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, rgba(31, 34, 50, 0.9) 30%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.modern-contact-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(197, 168, 128, 0.15) 0%, transparent 60%);
  animation: bg-pulse 10s ease-in-out infinite;
  z-index: 1;
}

@keyframes bg-pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.contact-page-section {
  padding-bottom: 2rem;
}

.modern-contact-hero {
  background-image: url('images/4f88e20f-1113-47f0-9160-88341daa9730.jpg');
}


.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 5rem;
}

/* Info Cards */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  display: flex;
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary);
}

.contact-card-icon {
  background: rgba(197, 168, 128, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-card-content h3 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--secondary);
}

.contact-card-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.contact-card-content a {
  color: var(--primary);
  font-weight: 500;
}

.contact-card-content a:hover {
  text-decoration: underline;
  color: var(--primary-dark);
}

/* Form Wrapper */
.contact-form-wrapper {
  background: var(--white);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  flex-direction: column;
  align-items: stretch;
}

.contact-form-wrapper h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.form-row {
  display: flex;
  gap: 1.5rem;
}

.form-row>.form-group-vertical {
  flex: 1;
}

.text-area {
  resize: vertical;
  min-height: 120px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

/* Google Map */
.map-container {
  margin-bottom: -5px;
  /* minor tweak to remove margin below the iframe before footer */
  width: 100%;
}

.map-container iframe {
  display: block;
  /* prevents inline gap */
}

/* =========================================
   Mobile Menu Overlay Styles (Base)
========================================= */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 2rem 3rem;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
}

.mobile-menu-overlay.active {
  right: 0;
  visibility: visible;
  opacity: 1;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

.mobile-menu-socials {
  display: flex;
  gap: 2rem;
  font-size: 1.4rem;
  color: var(--secondary);
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--secondary);
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
  color: var(--primary);
}

.mobile-menu-divider {
  width: 100%;
  height: 1px;
  background-color: #eee;

}

.mobile-menu-logo-container {
  text-align: center;
  margin-bottom: 5rem;
}

.mobile-menu-logo-container .logo {
  color: var(--secondary);
  font-size: 2.5rem;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu-logo-container .logo-icon {
  font-size: 3.5rem;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  text-align: center;
}

.mobile-menu-nav a {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.mobile-menu-overlay.active .mobile-menu-nav a {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for links */
.mobile-menu-nav a:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu-nav a:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-menu-nav a:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-menu-nav a:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-menu-nav a:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-menu-nav a:hover {
  color: var(--primary);
  letter-spacing: 5px;
}

/* Desktop default: Hidden */
@media (min-width: 993px) {
  .mobile-menu-overlay {
    display: none !important;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .title {
    font-size: 3.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .room-details-grid {
    grid-template-columns: 1fr;
  }

  .room-sidebar {
    position: relative;
    top: auto;
  }

  .glass-panel {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .form-divider {
    display: none;
  }

  .form-group {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 1rem;
  }

  .booking-form .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {

  .top-email {
    display: none !important;
  }

  .navbar .btn-primary {
    display: none;
  }

  .mobile-menu-logo {
    display: flex !important;
  }

  .navbar .nav-links {
    display: none;
  }

  .mobile-menu-overlay {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
    position: relative;
    z-index: 1001;
  }

  .title {
    font-size: 2.5rem;
  }

  .section {
    padding: 5rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .contact-info li {
    justify-content: center;
  }

  .brand-col p {
    max-width: 100%;
  }

  .booking-bar-wrapper {
    position: relative;
    bottom: 0;
    transform: translateY(-50px);
  }
}

/* =========================================
   About Page Styles
========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: #555;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 0.9rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.mv-card {
  padding: 3rem 2rem;
  text-align: center;
}

.mv-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.mv-card h3 {
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition);
}

.about-image img:hover {
  transform: scale(1.02);
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.about-gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  transition: var(--transition);
}

.about-gallery-grid img:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .about-gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 350px;
  }

  .about-stats {
    justify-content: space-around;
  }
}

/* =========================================
   Floating Contact Buttons
========================================= */
.floating-contact {
  position: fixed;
  left: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.1) translateY(-3px);
  color: var(--white);
}

.float-whatsapp {
  background-color: #25d366;
}

.float-whatsapp:hover {
  background-color: #128c7e;
}

.float-phone {
  background-color: var(--primary);
}

.float-phone:hover {
  background-color: var(--primary-dark);
}

/* =========================================
   Gallery Page Styles
========================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 280px;
  grid-auto-flow: dense;
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
  transform: scale(0.5);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* Dynamic Grid Sizes */
.gallery-item.large {
  grid-row: span 2;
  grid-column: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

@media (max-width: 768px) {

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 85%;
  max-height: 85%;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--white);
  font-size: 50px;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.3s;
}

.close-lightbox:hover {
  color: var(--primary);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

@media (max-width: 768px) {

  .lightbox-prev,
  .lightbox-next {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}

/* =========================================
   Hotel Gallery Layout
========================================= */
.gallery-hotels-wrapper {
  display: flex;
  flex-direction: column;
}

.container-full {
  width: 100%;
  padding: 0 5%;
  /* Matches the 90% width container gap */
}



.hotel-gallery-section {
  padding: 0rem 0;
  overflow: hidden;
}

.dark-bg-section {
  background-color: var(--secondary);
  color: var(--white);
}

.dark-bg-section .hotel-name {
  color: var(--white);
}

.dark-bg-section .hotel-desc {
  color: rgba(255, 255, 255, 0.7);
}

.hotel-gallery-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}


.hotel-gallery-inner.reverse {
  flex-direction: row-reverse;
}

.hotel-info-sticky {
  flex: 0 0 350px;
  position: sticky;
  top: 150px;
}

.hotel-tag {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 700;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 1rem;
}

.hotel-name {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.hotel-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.hotel-swiper-container {
  flex: 1;
  min-width: 0;
}

.swiper-hotel {
  width: 100%;
  padding-bottom: 40px !important;
}

.swiper-hotel .swiper-slide {
  width: 600px;
  max-width: 80vw;
  /* Limit on very small desktops */
  height: 380px;
  flex-shrink: 0;
  /* Prevent swiper from squashing slides */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0.7;
  transform: scale(0.92);
}







.swiper-hotel .swiper-slide-active {
  transform: scale(1);
  /* Full size for active */
  opacity: 1;
  z-index: 100;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}


.swiper-hotel .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-hotel .swiper-pagination-bullet {
  background: var(--primary);
}

@media (max-width: 1200px) {
  .hotel-gallery-inner {
    flex-direction: column !important;
    gap: 3rem;
  }

  .hotel-info-sticky {
    flex: none;
    position: relative;
    top: auto;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }

  .hotel-name {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hotel-gallery-section {
    padding: 4rem 0;
  }

  .hotel-name {
    font-size: 2.2rem;
  }

  .swiper-hotel .swiper-slide {
    height: 240px;
    width: 340px;
    border-radius: 16px;
  }

}