/* RESET */
:root {
  --gold: #b99747;
  --dark-gray: #3e3e3e;
  --muted: #555;
  --max-width: 1200px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 35px;
  font-family: "Playfair Display", serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 30px;
}

/* HEADER */
.hotel-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 50px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.hotel-header--transparent {
  background: #180806;
}

.hotel-header--transparent .hotel-nav a {
  color: white;
}

.hotel-header--scrolled {
  background: #180806;
  border-bottom: 1px solid #b48c2f;
}

.hotel-header--scrolled .hotel-nav a,
.hotel-header--scrolled .hotel-logo,
.hotel-header--scrolled .hotel-book-btn {
  color: #9b7728;
}

.hotel-header--scrolled .hotel-book-btn {
  background: #b48c2f;
}

/* LOGO */
.hotel-logo img {
  height: 65px;
  width: auto;
  display: block;
}

/* NAVIGATION */
.hotel-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
}

.hotel-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

/* BOOK BUTTON */
.hotel-book-btn {
  padding: 12px 25px;
  border: none;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  text-transform: uppercase;
  background: #b48c2f;
  color: white;
}

/* BOOKING FORM DROPDOWN */
.hotel-book-form-wrapper {
  position: relative;
}

.hotel-book-form {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 0px;
  padding: 20px;
  width: 320px;
  z-index: 2000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hotel-book-form h2 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #9b7728;
}

.hotel-book-form input,
.hotel-book-form select {
  width: 100%;
  padding: 10px;
  margin: 6px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.hotel-book-form button {
  background: #b48c2f;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
  margin-top: 10px;
  width: 100%;
}

/* MENU TOGGLE (Mobile) */
.hotel-menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: white;
}

/* WHATSAPP BUTTON */
.hotel-whatsapp-btn {
  position: fixed;
  bottom: 35px;
  height: 60px;
  width: 60px;
  right: 20px;
  background: #9b7728;
  color: white;
  padding: 15px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  text-decoration: none;
  display: flex;              /* 👈 add */
  align-items: center;        /* 👈 add */
  justify-content: center;    /* 👈 add */
}
.hotel-whatsapp-btn i{
  font-size: 28px;
}
/* Responsive Header */
@media (max-width: 768px) {
  .hotel-header {
    flex-wrap: wrap;
    padding: 18px 20px;
  }

  .hotel-logo {
    flex: 1;
  }

  .hotel-menu-toggle {
    display: block;
    font-size: 26px;
    cursor: pointer;
    color: white;
    margin-left: auto;
  }

  .hotel-header--scrolled .hotel-menu-toggle {
    color: #b48c2f;
  }

  .hotel-nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    background: #111;
    padding: 15px 20px;
    display: none;
  }

  .hotel-nav.active {
    display: flex;
  }

  .hotel-nav a {
    color: white;
    padding: 10px 0;
    font-size: 14px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hotel-book-form-wrapper {
    width: auto;
    margin-left: 15px;
  }

  .hotel-book-btn {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    background-color: #b48c2f;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
  }

  .hotel-book-form {
    position: static;
    width: 100%;
    margin-top: 10px;
    box-shadow: none;
    border: 1px solid #ccc;
    border-radius: 0;
  }

  /* Arrange logo, book btn, toggle in one row */
  .hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

/* ====== GANGA BANNER ====== */
.ganga-banner-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-top: 100px; /* â¬… Adjust according to your header height */
}

.ganga-slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.ganga-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.ganga-slide.ganga-active {
  opacity: 1;
  z-index: 1;
}

/* Overlay */
.ganga-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  justify-content: center;
  align-items: center;
}

.ganga-banner-overlay h1 {
  color: #fff;
  font-size: 48px;
  font-family: "Playfair Display", serif;
  text-align: center;
  letter-spacing: 1px;
}

/* Navigation Buttons */
.ganga-prev-btn,
.ganga-next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  color: black;
  font-size: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.8;
  transition: all 0.3s ease;
  z-index: 10;
}

.ganga-prev-btn:hover,
.ganga-next-btn:hover {
  opacity: 1;
  background: #f5f5f5;
}

.ganga-prev-btn {
  left: 30px;
}

