@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #e82574;
  --primary-color-dark: #bc1c5c;
  --text-dark: #0c0a09;
  --text-light: #78716c;
  --white: #ffffff;
  --max-width: 100%;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 5%;
}

@media (max-width: 768px) {
  .section__container {
    padding: 3rem 1.5rem;
  }
}

.section__subheader {
  margin-bottom: 0.5rem;
  position: relative;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-dark);
}

.section__subheader::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translate(1rem, -50%);
  height: 2px;
  width: 4rem;
  background-color: var(--primary-color);
}

.section__header {
  max-width: 900px;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

.section__description {
  max-width: 600px;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  background-color: #800000;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  vertical-align: middle;
}

.btn:hover {
  background-color: var(--primary-color-dark);
}

img {
  width: 100%;
  display: flex;
}

a {
  text-decoration: none;
}

/* --- SHIELD HEADER LOGO --- */
.header__logo {
  position: absolute;
  top: 0;
  left: 5%;
  width: 130px;
  height: 150px;
  background-color: #800000;
  /* Rich dark red/pink */
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  z-index: 1001;
  padding-top: 10px;
}

/* Glassy Inner Border Effect */
.header__logo::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-top: none;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  pointer-events: none;
}

.header__logo a {
  display: block;
  width: 100px;
  height: 100px;
  position: relative;
  z-index: 2;
}

