: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%;
  }
}

/* ====== GALLERY SECTION ====== */
.hotel-gallery {
  padding: 20px 5%;
  background: #f8f9fa;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  animation: fadeIn 1s ease;
}

.main-image {
  flex: 2;
}

.main-image img {
  width: 100%;
  height: 320px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.main-image img:hover {
  transform: scale(1.02);
}

.side-images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  position: relative;
}

.side-images img {
  width: 100%;
  height: 150px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.side-images img:hover {
  transform: scale(1.05);
}

.more-photos {
  position: absolute;
  bottom: 60px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

.add-photo {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #007bff;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.add-photo:hover {
  background: #0056d2;
}

/* ====== HOTEL DETAILS ====== */
.hotel-details {
  padding: 30px 5%;
  background: white;
  border-top: 1px solid #eee;
}

.details-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
}

.left-details h2 {
  font-size: 26px;
  margin: 0;
  font-weight: 700;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0;
}

.rating-badge {
  background: #28a745;
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
}

.ratings-text {
  color: #555;
}

.claimed {
  color: #ff7f50;
  font-weight: 600;
}

.location {
  color: #666;
  font-size: 14px;
}

.buttons {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.buttons button {
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.call-btn {
  background: #28a745;
  color: white;
}

.deal-btn {
  background: #007bff;
  color: white;
}

.whatsapp-btn {
  background: #25d366;
  color: white;
}

.buttons button:hover {
  transform: translateY(-2px);
}

.right-details {
  text-align: right;
  min-width: 220px;
}

.price {
  color: #007bff;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
}

.rating-box p {
  font-size: 14px;
  color: #444;
  margin-bottom: 6px;
}

.stars i {
  font-size: 20px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s ease;
}

.stars i.active {
  color: #ffbf00;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-container {
    flex-direction: column;
  }
  .side-images {
    grid-template-columns: repeat(2, 1fr);
  }
  .details-container {
    flex-direction: column;
    text-align: left;
  }
  .right-details {
    text-align: left;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Quick Info Section ===== */
.quickinfo-section {
  padding: 30px 5%;
  background: #f8f9fa; /* matches overall page */
  animation: fadeInUp 0.6s ease;
}

/* container layout */
.quickinfo-container {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* LEFT column */
.qi-left {
  flex: 1 1 65%;
  min-width: 280px;
}

/* Tabs */
.qi-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.qi-tab {
  background: white;
  border: 1px solid #e6e9ee;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  color: #333;
  transition: all 0.18s ease;
}

.qi-tab:hover { transform: translateY(-3px); }

.qi-tab.active {
  background: #fff;
  border: 2px solid #007bff;
  color: #007bff;
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.06);
}

/* panels */
.qi-content .qi-panel {
  background: white;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  margin-bottom: 16px;
}

.qi-panel h3 { margin-bottom: 8px; font-size: 18px; }
.qi-panel .muted { color: #6b7280; }
.qi-row { display: flex; gap: 12px; align-items: center; margin: 8px 0; }
.qi-label { color: #6b7280; min-width: 180px; font-weight: 600; }
.qi-value { font-weight: 700; color: #111; }

/* photos category cards grid */
.photo-cats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.photo-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.photo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.photo-card img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  display: block;
}

.pc-info {
  padding: 10px;
}

.pc-info .pc-sub {
  display: block;
  color: #6b7280;
  margin-top: 6px;
  font-size: 13px;
}

/* upload area */
.upload-wrap {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}

.btn.upload-btn {
  background: linear-gradient(90deg,#007bff,#0056d2);
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

.btn.upload-btn i { margin-right: 8px; }

.upload-wrap .muted { font-size: 13px; color: #6b7280; }

/* RIGHT column */
.qi-right {
  flex: 0 0 320px;
  min-width: 240px;
}

/* cards on right */
.card {
  background: white;
  padding: 14px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(16,24,40,0.04);
  margin-bottom: 16px;
}

.card h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  color: #111827;
}

/* Check availability form */
.avail-form label { font-size: 13px; color: #374151; display:block; margin-top: 8px; }
.small-input {
  width: 100%;
  padding: 8px 10px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #e6e9ee;
  background: #fff;
  font-size: 14px;
}

.btn.primary {
  background: linear-gradient(90deg,#007bff,#0056d2);
  color: #fff;
  border: none;
  padding: 10px 12px;
  margin-top: 12px;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
}

/* Contact lines */
.contact-line {
  display:flex;
  gap: 8px;
  align-items:center;
}

.contact-line i { color:#007bff; font-size: 18px; }
.phone-link { color:#0b4fb3; font-weight:700; text-decoration:none; margin-right:auto; }

.icon-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  color: #374151;
  transition: background 0.18s ease;
}

.icon-btn:hover { background: #f1f5ff; color: #0b4fb3; }

/* address + actions */
.address.small { color: #4b5563; font-size: 14px; margin: 8px 0 12px; line-height:1.4; }

.action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.action-item {
  background: #f8fafc;
  border: 1px solid #eef2ff;
  padding: 10px;
  font-size: 13px;
  text-align: left;
  border-radius: 8px;
  cursor: pointer;
  display:flex;
  gap: 8px;
  align-items:center;
}

.action-item i { color: #0b4fb3; min-width: 18px; }

/* GST */
.gst {
  margin-top: 12px;
  color: #374151;
  font-size: 13px;
}

/* small utilities */
.mt { margin-top: 12px; }
.small { font-size: 13px; color: #6b7280; }

/* animation keyframes */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
  .quickinfo-container { gap: 18px; }
  .qi-right { flex-basis: 320px; }
}

@media (max-width: 768px) {
  .quickinfo-container { flex-direction: column; }
  .qi-right { order: 2; width: 100%; }
  .qi-left { order: 1; width: 100%; }
  .action-grid { grid-template-columns: repeat(1, 1fr); }
  .photo-card img { height: 110px; }
}


/* explore */

.explore-section {
  display: flex;
  gap: 30px;
  padding: 40px 5%;
  flex-wrap: wrap;
  background: #fff;
}

.left-section {
  flex: 1 1 65%;
}

.right-section {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.explore-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.view-all {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.tab {
  border: none;
  background: #f1f1f1;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
}

.tab.active {
  background: #007bff;
  color: #fff;
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.explore-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.explore-card:hover {
  transform: translateY(-5px);
}

.explore-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.explore-card h4 {
  margin: 10px;
}

.explore-card p {
  margin: 0 10px 5px;
  color: #555;
}

.buttons {
  display: flex;
  gap: 10px;
  padding: 10px;
}

.btn {
  border: none;
  border-radius: 5px;
  cursor: pointer;
  padding: 6px 10px;
  font-size: 14px;
}

.btn.call {
  background: #28a745;
  color: #fff;
}

.btn.whatsapp {
  background: #25d366;
  color: #fff;
}

.btn.primary {
  background: #007bff;
  color: #fff;
}

.btn.danger {
  background: #dc3545;
  color: #fff;
}

/* Reviews */
.reviews-section {
  margin-top: 40px;
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.rating-box {
  background: #008000;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 10px;
}

.star-rating .star {
  font-size: 28px;
  cursor: pointer;
  color: #ccc;
  transition: 0.3s;
}

.star-rating .star.active {
  color: gold;
}

.trend span {
  display: inline-block;
  background: #f8f9fa;
  padding: 5px 10px;
  border-radius: 10px;
  margin-right: 5px;
}

.review-filters {
  margin: 15px 0;
}

.review-filters button {
  background: #f1f1f1;
  border: none;
  border-radius: 5px;
  margin-right: 8px;
  padding: 6px 12px;
  cursor: pointer;
}

.review-filters .active {
  background: #007bff;
  color: #fff;
}

.user-review {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.user-review img {
  border-radius: 50%;
}

.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.card h3 span {
  color: #007bff;
}

.links a {
  display: inline-block;
  background: #f8f9fa;
  padding: 5px 10px;
  border-radius: 20px;
  margin: 3px;
  text-decoration: none;
  color: #333;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@media(max-width: 900px) {
  .explore-section {
    flex-direction: column;
  }
}

.related-section {
  margin: 60px auto;
  padding: 0 20px;
  line-height: 1.7;
  font-family: "Inter", sans-serif;
}

.related-searches h2,
.hotel-details h2,
.faq-section h2,
.nearby-section h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.related-searches .links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.related-searches .links a {
  font-size: 15px;
  color: #0073e6;
  text-decoration: none;
}

.related-searches .links a:hover {
  text-decoration: underline;
}

.hotel-details h3 {
  font-size: 18px;
  margin-top: 20px;
  font-weight: 600;
}

.hotel-details p, 
.faq-section p, 
.nearby-section p {
  color: #333;
  margin-bottom: 12px;
}

.hotel-details ul {
  margin-left: 20px;
  list-style: disc;
}

.faq-section .faq {
  margin-bottom: 15px;
}

.faq-section h4 {
  font-weight: 600;
  margin-bottom: 5px;
}

.nearby-section p a {
  color: #0073e6;
  text-decoration: none;
}

.nearby-section p a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .related-section {
    padding: 0 10px;
  }

  .related-searches .links a {
    font-size: 14px;
  }
}

.similar-listings {
  margin-top: 40px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
}

.similar-listings h2 {
  font-size: 20px;
  color: #222;
  margin-bottom: 15px;
  font-weight: 600;
}

.similar-listings h3 {
  font-size: 18px;
  color: #333;
  margin: 25px 0 10px;
  font-weight: 500;
}

.similar-listings .links {
  color: #555;
  font-size: 15px;
  word-wrap: break-word;
}

.similar-listings .links a {
  color: #0066cc;
  text-decoration: none;
}

.similar-listings .links a:hover {
  text-decoration: underline;
}























































/*-------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;
  }
}
