html {
  max-width: 100vw;
  overflow-x: hidden;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f5f7;
  color: #333;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
img,
iframe {
  max-width: 100%;
  display: block;
}

.top-bar {
  background-color: #001a3b;
  color: #cbd5e1;
  font-size: 0.85rem;
  padding: 0.5rem 0;
}
.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.top-bar span {
  margin-right: 1rem;
}
.top-bar i {
  margin-right: 0.3rem;
}

header {
  background-color: #002a5c;
  color: white;
  padding: 1.5rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
header .logo {
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: white;
  text-decoration: none;
}
header nav {
  display: flex;
  gap: 1.5rem;
}
header nav a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: color 0.2s;
}
header nav a:hover {
  color: #93c5fd;
}

main {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}

/* Stiluri pentru formularul de Booking */
.booking-container {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: 0 auto;
}
.booking-container h1 {
  margin-top: 0;
  font-size: 1.8rem;
  color: #1e293b;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 1rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
}
.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 1rem;
}
.form-row {
  display: flex;
  gap: 1rem;
}
.form-row .form-group {
  flex: 1;
}
.btn-submit {
  background-color: #0050b3;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 2rem;
  cursor: pointer;
  width: 100%;
  font-weight: bold;
  margin-top: 1rem;
  transition: background-color 0.2s;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  box-sizing: border-box;
}
.btn-submit:hover {
  background-color: #003d8a;
}
footer {
  background-color: #1e293b;
  color: #cbd5e1;
  padding: 4rem 2rem 2rem 2rem;
  margin-top: 4rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}
.footer-col h3 {
  color: white;
  margin-top: 0;
}
.footer-col p {
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.footer-col a {
  color: #cbd5e1;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-col a:hover {
  color: white;
  text-decoration: underline;
}
.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

.payment-icons {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #64748b;
}

/* Stiluri pentru lista de proprietăți (Index) */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.property-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Favorite Button */
.favorite-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: #64748b;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  z-index: 10;
}
.favorite-btn:hover {
  transform: scale(1.15);
}
.favorite-btn.active {
  color: #ef4444; /* Inima roșie */
}

/* Favorites Page Styles */
.favorites-hero {
  background:
    linear-gradient(rgba(0, 42, 92, 0.5), rgba(0, 42, 92, 0.7)),
    url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1600&q=80")
      center/cover;
  color: white;
  padding: 4rem 2rem;
  border-radius: 16px;
  margin-bottom: 3rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.favorites-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  margin-top: 0;
}
.favorites-hero p {
  font-size: 1.1rem;
  color: #e2e8f0;
  margin: 0;
}
.empty-favorites {
  text-align: center;
  padding: 5rem 1rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 3rem;
}
.empty-favorites i {
  font-size: 4rem;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}
.empty-favorites h2 {
  color: #1e293b;
  margin-bottom: 1rem;
}
.empty-favorites p {
  color: #64748b;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.btn-primary {
  background: #0050b3;
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s;
}
.btn-primary:hover {
  background: #003d8a;
}

.property-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.property-details {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.property-rating {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.property-rating span {
  color: #64748b;
  margin-left: 0.5rem;
}
.property-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0.5rem 0;
  color: #002a5c;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}
.property-title:hover {
  color: #0050b3;
}
.property-location {
  color: #64748b;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}
.property-features {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #475569;
  font-size: 0.9rem;
}
.property-price-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1.5rem;
}
.property-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #1e293b;
}
.btn-view {
  background-color: #0050b3;
  color: white;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background-color 0.2s;
}
.btn-view:hover {
  background-color: #003d8a;
}

/* Stiluri pentru Pagina de Detalii a Proprietatii */
/* Image Slider */
.image-slider-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.image-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}
.image-slider-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 0 0 100%;
}

/* Property Thumbnails */
.property-thumbnails {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}
.property-thumbnails img {
  width: 100px;
  height: 75px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.property-thumbnails img:hover {
  opacity: 0.8;
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}
.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 1010;
}
.lightbox-close:hover {
  color: #cbd5e1;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    transform 0.2s;
  z-index: 1010;
  backdrop-filter: blur(5px);
}
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%) scale(1.1);
}
.lightbox-prev {
  left: 30px;
}
.lightbox-next {
  right: 30px;
}

.property-content-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}
.property-description h1 {
  color: #002a5c;
  margin-top: 0;
}
.property-description p {
  line-height: 1.7;
  color: #475569;
}
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  color: #333;
}
.amenity-item i {
  color: #0050b3;
  width: 24px;
}