.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.footer__logo {
  max-width: 120px;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .header__logo {
    width: 90px;
    height: 110px;
    left: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }

  .header__logo::before {
    inset: 3px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }

  .header__logo a {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 480px) {
  .header__logo {
    width: 70px;
    height: 90px;
    left: 10px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }

  .header__logo a {
    width: 45px;
    height: 45px;
  }

  .header__logo::before {
    inset: 2px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}
html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

.header {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-video {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  background-color: #0c0a09;
  /* Dark background to blend the video into */
}

.hero-video__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  opacity: 0.6;
  /* Lowered opacity to obscure pixelation and improve text legibility */
}

.hero-video__bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  /* 16:9 Aspect Ratio */
  min-height: 100vh;
  min-width: 177.77vh;
  /* 16:9 Aspect Ratio (100 / 9 * 16) */
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-video {
    height: 80vh;
  }
}

.carousel-btn-group {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.btn-outline-white {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--text-dark);
}

nav {
  position: fixed;
  isolation: isolate;
  top: 0;
  width: 100%;
  margin: auto;
  z-index: 1000;
}

.nav__bar {
  padding: 1rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

.nav__menu__btn {
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
  margin-left: auto;
  /* Push to right since logo is absolute */
}

.nav__links {
  list-style: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 9rem 2rem 2rem 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  background-color: rgba(0, 0, 0, 0.85);
  /* Sleek dark dropdown */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transform: translateY(-100%);
  transition: 0.5s ease-in-out;
  z-index: 1;
}

.nav__links.open {
  transform: translateY(0);
}

.nav__links a {
  position: relative;
  isolation: isolate;
  padding-bottom: 8px;
  color: goldenrod;
  transition: 0.3s;
}

.nav__btn {
  display: none;
}

.header__container {
  padding-block: 8rem 10rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .header__container {
    padding-block: 8rem 4rem;
  }
}

.header__container p {
  margin-bottom: 1rem;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: var(--white);
  text-align: center;
  opacity: 0.9;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.header__container h1 {
  font-size: clamp(2.2rem, 8vw, 4rem);
  /* Slightly smaller base for mobile */
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  text-align: center;
  text-shadow: 0px 10px 20px rgba(0, 0, 0, 0.6);
  letter-spacing: -1px;
}

.header__container h1 br {
  display: block;
}

@media (max-width: 768px) {
  .header__container h1 br {
    display: none;
  }
}

.header__container h1 span {
  color: #800000;
  text-shadow: 0px 10px 30px rgba(232, 37, 116, 0.4);
}

.booking__container {
  padding-block: 0;
  position: relative;
  z-index: 101;
  /* Ensure it is above everything else in the hero area */
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.booking__form {
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: rgba(255, 255, 255, 0.95);
  /* Slightly higher opacity for better contrast */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 999px;
  /* Ensure pill shape even on larger sections */
  border: 1px solid rgba(255, 255, 255, 0.4);
  transform: translateY(-50%);
  /* Consistent centering relative to the bottom of the hero */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 480px) {
  .booking__form {
    padding: 1rem;
    gap: 0.5rem;
  }
}

.input__group {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.static-rating {
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 0.25rem 1.75rem;
  width: fit-content;
  max-width: 95%;
  margin-inline: auto;
  border-radius: 9999px;
  /* Absolute pill shape */
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-height: 65px;
  /* Minimum space for the rating content */
  z-index: 1000;
}

.TA_rating_inline {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: auto !important;
}

.TA_rating_inline ul,
.TA_rating_inline li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.TA_rating_inline .TA_cdsratingsonlywide {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: auto !important;
  max-width: 100% !important;
}

@media (max-width: 480px) {
  .booking__container {
    padding-inline: 1rem;
  }

  .static-rating {
    padding: 0.5rem 1rem !important;
    min-height: 55px !important;
  }
}

@media (max-width: 400px) {
  .TA_rating_inline {
    transform: scale(0.85);
    /* Scaling down the third-party widget on tiny screens */
    transform-origin: center;
    width: 100% !important;
    min-width: 0 !important;
  }
}

@media (max-width: 350px) {
  .TA_rating_inline {
    transform: scale(0.75);
  }
}

/* Fix for any injected iframe or inner script content */
.TA_rating_inline * {
  vertical-align: middle !important;
}

@media (max-width: 480px) {
  .input__group {
    flex: 1 1 100%;
    justify-content: flex-start;
  }
}

.input__group span {
  font-size: 1.75rem;
  color: var(--primary-color);
}

.input__group label {
  font-weight: 500;
  color: var(--text-dark);
}

.input__group input {
  display: block;
  width: 100%;
  max-width: 150px;
  padding-block: 5px;
  color: var(--text-dark);
  font-size: 0.9rem;
  outline: none;
  border: none;
}

.input__group input::placeholder {
  color: var(--text-light);
}

/* Legacy .about__container and .about__image rules removed to prevent conflicts with premium .about styling */

.room__grid {
  margin-top: 4rem;
  display: grid;
  gap: 1rem;
}

.room__card {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}

.room__card__image {
  position: relative;
  isolation: isolate;
}

.room__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #800000;
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.room__card__icons {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  z-index: 1;
}

.room__card__icons .room__rating {
  display: inline-flex;
  gap: 2px;
  padding: 4px 12px;
  font-size: 1.2rem;
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  color: #fbbf24;
  /* Golden yellow stars */
}

.room__card__details {
  padding: 1rem;
}

.room__card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.room__card p {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.room__card h5 {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.room__card h5 span {
  font-size: 1.1rem;
  color: var(--text-dark);
}

.service {
  background-image: url("assets/img3.jpeg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.service__container {
  padding-block: 0;
  display: grid;

  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .service__container {
    grid-template-columns: 1fr;
  }
}

.service__content {
  grid-column: 1/3;
  padding: 2rem 4rem;
  background-color: var(--white);
}

@media (max-width: 768px) {
  .service__content {
    grid-column: 1/2;
    padding: 2rem 1.5rem;
  }
}

.service__list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
}

.service__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.service__list span {
  padding: 5px 12px;
  font-size: 1.75rem;
  color: var(--text-dark);
  background-color: var(--text-light);
  border-radius: 100%;
}

.service__list li:nth-child(1) span {
  color: #60a5fa;
  background-color: #dbeafe;
}

.service__list li:nth-child(2) span {
  color: #f472b6;
  background-color: #fce7f3;
}

.service__list li:nth-child(3) span {
  color: #c084fc;
  background-color: #f3e8ff;
}

.service__list li:nth-child(4) span {
  color: #fb7185;
  background-color: #ffe4e6;
}

.banner__container {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("assets/bg1.jpeg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-block: 5rem;
}

.banner__content {
  background-color: var(--white);
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  border-radius: 10px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.banner__card {
  text-align: center;
  flex: 1 1 180px;
}

.banner__card h4 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.banner__card p {
  color: var(--text-light);
}

.explore {
  padding-top: 20px;
}

.explore :is(.section__subheader, .section__header) {
  text-align: center;
  margin-inline: auto;
}

.explore__bg {
  margin-top: 4rem;
  padding-block: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("assets/explore.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.explore__content {
  width: 90%;
  max-width: var(--max-width);
  padding: 2rem;
  background-color: var(--white);
  border-radius: 5px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.explore__content p {
  margin-bottom: 0.5rem;
}

.explore__content h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5rem;
  color: var(--text-dark);
}

.explore__content .btn {
  color: var(--primary-color);
  background-color: var(--white);
  border: 1px solid var(--primary-color);
}

.explore__content .btn:hover {
  color: var(--white);
  background-color: var(--primary-color);
}

.footer {
  background-color: var(--text-dark);
}

.footer__container {
  display: grid;
  gap: 4rem 2rem;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer__container {
    grid-template-columns: 1fr;
    
    gap: 2rem;
  }
   .footer__col {
    text-align: center;
  }

  .footer__logo {
    margin-inline: auto;
  }

  .footer__socials,
  .footer__contact li {
    justify-content: center;
  }

  .footer__col .section__description {
    margin-inline: auto;
  }
}

.footer__col .section__description {
  margin-block: 2rem;
}

.footer__col h4 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
}

.footer__links {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.footer__links a {
  color: var(--text-light);
  transition: 0.3s;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
}

.footer__contact i {
  font-size: 1.1rem;
  color: var(--primary-color);
}

.footer__socials {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__socials img {
  max-width: 25px;
  opacity: 0.8;
  transition: 0.3s;
}

.footer__socials img:hover {
  opacity: 1;
}

.small_foter {
  text-align: center;
  padding: 5px 15px;
  font-size: 18px;
  color: #fff;
  position: relative;
  top: 15px;
}

@media (width > 576px) {
  .room__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width > 768px) {
  .section__header {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .header__container {
    padding-block: 10rem 15rem;
  }

  .header__container p {
    font-size: 1.2rem;
  }

  .header__container h1 {
    font-size: 5rem;
    line-height: 5.5rem;
  }

  .booking__form {
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-50%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 101;
  }

  /* Legacy .about__container media query removed */

  .room__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service__content {
    grid-column: 2/3;
  }

  .footer__container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (width > 1024px) {
  nav {
    padding: 1rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.4s ease;
  }

  .nav__bar {
    padding: 0;
    background-color: transparent;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    padding: 0;
    width: unset;
    position: static;
    transform: none;
    flex-direction: row;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    gap: 1.5rem;
  }

  .nav__btn {
    display: block;
    border-radius: 30px;
  }

  .nav__links a {
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    color: goldenrod;
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  .nav__links a:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .nav__links a::after {
    display: none;
  }

  .nav__links a:hover::after {
    display: none;
  }

  .room__grid {
    gap: 2rem;
  }
}

/* --- GALLERY SECTION --- */

#gallery {
  padding: 5rem 5%;
  background-color: var(--white);
}

.section-tag {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-title em {
  font-style: normal;
  color: #800000;
}

.divider-line {
  width: 60px;
  height: 3px;
  background-color: #800000;
  margin: 0 auto 3rem;
  border-radius: 2px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  /* Better fit for mobile */
  grid-auto-rows: 200px;
  /* Reduced row height for more compact mobile view */
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-auto-rows: 240px;
    gap: 1.5rem;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
}

.gallery-item:first-child {
  grid-row: span 2;
  grid-column: span 1;
}

@media (max-width: 992px) {
  .gallery-item:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.gallery-item-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-bg-1 {
  background: linear-gradient(135deg, #0a3030 0%, #152535 100%);
}

.gallery-bg-2 {
  background: linear-gradient(135deg, #0a2222 0%, #1a7a7a 100%);
}

.gallery-bg-3 {
  background: linear-gradient(135deg, #0a1a20 0%, #2c3e50 100%);
}

.gallery-bg-4 {
  background: linear-gradient(135deg, #8b6010 0%, #d4af37 100%);
}

.gallery-bg-5 {
  background: linear-gradient(135deg, #103030 0%, #1a4a4a 100%);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(232, 37, 116, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.gallery-plus {
  width: 54px;
  height: 54px;
  border: 1px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(20px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  font-weight: 500;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover .gallery-item-inner {
  transform: scale(1.15);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-plus {
  transform: translateY(0) scale(1);
}

.gallery-item:hover .gallery-label {
  transform: translateY(0);
}


/* --- ANIMATIONS AND HOVER EFFECTS --- */

.btn {
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(232, 37, 116, 0.3);
}

.room__card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.room__card:hover {
  transform: translateY(-10px);
  box-shadow: 5px 15px 30px rgba(0, 0, 0, 0.2);
}

.room__card__image {
  overflow: hidden;
}

.room__card__image img {
  transition: transform 0.6s ease;
}

.room__card:hover .room__card__image img {
  transform: scale(1.1);
}

.banner__card {
  transition: transform 0.3s ease;
}

.banner__card:hover {
  transform: scale(1.1);
}

.service__list li {
  transition: transform 0.3s ease, color 0.3s ease;
}

.service__list li:hover {
  transform: translateX(10px);
  color: var(--primary-color);
}

.service__list li:hover span {
  background-color: var(--primary-color);
  color: var(--white);
  transition: 0.3s ease;
}

.explore__content {
  transition: transform 0.4s ease;
}

.explore__content:hover {
  transform: translateY(-10px);
}

/* Floating animation for about image */
@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

/* .about__image img {
  animation: float 4s ease-in-out infinite;
} */

/* Pulse animation for the nav booking button */
@keyframes pulse-btn {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 37, 116, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(232, 37, 116, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(232, 37, 116, 0);
  }
}

/* --- STICKY SOCIAL BAR --- */
.sticky-social-bar {
  position: fixed;
  right: 20px;
  bottom: 80px;
  /* Increased bottom spacing */
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-btn-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-btn {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: rgb(214, 207, 207);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.4rem;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-btn i {
  transition: transform 0.4s ease;
}

.social-label {
  position: absolute;
  right: 60px;
  padding: 8px 16px;
  background-color: var(--text-dark);
  color: grey;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Colors and Hover States */
.social-btn.whatsapp {
  color: #25D366;
}

.social-btn.facebook {
  color: #1877F2;
}

.social-btn.instagram {
  color: #E4405F;
}

.social-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  color: var(--white);
}

.social-btn.whatsapp:hover {
  background-color: #25D366;
}

.social-btn.facebook:hover {
  background-color: #1877F2;
}

.social-btn.instagram:hover {
  background-color: #E4405F;
}

.social-btn:hover i {
  transform: rotate(360deg);
}

.social-btn:hover .social-label {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .sticky-social-bar {
    right: 15px;
    bottom: 60px;
    /* Increased bottom spacing */
    gap: 10px;
    opacity: 0.9;
  }

  .social-btn {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }

  /* Hide labels on mobile to prevent blocking screen */
  .social-label {
    display: none;
  }
}

.nav__btn {
  animation: pulse-btn 2s infinite;
}

/* ============================================================
   ABOUT SECTION — Premium Styles
   Hotel Mahabir Sheraton · about.css
   ============================================================ */

/* ── BASE ── */
.about {
  --ink: #ffffff;
  --ink-soft: #f9f9f9;
  --chalk: #F8F4EE;
  --chalk-dark: #EDE7DB;
  --gold: var(--primary-color);
  --gold-pale: #fbcfe8;
  --gold-dim: var(--primary-color-dark);
  --teal: var(--primary-color-dark);
  --teal-light: var(--primary-color);
  --mist: #7C8080;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Jost', sans-serif;
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.76, 0, 0.24, 1);
  --transition: 0.35s;

  position: relative;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  overflow: hidden;
  background-color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* ── Decorative corner bracket marks ── */
.about::before,
.about::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: rgba(232, 37, 116, 0.35);
  /* Primary pink transparent */
  border-style: solid;
  z-index: 4;
  pointer-events: none;
  transition: border-color 0.4s ease;
}

.about::before {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
}

.about::after {
  bottom: 0;
  right: 0;
  border-width: 0 1px 1px 0;
}

.about:hover::before,
.about:hover::after {
  border-color: rgba(232, 37, 116, 0.6);
}

/* ============================================================
   IMAGE SIDE
   ============================================================ */
.about__image {
  position: relative;
  overflow: hidden;
  min-height: 580px;
}

.about__image-visual {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.about__image-actual {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right-edge fade into content bg */
.about__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 70%, var(--ink) 100%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
}

/* ── Diagonal slash divider ── */
.about__slash {
  position: absolute;
  top: 0;
  right: -1px;
  width: 80px;
  height: 100%;
  background: var(--ink);
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 2;
}

/* ── Floating badge ── */
.about__badge {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  z-index: 3;
  animation: badgeIn 0.9s var(--ease-spring) 0.6s both;
}

.about__badge-inner {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(232, 37, 116, 0.3);
  border-radius: 5px;
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: border-color var(--transition) ease, background var(--transition) ease, transform 0.3s ease;
}

.about__badge-inner:hover {
  border-color: rgba(232, 37, 116, 0.6);
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-5px);
}

.badge-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.badge-text {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  line-height: 1.5;
}

/* ── Vertical rotated label ── */
.about__vert-label {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.15);
  font-family: var(--sans);
  white-space: nowrap;
  z-index: 3;
  user-select: none;
}

/* ── ROTATING LOGO BADGE ── */
.logo-badge {
  position: absolute;
  top: 2rem;
  right: 6rem;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

/* Add a soft glow behind the badge */
.logo-badge::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(128, 0, 0, 0.15) 0%, transparent 75%);
  animation: pulseG 4s ease-in-out infinite;
}

@keyframes pulseG {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

.logo-orbit-scene {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-ring {
  position: absolute;
  border-radius: 50%;
  border: 0.5px solid rgba(128, 0, 0, 0.2);
}

.l-ring-1 {
  width: 118px;
  height: 118px;
  border-style: dashed;
  animation: lspin 30s linear infinite;
}

.l-ring-2 {
  width: 96px;
  height: 96px;
  border-color: rgba(128, 0, 0, 0.1);
}

@keyframes lspin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.l-diamonds {
  position: absolute;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  animation: lspin 30s linear infinite;
}

.l-diamond {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #800000;
  transform: rotate(45deg);
  opacity: 0.7;
}

.l-diamond.t {
  top: -3px;
  left: calc(50% - 3px);
}

.l-diamond.b {
  bottom: -3px;
  left: calc(50% - 3px);
}

.l-diamond.l {
  left: -3px;
  top: calc(50% - 3px);
}

.l-diamond.r {
  right: -3px;
  top: calc(50% - 3px);
}

/* --- CARD SPECIFIC LOGO BADGE --- */
.card-badge {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  width: 70px !important;
  height: 70px !important;
  z-index: 10 !important;
  margin: 0 !important;
}

.card-badge::before {
  inset: -5px !important;
}

.card-badge .logo-orbit-scene {
  width: 70px !important;
  height: 70px !important;
}

.card-badge .l-ring-1 {
  width: 68px !important;
  height: 68px !important;
}

.card-badge .l-ring-2 {
  width: 52px !important;
  height: 52px !important;
}

.card-badge .l-diamonds {
  width: 68px !important;
  height: 68px !important;
}

.card-badge .l-text-orbit {
  width: 58px !important;
  height: 58px !important;
}

.card-badge .l-char-pin {
  width: 58px !important;
  height: 58px !important;
}

.card-badge .l-char-pin span {
  font-size: 5px !important;
  top: -5px !important;
  text-shadow: 0 0 3px rgba(128, 0, 0, 0.3) !important;
}

.card-badge .l-medallion {
  width: 32px !important;
  height: 32px !important;
  padding: 2px !important;
}

.card-badge .l-medallion::before {
  inset: -1px !important;
}

.l-text-orbit {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  animation: lspin 15s linear infinite;
}

.l-char-pin {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  top: 0;
  left: 0;
}

.l-char-pin span {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  color: #800000;
  animation: lspin 15s linear infinite reverse;
  display: inline-block;
  text-shadow: 0 0 5px rgba(128, 0, 0, 0.2);
  letter-spacing: 1px;
}

.l-medallion {
  position: relative;
  z-index: 21;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 4px;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.l-medallion::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(#800000 0deg, #600000 180deg, #800000 360deg);
  animation: lspin 20s linear infinite reverse;
  z-index: -1;
}

.l-medallion img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  display: block;
  background: transparent;
}

/* ============================================================
   CONTENT SIDE
   ============================================================ */
.about__content {
  background: var(--ink);
  padding: 5rem 4.5rem 5rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 3;
}

/* Ambient gradient background on content */
.about__content::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(232, 37, 116, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(232, 37, 116, 0.03) 0%, transparent 50%);
  pointer-events: none;
  transition: opacity 0.6s ease;
}

/* ── Subheader ── */
.about .section__subheader {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #800000;
  font-family: var(--sans);
  margin-bottom: 1.4rem;

  /* JS-driven reveal; initial hidden state */
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section__subheader.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.section__subheader::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.about .section__subheader::after {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: aboutPulse 2s ease-in-out infinite;
}

/* ── Main heading ── */
.about .section__header {
  /* font-family: var(--serif); */
  font-size: clamp(3rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  max-width: 100%;

  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.about .section__header.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.about .section__header em {
  font-style: italic;
  color: #800000;
  display: inline;
}

/* ── Gold divider rule ── */
.about__rule {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1.4rem 0;

  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.about__rule.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.about__rule-line {
  flex: 0 0 48px;
  height: 1px;
  background: var(--gold);
}

.about__rule-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.about__rule-line-long {
  flex: 0 0 24px;
  height: 1px;
  background: rgba(232, 37, 116, 0.3);
}

/* ── Description paragraph ── */
.about .section__description {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.9;
  color: var(--text-light);
  letter-spacing: 1px;
  margin-bottom: 2.2rem;
  max-width: 100%;

  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.about .section__description.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* ── Feature pills ── */
.about__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;

  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.about__features.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.38s;
}

.about__feature {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.45rem 1rem;
  border-radius: 20px;
  font-family: var(--sans);
  cursor: default;
  background: var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition:
    border-color var(--transition) ease,
    color var(--transition) ease,
    background var(--transition) ease,
    box-shadow var(--transition) ease,
    transform 0.25s var(--ease-spring);
}

.about__feature:hover {
  border-color: var(--primary-color);
  color: var(--white);
  background: #800000;
  box-shadow: 0 5px 15px rgba(232, 37, 116, 0.3);
  transform: translateY(-2px);
}

/* ── Stats row ── */
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
  text-align: center;

  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.about__stats.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.about__stat-num {
  font-family: var(--sans);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1;
}

.about__stat-num span {
  color: #800000;
  font-size: 1.5rem;
}

.about__stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  font-family: var(--sans);
}

.about .stat-divider {
  display: none;
}

/* ── CTA buttons ── */
.about__btn {
  display: flex;
  align-items: center;
  gap: 1.5rem;

  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.about__btn.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.52s;
}

/* Primary button — gold with liquid-fill hover */
.about .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  background: #800000;
  border: none;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
  transition: color var(--transition) ease;
}

.about .btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-smooth);
}

.about .btn:hover::before {
  transform: scaleX(1);
}

.about .btn:hover {
  color: white;
}

.about .btn:active {
  transform: scale(0.97);
}

.btn span,
.btn-arrow {
  position: relative;
  z-index: 1;
}

.btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(5px);
}

/* Secondary ghost link */
.about .btn-secondary {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  text-decoration: none;
  transition: color var(--transition) ease;
}

.about .btn-secondary::after {
  content: '';
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: width 0.35s ease;
}

.about .btn-secondary:hover {
  color: var(--primary-color);
}

.about .btn-secondary:hover::after {
  width: 36px;
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */

/* Badge entrance */
@keyframes badgeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Dot pulse on subheader */
@keyframes aboutPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.65);
  }
}

/* Stat counter tick (applied via JS) */
@keyframes countTick {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Shimmer sweep on feature pill (applied via JS on hover) */
@keyframes aboutShimmer {
  from {
    background-position: -200% center;
  }

  to {
    background-position: 200% center;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about__content {
    padding: 4rem 3rem 4rem 3.5rem;
  }
}

@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
  }

  .about__image {
    min-height: 400px;
    /* Increased slightly for better visual balance */
  }

  .about__image::after {
    background: linear-gradient(to bottom, transparent 50%, var(--ink) 100%);
  }

  .about__slash {
    display: none;
  }

  .about__content {
    padding: 3.5rem 2rem;
  }

  .about__stats {
    gap: 1.5rem;
  }

  .logo-badge {
    top: 1.5rem;
    right: 2rem;
    /* Tucked in tighter on tablet */
    transform: scale(0.9);
  }
}

@media (max-width: 480px) {
  .about__content {
    padding: 2.5rem 1.5rem;
  }

  .about__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    /* Slightly more gap */
  }

  .about__stat-num {
    font-size: 1.5rem;
    /* Scaled down for mobile */
  }

  .about__stat-label {
    font-size: 0.6rem;
  }

  .about .section__header {
    font-size: 2rem;
    /* Consistency with other headers */
  }

  .about__badge {
    bottom: 1.5rem;
    left: 1rem;
    transform: scale(0.8);
    transform-origin: left bottom;
  }

  .logo-badge {
    top: 1rem;
    right: 1rem;
    transform: scale(0.7);
    /* Smaller badge for small mobile */
  }

  .about__btn {
    flex-direction: column;
    align-items: stretch;
    /* Full width buttons on mobile */
    gap: 1rem;
  }

  .about .btn {
    width: 100%;
    justify-content: center;
  }
}

/* --- SOCIAL MEDIA SECTION --- */
.socMedia {
  background-image: linear-gradient(rgba(248, 249, 250, 0.85), rgba(248, 249, 250, 0.85)), url('assets/bgsm.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Parallax effect */
  background-repeat: no-repeat;
  position: relative;
}

.socialMed {
  font-family: inherit;
  /* User didn't specify, but Playfair is main site serif */
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.ameMain {
  color: #800000 !important;
}

.socMedia .section-title {
  margin-bottom: 3rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.socMedia svg {
  fill: var(--primary-color);
}

.socMedia .card {
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

.socMedia .card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* --- AMENITIES SECTION --- */
.amenities {
  background-image: url('assets/bgsm.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding-block: 5rem;
}

.amenities__grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.amenity__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding: 2.5rem 2rem;
  background: #fdfdfd;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  transition: all 0.4s ease;
  text-align: center;
}

.amenity__item:hover {
  transform: translateY(-8px);
  background: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--primary-color);
}

.amenity__icon {
  font-size: 2.8rem;
  color: #C9A84C;
  transition: all 0.4s ease;
}

.amenity__item:hover .amenity__icon {
  color: var(--primary-color);
  transform: scale(1.1);
}

.amenity__item span {
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

@media (max-width: 1024px) {
  .amenities__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .amenities {
    padding-block: 3.5rem;
  }

  .amenities__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    /* Tighter gap for mobile */
    margin-top: 2.5rem;
  }

  .amenity__item {
    flex-direction: row;
    padding: 1rem 1.5rem;
    /* Compact padding */
    gap: 1.2rem;
    text-align: left;
    justify-content: flex-start;
  }

  .amenity__icon {
    font-size: 1.8rem;
    /* Scaled down icon */
  }

  .amenity__item span {
    font-size: 0.75rem;
    /* Slightly larger text for row-layout legibility */
  }
}

/* ============================================================
   SERVICES SECTION — Premium Styles
   Hotel Mahabir Sheraton · services.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Outfit:wght@300;400;500&display=swap');

/* ── CSS Variables ── */
:root {
  --bg: #080F0F;
  --bg2: #0D1A1A;
  --bg3: #122020;
  --gold: #C9A84C;
  --gold-light: #F0D080;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --teal: #1A7A7A;
  --teal-light: #2A9D8F;
  --coral: #D4634A;
  --white: #FFFFFF;
  --muted: rgba(255, 255, 255, 0.45);
  --border: rgba(255, 255, 255, 0.07);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}



/* ============================================================
   SECTION WRAPPER
   ============================================================ */
.services {
  position: relative;
  padding: 7rem 5rem 6rem;
  overflow: hidden;
  background: var(--bg);
}

/* ── Ambient background orbs ── */
.services__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.services__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0;
  animation: orbReveal 1.2s var(--ease-out) forwards;
}

.services__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 122, 122, 0.18), transparent 70%);
  top: -150px;
  left: -150px;
  animation-delay: 0.2s;
}

.services__orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12), transparent 70%);
  bottom: -100px;
  right: -100px;
  animation-delay: 0.4s;
}

.services__orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 99, 74, 0.1), transparent 70%);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0.6s;
}

@keyframes orbReveal {
  to {
    opacity: 1;
  }
}

/* ── Decorative grid lines ── */
.services__gridlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.services__header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 5rem;
}

.services__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--sans);
  margin-bottom: 1.2rem;

  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.services__eyebrow.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.services__eyebrow::before,
.services__eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
  flex-shrink: 0;
}

.services__eyebrow::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

.services__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.2rem;

  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.services__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.services__title em {
  font-style: italic;
  color: var(--gold-light);
}

.services__subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.375rem);
  font-weight: 300;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
  /* Reduced slightly for better mobile fit */

  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.services__subtitle.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.services__title br {
  display: block;
}

@media (max-width: 768px) {
  .services__title br {
    display: none;
  }
}

/* Gold rule */
.services__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.4rem auto;
  width: fit-content;

  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.7s ease 0.15s, transform 0.7s var(--ease-out) 0.15s;
}

.services__rule.is-visible {
  opacity: 1;
  transform: scaleX(1);
}

.rule-line {
  width: 50px;
  height: 1px;
  background: var(--gold);
}

.rule-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.rule-line-sm {
  width: 20px;
  height: 1px;
  background: rgba(201, 168, 76, 0.35);
}

/* ============================================================
   SERVICES GRID — Asymmetric bento-style layout
   ============================================================ */
/* ── Slider Container ── */
.services-slider {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem 1rem 5rem !important;
  /* Extra bottom padding for pagination */
  margin-top: 1rem;
}

/* ── Individual service card ── */
.svc-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--bg2);
  cursor: pointer;
  transition:
    border-color 0.4s ease,
    transform 0.5s var(--ease-out),
    box-shadow 0.5s ease;

  height: 480px;
  /* Fixed height for consistency in slider */
  display: flex;
  flex-direction: column;
}

.svc-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out),
    border-color 0.4s ease,
    box-shadow 0.5s ease;
}

/* Responsive sizing for Swiper slides */
.services-slider .swiper-slide {
  width: 400px;
  max-width: 85%;
}

@media (max-width: 768px) {
  .services-slider .swiper-slide {
    width: 320px;
  }
}

/* Pagination Styling */
.services-slider .swiper-pagination-bullet {
  background: var(--gold);
  opacity: 0.3;
}

.services-slider .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}

/* ── Card visual (SVG illustration area) ── */
.svc-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 0.7s var(--ease-out);
}

.svc-card:hover .svc-visual {
  transform: scale(1.04);
}

.svc-visual svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ── Gradient overlay on card ── */
.svc-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top,
      rgba(8, 15, 15, 0.97) 0%,
      rgba(8, 15, 15, 0.6) 45%,
      rgba(8, 15, 15, 0.15) 100%);
  transition: background 0.5s ease;
}

