:root {
  --primary: #d90d92;
  --dark: #3f0664;
}

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
}

/* Topbar */
.topbar {
  background: var(--primary);
  color: white;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  flex-wrap: wrap;
}
.topbar i {
  margin: 0 6px;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: white;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 60px;
}
.logo span {
  font-size: 20px;
  font-weight: bold;
  color: var(--dark);
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--dark);
}

.navbar {
  display: flex;
}
.navbar ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--dark);
}
.navbar li a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}
.navbar li a:hover {
  color: var(--primary);
}
.navbar .close-menu {
  display: none;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  display: none;
  flex-direction: column;
  min-width: 180px;
  z-index: 100;
}
.submenu li {
  border-bottom: 1px solid #eee;
}
.submenu li:last-child {
  border-bottom: none;
}
.submenu li a {
  padding: 10px 15px;
  display: block;
  color: black;
  text-decoration: none;
}
.submenu li a:hover {
  background: var(--primary);
  color: white;
}
.dropdown:hover .submenu {
  display: flex;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    display: none;
    border-top: 1px solid #ddd;
    z-index: 99;
  }

  .navbar.active {
    display: flex;
  }

  .navbar ul {
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }

  .navbar .close-menu {
    display: block;
    text-align: right;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
  }

  .dropdown .submenu {
    position: static;
    display: none;
    border: none;
    background: none;
    padding-left: 15px;
  }

  .dropdown.active .submenu {
    display: flex;
  }

  .submenu li a {
    padding: 8px 0;
  }
}

/* DESKTOP: show submenu on hover */
@media (min-width: 769px) {
  .dropdown:hover .submenu {
    display: flex;
  }

  .dropdown .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    flex-direction: column;
    min-width: 180px;
    z-index: 100;
  }
}

/* MOBILE: submenu toggle by class */
@media (max-width: 768px) {
  .dropdown .submenu {
    display: none;
    flex-direction: column;
    padding-left: 15px;
  }

  .dropdown.active .submenu {
    display: flex;
  }
}

/*  */
.hero {
  background: url("image/image1.jpg") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-overlay {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  color: white;
}

.hero-left {
  flex: 1;
  max-width: 50%;
  padding: 0 40px;
}

.hero-left h1 {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-left p {
  font-size: 16px;
  margin-bottom: 30px;
}

.btn-book {
  background-color: var(--dark);
  color: white;
  padding: 12px 30px;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.hero-right {
  background: white;
  color: black;
  padding: 30px;
  border-radius: 4px;
  max-width: 400px;
  width: 100%;
}

.hero-right h2 {
  text-align: center;
  margin-bottom: 20px;
}

.hero-right form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-right input,
.hero-right textarea {
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
  border-radius: 4px;
  width: 100%;
}

.hero-right button {
  background: var(--dark);
  color: white;
  padding: 10px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-overlay {
    flex-direction: column;
    padding: 20px;
  }

  .hero-left {
    max-width: 100%;
    padding: 0;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 28px;
  }

  .hero-right {
    margin-top: 30px;
    margin-right: 20px;
  }
}

/*  */
.intro-text {
  padding: 60px 20px 30px;
  background: #fff;
  text-align: center;
}

.intro-text .container {
  max-width: 1000px;
  margin: auto;
}

.intro-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}

.why-choose {
  padding: 60px 20px;
  background: #fff;
}

.choose-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.choose-text {
  flex: 1;
  min-width: 300px;
}

.choose-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--dark);
}

.choose-text p {
  font-size: 16px;
  margin-bottom: 20px;
}

.choose-text ul {
  list-style: none;
  padding: 0;
}

.choose-text li {
  margin-bottom: 15px;
  font-size: 15px;
}

.choose-text li i {
  color: var(--primary);
  margin-right: 10px;
}

.read-more {
  background: var(--primary);
  color: white;
  padding: 10px 20px;
  border: none;
  margin-top: 10px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 3px;
}

.choose-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.choose-image img {
  max-width: 100%;
  border-radius: 6px;
}

.best-rooms {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.rooms-container {
  max-width: 1200px;
  margin: auto;
}

.best-rooms h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: var(--dark);
}

.best-rooms p {
  font-size: 16px;
  margin-bottom: 40px;
  color: #333;
}