/* --- Detailed Property Sections (Missing Styles) --- */
.section-divider {
  border: none;
  height: 1px;
  background-color: #e2e8f0;
  margin: 2.5rem 0;
  width: 100%;
}
.rooms-section h3,
.location-section h3,
.host-section h3,
.rules-section h3 {
  color: #002a5c;
  margin-top: 0;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}
.room-card {
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}
.room-card i {
  font-size: 2rem;
  color: #475569;
  margin-bottom: 0.5rem;
}
.room-card h4 {
  margin: 0 0 0.5rem;
  color: #1e293b;
}
.room-card p {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
}

.property-map {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.nearby-grid div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 0.5rem;
  font-size: 0.95rem;
}

.host-profile {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.host-profile img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.host-details h4 {
  margin: 0 0 0.2rem;
  font-size: 1.2rem;
}
.host-details p {
  margin: 0 0 0.5rem;
  color: #64748b;
}
.host-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}
.host-bio {
  line-height: 1.6;
  color: #475569;
  margin-bottom: 1.5rem;
}
.host-btn {
  color: #002a5c;
  border: 1px solid #002a5c;
  background: transparent;
  cursor: pointer;
  padding: 0.8rem 1.5rem;
  border-radius: 20px;
  font-weight: bold;
  transition: background 0.3s;
}
.host-btn:hover {
  background: #f8fafc;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.rule-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* --- Booking Sidebar Inputs (Missing Styles) --- */
.booking-inputs {
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.booking-dates {
  display: flex;
  border-bottom: 1px solid #cbd5e1;
}
.booking-date-input {
  flex: 1;
  padding: 0.75rem;
}
.booking-date-input:first-child {
  border-right: 1px solid #cbd5e1;
}
.booking-date-input label,
.booking-guests label {
  display: block;
  font-size: 0.65rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  color: #1e293b;
}
.booking-date-input input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 0.95rem;
}
.booking-guests {
  padding: 0.75rem;
}
.booking-guests select {
  width: 100%;
  border: none;
  outline: none;
  font-size: 1rem;
  background: white;
}

.price-breakdown {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: #475569;
}
.price-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.price-item.total {
  border-top: 1px solid #e2e8f0;
  padding-top: 1.2rem;
  font-weight: bold;
  color: #1e293b;
  font-size: 1.2rem;
}
.large-btn {
  font-size: 1.2rem;
  padding: 1.2rem;
  background: linear-gradient(to right, #0050b3, #003d8a);
}

.booking-sidebar {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 2rem;
  width: 100%;
  box-sizing: border-box;
}
.sidebar-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 1.5rem;
}
.sidebar-price span {
  font-size: 1rem;
  color: #64748b;
  font-weight: normal;
}

/* Stiluri pentru Home Hero Section */
.home-hero {
  background:
    linear-gradient(rgba(0, 42, 92, 0.5), rgba(0, 42, 92, 0.7)),
    url("https://images.unsplash.com/photo-1499793983690-e29da59ef1c2?auto=format&fit=crop&w=1600&q=80")
      center/cover;
  color: white;
  text-align: center;
  padding: 6rem 2rem;
  border-radius: 12px;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.home-hero h1 {
  font-size: 3rem;
  margin-top: 0;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.home-hero p {
  font-size: 1.2rem;
  margin: 0;
  color: #e2e8f0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Stiluri pentru Reviews Section */
.reviews-section {
  margin-top: 3rem;
  border-top: 1px solid #e2e8f0;
  padding-top: 2rem;
}
.reviews-section h2 {
  color: #002a5c;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.review-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #cbd5e1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}
.review-meta {
  display: flex;
  flex-direction: column;
}
.review-author {
  font-weight: bold;
  color: #1e293b;
}
.review-date {
  font-size: 0.85rem;
  color: #64748b;
}
.review-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.review-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

/* Search Bar in Hero */
.search-bar {
  background: white;
  border-radius: 60px;
  padding: 0.5rem;
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #e2e8f0;
}
.search-input {
  padding: 0.8rem 1.5rem;
  color: #333;
  border-right: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  border-radius: 40px;
  transition: background-color 0.2s ease;
  cursor: pointer;
  flex: 1;
}
.search-input:hover {
  background-color: #f1f5f9;
}
.search-input:last-of-type {
  border-right: none;
}
.search-input label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e293b;
  display: block;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.search-input input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  color: #0f172a;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.search-input input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}
.search-button {
  background: linear-gradient(135deg, #0050b3 0%, #002a5c 100%);
  color: white;
  border-radius: 50px;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  margin-left: 0.5rem;
}
.search-button:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 15px rgba(0, 80, 179, 0.4);
}

/* Featured Destinations */
.destinations-section {
  margin-top: 4rem;
}
.destinations-section h2 {
  font-size: 2rem;
  color: #002a5c;
  text-align: center;
  margin-bottom: 2rem;
}
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.destination-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 350px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.destination-card:hover img {
  transform: scale(1.05);
}
.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 50%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  box-sizing: border-box;
}
.destination-name {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Review Slider */
.reviews-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.reviews-slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease-in-out;
}
.review-card {
  flex: 0 0 calc(33.333% - 1rem); /* 3 cards visible, accounting for gap */
}
.slider-nav {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.slider-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* --- Image Slider Specifics --- */
.image-slider-container .slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.image-slider-container .slider-prev {
  left: 15px;
}
.image-slider-container .slider-next {
  right: 15px;
}

/* --- New Home Sections --- */
.section-title {
  font-size: 2rem;
  color: #002a5c;
  text-align: center;
  margin-bottom: 2rem;
}

/* Categories */
.categories-section {
  margin-top: 3rem;
  margin-bottom: 4rem;
}
.categories-grid {
  display: flex;
  justify-content: space-between;
  overflow-x: auto;
  gap: 1.5rem;
  padding-bottom: 1rem;
  scrollbar-width: none;
}
.categories-grid::-webkit-scrollbar {
  display: none;
}
.category-item {
  text-align: center;
  min-width: 100px;
  cursor: pointer;
  color: #64748b;
  transition: color 0.3s;
}
.category-item i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #64748b;
  transition: color 0.3s;
}
.category-item:hover {
  color: #002a5c;
}
.category-item:hover i {
  color: #002a5c;
}

/* Benefits Section */
.benefits-section {
  background-color: #e0e7ff;
  padding: 4rem 2rem;
  margin: 4rem 0;
  border-radius: 12px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}
.benefit-item i {
  font-size: 2.5rem;
  color: #0050b3;
  margin-bottom: 1rem;
}
.benefit-item h3 {
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.benefit-item p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Host Banner Section */
.host-banner {
  background:
    linear-gradient(rgba(0, 42, 92, 0.8), rgba(0, 42, 92, 0.8)),
    url("https://images.unsplash.com/photo-1556912172-45b7abe8b7e1?auto=format&fit=crop&w=1200&q=80")
      center/cover;
  color: white;
  padding: 5rem 2rem;
  text-align: center;
  border-radius: 12px;
  margin-top: 4rem;
}
.host-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  margin-top: 0;
}
.host-banner p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #e2e8f0;
}
.btn-outline {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 2rem;
  transition:
    background 0.3s,
    color 0.3s;
}
.btn-outline:hover {
  background: white;
  color: #002a5c;
}

/* App Promo Section */
.app-promo {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 12px;
  padding: 3rem;
  margin-top: 4rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  gap: 3rem;
}
.app-promo-content {
  flex: 1;
}
.app-promo-content h2 {
  font-size: 2rem;
  color: #002a5c;
  margin-top: 0;
}
.app-promo-content p {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.app-promo-img {
  flex: 1;
  text-align: center;
}
.app-promo-img i {
  font-size: 12rem;
  color: #cbd5e1;
}
.app-store-btns {
  display: flex;
  gap: 1rem;
}
.app-btn {
  background: #1e293b;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: background 0.2s;
}
.app-btn:hover {
  background: #0f172a;
}
.app-btn i {
  font-size: 1.5rem;
}
.app-btn span {
  display: flex;
  flex-direction: column;
  font-size: 0.7rem;
  text-align: left;
}
.app-btn span strong {
  font-size: 1.1rem;
}

/* --- Help Page Styles (Ultra Modern Minimalist) --- */
.help-main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.help-hero {
  background: #f8fafc;
  padding: 6rem 2rem 8rem 2rem;
  border-radius: 32px;
  text-align: center;
  margin-top: 2rem;
  position: relative;
}
.help-hero h1 {
  font-size: 3.5rem;
  color: #0f172a;
  margin: 0 0 1rem 0;
  letter-spacing: -1px;
}
.help-hero p {
  font-size: 1.2rem;
  color: #64748b;
  margin: 0;
}
.help-search-wrapper {
  margin-top: -3.5rem;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
  margin-bottom: 5rem;
}
.help-search {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  background: white;
  padding: 0.75rem;
  border-radius: 60px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f5f9;
}
.help-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  background: transparent;
}
.help-search button {
  background: #0f172a;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s;
}
.help-search button:hover {
  background: #1e293b;
  transform: scale(1.03);
}

.help-section-title {
  font-size: 2rem;
  color: #0f172a;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}

.help-topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 6rem;
}
.help-topic-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 24px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}
.help-topic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: #e2e8f0;
}
.help-topic-icon {
  width: 70px;
  height: 70px;
  background: #f8fafc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-size: 2rem;
  color: #0050b3;
}
.help-topic-card h3 {
  margin: 0 0 0.75rem 0;
  color: #0f172a;
  font-size: 1.25rem;
}
.help-topic-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto 6rem auto;
}
details.faq-item {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
details.faq-item[open] {
  border-color: #cbd5e1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
details.faq-item summary {
  padding: 1.5rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
details.faq-item summary::-webkit-details-marker {
  display: none;
}
details.faq-item summary::after {
  content: "\f067"; /* Plus icon from FontAwesome */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #94a3b8;
  transition: transform 0.3s ease;
}
details.faq-item[open] summary::after {
  content: "\f068"; /* Minus icon */
  color: #0f172a;
  transform: rotate(90deg);
}
details.faq-item p {
  padding: 0 2rem 2rem 2rem;
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

.support-contact-section {
  background: #0f172a;
  border-radius: 32px;
  padding: 5rem 3rem;
  text-align: center;
  color: white;
  margin-bottom: 4rem;
}
.support-contact-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 3rem;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.support-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 2rem;
  border-radius: 24px;
  backdrop-filter: blur(10px);
}
.support-card i {
  font-size: 2.5rem;
  color: #93c5fd;
  margin-bottom: 1.5rem;
}
.support-card h4 {
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
  color: white;
}
.support-card p {
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.support-card .btn-primary {
  background: white;
  color: #0f172a;
  border-radius: 50px;
}
.support-card .btn-primary:hover {
  background: #f1f5f9;
}
.support-card .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: 50px;
}
.support-card .btn-outline:hover {
  background: white;
  color: #0f172a;
}

/* --- Login Page Styles --- */
.login-container {
  max-width: 450px;
  margin: 4rem auto;
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}
.login-container h1 {
  font-size: 1.8rem;
  color: #1e293b;
  margin-top: 0;
  margin-bottom: 2rem;
}
.login-container .form-group label {
  text-align: left;
}
.login-container .btn-submit {
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.social-login-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #94a3b8;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}
.social-login-divider::before,
.social-login-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #e2e8f0;
}
.social-login-divider:not(:empty)::before {
  margin-right: 0.5em;
}
.social-login-divider:not(:empty)::after {
  margin-left: 0.5em;
}

.social-login-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.social-btn {
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  transition: background-color 0.2s;
}
.social-btn:hover {
  background-color: #f8fafc;
}
.social-btn i {
  font-size: 1.2rem;
}
.social-btn.facebook i {
  color: #1877f2;
}
.social-btn.google i {
  color: #db4437;
}
.social-btn.apple i {
  color: #000000;
}

.login-terms {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
}
.login-terms a {
  color: #0050b3;
  text-decoration: none;
  font-weight: 600;
}
.login-terms a:hover {
  text-decoration: underline;
}

/* --- Advanced Property Filter --- */
.properties-header {
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.advanced-filters-wrapper {
  background: white;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.filter-search-box {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border-radius: 30px;
  padding: 0.8rem 1.5rem;
  flex: 1;
  min-width: 250px;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.filter-search-box:focus-within {
  background: white;
  border-color: #0050b3;
  box-shadow: 0 0 0 3px rgba(0, 80, 179, 0.1);
}
.filter-search-box i {
  color: #64748b;
  margin-right: 0.8rem;
}
.filter-search-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 1rem;
  width: 100%;
  color: #1e293b;
}
.filter-scroll {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch; /* Smooth scroll pe iOS */
  scroll-snap-type: x mandatory;
  padding-right: 1rem; /* Spatiu la capat pe mobil */
}
.filter-scroll::-webkit-scrollbar {
  display: none;
}
.filter-pill {
  background: white;
  border: 1px solid #cbd5e1;
  padding: 0.6rem 1rem;
  border-radius: 30px;
  font-size: 0.95rem;
  color: #475569;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  scroll-snap-align: start; /* Opreste pastila fix la loc */
}
.filter-pill:hover {
  border-color: #002a5c;
  color: #002a5c;
}
.filter-pill.active {
  background: #002a5c;
  color: white;
  border-color: #002a5c;
}
.filter-dropdowns {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.filter-btn {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  color: #1e293b;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.filter-btn:hover {
  border-color: #0050b3;
  color: #0050b3;
}
.sort-select {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #1e293b;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  font-family: inherit;
  font-size: 0.95rem;
}

/* --- Special Offers Section --- */
.special-offers-section {
  margin-top: 5rem;
}
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.offer-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.offer-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.offer-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.offer-content h3 {
  margin: 0 0 1rem 0;
  color: #002a5c;
  font-size: 1.5rem;
}
.offer-content p {
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.offer-content .btn-primary {
  margin-top: auto;
  align-self: flex-start;
}

/* --- Travel Inspiration Section --- */
.inspiration-section {
  margin-top: 5rem;
}
.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.article-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s;
}
.article-card:hover {
  transform: translateY(-5px);
}
.article-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.article-content {
  padding: 1.5rem;
}
.article-category {
  color: #0050b3;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.article-content h3 {
  margin: 0.8rem 0;
  color: #1e293b;
  font-size: 1.2rem;
}
.article-content p {
  color: #64748b;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.article-link {
  color: #002a5c;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
}
.article-link:hover {
  gap: 0.8rem;
}

/* --- Newsletter Section --- */
.newsletter-section {
  background: #002a5c;
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  margin-top: 5rem;
}
.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}
.newsletter-content h2 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 1rem;
  color: white;
}
.newsletter-content p {
  color: #cbd5e1;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}
.newsletter-form {
  display: flex;
  gap: 1rem;
}
.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: 30px;
  border: none;
  font-size: 1rem;
  outline: none;
}
.newsletter-form .btn-primary {
  padding: 1rem 2rem;
  background: #f59e0b;
  color: #0f172a;
  border: none;
  cursor: pointer;
  transition:
    background-color 0.3s,
    color 0.3s;
}
.newsletter-form .btn-primary:hover {
  background: #d97706;
}

/* --- Checkout / Booking Page Styles --- */
.checkout-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
  margin-top: 1rem;
}
.checkout-main h1 {
  font-size: 2rem;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
}
.checkout-section {
  padding: 2rem 0;
  border-bottom: 1px solid #e2e8f0;
}
.checkout-section:first-of-type {
  padding-top: 0;
}
.checkout-section:last-of-type {
  border-bottom: none;
}
.checkout-section h2 {
  font-size: 1.4rem;
  color: #1e293b;
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.checkout-property-info {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}
.checkout-property-img {
  width: 120px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
}
.payment-tabs {
  display: flex;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.payment-tab {
  flex: 1;
  padding: 1rem;
  text-align: center;
  background: #f8fafc;
  cursor: pointer;
  border-right: 1px solid #cbd5e1;
  font-weight: 600;
  color: #64748b;
  transition:
    background 0.2s,
    color 0.2s;
}
.payment-tab i {
  margin-right: 0.5rem;
  font-size: 1.2rem;
  vertical-align: middle;
}
.payment-tab.active {
  background: white;
  border-bottom: 3px solid #0f172a;
  color: #0f172a;
}
.payment-tab:last-child {
  border-right: none;
}

/* --- Media Queries (Mobile Friendly) --- */
@media (max-width: 768px) {
  .checkout-wrapper {
    display: flex;
    flex-direction: column-reverse; /* Pune sumarul pretului sus pe mobil */
    gap: 2rem;
  }
  .top-bar-inner {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
  }
  .header-inner {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }
  header nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  main {
    padding: 0 1rem;
    margin: 1rem auto;
  }
  .home-hero {
    padding: 2.5rem 1rem;
    margin-bottom: 2rem;
  }
  .home-hero h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  .search-bar {
    flex-direction: column;
    border-radius: 20px;
    padding: 1rem;
    gap: 0;
  }
  .search-input {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0.5rem;
    border-radius: 0;
  }
  .search-input:hover {
    background-color: transparent;
  }
  .search-input:last-of-type {
    border-bottom: none;
  }
  .search-button {
    width: 100%;
    border-radius: 12px;
    margin-top: 1rem;
    padding: 1rem;
    margin-left: 0;
  }
  .property-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }
  .property-description {
    width: 100%;
  }
  .property-description h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  .property-content-wrapper > div {
    width: 100%;
    box-sizing: border-box;
  }
  .property-rating span {
    display: block;
    margin-left: 0;
    margin-top: 0.5rem;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .booking-container {
    padding: 1.5rem;
    width: 100%;
  }
  .login-container {
    margin: 1rem auto;
    padding: 2rem 1.5rem;
    box-shadow: none;
    border-radius: 0;
  }
  .review-card {
    flex: 0 0 100%; /* Show 1 review at a time on mobile */
    padding: 1.2rem;
  }
  .review-card::before {
    font-size: 3.5rem;
    right: 15px;
    top: -5px;
  }
  .reviews-section h2 {
    font-size: 1.3rem;
  }
  .amenities-grid,
  .nearby-grid,
  .rules-grid {
    grid-template-columns: 1fr;
  }
  .rooms-grid {
    grid-template-columns: 1fr 1fr;
  }
  .host-profile {
    flex-direction: column;
    text-align: center;
  }
  .host-stats {
    justify-content: center;
  }
  .booking-sidebar {
    width: 100%;
    padding: 1.5rem;
    box-sizing: border-box;
    position: relative;
    top: 0;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }
  .booking-inputs,
  .booking-dates {
    width: 100%;
    box-sizing: border-box;
  }
  .booking-date-input {
    width: 50%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .booking-date-input input {
    font-size: 0.85rem; /* Previne suprapunerea textului pe ecrane mici */
    width: 100%;
    box-sizing: border-box;
  }
  .image-slider-container {
    height: 250px;
  }
  .app-promo {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
    gap: 1.5rem;
  }
  .app-store-btns {
    justify-content: center;
    flex-direction: column;
  }
  .host-banner {
    padding: 2.5rem 1rem;
  }
  footer {
    padding: 2rem 1rem 1rem 1rem;
  }
  .advanced-filters-wrapper {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
  }
  .filter-search-box {
    width: 100%;
    box-sizing: border-box;
    min-width: 0; /* Suprascrie 250px de pe desktop */
  }
  .filter-scroll {
    width: 100%;
    box-sizing: border-box;
  }
  .filter-dropdowns {
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  .filter-btn,
  .sort-select {
    flex: 1; /* Le va imparti frumos 50/50 pe ecran */
    justify-content: center;
    text-align: center;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form button {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  /* Help Page Mobile Fixes */
  .help-hero {
    padding: 3rem 1rem 4rem 1rem;
    margin: -1rem -1rem 0 -1rem;
  }
  .help-search {
    flex-direction: column;
    padding: 0.25rem;
    margin-bottom: 3rem;
  }
  .help-search input,
  .help-search button {
    width: 100%;
    border-radius: 2px;
  }
  .help-topics-grid {
    grid-template-columns: 1fr;
  }
  .support-contact-section {
    margin: 0 -1rem;
    padding: 3rem 1rem;
  }
  .support-grid {
    flex-direction: column;
  }
  .help-topic-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .help-topic-card i {
    padding: 1rem;
    margin-bottom: 0.5rem;
  }
  /* Help Page Mobile Overrides */
  .help-hero {
    padding: 4rem 1rem 6rem 1rem;
    border-radius: 20px;
  }
  .help-hero h1 {
    font-size: 2.2rem;
  }
  .help-search-wrapper {
    padding: 0 1rem;
    margin-top: -2.5rem;
  }
  .help-search {
    flex-direction: column;
    border-radius: 24px;
    padding: 1rem;
  }
  .help-search input {
    padding: 0.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
  }
  .help-search button {
    width: 100%;
    border-radius: 16px;
  }
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
  .lightbox-close {
    top: 10px;
    right: 15px;
    font-size: 35px;
  }
  .help-topics-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .support-contact-section {
    padding: 3rem 1.5rem;
    border-radius: 20px;
  }
  .support-contact-section h2 {
    font-size: 1.8rem;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
  details.faq-item summary {
    padding: 1.2rem;
  }
  details.faq-item p {
    padding: 0 1.2rem 1.2rem 1.2rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .property-content-wrapper {
    grid-template-columns: 1fr;
  }
  .booking-sidebar {
    position: relative;
    top: 0;
    max-width: 500px;
    margin: 0 auto;
  }
  .review-card {
    flex: 0 0 calc(50% - 0.75rem); /* Show 2 reviews on tablet */
  }
}