.ganga-next-btn {
  right: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .ganga-banner-overlay h1 {
    font-size: 28px;
    padding: 0 20px;
  }

  .ganga-prev-btn,
  .ganga-next-btn {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
  .ganga-banner-section {
    width: 100vw !important;      /* Full viewport width */
    margin-left: calc(50% - 50vw) !important; /* Remove container side gaps */
    margin-right: 0 !important;
    padding: 0 !important;
    height: 60vh; /* Adjust height for mobile */
  }

  .ganga-slider-container,
  .ganga-slide {
    width: 100vw !important;
    height: 100% !important;
    left: 0 !important;
  }
}

@media (max-width: 480px) {
  .ganga-banner-section {
    height: 45vh; /* Smaller height for phones */
  }
}


/* ===== COMMON HEADING STYLE ===== */
.hotel-section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;
  margin-bottom: 15px;
}

.hotel-heading-title {
  font-size: 38px;
  letter-spacing: 1px;
  color: #3e3e3e;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  margin: 0;
}

.hotel-line-left,
.hotel-line-right {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background-color: #b99747;
}

/* Paragraph below heading */
.hotel-heading-subtext {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hotel-heading-title {
    font-size: 28px;
  }
  .hotel-line-left,
  .hotel-line-right {
    max-width: 50px;
  }
}

/* Banner end */

/* About Banner Section */
.about-banner {
  position: relative;
  width: 100%;
  height: 90vh;
  background: url("../img/ganga-img.avif") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Left align for desktop */
  overflow: hidden;
}

/* Dark Overlay */
.about-banner-overlay {
  background: rgba(0, 0, 0, 0.35);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Left for desktop */
  padding-left: 8%; /* Add left padding for spacing */
}

/* Content */
.about-banner-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 210px;
  gap: 20px;
  text-align: left;
  font-family: "Playfair Display", serif;
}

.about-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

/* Decorative Lines */
.about-line-left,
.about-line-right {
  display: inline-block;
  width: 60px;
  height: 2px;
  background-color: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}

/* -------- Responsive -------- */
@media (max-width: 768px) {
  .about-banner {
    height: 45vh;
    justify-content: center; /* Center in mobile */
  }

  .about-banner-overlay {
    justify-content: center; /* Center content */
    padding-left: 0;
  }

  .about-banner-content {
    justify-content: center;
    text-align: center;
  }

  .about-title {
    font-size: 2.2rem;
  }

  .about-line-left,
  .about-line-right {
    width: 40px;
  }
}

@media (max-width: 480px) {
  .about-banner {
    height: 40vh;
  }
  .about-banner-content {
    margin-bottom: 150px;
  }

  .about-title {
    font-size: 1.5rem;
  }

  .about-line-left,
  .about-line-right {
    width: 30px;
  }
}

/* banner form */
/* ====== MAIN STRIP ====== */
.booking-strip {
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 25px 0;
  display: flex;
  justify-content: center;
}

.booking-form-box {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 15px;
  width: 90%;
  max-width: 1200px;
}

.booking-input-area {
  flex: 1;
  min-width: 200px;
}

.booking-input-area input {
  width: 100%;
  padding: 18px 14px;
  font-size: 15px;
  border: 1px solid #57585b;
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s ease;
}

.booking-input-area input:focus {
  border-color: #b48c2f;
  background: #fff;
}

.booking-btn-wrap {
  flex: 0 1 160px;
}

.booking-btn-wrap button {
  width: 100%;
  height: 60px;
  background: #b48c2f;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: 0.3s background;
}

.booking-btn-wrap button:hover {
  background: #9f7a23;
}

.booking-divider {
  width: 100%;
  height: 1.1px;
  background: #57585b;
  margin-top: -2px;
  margin-bottom: 20px;
}

/* ====== HIDE ON MOBILE ====== */
@media (max-width: 768px) {
  .booking-strip,
  .booking-divider {
    display: none !important;
  }
}

/* ====== ABOUT US ======  */