.svc-card:hover .svc-overlay {
  background: linear-gradient(to top,
      rgba(8, 15, 15, 0.98) 0%,
      rgba(8, 15, 15, 0.65) 50%,
      rgba(8, 15, 15, 0.2) 100%);
}

/* ── Card content ── */
.svc-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.8rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Service number */
.svc-num {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.15em;
  opacity: 0.7;
  margin-bottom: 0.2rem;
}

/* Icon container */
.svc-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.4s var(--ease-spring);
}

.svc-card:hover .svc-icon {
  background: rgba(201, 168, 76, 0.22);
  border-color: rgba(201, 168, 76, 0.5);
  transform: scale(1.1) rotate(-5deg);
}

.svc-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Service name */
.svc-name {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 4vw, 1.375rem);
  /* Responsive card title */
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

/* Service description — visible by default */
.svc-desc {
  font-size: clamp(0.9rem, 3vw, 1.125rem);
  /* Responsive card desc */
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  opacity: 1;
  transform: translateY(0);
  transition: color 0.4s ease;
}

.svc-card:hover .svc-desc {
  color: rgba(255, 255, 255, 0.75);
}

/* ── "Explore" CTA link ── */
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 0.4rem;
  opacity: 1;
  transform: translateX(0);
  transition: color 0.3s;
}

