/* ==============================
   MODERN HOTEL WEBSITE STYLES
============================== */

:root {
  --primary-color: #6366f1;
  --secondary-color: #8b5cf6;
  --accent-color: #f59e0b;
  --dark-bg: #0f172a;
  --light-bg: #f8fafc;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-light: #f1f5f9;
  --border-radius: 16px;
  --border-radius-lg: 24px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  color: var(--text-primary);
  background-color: var(--light-bg);
  line-height: 1.6;
}

/* ==============================
   ABOUT PAGE – GLOBAL STYLES
============================== */

/* Section titles */
.h-font{
  letter-spacing:1px;
  font-weight: 700;
}

.h-line{
  width:80px;
  height:4px;
  margin:12px auto 0;
  border-radius:2px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* ==============================
   ABOUT INTRO TEXT
============================== */

.about-intro p{
  max-width:720px;
  margin:auto;
  font-size:1.1rem;
  color:var(--text-secondary);
  line-height:1.7;
}

/* ==============================
   ABOUT IMAGE & TEXT
============================== */

.about-content h3{
  font-weight:700;
  color: var(--text-primary);
}

.about-content p{
  color:var(--text-secondary);
  line-height:1.7;
}

.about-content img{
  border-radius:var(--border-radius-lg);
  box-shadow:var(--shadow-xl);
  transition: var(--transition);
}

.about-content img:hover {
  transform: scale(1.02);
}

/* ==============================
   STATS / COUNTERS BOXES
============================== */

.box{
  border-top: 4px solid var(--primary-color) !important;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor:default;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.box:hover{
  transform:translateY(-8px) scale(1.02);
  box-shadow:var(--shadow-xl);
}

.box img{
  filter: drop-shadow(var(--shadow-md));
}

.box h4{
  font-size:1.1rem;
  font-weight:700;
  letter-spacing:.5px;
  color: var(--text-primary);
}

/* ==============================
   MANAGEMENT TEAM – SWIPER
============================== */

.mySwiper .swiper-slide{
  border-radius:var(--border-radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.mySwiper .swiper-slide:hover{
  transform:translateY(-8px) scale(1.03);
  box-shadow:var(--shadow-xl);
}

.mySwiper img{
  height:280px;
  object-fit:cover;
}

.mySwiper h5{
  padding:14px 10px 18px;
  margin:0;
  font-weight:700;
  color: var(--text-primary);
}

/* Swiper pagination dots */
.swiper-pagination-bullet{
  background:var(--text-secondary);
  opacity:.6;
}

.swiper-pagination-bullet-active{
  background:var(--primary-color);
  opacity:1;
}

/* ==============================
   RESPONSIVE TWEAKS
============================== */

@media (max-width: 768px){

  .about-content img{
    border-radius:var(--border-radius);
  }

  .mySwiper img{
    height:240px;
  }

  .box h4{
    font-size:1rem;
  }
}
/* ==============================
   BOOKINGS PAGE
============================== */

/* Page title + breadcrumb */
.bookings-header h2{
  font-weight:700;
  letter-spacing:.5px;
}

.bookings-breadcrumb{
  font-size:14px;
  color:#777;
}

/* ==============================
   BOOKING CARD
============================== */

.booking-card{
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius:var(--border-radius-lg);
  padding:20px;
  height:100%;
  transition: var(--transition);
  box-shadow:var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-card:hover{
  transform:translateY(-8px) scale(1.01);
  box-shadow:var(--shadow-xl);
}

.booking-card h5{
  font-weight:700;
  margin-bottom:8px;
  color: var(--text-primary);
}

.booking-card p{
  margin-bottom:10px;
  font-size:.95rem;
  color:var(--text-secondary);
}

.booking-card b{
  color:var(--text-primary);
}

/* ==============================
   STATUS BADGES
============================== */

.booking-card .badge{
  padding:8px 14px;
  font-size:.8rem;
  border-radius:20px;
  text-transform:capitalize;
  font-weight: 500;
}

/* ==============================
   ACTION BUTTONS
============================== */

.booking-card .btn{
  border-radius:24px;
  padding:8px 16px;
  font-size:.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.booking-card .btn:hover {
  transform: translateY(-2px);
}

.booking-card .btn + .btn{
  margin-left:8px;
}

/* ==============================
   REVIEW MODAL
============================== */

#reviewModal .modal-content{
  border-radius:var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
}

#reviewModal .modal-header{
  border-bottom:none;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

#reviewModal .modal-title{
  font-weight:700;
}

#reviewModal textarea{
  resize:none;
  border-radius: var(--border-radius);
}

/* ==============================
   RESPONSIVE TWEAKS
============================== */

@media (max-width: 768px){

  .booking-card{
    padding:18px;
  }

  .booking-card h5{
    font-size:1.1rem;
  }
}
/* ==============================
   CONFIRM BOOKING PAGE
============================== */

/* Page header & breadcrumb */
.confirm-header h2{
  font-weight:700;
  letter-spacing:.5px;
}

.confirm-breadcrumb{
  font-size:14px;
  color:#777;
}

/* ==============================
   ROOM PREVIEW CARD
============================== */

.confirm-room-card{
  border-radius:var(--border-radius-lg);
  overflow:hidden;
  transition: var(--transition);
  box-shadow:var(--shadow-lg);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.confirm-room-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.confirm-room-card img{
  height:260px;
  width:100%;
  object-fit:cover;
}

.confirm-room-card h5{
  margin-top:10px;
  font-weight:700;
  color: var(--text-primary);
}

.confirm-room-card h6{
  color:var(--text-secondary);
  font-weight:500;
}

/* ==============================
   BOOKING DETAILS CARD
============================== */

.booking-details-card{
  border-radius:var(--border-radius-lg);
  box-shadow:var(--shadow-xl);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 24px;
}

.booking-details-card h6{
  font-weight:700;
  letter-spacing:.5px;
  color: var(--text-primary);
}

/* ==============================
   FORM CONTROLS
============================== */

.booking-details-card .form-control,
.booking-details-card .form-select{
  border-radius:var(--border-radius);
  padding:12px 14px;
  font-size:.95rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.booking-details-card .form-control:focus,
.booking-details-card .form-select:focus{
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
  border-color: var(--primary-color);
}

/* ==============================
   PAY INFO & LOADER
============================== */

#pay_info{
  font-size:.95rem;
  line-height:1.6;
}

#info_loader{
  width:28px;
  height:28px;
}

/* ==============================
   PAY BUTTON
============================== */

.booking-details-card .btn{
  border-radius:28px;
  padding:14px 20px;
  font-size:1rem;
  font-weight:600;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  color: white;
  transition: var(--transition);
}

.booking-details-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ==============================
   RESPONSIVE TWEAKS
============================== */

@media (max-width: 768px){

  .confirm-room-card img{
    height:220px;
  }

  .booking-details-card{
    margin-top:20px;
  }
}
/* ==============================
   CONTACT PAGE
============================== */

/* Section title */
.h-font{
  letter-spacing:1px;
}

.h-line{
  width:80px;
  height:3px;
  margin:12px auto 0;
  border-radius:3px;
}

/* ==============================
   CONTACT CARDS
============================== */

.contact-card{
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius:var(--border-radius-lg);
  padding:28px;
  box-shadow:var(--shadow-lg);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card:hover{
  transform:translateY(-6px) scale(1.02);
  box-shadow:var(--shadow-xl);
}

/* ==============================
   MAP
============================== */

.contact-card iframe{
  border-radius:var(--border-radius);
  border:none;
}

/* ==============================
   CONTACT INFO
============================== */

.contact-card h5{
  font-weight:700;
  margin-top:18px;
  color: var(--text-primary);
}

.contact-card a{
  color:var(--text-secondary);
  font-size:.95rem;
  transition: var(--transition);
}

.contact-card a:hover{
  color: var(--primary-color);
  transform: translateX(4px);
}

/* Social icons */
.contact-card .bi{
  transition: var(--transition);
  font-size: 1.2rem;
}

.contact-card a:hover .bi{
  transform:scale(1.2);
  color: var(--primary-color);
}

/* ==============================
   CONTACT FORM
============================== */

.contact-form h5{
  font-weight:700;
  color: var(--text-primary);
}

.contact-form .form-control{
  border-radius:var(--border-radius);
  padding:12px 14px;
  font-size:.95rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.contact-form .form-control:focus{
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
  border-color: var(--primary-color);
}

.contact-form textarea{
  resize:none;
}

/* Submit button */
.contact-form .btn{
  border-radius:28px;
  padding:12px 24px;
  font-weight:600;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  color: white;
  transition: var(--transition);
}

.contact-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 768px){

  .contact-card{
    padding:24px;
  }

  .contact-card iframe{
    height:260px;
  }
}
/* ==============================
   FACILITIES PAGE
============================== */

.facilities-section{
  padding-bottom:40px;
}

/* ==============================
   FACILITY CARD
============================== */

.facility-card{
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius:var(--border-radius-lg);
  padding:28px;
  height:100%;
  border-top: 4px solid var(--primary-color);
  box-shadow:var(--shadow-lg);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.facility-card:hover{
  transform:translateY(-8px) scale(1.03);
  border-top-color: var(--secondary-color);
  box-shadow:var(--shadow-xl);
}

/* ==============================
   FACILITY HEADER
============================== */

.facility-header{
  display:flex;
  align-items:center;
  margin-bottom:12px;
}

.facility-header img{
  width:48px;
  height:48px;
  object-fit:contain;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.1);
  padding: 8px;
}

.facility-header h5{
  margin:0 0 0 16px;
  font-weight:700;
  color: var(--text-primary);
}

/* ==============================
   DESCRIPTION
============================== */

.facility-desc{
  font-size:.95rem;
  line-height:1.7;
  color:var(--text-secondary);
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 768px){

  .facility-card{
    padding:24px;
  }
}
/* ==============================
   HOME PAGE
============================== */

.home-page{
  font-family:'Inter',system-ui,sans-serif;
}

/* HERO */
.hero-slide{
  position:relative;
}
.hero-slide img{
  height:70vh;
  object-fit:cover;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,.4), rgba(0,0,0,.7));
}
.hero-content{
  position:absolute;
  bottom:20%;
  left:8%;
  color:#fff;
  max-width:600px;
}
.hero-content h1{
  font-size:3.5rem;
  font-weight:800;
  text-shadow: 0 4px 8px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
}

/* AVAILABILITY */
.availability-form{
  margin-top:-70px;
  position:relative;
  z-index:3;
}
.availability-card{
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  padding:28px;
  border-radius:var(--border-radius-lg);
  box-shadow:var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* SECTION TITLE */
.section-title{
  text-align:center;
  font-weight:800;
  margin:80px 0 40px;
  color: var(--text-primary);
}

/* ROOM CARD */
.room-card{
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius:var(--border-radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.room-card:hover{
  transform:translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
}
.room-card img{
  height:280px;
  width:100%;
  object-fit:cover;
}

.room-body{
  padding:20px;
}
.room-body h6{
  color:var(--text-secondary);
  font-weight: 500;
}
.room-meta{
  margin-bottom:10px;
}
.room-meta .badge{
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary-color);
  margin:2px;
  border-radius: 12px;
  font-weight: 500;
}
.room-actions{
  display:flex;
  justify-content:space-between;
  margin-top:15px;
}
/* ==============================
   PROFILE PAGE
============================== */

.profile-page{
  padding-bottom:40px;
}

.breadcrumb-mini{
  font-size:14px;
  color:#777;
}
.breadcrumb-mini a{
  color:#777;
  text-decoration:none;
}
.breadcrumb-mini span{
  margin:0 6px;
}

/* CARD */
.profile-card{
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding:28px;
  border-radius:var(--border-radius-lg);
  box-shadow:var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* SECTION HEADING */
.section-heading{
  font-weight:700;
  margin-bottom:16px;
  color: var(--text-primary);
}

/* AVATAR */
.profile-avatar{
  width:120px;
  height:120px;
  border-radius:50%;
  object-fit:cover;
  border:4px solid rgba(99, 102, 241, 0.2);
  transition: var(--transition);
}

.profile-avatar:hover {
  transform: scale(1.05);
}

/* FORM */
.profile-card .form-control:focus{
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* RESPONSIVE */
@media(max-width:768px){
  .profile-card{
    padding:24px;
  }
}
/* =========================
   NAVBAR
========================= */
#nav-bar{
  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.9) !important;
  transition: all .3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-brand{
  letter-spacing: .5px;
  font-weight: 700;
  color: var(--text-primary) !important;
}

.nav-link{
  font-weight: 500;
  position: relative;
  color: var(--text-primary) !important;
  transition: var(--transition);
}

.nav-link::after{
  content:'';
  position:absolute;
  width:0;
  height:3px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  left:0;
  bottom:0;
  transition:.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after{
  width:100%;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

/* =========================
   BUTTONS
========================= */
.btn-outline-dark{
  border-radius: 30px;
  padding: 10px 24px;
  font-weight: 500;
  transition: var(--transition);
}

.btn-outline-dark:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.custom-bg{
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 30px;
  color:#fff;
  font-weight: 600;
  transition: var(--transition);
}

.custom-bg:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* =========================
   MODERN DROPDOWN
========================= */

.dropdown-menu{
  border-radius: var(--border-radius);
  padding: 8px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-xl);
  animation: dropdownFade .25s ease;
}

/* Smooth appearance */
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(8px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Dropdown items */
.dropdown-item{
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 500;
  color: var(--text-primary);
  transition: var(--transition);
}

/* Hover effect */
.dropdown-item:hover{
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  transform: translateX(4px);
}

/* Active item */
.dropdown-item.active{
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
}

/* Divider */
.dropdown-divider{
  margin: 8px 0;
  opacity: .08;
}
/* Floating effect */
.dropdown-menu.show{
  animation: dropdownFloat .35s cubic-bezier(.16,1,.3,1);
}

@keyframes dropdownFloat{
  from{
    opacity:0;
    transform: translateY(12px) scale(.94);
  }
  to{
    opacity:1;
    transform: translateY(0) scale(1);
  }
}



/* =========================
   MODALS
========================= */
.modal-content{
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
}

.modal-header{
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color:#fff;
  border-bottom: none;
}

.modal-header .btn-close{
  filter: invert(1);
}

.form-control{
  border-radius: var(--border-radius);
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
/* ================= FOOTER STYLES ================= */

.site-footer{
  background: var(--dark-bg);
  color: var(--text-light);
  font-family: var(--font-family);
}

.site-footer h3,
.site-footer h5{
  color: #ffffff;
  font-weight: 700;
}

.site-footer p{
  color: var(--text-secondary);
  line-height:1.7;
}

.site-footer a{
  color: var(--text-light);
  text-decoration:none;
  transition: var(--transition);
}

.site-footer a:hover{
  color:#ffffff;
  transform:translateX(4px);
}

/* Social Icons */
.footer-social i{
  font-size:1.2rem;
  opacity:.9;
  transition: var(--transition);
}

.footer-social i:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Footer bottom */
.footer-bottom{
  background:#020617;
  color: var(--text-secondary);
  font-size:.9rem;
}

/* ================= ALERT STYLES ================= */

.custom-alert{
  position:fixed;
  top:20px;
  right:20px;
  z-index:9999;
  min-width:280px;
  animation:slideIn .35s ease;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes slideIn{
  from{transform:translateX(120%);opacity:0}
  to{transform:translateX(0);opacity:1}
}
/* ==============================
   ROOM REVIEWS
============================== */

.review-card{
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding:18px 20px;
  border-radius:var(--border-radius);
  box-shadow:var(--shadow-md);
  margin-bottom:18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.review-user{
  display:flex;
  align-items:center;
  margin-bottom:8px;
}

.review-user img{
  width:40px;
  height:40px;
  object-fit:cover;
  border-radius:50%;
  border: 2px solid rgba(99, 102, 241, 0.2);
}

.review-user h6{
  margin:0 0 0 12px;
  font-weight:700;
  color: var(--text-primary);
}

.review-text{
  font-size:.95rem;
  color:var(--text-secondary);
  line-height:1.6;
}

.review-stars{
  margin-top:6px;
}
/* Protect review content */
.rating-review p{
  overflow-wrap:anywhere;
  word-break:break-word;
  max-width:100%;
}
/* FIX: Modal background */
.modal-content {
  background-color: #fff;
  color: #000;
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}
.room-img {
  touch-action: pan-y;
}
#imageModal .carousel-inner {
  pointer-events: none;
}

#imageModal .carousel-control-prev,
#imageModal .carousel-control-next {
  pointer-events: auto;
}
/* Zoom image wrapper */
.zoom-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Blurred background */
.zoom-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(25px);
  transform: scale(1.2); /* avoid edge blur gaps */
  opacity: 0.9;
}

/* Foreground image */
.zoom-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Strong black arrows for image modal */
#imageModal .carousel-control-prev-icon,
#imageModal .carousel-control-next-icon {
  background-image: none; /* remove default svg */
  width: 48px;
  height: 48px;
}

#imageModal .carousel-control-prev-icon::after,
#imageModal .carousel-control-next-icon::after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border: solid #000;
  border-width: 0 4px 4px 0;
  padding: 6px;
  margin: auto;
}

/* Left arrow */
#imageModal .carousel-control-prev-icon::after {
  transform: rotate(135deg);
}

/* Right arrow */
#imageModal .carousel-control-next-icon::after {
  transform: rotate(-45deg);
}

/* Bigger click area */
#imageModal .carousel-control-prev,
#imageModal .carousel-control-next {
  width: 8%;
  opacity: 0.9;
}
/* =========================
   REGISTER PAGE BACKGROUND
========================= */

.register-bg {
  min-height: 100vh;
  background-image:
    linear-gradient(
      rgba(0,0,0,0.35),
      rgba(0,0,0,0.35)
    ),
    url("../images/background/IMG_62045.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* =========================
   ADMIN LOGIN PAGE
========================= */

.admin-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px; /* safe for mobile */
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    url("../images/background/IMG_62045.png");
  background-size: cover;
  background-position: center;
}

/* Login card */
.login-form {
  width: 100%;
  max-width: 520px;            /* ⬅️ BIGGER */
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,.35); /* ⬅️ STRONGER */
  overflow: hidden;
  transform: translateY(-20px); /* ⬅️ visual centering */
}

/* Header */
.login-form h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: .8px;
  padding: 18px;
}

/* Inner padding */
.login-form .p-4 {
  padding: 30px !important;   /* ⬅️ MORE SPACE */
}

/* Inputs */
.login-form .form-control {
  border-radius: 16px;
  padding: 14px;
  font-size: 1rem;            /* ⬅️ SLIGHTLY BIGGER TEXT */
}

/* Button */
.login-form .btn {
  width: 100%;
  border-radius: 30px;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
}

.menu-card{
  cursor:pointer;
  transition:.25s;
}
.menu-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 30px rgba(0,0,0,.15);
}
.menu-desc{
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.menu-hero{
  height: 60vh;              /* 🔥 big hero */
  min-height: 420px;
  max-height: 650px;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* darker top + lighter bottom for text readability */
.menu-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.15) 70%,
    rgba(0,0,0,0.05) 100%
  );
  display:flex;
  flex-direction:column;
  align-items:flex-start;      /* 👈 left aligned like hotels */
  justify-content:flex-end;    /* 👈 text at bottom */
  color:#fff;
  text-align:left;
  padding:60px 8%;
}

