/* ===== GLOBAL RESET & VARIABLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-gold: #858585;
  --dark-gold: #808080;
  --text-dark: #000000;
  --text-light: #666;
  --bg-cream: #ffffff;
  --white: #ffffff;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}



body {
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
      font-family: "Outfit",system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;
  
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  font-family: "Outfit", sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  border: none;
  background: none;
  cursor: pointer;
font-family: "Outfit", sans-serif;
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.container .insta-title {
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  text-decoration: underline;
}

/* Mobile screens (under 480px) */
@media (max-width: 480px) {
  .container .insta-title {
    font-size: 20px;
  }
}

/* Small mobile (under 360px) */
@media (max-width: 360px) {
  .container .insta-title {
    font-size: 18px;
  }
}



.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ===== NAVBAR ===== */
header.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 120px;
  border-bottom: 1px solid #ffffff;
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

/* LEFT SECTION */
.left-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  width: 75px;
  height: auto;
  object-fit: contain;
}

.divider {
  width: 1px;
  height: 90px;
  background-color: #777;
}
.filter-divider {
  width: 2px;
  height: 30px;
  background-color: #777;
}


.left-texts {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hotel-title {
  font-size: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e5e5e5;
  font-weight: 400;
font-family: "Outfit", sans-serif;
  margin-bottom: 4px; /* small gap before links */
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  margin-top: 10px;
  color: #ccc;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary-gold);
}

.nav-links a.active {
  border-bottom: 1px solid #fff;
}

/* ===== DROPDOWN MENU ===== */
.dropdown {
  position: relative;
  margin-top: 7px;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  min-width: 280px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
  text-align: center;
}

.dropdown-menu a {
  color: #000000;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
}

.dropdown-menu a:hover {
  background-color: var(--primary-gold);
  color: #fff;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* RIGHT SIDE */
.right-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.check-rates-btn {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 12px 40px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.1s ease;
}

.check-rates-btn:hover {
  background-color: black;
  color: var(--white);
  border: 2px solid white;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}
/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* Image ko upar shift karta hai */
  animation: zoomIn 20s ease infinite;
}

/* Tablets (max-width: 900px) */
@media (max-width: 900px) {
  .hero-image {
    height: 40vh;
    object-position: top; /* Image upar aa jayegi */
  }
}

/* Smartphones (max-width: 600px) */
@media (max-width: 600px) {
  .hero-image {
    height: 40vh;
    object-position: top; /* upar shift */
  }
}

/* Small Smartphones (under 480px) */
@media (max-width: 480px) {
  .hero-image {
    height: 40vh;
    object-position: top; /* image upar */
  }
}






@keyframes zoomIn {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* DARK GRADIENT OVER HERO IMAGE */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.6)
  );
}

/* ALL CONTENT POSITIONED ON TOP */
.hero-inner {
  position: absolute;
  bottom: 140px;
  left: 60px;
  right: 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: white;
}

/* ===== LEFT INFO ===== */
.left-info h4 {
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
}

.left-info h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 100;
  text-transform: uppercase;
  margin: 10px 0 20px;
  letter-spacing: 4px;
  
}

.address {
  margin-bottom: 10px;
  font-size: 15px;
  letter-spacing: 2px;
}

.phone-location a {
  margin-right: 20px;
  font-size: 13px;
  border-bottom: 1px solid white;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
}

/* ===== ICON BOXES ===== */
.icon-box-wrapper {
  display: flex;
  gap: 20px;
}

.icon-box-wrapper a {
  text-decoration: none;
  color: white;
}

