:root {
  --primary: #0056d2;
  --accent: #007bff;
  --text-dark: #222;
  --text-light: #fff;
  --bg-light: #f8f9fa;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: var(--bg-light);
}

/* ===== HEADER ===== */
.b2c-header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Container to limit width */
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.logo img {
  height: 42px;
  width: auto;
  border-radius: 6px;
}

/* Right Section */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Notification */
.notification {
  position: relative;
  cursor: pointer;
  font-size: 22px;
  color: var(--text-dark);
  transition: transform 0.2s ease;
}

.notification:hover {
  transform: scale(1.1);
}

.notification::after {
  content: "3";
  position: absolute;
  top: -6px;
  right: -8px;
  background: red;
  color: white;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 50%;
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 40px;
  background: white;
  width: 250px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  animation: fadeIn 0.3s ease;
}

.dropdown.active {
  display: block;
}

.dropdown h4 {
  background: var(--primary);
  color: white;
  margin: 0;
  padding: 10px;
  font-size: 14px;
}

.dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown li {
  padding: 10px;
  border-bottom: 1px solid #eee;
  font-size: 13px;
  cursor: pointer;
}

.dropdown li:hover {
  background: #f1f5ff;
}

/* Buttons */
.header-btn {
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.list-btn {
  background: var(--primary);
  color: white;
}

.list-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.signin-btn {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.signin-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .header-right {
    width: 100%;
    justify-content: space-between;
  }
}

/* ===== Search Section ===== */
.search-section {
  text-align: center;
  animation: fadeIn 1.2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Heading ===== */
.search-heading {
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 25px;
  transition: opacity 0.5s ease;
}

.blue {
  color: #007bff;
}

/* ===== Input Boxes ===== */
.input-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.input-box {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 12px 20px;
  width: 280px;
  transition: all 0.3s ease;
}

.input-box:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.input-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
  padding-left: 8px;
}

.input-box i {
  font-size: 18px;
  color: #007bff;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .search-heading {
    font-size: 1.5rem;
  }
  .input-box {
    width: 85%;
  }
}

/* ===== Banner Section ===== */
.banner-slider {
  position: relative;
  width: 100%;
  height: 300px; /* Adjust height here (try 180–250px) */
  overflow: hidden;
}

.banner-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Makes image fill width while keeping aspect ratio */
  display: block;
}

/* Hide all slides by default */
.slides {
  display: none;
}

/* Fade animation */
.fade {
  animation: fadeEffect 1s ease-in-out;
}