.room-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.room-card {
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.room-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.room-card h3 {
  font-size: 20px;
  margin: 15px;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.room-card h3 span {
  font-size: 18px;
  font-weight: bolder;
}

.room-card h3 span small {
  font-size: 12px;
}

.room-card p {
  padding: 0 15px 15px;
  font-size: 14px;
  color: #444;
  flex-grow: 1;
}

.room-card button {
  margin: 15px;
  padding: 10px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/*  */
.hotel-amenities {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.hotel-amenities h2 {
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 10px;
}

.hotel-amenities p {
  font-size: 16px;
  color: #333;
  max-width: 800px;
  margin: auto;
  margin-bottom: 40px;
  line-height: 1.7;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.amenity-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.amenity-card:hover {
  transform: translateY(-5px);
}

.amenity-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

.amenity-card h3 {
  font-size: 18px;
  color: #111;
  margin-bottom: 10px;
}

.amenity-card p {
  font-size: 14px;
  color: #555;
}

/* Responsive fallback for mobile/tablet */
@media (max-width: 900px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

/*  */

.booking-highlight {
  padding: 60px 20px;
  background: #fff;
}

.booking-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.booking-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.booking-image img {
  max-width: 100%;
  border-radius: 6px;
}

.booking-content {
  flex: 1;
  min-width: 300px;
}

.booking-content h2 {
  font-size: 32px;
  color: #111;
  margin-bottom: 20px;
}

.booking-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.booking-content .read-more {
  background: var(--dark);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

/*  */
.book-call-section {
  background: url("image/image4.jpg") no-repeat center center/cover;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-call-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-call-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 0 30px;
  color: #fff;
  flex-wrap: wrap;
}

.text-block {
  flex: 2;
  min-width: 280px;
}

.text-block h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.text-block p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.cta-button {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  min-width: 220px;
}

.call-btn {
  background: var(--dark);
  color: #fff;
  padding: 14px 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  border-radius: 4px;
  white-space: nowrap;
}

.call-btn i {
  margin-left: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .book-call-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cta-button {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .booking-highlight {
    padding: 40px 15px;
  }

  .booking-container {
    flex-direction: column;
    text-align: center;
  }

  .booking-content {
    padding: 0;
  }

  .booking-content h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .booking-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .read-more {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    margin-top: 20px;
  }

  .book-call-section {
    height: auto;
    padding: 40px 15px;
    background-position: center;
  }

  .book-call-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 0 10px;
  }

  .cta-button {
    justify-content: center;
    width: 100%;
  }

  .call-btn {
    width: 100%;
    padding: 12px;
    font-size: 15px;
  }
}
/*  */
.testimonial-section {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.sub-heading {
  color: #805000;
  font-weight: bold;
  margin-bottom: 5px;
}

.heading {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: bold;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonial-wrapper {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 500%; /* for 5 slides */
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 30px 20px;
  box-sizing: border-box;
  background: #fafafa;
  min-height: 250px; /* ✅ Ensures slide has height */
  border-radius: 10px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.stars {
  color: gold;
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonial-slide p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.client {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.client span {
  font-weight: bold;
  font-size: 16px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .testimonial-slide {
    font-size: 14px;
    text-align: center;
  }

  .client {
    justify-content: center;
  }
}

/* Mobile fix */
@media (max-width: 768px) {
  .testimonial-slider {
    padding: 0 10px;
  }

  .testimonial-slide {
    font-size: 14px;
    text-align: center;
    min-height: 300px; /* ✅ Force some height */
  }

  .client {
    justify-content: center;
  }
}

/*  */
.footer {
  background-color: #3f0664;
  color: #fff;
  padding: 60px 20px 30px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 220px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 15px;
}

.footer-col h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
}

.footer-col p {
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: #ccc;
}

.footer-col ul li i {
  margin-right: 10px;
  color: #d90d92;
}

.footer-col a {
  color: #ccc;
  text-decoration: none;
}

.footer-col a:hover {
  color: #d90d92;
}

.social-icons a {
  color: #fff;
  margin-right: 10px;
  font-size: 16px;
}

.social-icons a:hover {
  color: #d90d92;
}

.footer-bottom {
  text-align: center;
  padding: 15px 0 0;
  border-top: 1px solid #663399;
  font-size: 13px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
}

.floating-cta {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.cta-btn {
  width: 50px;
  height: 50px;
  background-color: #25d366; /* WhatsApp green */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 22px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.cta-btn.call {
  background-color: #3f0664; /* dark purple - your brand color */
}

.cta-btn:hover {
  transform: scale(1.1);
}