/* Hotel name */
.menu-hero-overlay h1{
  font-size:3rem;
  font-weight:800;
  margin-bottom:8px;
  text-shadow:0 4px 30px rgba(0,0,0,.6);
}

/* subtitle */
.menu-hero-overlay p{
  max-width:700px;
  font-size:1.1rem;
  opacity:.95;
  text-shadow:0 2px 15px rgba(0,0,0,.6);
}
.nav-link i {
  font-size: 0.95rem;
}
.badge i {
  font-size: 0.85rem;
}
.form-label i {
  opacity: 0.85;
  font-size: 0.95rem;
}
.letter-space{
  letter-spacing:3px;
}

.title-line{
  width:80px;
  height:2px;
  background:#000;
  margin:12px auto 0;
}
.input-group-text{
  background:#f8f9fa;
}

.input-group-text i{
  font-size:1rem;
}

/* Social */
.bi-facebook{ color:#1877f2; }
.bi-instagram{ color:#e1306c; }
.bi-twitter{ color:#1da1f2; }

/* Phone */
.bi-telephone-fill{ color:#0d6efd; }
.bi-envelope-fill{
  color:#dc3545; /* or var(--teal) */
}
@media (max-width:576px){
  .bg-white h6{
    font-size:14px;
    margin-bottom:6px;
  }

  .bg-white a{
    font-size:13px;
  }
}
/* =========================
   DESKTOP UPSCALE (PC ONLY)
========================= */
@media (min-width: 992px){

  /* Make card wider */
  .container .col-lg-8 {
    max-width: 960px; /* from ~760px */
  }

  /* Bigger card padding */
  .card-body {
    padding: 36px 40px;
  }

  /* Labels */
  .form-label {
    font-size: 1.05rem;
    font-weight: 600;
  }

  /* Inputs & selects */
  .form-control,
  .form-select {
    padding: 14px 16px;
    font-size: 1.05rem;
    border-radius: 16px;
  }

  /* Section spacing */
  .row.g-3 {
    margin-bottom: 30px;
  }

  /* Buttons */
  .btn {
    padding: 12px 28px;
    font-size: 1.05rem;
  }
}
/* ==============================
   SWIPER PAGINATION ALIGNMENT
============================== */

/* Facilities pagination — same position as testimonials */
.swiper-facilities {
  position: relative;
  padding-bottom: 60px; /* space for dots */
}

.swiper-facilities .swiper-pagination {
  position: absolute;
  bottom: 10px;         /* adjust if needed */
  left: 0;
  width: 100%;
  text-align: center;
}

/* Optional: dot size consistency */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: .5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* =========================
   MENU CATEGORY BAR FIX
========================= */

.menu-category-swiper {
  width: 100%;
  overflow: hidden;
}

.menu-category-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
}

.menu-category-swiper .swiper-slide {
  width: auto !important;
  flex-shrink: 0;
}

/* Pills */
.pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  text-decoration: none;
  color: #111;
  white-space: nowrap;
  font-weight: 500;
}

.pill.active {
  background: #111;
  color: #fff;
  border-color: #111;
}
/* =========================
   MENU CATEGORY ARROWS FIX
========================= */

.menu-cat-prev,
.menu-cat-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;              /* 🔥 REQUIRED */
  pointer-events: auto;      /* 🔥 REQUIRED */
}

.menu-cat-prev { left: 0; }
.menu-cat-next { right: 0; }

.menu-cat-prev i,
.menu-cat-next i {
  font-size: 1.2rem;
  pointer-events: none;      /* allow click through icon */
}
/* =========================
   ENABLE SWIPER TOUCH
========================= */

.menu-category-swiper,
.menu-category-swiper * {
  touch-action: pan-x !important;  /* 🔥 allows horizontal swipe */
}