.svc-card:hover .svc-link {
  color: var(--gold-light);
}

.svc-link:hover {
  color: var(--gold-light);
}

.svc-link svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

.svc-link:hover svg {
  transform: translateX(4px);
}

/* ── Corner accent lines (top-right) ── */
.svc-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-top: 1px solid rgba(201, 168, 76, 0);
  border-right: 1px solid rgba(201, 168, 76, 0);
  z-index: 3;
  transition: border-color 0.4s ease, width 0.4s ease, height 0.4s ease;
}

.svc-card:hover .svc-corner {
  border-color: rgba(201, 168, 76, 0.5);
  width: 55px;
  height: 55px;
}

/* ── Tag badge on featured card ── */
.svc-tag {
  position: absolute;
  top: 1.2rem;
  left: 1.4rem;
  z-index: 3;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  font-family: var(--sans);
}

/* ============================================================
   BOTTOM STRIP — Quick service icons row
   ============================================================ */
.services__strip {
  position: relative;
  z-index: 2;
  margin-top: 2.5rem;
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;

  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}

.services__strip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.strip-item {
  flex: 1;
  padding: 1.4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
  background: var(--bg2);
  transition: background 0.3s ease;
  cursor: default;
}

.strip-item:last-child {
  border-right: none;
}

.strip-item:hover {
  background: var(--bg3);
}