.icon-box {
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.icon-box i {
  font-size: 18px;
  margin-bottom: 10px;
}

.icon-box span {
  font-size: 9px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
}

.icon-box:hover {
  background: rgba(104, 104, 104, 0.9);
  transform: translateY(-2px);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 60vh;
    
  }

  .hero-inner {
    position: relative;
    bottom: auto;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 40px 20px 0;
    align-items: center;
    color: black;
    background-color: rgb(255, 255, 255);
  }

  .left-info {
    padding-bottom: 40px;
        color: black;
    text-align: center;

  }

  .left-info h4 {
    font-size: 16px;
        color: black;
    text-align: center;

  }

  .left-info h1 {
    font-size: 32px;
    margin: 8px 0 15px;
        color: black;
    align-items: center;
  letter-spacing: 2px;

  }

  .address {
    font-size: 12px;
    letter-spacing: 1.5px;
        color: black;
    align-items: center;

  }

  .phone-location {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: black;
    align-items: center;
    font-weight: bold;
text-decoration: underline
  }

  .phone-location a {
    font-size: 11px;
    margin-right: 0;
    display: inline-block;
    width: fit-content;
        color: black;
    align-items: center;

  }

  /* Icon boxes move below hero */
  .icon-box-wrapper {
    position: relative;
    background: white;
    padding: 30px 20px;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .icon-box {
    width: 160px;
    height: 100px;
    background: white;
    border: 1px solid #e0e0e0;
    color: #333;
  }

  .icon-box-wrapper a {
    color: #333;
  }

  .icon-box:hover {
    background: #f5f5f5;
  }

  .icon-box i {
    font-size: 24px;
    color: #333;
  }

  .icon-box span {
    font-size: 10px;
    color: #666;
  }
}

@media (max-width: 480px) {
  .left-info h1 {
    font-size: 28px;
        align-items: center;
  letter-spacing: 2px;

  }

  .icon-box {
    width: 140px;
    height: 90px;
  }

  .icon-box i {
    font-size: 20px;
  }

  .icon-box span {
    font-size: 9px;
  }
}


/* ===== INTRO SECTION ===== */
.intro-section {
  padding: 90px 0;
  background: rgb(255, 255, 255);
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-content h2 {
  font-size: 25px;
  font-weight: 100;   /* text ko bareek kar deta hai */
  text-transform: capitalize;
  margin-bottom: 30px;
  color: var(--text-dark);
  letter-spacing: 4px; /* letters ke beech gap */
}


.intro-content p {
  font-size: 18px;
  line-height: 1.9;
  font-weight: 10;
  color: var(--text-dark);
}

/* ===== ACCOMMODATIONS SECTION ===== */
.accommodations-section {
  max-width: 1600px;
  margin: 0 auto;
  padding: 100px 40px;
}

.section-title {
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  letter-spacing: 3px;
  color: #000000;
  margin-bottom: 60px;
  font-weight: 400;
}
.section-sub-title{
    text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: #000000;
  font-weight: 400;
}

.carousel-container {
  position: relative;
  overflow: visible;
}

.carousel-wrapper {
  overflow: hidden;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card {
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.room-image {
  width: 300px;
  height: 400px;
  overflow: hidden;
}

.room-image img {
  width: 400px;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-card:hover .room-image img {
  transform: scale(1.05);
}


.room-info {
  padding: 30px;
  text-align: center;
}

.room-title {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
}



/* ====================
     RESPONSIVE SECTION
   ==================== */

/* Mobile Screens */
@media (max-width: 576px) {
  .room-card {
    max-width: 100%;
  }
  .room-image {
    height: 250px;
  }
  .room-title {
    font-size: 12px;
  }
  .room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* full image visible */
}
}

/* Tablets */
@media (min-width: 577px) and (max-width: 992px) {
  .room-card {
    max-width: 100%;
  }
  .room-image {
    height: 300px;
  }
  .room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* full image visible */
}
}

/* Large Screens */
@media (min-width: 993px) {
  .room-card {
    max-width: 350px;
  }
  .room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* full image visible */
}
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  color: #b8956a;
}

.carousel-counter {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  color: #666;
  letter-spacing: 2px;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: white;
  width: 90%;
  max-width: 600px;
  position: relative;
  animation: slideUp 0.4s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: #b8956a;
  color: white;
  transform: rotate(90deg);
}

.modal-image {
  width: 100%;
  height: 300px;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body {
  padding: 50px;
  text-align: center;
}

.modal-title {
  font-family: "Outfit", sans-serif;;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 600;
}

.modal-divider {
  width: 50px;
  height: 2px;
  background: #000;
  margin: 0 auto 30px;
}

.modal-description {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
}

.modal-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn {
  padding: 15px 40px;
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background: #000;
  color: white;
}

.btn-primary:hover {
  background: #ffffff;
  color: #000;
  border: 2px solid #000;
}

.btn-secondary {
  background: white;
  color: #000;
  border: 2px solid #000;
}

.btn-secondary:hover {
  background: #000;
  color: white;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.feature-card:hover .feature-image img {
  transform: scale(1.1);
}

.feature-content {
  padding: 30px;
}

.feature-content h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.feature-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}



/* ===== IMAGE WITH TEXT SECTION ===== */
.image-text-section {
  max-width: 1500px;
  padding: 100px 0;
  background: var(--white);
}

.image-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.image-text-content h2 {
  font-weight: 100;
  font-size: 30px;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.image-text-content p {
  font-size: 16px;
  font-weight: 400;
  color: black;
  margin-bottom: 20px;
  width: 600px;
}

.image-text-image {
  overflow: hidden;
  width: 100%;
}

.image-text-image img {
  width: 100%;
  height: 800px;
  object-fit: cover;
  transition: transform 0.3s ease-out;
  transform: scale(0.9);
}

.image-text-image:hover img {
  transform: scale(1.05);
}

/* ========================================================= */
/*                     RESPONSIVE SECTION                    */
/* ========================================================= */

/* ------- Tablet (992px) ------- */
@media (max-width: 992px) {
  .image-text-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .image-text-content p {
    width: 100%;
  }

  .image-text-image img {
    height: 500px; /* reduce height for tablets */
  }
}

/* ------- Mobile (600px) ------- */
@media (max-width: 600px) {
  .image-text-section {
    padding: 60px 20px;
  }

  .image-text-grid {
    gap: 30px;
  }

  .image-text-content h2 {
    font-size: 24px;
  }

  .image-text-image img {
    height: 350px; /* more suitable for small screens */
    transform: scale(1); /* remove initial shrink */
  }
}


/* ===== SLIDER SECTION ===== */
.slider-section {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

.slider-container {
  position: relative;
  max-width: 1700px;
  margin: 0 auto;
}

.slider-wrapper {
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 800px;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: var(--white);
  max-width: 500px;
}

.slide-caption h3 {
  font-size: 36px;
  margin-bottom: 15px;
}

.slide-caption p {
  font-size: 16px;
  line-height: 1.6;
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
}

.slider-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--primary-gold);
  color: var(--white);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  transition: var(--transition);
  cursor: pointer;
}

.dot.active {
  background: var(--primary-gold);
  transform: scale(1.2);
}

/* ===== INSTAGRAM SECTION ===== */
.instagram-section {
  padding: 100px 0;
  background: var(--white);
}

.instagram-section h2 {
  font-weight: 50;
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.instagram-handle {
  text-align: center;
  color: var(--text-light);
  font-size: 18px;
  margin-bottom: 60px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.instagram-item {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.instagram-item:hover img {
  transform: scale(1.1);
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(184, 149, 106, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--white);
  padding: 80px 40px;
  border-radius: 8px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-weight: 400;
}

.faq-subtitle {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  padding: 25px 60px 25px 0;
  background: none;
  border: none;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 15px;
}

.faq-question:hover {
  color: var(--primary-gold);
}

.faq-number {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  color: var(--primary-gold);
  min-width: 30px;
}

.faq-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 2px solid var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--text-dark);
  transition: all 0.3s ease;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
}

.faq-item.active .faq-icon {
  transform: translateY(-50%) rotate(45deg);
  border-color: var(--primary-gold);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
  background: var(--primary-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0 0 45px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 0 25px 45px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 10px;
}

.faq-answer ul {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.faq-answer ul li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  padding-left: 25px;
  position: relative;
  margin-bottom: 8px;
}

.faq-answer ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: bold;
}

/* ===== FOOTER ===== */
footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 20px 0 30px;
}

.footer-content {

 display: flex;
  flex-wrap: wrap;
  gap: 20px;            /* gap zyada */
  justify-content: center;  /* center align */
  margin-bottom: 60px;
}

.footer-section {
  flex: 1;              /* Equal width har section ko */
  min-width: 220px;     /* Gap naturally badh jayega */
}

.footer-section h3 {
  font-size: 23px;
  margin-bottom: 25px;
  font-style: italic;
  font-family: "Helvetica Neue";
  font-weight: 10;  
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform:uppercase;
  transition: var(--transition);
    letter-spacing: 2px;

}

.footer-section ul li a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #888;
}
.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.footer-logo img {
  width: 200px;
  height: auto;
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
}

.social-links {
  display: flex;
  gap: 20px;
    width: 100%;          /* full width kardega */
  text-align: center;   /* center me lana ho to */
  margin-top: 20px;
}

.social-links a {
  width: 30px;
  height: 30px;
  border: 1px solid #444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  border-color: var(--primary-gold);
  background: var(--primary-gold);
}

/* ===== FIXED GIFT CARDS FOOTER ===== */
.gift-cards-footer {
  font-size: 12px;
  display: flex;
  flex-wrap: wrap; /* ✅ items wrap hon mobile par */
  justify-content: start; /* ✅ center align on smaller screens */
  gap: 10px;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.gift-cards-footer a {
  color: #ffffff;
  text-decoration: none;
}

.gift-cards-footer a:hover {
  color: var(--primary-gold);
}



.acc-intro-section {
  background-color: #000;
  color: #fff;
  padding: 120px 0;
  text-align: center;
  margin-top: 130px;
  height: 5px;
  margin-top: 100px;
}

.acc-container {
  max-width: 900px;
  margin: 2px auto;
}

.acc-subtitle {
  font-size: 14px;
  font-style: italic;
  color: #ccc;
  margin-top: -25px;
}

.acc-title {
  font-family: "Outfit", sans-serif;
  padding: 10px 0;
  font-weight: 300;
  letter-spacing: 2px;
  font-size: 28px;  
}




      
      /* Policies Section */
.policies-section {
  width: 100%;
  margin: 70px auto;
  max-width: 1100px;
}

.policies-layout {
  display: grid;
  grid-template-columns: 200px auto; /* LEFT = heading / RIGHT = content */
  gap: 60px;
}

.policies-left {
  padding-top: 35px;
}

.policies-title {
  font-size: 16px;
  letter-spacing: 5px;
  font-weight: 700;
}

.policy-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 30px 0;
}

.policy-icon {
  font-size: 22px;
  width: 40px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.policy-content h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.policy-content p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 700px;
  color: #000000;
}

hr {
  border: none;
  border-top: 1px solid #000000;
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .policies-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .policies-title{
    align-items: center;
        grid-template-columns: 1fr;
  }
}





      /* ===== AMENITIES (Font Awesome Icons) ===== */
      .amenities-section {
        background: #f6f6f6;
        padding: 70px 20px;
        text-align: center;
      }

      .amenities-title {
        font-style: italic;
        font-size: 24px;
        margin-bottom: 45px;
        color: #000000;
        text-align: center;
        font-weight: 200;
      }

      .amenities-grid {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 60px;
      }

      .amenity-item {
        text-align: center;
        width: 160px;
      }

      .amenity-item i {
        font-size: 38px;
        margin-bottom: 12px;
        opacity: 0.8;
        transition: 0.3s ease;
      }

      .amenity-item i:hover {
        opacity: 1;
        transform: scale(1.1);
      }

      .amenity-item p {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 1px;
        line-height: 1.4;
        color: #000;
        letter-spacing: 2px;

      }

      @media (max-width: 768px) {
        .rooms-container {
          grid-template-columns: 1fr !important;
        }
        .room-card {
          max-width: 100%;
        }
        .room-card img {
          height: 200px;
        }

        /* LIST VIEW MOBILE STACK */
        .rooms-container.list-view .room-card {
          flex-direction: column;
          align-items: start;
        }

        .rooms-container.list-view img {
          width: 100%;
          height: 200px;
        }

        .rooms-container.list-view .room-info {
          width: 100%;
          padding: 10px 0;
        }
      }

      @media (max-width: 480px) {
        .room-card img,
        .rooms-container.list-view img {
          height: 150px;
        }
      }

      /* ===== RESPONSIVE ===== */
      @media (max-width: 1024px) {
        .amenities-grid {
          gap: 40px;
        }
      }

      @media (max-width: 768px) {
        .amenities-title {
          font-size: 24px;
        }

        .amenities-grid {
          justify-content: center;
          gap: 40px;
        }

        .amenity-item {
          width: 120px;
        }

        .amenity-item i {
          font-size: 32px;
        }
      }

      @media (max-width: 480px) {
        .amenities-section {
          padding: 50px 10px;
        }

        .amenities-title {
          font-size: 22px;
          margin-bottom: 35px;
          text-align: center; /* 👈 always center on mobile */
        }

        .amenities-grid {
          gap: 30px;
        }

        .amenity-item {
          width: 45%; /* 2 per row on small screens */
        }

        .amenity-item i {
          font-size: 30px;
        }

        .amenity-item p {
          font-size: 10px;
        }
      }





/* ===== RESPONSIVE DESIGN ===== */

/* ===== TABLET (max-width: 1024px) ===== */
@media (max-width: 1024px) {
  header.navbar {
    padding: 0 30px;
  }

  .divider,
  .hotel-title {
    display: none;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    padding: 15px 0;
    border-top: 1px solid #333;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 10px 0;
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  .right-section {
    gap: 10px;
  }

  .check-rates-btn {
    padding: 8px 20px;
    font-size: 12px;
  }

  /* Cards & Grids */
  .room-card {
    flex: 0 0 calc(50% - 15px);
    min-width: calc(50% - 15px);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Footer */
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-logo {
    margin: 0 auto 40px;
    margin-bottom: 40px;
  }

  .footer-logo img {
    width: 130px;
  }

  .gift-cards-footer {
    justify-content: center;
    font-size: 11px;
    text-align: center;
    gap: 8px;
  }
}

/* ===== MOBILE LANDSCAPE (max-width: 768px) ===== */
@media (max-width: 768px) {
  /* Hero Section */
  .hero {
    margin-top: 160px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hotel-title {
    font-size: 14px;
    display: none;
  }

  header.navbar {
    padding: 10px 20px;
  }

  .logo {
    width: 45px;
  }

  .nav-links {
    top: 70px;
  }

  .check-rates-btn {
    padding: 8px 18px;
    font-size: 12px;
  }
  /* Cards & Grids */
  .room-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .features-grid,
  .instagram-grid,
  .image-text-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-logo img {
    width: 120px;
  }

  .footer-logo {
    margin-bottom: 30px;
  }

  .gift-cards-footer {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    gap: 5px;
  }

  /* Slider */
  .slide img {
    height: 400px;
  }

  .slide-caption {
    bottom: 20px;
    left: 20px;
    max-width: 300px;
  }

  .slide-caption h3 {
    font-size: 24px;
  }

  /* Modal */
  .modal-body {
    padding: 30px;
  }

  .modal-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  /* FAQ Section */
  .faq-section {
    padding: 40px 20px;
  }

  .faq-header h1 {
    font-size: 36px;
  }

  .faq-subtitle {
    font-size: 12px;
  }

  .faq-question {
    font-size: 14px;
    padding: 20px 50px 20px 0;
  }

  .faq-number {
    font-size: 16px;
    min-width: 25px;
  }

  .faq-icon {
    width: 35px;
    height: 35px;
  }

  .faq-answer {
    padding: 0 0 0 30px;
  }

  .faq-item.active .faq-answer {
    padding: 0 0 20px 30px;
  }
}

/* ===== MOBILE PORTRAIT (max-width: 480px) ===== */
@media (max-width: 480px) {
  /* Navbar */
  header.navbar {
    padding: 10px 15px;
  }

  .logo {
    width: 75px;
  }

  .check-rates-btn {
    padding: 7px 16px;
    font-size: 11px;
  }

  .menu-toggle {
    font-size: 20px;
  }
  .hotel-title {
    font-size: 11px;
  }

  /* Hero Section */
  .hero-content h1 {
    font-size: 32px;
  }

  .section-title {
    font-size: 12px;
    margin-bottom: 40px;
  }

  .intro-content h2 {
    font-size: 36px;
      letter-spacing: 2px;

  }

  /* Footer */
  .footer-logo img {
    width: 100px;
  }

  .footer-logo {
    margin-bottom: 25px;
  }

  .gift-cards-footer {
    flex-direction: column;
    align-items: center;
    font-size: 10px;
    gap: 5px;
  }

  /* FAQ */
  body {
    padding: 20px 10px;
  }

  .faq-header h1 {
    font-size: 28px;
  }

  .faq-question {
    font-size: 13px;
  }

  .faq-answer p,
  .faq-answer ul li {
    font-size: 14px;
  }
}




/* MOBILE SLIDE MENU – EXACT LIKE SCREENSHOT */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  height: 100%;
  background: #ffffff;
  z-index: 99999;
  padding: 40px 30px;
  transition: 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

/* TOP LOGO + CLOSE BUTTON */
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-logo {
  width: 55px;
}

.close-btn {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #000;
}

/* TITLE LIKE SCREENSHOT */
.mobile-title {
  margin-top: 30px;
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
}

/* LINKS */
.mobile-content a {
  display: block;
  margin: 22px 0;
  font-size: 13px;
  color: #000;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
}

/* FOOTER */
.mobile-footer {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #000;
}

.mobile-footer a {
  font-size: 12px;
  display: block;
  margin: 12px 0;
}

/* HIDE DESKTOP NAV ON MOBILE */
@media (max-width: 1024px) {
  .nav-links {
    display: none !important;
  }
  .check-rates-btn {
    display: none;
  }
}




@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