@keyframes fadeEffect {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

/* Dots */
.dots {
  text-align: center;
  position: absolute;
  bottom: 10px;
  width: 100%;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 3px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.4s;
}

.active {
  background-color: #007bff;
}

/* Responsive */
@media (max-width: 768px) {
  .banner-slider {
    height: 150px; /* Smaller for mobile */
  }
}

/* ===== Popular Hotels Section ===== */
.hotels-section {
  width: 100%;
  padding: 50px 5%;
  background: linear-gradient(to bottom, #ffffff, #f9fafc);
  border-top: 1px solid #eee;
  animation: fadeInUp 0.9s ease;
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  text-align: left;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* Filter Navigation */
.filter-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  padding: 15px 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.filter-nav:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.filter-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.filter-item label {
  font-weight: 600;
  color: #333;
  transition: color 0.3s ease;
}

.filter-item select {
  padding: 8px 14px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-item select:hover {
  border-color: #007bff;
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.3);
}

/* Subtle Fade In Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    text-align: center;
    font-size: 22px;
  }

  .filter-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .filter-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-item label {
    font-size: 14px;
  }

  .filter-item select {
    width: 100%;
  }
}


/* ===== Hotel Listing Section ===== */
.hotel-listing-section {
  width: 100%;
  padding: 40px 5%;
  background: #f9fafc;
}

.listing-container {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

/* ===== Left Side Cards ===== */
.hotels-left {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hotel-card {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 0.8s ease;
}

.hotel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.hotel-image {
  width: 230px;
  height: 180px;
  object-fit: cover;
}

.hotel-info {
  flex: 1;
  padding: 15px 20px;
}

.hotel-name {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  color: #009e60;
  font-weight: 600;
}

.rating-row {
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.rating-badge {
  background: #28a745;
  color: #fff;
  padding: 3px 6px;
  border-radius: 5px;
  font-weight: 600;
}

.verified {
  background: #f5f6f8;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 13px;
  color: #555;
}

.hotel-location {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.tags span {
  background: #f3f3f3;
  color: #333;
  font-size: 13px;
  border-radius: 4px;
  padding: 5px 8px;
  margin-right: 6px;
  display: inline-block;
  margin-bottom: 8px;
}

.hotel-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.call-btn,
.whatsapp-btn,
.deal-btn {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.call-btn {
  background: #28a745;
  color: #fff;
}

.call-btn:hover {
  background: #218838;
}

.whatsapp-btn {
  background: #fff;
  border: 1px solid #25d366;
  color: #25d366;
}

.whatsapp-btn:hover {
  background: #25d366;
  color: #fff;
}

.deal-btn {
  background: #007bff;
  color: #fff;
}

.deal-btn:hover {
  background: #0056b3;
}

/* ===== Right Form (Fixed) ===== */
.right-form {
  flex: 1;
  position: sticky;
  top: 100px;
}

.form-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  animation: fadeUp 1s ease;
}

.form-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #222;
}

.form-card h3 span {
  color: #007bff;
}

.form-card p {
  font-size: 14px;
  color: #666;
  margin-top: 6px;
}

.form-subtitle {
  margin-top: 15px;
  font-weight: 600;
  color: #333;
}

.radio-group {
  display: flex;
  gap: 15px;
  margin: 8px 0 15px;
  color: #444;
}

.input-group {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f9fb;
  border: 1px solid #ccc;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.input-group input {
  border: none;
  outline: none;
  background: none;
  width: 100%;
  font-size: 14px;
}

.form-btn {
  width: 100%;
  padding: 10px;
  background: linear-gradient(90deg, #007bff, #0056b3);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.form-btn:hover {
  transform: scale(1.05);
}

/* Animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .listing-container {
    flex-direction: column;
  }

  .right-form {
    position: relative;
    top: 0;
    width: 100%;
  }

  .hotel-card {
    flex-direction: column;
  }

  .hotel-image {
    width: 100%;
    height: 200px;
  }

  .hotel-info {
    padding: 15px;
  }
}

.results-section {
  background: #f7f9fb;
  padding: 30px 0;
  font-family: "Inter", sans-serif;
}

.container {
  width: 90%;
  margin: auto;
}

.location-box {
  background: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.location-box h2 {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #222;
}

.location-icon {
  font-size: 1.3rem;
  margin-right: 8px;
}

.location-slider {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  position: relative;
}

.use-location {
  background: #f4f8ff;
  border: 1px solid #cde0ff;
  color: #007bff;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
}

.locations {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.locations span {
  white-space: nowrap;
  background: #f5f5f5;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.locations span:hover {
  background: #007bff;
  color: #fff;
}

.scroll-btn {
  background: #fff;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px 10px;
}

.hotels-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 20px;
}

.hotel-card {
  background: #fff;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease-out;
}

.hotel-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.hotel-card:hover {
  transform: translateY(-5px);
}

.hotel-img {
  width: 160px;
  height: 120px;
  object-fit: cover;
}

.hotel-info {
  padding: 12px 15px;
  flex: 1;
}

.hotel-info h3 {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  color: #111;
}

.hotel-info .price {
  color: #009900;
  font-weight: 600;
}

.rating {
  font-size: 0.85rem;
  margin: 5px 0;
  color: #555;
}

.star {
  background: #28a745;
  color: #fff;
  border-radius: 4px;
  padding: 2px 5px;
}

.tag {
  background: #f0f0f0;
  border-radius: 4px;
  padding: 2px 6px;
  margin-left: 6px;
}

.address {
  font-size: 0.85rem;
  color: #666;
}

.tags span {
  display: inline-block;
  background: #f5f5f5;
  padding: 4px 8px;
  margin: 4px 3px 0 0;
  border-radius: 5px;
  font-size: 0.8rem;
}

.actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
}

.call-btn {
  background: #28a745;
  color: #fff;
}

.whatsapp-btn {
  background: #e6f9ec;
  color: #25d366;
  border: 1px solid #25d366;
}

.deal-btn {
  background: #007bff;
  color: #fff;
}

@media (max-width: 768px) {
  .hotel-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hotel-img {
    width: 100%;
    height: 200px;
  }
  .hotel-info h3 {
    flex-direction: column;
    gap: 5px;
  }
}
























/*-------Footer ------*/

.site-footer {
  background: #0c1a2a;
  color: #ffffff;
  padding: 70px 5% 20px;
  position: relative;
  animation: fadeInUp 1s ease both;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffffff;
  position: relative;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #bfc6d1;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-col ul li a:hover {
  color: #00c6ff;
  padding-left: 5px;
}

/* Contact & Social */
.footer-logo {
  width: 160px;
  margin-bottom: 15px;
  height: 24px;
}

.contact-info {
  font-size: 14px;
  color: #bfc6d1;
  margin: 6px 0;
}

.contact-info a {
  color: #00c6ff;
  text-decoration: none;
}

.mt-30 {
  margin-top: 30px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  transition: all 0.3s ease;
  font-size: 15px;
  text-decoration: none;
}

.social-icons a:hover {
  background: linear-gradient(90deg, #007bff, #00c6ff);
  transform: translateY(-3px);
}

/* Bottom Line */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
}

.footer-bottom hr {
  width: 70%;
  margin: 0 auto 15px;
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

.footer-bottom p {
  font-size: 13px;
  color: #bfc6d1;
}

/* Animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    text-align: center;
  }
  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-col ul li a:hover {
    padding-left: 0;
  }
}