.strip-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.strip-icon svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.strip-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
}

/* ============================================================
   ANIMATIONS — stagger delay helpers
   ============================================================ */
.svc-card--1 {
  transition-delay: 0.05s;
}

.svc-card--2 {
  transition-delay: 0.12s;
}

.svc-card--3 {
  transition-delay: 0.19s;
}

.svc-card--4 {
  transition-delay: 0.26s;
}

.svc-card--5 {
  transition-delay: 0.33s;
}

.svc-card--6 {
  transition-delay: 0.40s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services {
    padding: 5rem 3rem;
  }
}

@media (max-width: 900px) {
  .services {
    padding: 4rem 2rem;
  }

  .svc-desc {
    max-height: 80px;
    opacity: 1;
    transform: none;
  }

  .svc-link {
    opacity: 1;
    transform: none;
  }

  .services__strip {
    flex-wrap: wrap;
  }

  .strip-item {
    flex: 0 0 33.333%;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 600px) {
  .services {
    padding: 4rem 1.2rem 3rem;
  }

  .svc-card {
    height: 400px;
    /* Adjusted height for mobile sliders */
  }

  .strip-item {
    flex: 0 0 50%;
  }

  .services__title {
    font-size: 2rem;
  }

  .services__header {
    margin-bottom: 2.5rem;
  }
}

/* --- FRAUD ALERT POPUP --- */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  position: relative;
  width: 90%;
  max-width: 500px;
  background: #1a1a1a;
  background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('assets/Hotel.jpeg');
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.popup-overlay.show .popup-content {
  transform: scale(1);
}

.popup-close-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  background: #ff3b30;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  z-index: 10;
}