.hotel-pride-section {
  max-width: 100%;
  margin: 0 auto;
  padding: 50px 20px;
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--dark-gray, #333);
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hotel-pride-container {
  padding-left: 125px;
  padding-right: 125px;
}

/* Heading */
.hotel-section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.hotel-heading-title {
  font-size: 36px;
  font-weight: bold;
  color: #333;
}

.hotel-line-left,
.hotel-line-right {
  flex: 1;
  height: 2px;
  background-color: var(--gold, #d4af37);
  max-width: 60px;
}

/* Main content row */
.hotel-pride-content {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  text-align: left;
  flex-wrap: wrap;
}

/* Image box */
.hotel-pride-image-wrap {
  flex: 1 1 500px;
  max-width: 500px;
  height: 400px;
  overflow: hidden;
  border: 4px solid var(--gold, #d4af37);
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.hotel-pride-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text block */
.hotel-pride-text {
  flex: 1 1 500px;
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}

/* ===========================
   âœ… NEW breakpoint for 14-inch screens (~1366px)
============================== */
@media (max-width: 1366px) {
  .hotel-pride-container {
    padding-left: 80px;
    padding-right: 80px;
  }

  .hotel-pride-content {
    gap: 30px;
  }

  /*.hotel-pride-image-wrap {*/
  /*  max-width: 450px;*/
  /*  height: 360px;*/
  /*}*/

  .hotel-pride-text {
    font-size: 17px;
  }

  .hotel-heading-title {
    font-size: 32px;
  }
}

/* ===========================
   âœ… Existing breakpoints
============================== */
@media (max-width: 1024px) {
  .hotel-pride-container {
    padding-left: 60px;
    padding-right: 60px;
  }

  .hotel-heading-title {
    font-size: 30px;
  }

  .hotel-pride-text {
    font-size: 17px;
  }

  /*.hotel-pride-image-wrap {*/
  /*  height: 350px;*/
  /*}*/
}

@media (max-width: 768px) {
  .hotel-pride-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .hotel-pride-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hotel-pride-text {
    text-align: center;
    font-size: 16px;
    margin-top: 0;
  }

  .hotel-pride-image-wrap {
    flex: none !important; /* ðŸ‘ˆ Yeh zaroori hai */
    height: 200px !important;
    max-width: 100% !important;
  }

  .hotel-pride-image-wrap img {
    height: 200px !important;
    object-fit: cover;
  }

  .hotel-heading-title {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .hotel-pride-section {
    padding: 20px 0px;
  }
  .hotel-pride-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hotel-pride-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .hotel-heading-title {
    font-size: 22px;
  }

  /*.hotel-pride-image-wrap {*/
  /*  height: 220px;*/
  /*}*/
}


/* About end */

/* ====== ROOMS SECTION ====== */
.roompress-section {
  padding: 60px 0px;
}

.roompress-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.hotel-section-heading {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.hotel-heading-title {
  font-size: 34px;
  color: #b48c2f;
  letter-spacing: 1px;
}

.hotel-heading-subtext {
  text-align: center;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.roompress-slider {
  position: relative;
  padding: 20px 0;
}

.roompress-card {
  background: #fff;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roompress-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.roompress-image-container {
  position: relative;
  overflow: hidden;
}

.roompress-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.roompress-image:hover {
  transform: scale(1.05);
}

.gallery-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 50%;
  object-fit: contain;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.room-info {
  padding: 20px;
}

.room-title h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #333;
}

.room-desc {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.room-price {
  margin-top: 15px;
  color: #b48c2f;
  font-size: 16px;
  font-weight: bold;
}

.room-btn {
  margin-top: 15px;
}

.room-btn button {
  background-color: #b48c2f;
  color: #fff;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.room-btn button:hover {
  background-color: #9f7a23;
}

.custom-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.custom-popup.active {
  display: flex;
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}

.popup-content {
  position: relative;
  z-index: 10;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 8px;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 32px;
  color: #333;
  cursor: pointer;
}


/* ===== SWIPER BUTTONS ===== */
/* .swiper-button-next,
.swiper-button-prev {
  color: #b48c2f;
} */

.arrow-button {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
  z-index: 10;
  cursor: pointer;
  transition: background 0.3s ease;
}

.arrow-button span {
  font-size: 24px;
  color: black;
  font-weight: 500;
  transition: transform 0.2s;
}

.arrow-button:hover {
  background-color: #f2f2f2;
}

.arrow-prev {
  left: 20px;
}

.arrow-next {
  right: 20px;
}

@media (max-width: 768px) {
  .arrow-prev  {
    left: 5px;
    top: 200px;
  }
  .arrow-next {
    right: 5px;
    top: 200px;
  }
}

/* ===== IMAGE MODAL ===== */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}

.image-modal img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

.close-modal {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
}

/* ===== BOOK NOW FORM ===== */
.booknow-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.booknow-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 0px;
  width: 90%;
  max-width: 420px;
  position: relative;
  animation: fadeIn 0.3s ease;
}
.booknow-content select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 0px;
  font-family: inherit;
  font-size: 14px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.booknow-content h2 {
  margin-bottom: 20px;
  color: #b48c2f;
  text-align: center;
}

.booknow-content label {
  font-size: 14px;
  color: #333;
  display: block;
  margin-bottom: 5px;
}

.booknow-content input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 0px;
}

.booknow-content button {
  width: 100%;
  background: #b48c2f;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.booknow-content button:hover {
  background: #9f7a23;
}

.close-booknow {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
  color: #555;
}

.close-booknow:hover {
  color: #b48c2f;
}

@media (max-width: 768px) {
  .roompress-section {
    padding: 0px 0px;
  }
  .roompress-image {
    height: 300px;
  }
}

/* Rooms Details */

/* .popup-room-btn {
      background-color: #3d3d3d;
      color: white;
      border: none;
      padding: 10px 20px;
      cursor: pointer;
      border-radius: 4px;
      font-size: 16px;
      transition: background 0.3s;
    }

    .popup-room-btn:hover {
      background-color: #000;
    } */

/* Popup Background */
.popup-room-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow: auto;
}

/* Modal Content */
.popup-room-content {
  background-color: #fff;
  max-width: 900px;
  width: 100%;
  border-radius: 0px;
  position: relative;
  padding: 40px 50px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  animation: popupSlide 0.3s ease;
}

@keyframes popupSlide {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Close Button */
.popup-room-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: color 0.3s;
}

.popup-room-close:hover {
  color: #000;
}

.popup-room-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.popup-room-text {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.popup-room-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 20px;
}

.popup-room-icons div {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #333;
  gap: 8px;
}

.popup-room-icons i {
  color: #b8860b;
}

.popup-room-features {
  list-style: none;
  padding-left: 0;
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}

.popup-room-features li::before {
  content: "â€¢ ";
  color: #b8860b;
  font-weight: bold;
}

hr.popup-room-line {
  border: none;
  border-top: 1px solid #ddd;
  margin: 25px 0;
}

.popup-room-services-title {
  font-weight: bold;
  color: #999;
  font-size: 15px;
  margin-bottom: 10px;
}

.popup-room-services {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  font-size: 15px;
  color: #333;
  list-style-type: disc;
}

@media (max-width: 768px) {
  .popup-room-content {
    padding: 25px 20px;
  }

  .popup-room-title {
    font-size: 18px;
  }

  .popup-room-icons {
    gap: 15px;
  }

  .popup-room-btn {
    width: 42%;
  }
}

/* Room section end */

/* ===== GALLERY SECTION ===== */
.rooms-gallery {
  text-align: center;
  padding: 50px 20px;
  background-color: #f9f9f9;
  font-family: "Playfair Display", serif;
}

.hotel-section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.hotel-heading-title {
  font-size: 32px;
  color: #333;
  font-weight: bold;
}

.hotel-line-left,
.hotel-line-right {
  flex: 1;
  height: 2px;
  background-color: #d4af37;
  max-width: 60px;
}

.hotel-heading-subtext {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
}

.room-card {
  width: 100%;
  height: 250px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.room-card:hover {
  transform: scale(1.03);
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

/* ===== POPUP STYLE ===== */
.custom-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.custom-popup.active {
  display: flex;
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}

.popup-content {
  position: relative;
  z-index: 10;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 8px;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 32px;
  color: #333;
  cursor: pointer;
  z-index: 20;
}

/* ===== LIGHTBOX POPUP ===== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  animation: fadeIn 0.3s ease;
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .rooms-gallery {
    padding: 4px 20px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Amenities */

.hotel-amenities-section {
  max-width: 100%;
  /* margin: 60px auto; */
  /* padding: 0 20px; */
  text-align: center;
  font-family: "Georgia", "Times New Roman", serif;
}

.hotel-section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.hotel-heading-title {
  font-size: 1.5rem;
  color: #333;
  font-weight: bold;
}

.hotel-line-left,
.hotel-line-right {
  flex: 1;
  height: 2px;
  background-color: #ad8b3a;
  max-width: 50px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  justify-content: center;
}

/* Smaller card width */
.amenity-card {
  background: #fafafa;
  padding: 15px 10px;
  border-radius: 0px;
  width: 90%;
  margin: 0 auto;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.amenity-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  filter: invert(58%) sepia(34%) saturate(1223%) hue-rotate(2deg)
    brightness(94%) contrast(90%);
}

.amenity-card h3 {
  font-size: 16px;
  color: #3e3e3e;
  margin: 0;
  font-weight: 600;
}

/* Responsive */

@media (max-width: 992px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenity-card {
    width: 100%; /* Full width for tablets */
  }
}

@media (max-width: 600px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .amenity-icon {
    width: 60px;
    height: 60px;
  }

  .amenity-card {
    width: 100%;
  }

  .amenity-card h3 {
    font-size: 14px;
  }
}
/* Amenities end */

/* Information Section */

/* ----------- Section Wrapper ----------- */
section.hotel-info {
  padding: 60px 20px;
  background: #f5f5f5;
  font-family: 'DM Sans', sans-serif;
  color: #57585b;
  font-size: 16px;
}

.hotel-wrapper {
  max-width: 90%;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #d9cfc2;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.hotel-section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.hotel-heading-title {
  font-size: 28px;
  color: #7b5e47;
  letter-spacing: 1px;
  font-weight: 700;
}

.info-row {
  display: flex;
  border-top: 1px solid #ccc;
  padding-top: 30px;
  gap: 40px;
  flex-wrap: wrap;
}

.info-column {
  flex: 1;
  min-width: 260px;
  border-left: 1px solid #d9cfc2;
  padding-left: 20px;
}

.info-column:first-child {
  border-left: none;
  padding-left: 0;
}

.info-section {
  margin-bottom: 25px;
}

.section-title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 12px;
  color: #5a3e24;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  line-height: 1.5;
  word-break: break-word;
}

.info-item img {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  margin-top: 2px;
  filter: brightness(0) saturate(100%) invert(34%) sepia(18%) saturate(900%) hue-rotate(3deg) brightness(95%) contrast(85%);
}

.section-divider {
  height: 1px;
  background: #d9cfc2;
  margin: 18px 0;
}

.info-small {
  font-size: 16px;
}

.factsheet-link {
  text-align: center;
  margin-top: 30px;
}

.factsheet-link a {
  text-decoration: none;
  color: #7b5e47;
  font-weight: 600;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.factsheet-link img {
  width: 16px;
  vertical-align: middle;
  margin-right: 6px;
}

/* âœ… Mobile Responsive Improvements */
@media (max-width: 768px) {
  section.hotel-info {
    padding: 40px 10px;
  }

  .hotel-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 20px;
  }

  .hotel-heading-title {
    font-size: 20px;
  }

  .info-row {
    flex-direction: column;
    gap: 25px;
    padding-top: 20px;
  }

  .info-column {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #d9cfc2;
    padding-top: 15px;
  }

  .info-column:first-child {
    border-top: none;
    padding-top: 0;
  }

  .info-item {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .info-item img {
    width: 16px;
    height: 16px;
  }

  .section-title {
    font-size: 18px;
  }

  .factsheet-link a {
    font-size: 16px;
  }
}

/* âœ… For very small phones (under 480px) */
@media (max-width: 480px) {
  .hotel-wrapper {
    padding: 15px;
  }

  .hotel-heading-title {
    font-size: 28px;
  }

  .info-item {
    flex-direction: row;
    align-items: center;
  }

  .info-item img {
    width: 15px;
    height: 15px;
  }

  .section-title {
    font-size: 17px;
  }
}


/* EXCLUSIVELY FOR YOU */
section.custom-slider-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  transition: background-image 0.6s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.custom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.custom-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1000px;
  color: white;
  text-align: center;
  padding: 60px 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.custom-inner h2 {
  font-size: 45px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.custom-inner h2 strong {
  font-weight: 900;
}

.custom-inner p {
  font-size: 18px;
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.custom-card-container {
  position: relative;
  width: 90%;
  max-width: 520px;
  margin: 0 auto;
  z-index: 3;
}

.custom-card {
  background: #fff;
  color: #000;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: none;
  transition: all 0.5s ease-in-out;
}

.custom-card.active {
  display: block;
}

.custom-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.custom-card .body {
  padding: 20px;
}

.custom-card .body h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.custom-card .body p {
  font-size: 16px;
  color: #444;
  margin-bottom: 10px;
  line-height: 1.4;
}

.custom-card .body .caption {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}

.custom-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}

.custom-arrow-btn:hover {
  background: #fff;
}

.custom-arrow-btn.left {
  left: 20px;
}

.custom-arrow-btn.right {
  right: 20px;
}

/* ========== Medium Screens (Laptops 1366px) ========== */
@media screen and (max-width: 1366px) {
  .custom-inner h2 {
    font-size: 32px;
    letter-spacing: 1px;
  }

  .custom-inner p {
    font-size: 16px;
    max-width: 600px;
  }

  .custom-card-container {
    max-width: 480px;
  }

  .custom-card .body {
    padding: 15px;
  }

  .custom-card .body h3 {
    font-size: 20px;
  }

  .custom-card .body p {
    font-size: 15px;
  }

  .custom-card .body .caption {
    font-size: 13px;
  }

  .custom-arrow-btn {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
}

/* ========== Mobile & Tablet Fix ========== */
/* âœ… Final Mobile Overlap Fix (Keep layout same) */
@media (max-width: 768px) {
  section.custom-slider-section {
    height: auto !important; /* allow section to grow naturally */
    min-height: 100vh; /* still covers screen */
    padding-top: 100px; /* extra breathing space at top */
    padding-bottom: 100px; /* extra space at bottom */
  }

  .custom-inner {
    height: auto !important;
    justify-content: flex-start !important;
    padding-top: 0;
  }

  .custom-card-container {
    margin-top: 40px; /* add gap between text and card */
  }

  .custom-card img {
    height: auto;
  }
}




/* Contact us  start */

/* Section */
.contact-section-main {
  padding: 60px 20px;
  background: #f8f5ef;
}

/* Heading */
.contact-heading-main {
  text-align: center;
  font-size: 1.5rem;
  color: #3d3d3d;
  letter-spacing: 1px;
  font-weight: 600;
  position: relative;
  margin-bottom: 40px;
}
.contact-heading-main span {
  display: inline-block;
  width: 60px;
  height: 1px;
  background-color: #c1b47a;
  margin: 0 15px;
  vertical-align: middle;
}

/* Info Row */
.contact-info-wrapper {
  background: #f7f4ef;
  border-radius: 0px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 30px 10px;
  margin-bottom: 40px;
}

.contact-info-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
  padding: 10px 20px;
}

.contact-info-item i {
  font-size: 1.8rem;
  color: #b48c2f;
  margin-bottom: 10px;
}

.contact-info-item p {
  font-size: 21px;
  line-height: 1.5;
}

.contact-info-item a {
  color: inherit;
  text-decoration: none;
}

/* Form + Map */
.contact-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.contact-form-box,
.contact-map-box {
  background: #fff;
  border-radius: 0px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  flex: 1 1 420px;
  padding: 30px;
}

.contact-form-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #3d3d3d;
}

.contact-form-desc {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.contact-form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.contact-form-row input,
.contact-form-row select,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 0px;
  font-family: "Playfair Display", serif;
}

.contact-form textarea {
  height: 80px;
  resize: none;
  margin-bottom: 10px;
}

.contact-checkbox {
  display: flex;
  align-items: center;
  font-size: 18px;
  margin-bottom: 15px;
}

.contact-submit-btn {
  background-color: #7b6137;
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 0px;
  cursor: pointer;
  font-family: "Playfair Display", serif;
}

.contact-submit-btn:hover {
  background-color: #5f4a2b;
}

.contact-map-box iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .contact-heading-main span {
    width: 40px;
  }

  .contact-content-wrapper {
    flex-direction: column;
  }
}

/* Contact us  end */

/* ========== FOOTER SECTION ========== */
.custom-footer {
  background: #180806;
  color: #e0e0e0;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
  width: auto;
}

.custom-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: .1px;
  background: linear-gradient(90deg, #d4af37, #f4d03f, #d4af37);
}

/* Layout */
.footer-wrapper {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  padding: 60px 20px 40px;
}

/* Logo & Contact */
.footer-contact {
  padding-right: 20px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 25px;
  filter: brightness(1.1);
}

.footer-tagline {
  color: #d4af37;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.footer-contact-item:hover {
  transform: translateX(5px);
}

.footer-contact-item i {
  color: #d4af37;
  font-size: 16px;
  margin-right: 12px;
  margin-top: 3px;
  min-width: 20px;
}

.footer-phone {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.footer-email,
.footer-address {
  font-size: 14px;
  color: #b8b8b8;
  line-height: 1.6;
}

/* Headings */
.footer-links h4,
.footer-services h4,
.footer-newsletter h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
  font-family: "Playfair Display", serif;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-newsletter h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, transparent);
}

/* Quick Links */
.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 2px;
}

.footer-links a {
  color: #b8b8b8;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.footer-links a::before {
  content: "â€º";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: #d4af37;
  padding-left: 20px;
}

.footer-links a:hover::before {
  transform: translateX(5px);
}

/* Services */
.footer-services ul {
  list-style: none;
}

.footer-services li {
  margin-bottom: 12px;
  color: #b8b8b8;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.footer-services li i {
  color: #d4af37;
  margin-right: 10px;
  font-size: 12px;
}

/* Newsletter */
.footer-newsletter p {
  font-size: 14px;
  color: #b8b8b8;
  margin-bottom: 20px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.newsletter-form:focus-within {
  border-color: #d4af37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  border: none;
  background: transparent;
  color: #fff;
  outline: none;
  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: #888;
}

.newsletter-form button {
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  border: none;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #1a1a2e;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: linear-gradient(135deg, #f4d03f, #d4af37);
  transform: scale(1.05);
}

/* Social Icons */
.footer-social {
  margin-top: 20px;
}

.footer-social h5 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 500;
}

.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8b8b8;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.social-icons a:hover {
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  color: #1a1a2e;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 20px;
  margin-top: 40px;
  background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright {
  color: #888;
  font-size: 14px;
}

.copyright a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

.copyright a:hover {
  color: #f4d03f;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #888;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #d4af37;
}

/* Responsive for tablets and mobile */
@media (max-width: 768px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-contact {
    padding-right: 0;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

/* ========== 14-INCH SCREEN (MAX-WIDTH: 1440px) MEDIA QUERY ========== */
/* ========== 14â€‘inch screens / laptops â‰ˆ up to 1440px ========== */
/* ===== 14-inch laptop screens (width: 1366px) ===== */
@media screen and (max-width: 1366px) {
  .custom-footer {
    font-size: 0.9rem;
  }

  .footer-wrapper {
    padding: 40px 20px;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .footer-logo {
    width: 140px;
  }

  .footer-tagline {
    font-size: 13px;
  }

  .footer-contact-item i {
    font-size: 14px;
    margin-right: 10px;
  }

  .footer-phone {
    font-size: 16px;
  }

  .footer-email,
  .footer-address {
    font-size: 13px;
  }

  .footer-links h4,
  .footer-services h4,
  .footer-newsletter h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .footer-links a,
  .footer-services li {
    font-size: 13px;
  }

  .footer-links a {
    padding-left: 12px;
  }

  .footer-links a:hover {
    padding-left: 16px;
  }

  .newsletter-form input[type="email"] {
    font-size: 13px;
    padding: 12px 16px;
  }

  .newsletter-form button {
    font-size: 14px;
    padding: 0 18px;
  }

  .social-icons a {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .footer-bottom {
    padding: 20px;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-bottom-links a,
  .copyright {
    font-size: 13px;
  }
}
.footer-contact-item {
  margin-bottom: 12px;
}

/* Remove blue underline and align icon + text properly */
.footer-contact-link {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  color: #fff !important;
  gap: 10px;
  line-height: 1.4;
}

.footer-contact-link:hover {
  color: #ffcc00 !important;
}

/* Icon styling */
.footer-contact-item i {
  font-size: 18px;
  color: #ffcc00;
  min-width: 22px;
  text-align: center;
}

/* Text styling */
.footer-contact-item p {
  margin: 0;
  font-size: 15px;
  color: #fff;
}

/* ===== Responsive Fix ===== */
@media (max-width: 768px) {
  .footer-contact-link {
    gap: 8px;
    font-size: 14px;
  }

  .footer-contact-item i {
    font-size: 16px;
  }

  .footer-contact-item p {
    font-size: 14px;
    line-height: 1.5;
  }
}


/* Footer end */