.popup-close-btn:hover {
  transform: scale(1.1) rotate(90deg);
}

.popup-header {
  margin-bottom: 25px;
}

.header-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.fraud-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
}

.warning-icon {
  font-size: 2.5rem;
  color: #ffcc00;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.title-divider {
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
  margin-top: 10px;
}

.hotel-name {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 20px;
  font-weight: 500;
}

.fraud-message {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 25px;
  border-left: 5px solid #ff3b30;
}

.booking-notice {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.or-separator {
  margin: 15px 0;
  position: relative;
}

.or-separator span {
  background: #1a1a1a;
  padding: 0 10px;
  position: relative;
  z-index: 2;
  color: #999;
}

.or-separator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.contact-title {
  color: #ffcc00;
  font-weight: 600;
  margin-bottom: 5px;
}

.phone-numbers {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.popup-url {
  display: inline-block;
  color: #fff;
  text-decoration: underline;
  opacity: 0.7;
  font-size: 0.9rem;
  transition: opacity 0.3s;
}

.popup-url:hover {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .popup-content {
    padding: 30px 20px;
  }

  .fraud-title {
    font-size: 1.8rem;
  }

  .phone-numbers {
    font-size: 1rem;
  }
}

/* --- BOOKING MODAL --- */
.booking-modal-content {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #000000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
}

.booking-modal-content .modal-title {
  color: #000000;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.booking-modal-form label {
  color: #555;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.booking-modal-form .form-control,
.booking-modal-form .form-select {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  color: #000000 !important;
  padding: 0.7rem 1rem;
  border-radius: 10px;
}

.booking-modal-form .form-control:focus,
.booking-modal-form .form-select:focus {
  background: #ffffff;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(232, 37, 116, 0.15);
}

.booking-modal-form .form-control::placeholder {
  color: #999;
}

.booking-modal-form input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}

.booking-submit-btn {
  background-color: var(--primary-color);
  border: none;
  padding: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 10px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.booking-submit-btn:hover {
  background-color: var(--primary-color-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(232, 37, 116, 0.3);
}

#booking-alert.success {
  background: rgba(40, 167, 69, 0.15);
  color: #4ade80;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

#booking-alert.error {
  background: rgba(220, 53, 69, 0.15);
  color: #f87171;
  border: 1px solid rgba(220, 53, 69, 0.3);
}