* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Jost', sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.5;
}

/* CONTAINER */
.container {
  max-width: 1250px;
  margin: auto;
  padding: 25px;
}

/* BREADCRUMBS */
.breadcrumbs {
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
}
.breadcrumbs a {
  color: #aaa;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #c9a45c;
}

/* NAV */
.premium-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #222;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.back-home {
  color: #c9a45c;
  text-decoration: none;
  border: 1px solid #333;
  padding: 6px 16px;
  border-radius: 40px;
  transition: all 0.2s;
}
.back-home:hover {
  background: rgba(201, 164, 92, 0.1);
  border-color: #c9a45c;
}

/* PROFILE GRID */
.profile-wrapper {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 45px;
  margin-bottom: 80px;
}

/* GALLERY */
/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  max-height: min(70vh, 600px);
  min-height: 420px;
}

.main-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  width: 100%;
  height: 100%;
}

.main {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;          /* changed from cover */
  object-position: center;      /* changed from center 20% */
  opacity: 0;
  transition: opacity .35s ease, transform .5s ease;
  will-change: transform;
}
.main.active {
  opacity: 1;
}
.main-image:hover .main.active {
  transform: scale(1.04);
}

.thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #c9a45c #222;
  -ms-overflow-style: none;
}
.thumbs::-webkit-scrollbar {
  width: 5px;
  display: none;
}
.thumbs::-webkit-scrollbar-track {
  background: #222;
}
.thumbs::-webkit-scrollbar-thumb {
  background: #c9a45c;
  border-radius: 10px;
}

.thumb {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0.6;
  border: 1px solid #333;
  transition: 0.2s;
  flex-shrink: 0;
}
.thumb.active {
  opacity: 1;
  border-color: #c9a45c;
}

/* PROFILE INFO */
.profile-name {
  font-size: clamp(30px, 3vw, 38px);
  color: #fff;
  margin-bottom: 6px;
}
.profile-meta {
  color: #c9a45c;
  margin-bottom: 16px;
  border-left: 3px solid #c9a45c;
  padding-left: 12px;
  background: linear-gradient(90deg, rgba(201,164,92,0.1) 0%, transparent 80%);
}
.trust-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.trust-badges span {
  border: 1px solid #333;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: #c9a45c;
}
.description {
  color: #aaa;
  margin-bottom: 25px;
  font-weight: 300;
}
.services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}
.service {
  background: #141414;
  border: 1px solid #333;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  transition: 0.2s;
}
.service:hover {
  border-color: #c9a45c;
  color: #c9a45c;
}
.rates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 25px;
}
.rate-card {
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 14px;
  text-align: center;
  transition: 0.2s;
}
.rate-card:hover {
  border-color: #c9a45c;
  box-shadow: 0 0 12px rgba(201,164,92,0.3);
  transform: translateY(-3px);
}
.rate-duration {
  font-size: 14px;
  margin-bottom: 4px;
}
.rate-price {
  color: #c9a45c;
  font-weight: 700;
  font-size: 20px;
}
.book-premium-btn {
  display: inline-block;
  background: #c9a45c;
  color: #000;
  padding: 16px 36px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 10px 20px -5px rgba(201,164,92,0.3);
}
.book-premium-btn:hover {
  background: #dbb16c;
  transform: scale(1.02);
}

/* REVIEWS CAROUSEL */
.reviews-carousel {
  max-width: 1100px;
  margin: 80px auto 80px;
  padding: 0 20px;
  position: relative;
  border-top: 1px solid #222;
  padding-top: 40px;
}
.reviews-carousel h3 {
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
  text-align: center;
}
.reviews-carousel .review-note {
  font-size: 15px;
  color: #777;
  margin-bottom: 50px;
  text-align: center;
}
.carousel-container {
  position: relative;
}
.reviews-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 4px 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar {
  display: none;
}
.review-card {
  flex: 0 0 clamp(260px, 30vw, 340px);
  background: #121212;
  border: 1px solid #2b2b2b;
  border-radius: 24px;
  padding: 28px 24px;
  scroll-snap-align: start;
  transition: border-color 0.2s;
}
.review-card:hover {
  border-color: #3d3d3d;
  background: #161616;
}
.review-stars {
  color: #f5b342;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.review-text {
  font-size: 17px;
  color: #ddd;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
  font-weight: 300;
}
.review-author {
  font-size: 15px;
  color: #c9a45c;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-author span {
  color: #666;
  font-size: 14px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(20,20,20,0.8);
  backdrop-filter: blur(4px);
  border: 1px solid #444;
  color: white;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.carousel-btn:hover {
  background: #c9a45c;
  border-color: #c9a45c;
  color: #0a0a0a;
}
.carousel-btn.prev {
  left: -10px;
}
.carousel-btn.next {
  right: -10px;
}

/* FOOTER */
.full-width-footer {
  background: #0d0d0d;
  border-top: 1px solid #222;
  margin-top: 40px;
  width: 100%;
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 24px 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-grid h4 {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
  border-left: 3px solid #c9a45c;
  padding-left: 14px;
}
.footer-grid a {
  display: block;
  color: #9a9a9a;
  text-decoration: none;
  margin: 10px 0;
  font-size: 15px;
  transition: color 0.2s, padding-left 0.2s;
  font-weight: 300;
}
.footer-grid a:hover {
  color: #c9a45c;
  padding-left: 5px;
}
.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  border-top: 1px dashed #333;
  margin-top: 30px;
  padding-top: 30px;
  color: #777;
  font-size: 15px;
  font-weight: 300;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom .copyright {
  color: #555;
}
.footer-bottom .dynamic-date {
  color: #c9a45c;
  font-weight: 400;
}

/* MOBILE STICKY BOOKING BUTTON */
.mobile-book {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0a0a0a;
  border-top: 1px solid #333;
  padding: 12px;
  justify-content: center;
  z-index: 999;
}
.mobile-book a {
  background: #c9a45c;
  color: black;
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  display: block;
}

/* ===============================
   PREMIUM BOOKING MODAL
   =============================== */

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

.modal-content {
  background: #1a1a1a;
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  margin: auto;
  padding: 2.2rem 2rem 2rem;
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(201, 164, 92, 0.2) inset;
  border: 1px solid #333;
  position: relative;
  animation: modalEntrance 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
  overflow-y: auto;
  background-image: radial-gradient(circle at 10% 20%, rgba(201, 164, 92, 0.03) 0%, transparent 30%);
}

@keyframes modalEntrance {
  0% { opacity: 0; transform: scale(0.95) translateY(-10px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Close button – custom SVG */
.close-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2a2a2a;
  border: 1px solid #444;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
  padding: 0;
}
.close-modal:hover {
  background: #c9a45c;
  border-color: #c9a45c;
  transform: rotate(90deg);
}
.close-modal svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #aaa;
  stroke-width: 2;
  transition: stroke 0.2s;
}
.close-modal:hover svg {
  stroke: #0a0a0a;
}

/* Title with serif */
.modal-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 500;
  margin: 0 0 1.8rem;
  color: #c9a45c;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(201, 164, 92, 0.3);
  padding-bottom: 0.8rem;
  padding-right: 2.5rem;
}

/* Two‑column form layout */
#bookingForm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 1.8rem;
}

/* Section headers with icons */
.section-header {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0 0.2rem;
  color: #c9a45c;
  font-weight: 400;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px dashed #333;
  padding-bottom: 0.3rem;
}
.section-header i {
  font-size: 1.1rem;
  opacity: 0.8;
}

/* Form rows */
.form-row {
  margin-bottom: 0; /* grid handles spacing */
  position: relative;
}

/* Floating labels for input fields */
.floating-label {
  position: relative;
}
.floating-label input {
  width: 100%;
  padding: 1.2rem 1rem 0.4rem;
  border: 1px solid #444;
  border-radius: 14px;
  background: #222;
  color: white;
  font-size: 0.95rem;
  font-family: 'Jost', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.floating-label input:focus {
  outline: none;
  border-color: #c9a45c;
  box-shadow: 0 0 0 4px rgba(201, 164, 92, 0.15);
  background: #2a2a2a;
}
.floating-label label {
  position: absolute;
  left: 1rem;
  top: 0.8rem;
  font-size: 0.95rem;
  color: #888;
  pointer-events: none;
  transition: 0.2s ease all;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}
.floating-label input:focus ~ label,
.floating-label input:not(:placeholder-shown) ~ label {
  top: 0.2rem;
  font-size: 0.7rem;
  color: #c9a45c;
  background: #222;
  padding: 0 0.2rem;
  left: 0.8rem;
}

/* Regular labels for selects, checkboxes, radios */
.form-row label:not(.floating-label label) {
  display: block;
  font-weight: 500;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Inputs, selects, date/time */
.form-row input[type="date"],
.form-row input[type="time"],
.form-row select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #444;
  border-radius: 14px;
  background: #222;
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  transition: border 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-row input[type="date"]:focus,
.form-row input[type="time"]:focus,
.form-row select:focus {
  outline: none;
  border-color: #c9a45c;
  box-shadow: 0 0 0 4px rgba(201, 164, 92, 0.15);
  background: #2a2a2a;
}

/* Custom checkboxes */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.6rem;
  background: #1e1e1e;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid #333;
}
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 400;
  color: #ccc;
  font-size: 0.9rem;
  cursor: pointer;
}
.checkbox-group input[type="checkbox"] {
  appearance: none;
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid #666;
  border-radius: 4px;
  background: #222;
  transition: all 0.2s;
  cursor: pointer;
  margin: 0;
}
.checkbox-group input[type="checkbox"]:checked {
  background: #c9a45c;
  border-color: #c9a45c;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 0.7rem;
  background-position: center;
  background-repeat: no-repeat;
}

/* Custom radio buttons */
.radio-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  color: #ccc;
  cursor: pointer;
  font-size: 0.9rem;
}
.radio-group input[type="radio"] {
  appearance: none;
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid #666;
  border-radius: 50%;
  background: #222;
  transition: all 0.2s;
  cursor: pointer;
}
.radio-group input[type="radio"]:checked {
  border-color: #c9a45c;
  background: #c9a45c;
  box-shadow: inset 0 0 0 3px #222;
}

/* Total row */
.total-row {
  background: #1e1e1e;
  padding: 1rem 1.2rem;
  border-radius: 20px;
  margin: 0.5rem 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  border: 1px solid #333;
  grid-column: 1 / -1;
}
.total-row strong {
  font-weight: 500;
  color: #aaa;
}
.total-row span {
  font-size: 1.3rem;
  color: #c9a45c;
  font-weight: 600;
}

/* Secure payment badge */
.secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #222;
  border: 1px solid #444;
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-size: 0.8rem;
  color: #aaa;
  margin: 0.5rem 0 0;
  grid-column: 1 / -1;
  width: fit-content;
}
.secure-badge i {
  color: #c9a45c;
  font-size: 0.9rem;
}

/* Booking summary box */
.booking-summary {
  background: #1e1e1e;
  border-left: 4px solid #c9a45c;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: #ccc;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.5rem 1rem;
}
.booking-summary h4 {
  grid-column: 1 / -1;
  margin: 0 0 0.5rem;
  color: #c9a45c;
  font-weight: 400;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #333;
  padding: 0.3rem 0;
}
.summary-row span:first-child {
  color: #888;
}
.summary-row span:last-child {
  color: white;
  font-weight: 500;
}

/* Testimonial snippet */
.testimonial-note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
  margin: 0.5rem 0 0;
  font-style: italic;
}
.testimonial-note i {
  color: #c9a45c;
  margin-right: 0.3rem;
}

/* Contact info */
.contact-info {
  background: #1e1e1e;
  border-left: 4px solid #c9a45c;
  padding: 0.8rem 1rem;
  border-radius: 16px;
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: #ccc;
  grid-column: 1 / -1;
}
.contact-info p {
  margin: 0;
}
.contact-info strong {
  color: #c9a45c;
}

/* Payment note */
.payment-note {
  font-size: 0.75rem;
  color: #888;
  margin-top: 0.2rem;
  text-align: center;
  grid-column: 1 / -1;
}

/* Modal actions */
.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
  grid-column: 1 / -1;
}
.btn-secondary,
.btn-primary {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 40px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-secondary {
  background: #333;
  color: #ccc;
}
.btn-secondary:hover {
  background: #444;
  color: white;
}
.btn-primary {
  background: #c9a45c;
  color: #0a0a0a;
  box-shadow: 0 4px 12px rgba(201, 164, 92, 0.3);
}
.btn-primary:hover {
  background: #dbb16c;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(201, 164, 92, 0.4);
}

/* Incall/outcall note */
.incall-outcall-note {
  font-size: 0.8rem;
  color: #777;
  margin-top: 0.5rem;
  text-align: center;
  letter-spacing: 0.3px;
  grid-column: 1 / -1;
}
.incall-outcall-note span {
  display: inline-block;
  white-space: nowrap;
}

/* ===============================
   MOBILE RESPONSIVE (≤700px)
   =============================== */
@media (max-width: 700px) {
  .modal-content {
    padding: 1.5rem;
  }
  .modal-content h3 {
    font-size: 2rem;
  }
  #bookingForm {
    gap: 1rem;
  }
  /* Make first two contact fields side by side */
  .form-row:nth-child(1),
  .form-row:nth-child(2) {
    grid-column: span 1;
  }
  .form-row:nth-child(3) {
    grid-column: 1 / -1;
  }
  /* Date and time side by side */
  .form-row:nth-child(4),
  .form-row:nth-child(5) {
    grid-column: span 1;
  }
  /* Extras grid: two columns */
  .checkbox-group {
    grid-template-columns: 1fr 1fr;
  }
  /* Payment radios side by side */
  .radio-group {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .radio-group label {
    flex: 1 1 auto;
  }
  .total-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
  .modal-actions {
    flex-direction: column-reverse;
  }
  .btn-secondary, .btn-primary {
    width: 100%;
    text-align: center;
  }
  .booking-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .modal-content {
    padding: 1.2rem;
  }
  .modal-content h3 {
    font-size: 1.8rem;
  }
  .checkbox-group {
    grid-template-columns: 1fr;
  }
  .radio-group {
    flex-direction: column;
    gap: 0.3rem;
  }
  .secure-badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
}

/* ===============================
   GLOBAL RESPONSIVE (unchanged)
   =============================== */
@media (max-width: 900px) {
  body {
    padding-bottom: 90px;
  }
  .profile-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }
  .gallery {
    grid-template-columns: 1fr;
    max-height: none;
  }
  .thumbs {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    max-height: none;
  }
  .thumb {
    width: 70px;
    flex-shrink: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .book-premium-btn {
    width: 100%;
    text-align: center;
    font-size: 18px;
    padding: 16px 20px;
  }
  .mobile-book {
    display: flex;
  }
  .reviews-carousel {
    margin-top: 60px;
    padding-top: 30px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 15px;
  }
  .premium-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .rates-grid {
    gap: 8px;
  }
  .rate-card {
    padding: 12px 6px;
  }
  .rate-price {
    font-size: 18px;
  }
  .reviews-carousel h3 {
    font-size: 28px;
  }
  .reviews-carousel .review-note {
    margin-bottom: 40px;
  }
}

@media (max-width: 700px) {
  .carousel-btn {
    display: none;
  }
}

@media (max-width: 480px) {
  .incall-outcall-note {
    font-size: 0.75rem;
  }
}

/* ================= MODAL ================= */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;

  background:
    radial-gradient(circle at 15% 15%, rgba(201,164,92,0.08), transparent 40%),
    rgba(0,0,0,0.92);

  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
}

/* ================= CONTENT ================= */
.modal-content {
  width: 100%;
  max-width: 680px;
  max-height: 95vh;

  background: linear-gradient(145deg, #141414, #0f0f0f);
  border-radius: 18px;

  padding: 1.2rem;

  border: 1px solid rgba(201,164,92,0.15);

  box-shadow:
    0 30px 80px rgba(0,0,0,0.7),
    inset 0 0 0 1px rgba(255,255,255,0.02);

  overflow-y: auto;
  overflow-x: hidden;

  animation: modalFade 0.3s ease;
}

@keyframes modalFade {
  from { opacity: 0; transform: translateY(25px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ================= CLOSE ================= */
.close-modal {
  position: absolute;
  top: 12px;
  right: 14px;

  width: 32px;
  height: 32px;

  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: 0.25s ease;
}

.close-modal:hover {
  background: rgba(201,164,92,0.2);
  transform: rotate(90deg);
}

.close-modal svg {
  width: 14px;
  stroke: #aaa;
}

/* ================= TITLE ================= */
.modal-content h3 {
  font-family: 'Jost', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;

  margin-bottom: 0.8rem;
}

/* ================= SECTION HEADERS ================= */
.section-header {
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c9a45c;

  margin: 0.8rem 0 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;

  opacity: 0.9;
}

.section-header i {
  font-size: 0.7rem;
  opacity: 0.8;
}

/* ================= GRID ================= */
#bookingForm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 0.8rem;
}

/* ================= FORM ================= */
.form-row {
  display: flex;
  flex-direction: column;
}

.form-row label {
  font-size: 0.65rem;
  color: #777;
  margin-bottom: 0.15rem;
  letter-spacing: 0.5px;
}

.form-row input,
.form-row select {
  width: 100%;
  padding: 0.6rem 0.7rem;

  font-size: 0.75rem;
  font-family: 'Jost', sans-serif;

  border-radius: 8px;
  border: 1px solid #2a2a2a;

  background: #181818;
  color: #fff;

  transition: all 0.2s ease;
}

.form-row input:focus,
.form-row select:focus {
  border-color: #c9a45c;
  background: #1d1d1d;
  box-shadow: 0 0 0 2px rgba(201,164,92,0.15);
}

/* ================= GROUPS ================= */
.checkbox-group,
.radio-group {
  background: #151515;
  border-radius: 10px;
  padding: 0.6rem;
  border: 1px solid #262626;
}

.checkbox-group label,
.radio-group label {
  font-size: 0.7rem;
  color: #ccc;
  display: flex;
  gap: 0.4rem;
}

input[type="checkbox"],
input[type="radio"] {
  accent-color: #c9a45c;
}

/* ================= BADGE ================= */
.secure-badge {
  grid-column: 1 / -1;
  font-size: 0.65rem;
  text-align: center;
  color: #888;
  margin-top: 0.3rem;
}

/* ================= TOTAL ================= */
.total-row {
  grid-column: 1 / -1;

  display: grid;
  grid-template-columns: 1fr auto;
  row-gap: 0.2rem;

  font-size: 0.8rem;
  padding: 0.7rem;

  border-radius: 10px;
  background: #121212;
  border: 1px solid #2a2a2a;
}

.total-row span {
  color: #c9a45c;
}

/* ================= SUMMARY ================= */
.booking-summary {
  grid-column: 1 / -1;

  background: linear-gradient(145deg, #151515, #101010);
  border-radius: 12px;
  padding: 0.7rem;

  border: 1px solid rgba(201,164,92,0.2);

  font-size: 0.75rem;
}

.booking-summary h4 {
  font-size: 0.75rem;
  margin-bottom: 0.4rem;
  color: #c9a45c;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin: 0.2rem 0;
}

/* ================= TESTIMONIAL ================= */
.testimonial-note {
  grid-column: 1 / -1;
  font-size: 0.7rem;
  color: #888;
  text-align: center;
}

/* ================= CONTACT ================= */
.contact-info {
  grid-column: 1 / -1;
  font-size: 0.7rem;
  color: #aaa;
  text-align: center;
}

/* ================= BUTTONS ================= */
.modal-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 0.4rem;
}

.btn-primary,
.btn-secondary {
  flex: 1;
  padding: 0.65rem;
  border-radius: 25px;
  font-size: 0.8rem;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #c9a45c, #dbb16c);
  color: #000;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 15px rgba(201,164,92,0.25);
}

.btn-secondary {
  background: #222;
  color: #aaa;
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {
  .modal-content {
    padding: 0.9rem;
    border-radius: 14px;
  }

  #bookingForm {
    grid-template-columns: 1fr 1fr; /* STILL 2 per row */
  }

  .form-row input,
  .form-row select {
    font-size: 0.7rem;
    padding: 0.55rem;
  }

  .section-header {
    font-size: 0.65rem;
  }

  .modal-actions {
    flex-direction: column;
  }
}

/* ================= CONTACT SECTION - CLEAN & MINIMAL ================= */
.contact-section {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #2a2a2a;
}

.contact-label {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}

.contact-label i {
  color: #c9a45c;
  margin-right: 0.3rem;
}

.phone-reveal-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.phone-display {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 0.5rem 0;
}

.phone-display.blurred {
  color: #666;
  filter: blur(3px);
  user-select: none;
}

.phone-display.revealed {
  color: #c9a45c;
  filter: none;
  font-size: 1.2rem;
}

.reveal-phone-btn {
  background: transparent;
  border: 1px solid #c9a45c;
  color: #c9a45c;
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reveal-phone-btn:hover {
  background: rgba(201, 164, 92, 0.1);
  transform: translateY(-1px);
}

.contact-note {
  font-size: 0.7rem;
  color: #555;
  margin-top: 0.5rem;
}

/* ================= MODAL STYLES ================= */
.modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal-header i {
  font-size: 2.5rem;
  color: #c9a45c;
}

.modal-header h3 {
  margin: 0.5rem 0 0;
  font-size: 1.3rem;
}

.payment-info {
  text-align: center;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: #1a1a1a;
  border-radius: 12px;
}

.payment-info strong {
  color: #c9a45c;
}

.payment-method {
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.3rem;
}

.mpesa-instructions {
  background: #121212;
  border-radius: 16px;
  padding: 1rem;
  margin: 1rem 0;
}

.instruction-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #222;
}

.instruction-step:last-child {
  border-bottom: none;
}

.step-number {
  width: 28px;
  height: 28px;
  background: #c9a45c;
  color: #0a0a0a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.step-text {
  font-size: 0.85rem;
  color: #ccc;
}

.highlight {
  color: #c9a45c;
  background: rgba(201, 164, 92, 0.1);
  padding: 0.1rem 0.3rem;
  border-radius: 4px;
}

.payment-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.payment-actions .btn-primary,
.payment-actions .btn-secondary {
  flex: 1;
  padding: 0.8rem;
  border-radius: 40px;
  font-size: 0.9rem;
  cursor: pointer;
}

.modal-note {
  text-align: center;
  font-size: 0.75rem;
  color: #666;
  margin-top: 1rem;
}

.modal-note a {
  color: #c9a45c;
  text-decoration: none;
}

.modal-note a:hover {
  text-decoration: underline;
}

.small-modal {
  max-width: 400px;
}

.transaction-input {
  width: 100%;
  padding: 0.8rem;
  border-radius: 12px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: white;
  font-size: 1rem;
  margin: 1rem 0;
  text-align: center;
  text-transform: uppercase;
}

/* Mobile responsive */
@media (max-width: 600px) {
  .phone-reveal-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .reveal-phone-btn {
    width: 100%;
    justify-content: center;
  }
  
  .payment-actions {
    flex-direction: column;
  }
}

/* ================= CONTACT SECTION ================= */
.contact-section {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #2a2a2a;
}

.contact-label {
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.contact-label i {
  color: #c9a45c;
  margin-right: 0.3rem;
}

.masked-phone {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: #aaa;
  margin-bottom: 0.5rem;
}

.reveal-btn {
  background: transparent;
  border: 1px solid #c9a45c;
  color: #c9a45c;
  padding: 0.4rem 1rem;
  border-radius: 40px;
  font-size: 0.75rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s;
}

.reveal-btn:hover {
  background: rgba(201, 164, 92, 0.1);
}

.revealed-number {
  font-size: 1.2rem;
  font-weight: 600;
  color: #c9a45c;
  margin-bottom: 0.5rem;
}

.call-buttons {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.call-btn {
  padding: 0.4rem 1rem;
  border-radius: 40px;
  text-decoration: none;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.call-btn.call {
  background: #27ae60;
  color: white;
  border: none;
}

.call-btn.whatsapp {
  background: #25D366;
  color: white;
  border: none;
}

/* ================= PAYMENT MODAL - MINIMAL ================= */
.payment-modal {
  max-width: 320px;
  text-align: center;
  background: #121212;
}

.payment-modal-inner {
  padding: 0.5rem;
}

.payment-icon i {
  font-size: 3rem;
  color: #c9a45c;
}

.payment-modal h3 {
  font-size: 1.1rem;
  margin: 0.8rem 0;
  font-weight: 500;
}

.pay-now-btn {
  width: 100%;
  padding: 0.9rem;
  background: #c9a45c;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: #0a0a0a;
  cursor: pointer;
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pay-now-btn:hover {
  background: #dbb16c;
}

.payment-footnote {
  font-size: 0.7rem;
  color: #555;
}

/* Manual modal */
.manual-modal {
  max-width: 300px;
  text-align: center;
}

.manual-modal h3 {
  margin-bottom: 1rem;
}

.code-input {
  width: 100%;
  padding: 0.8rem;
  border-radius: 12px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: white;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.verify-btn {
  width: 100%;
  padding: 0.8rem;
  background: #c9a45c;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 600px) {
  .payment-modal {
    margin: 1rem;
    width: calc(100% - 2rem);
  }
  .call-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  .call-btn {
    justify-content: center;
  }
}

/* ================= CONTACT SECTION ================= */
.contact-section {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #2a2a2a;
}

.contact-label {
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.contact-label i {
  color: #c9a45c;
  margin-right: 0.3rem;
}

.masked-phone {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: #aaa;
  margin-bottom: 0.5rem;
}

.reveal-btn {
  background: transparent;
  border: 1px solid #c9a45c;
  color: #c9a45c;
  padding: 0.4rem 1rem;
  border-radius: 40px;
  font-size: 0.75rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s;
}

.reveal-btn:hover {
  background: rgba(201, 164, 92, 0.1);
}

.revealed-number {
  font-size: 1.2rem;
  font-weight: 600;
  color: #c9a45c;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.call-buttons {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.call-btn {
  padding: 0.4rem 1rem;
  border-radius: 40px;
  text-decoration: none;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.call-btn.call {
  background: #27ae60;
  color: white;
  border: none;
}

.call-btn.whatsapp {
  background: #25D366;
  color: white;
  border: none;
}

/* ================= PAYMENT MODAL ================= */
.payment-modal {
  max-width: 350px;
  text-align: center;
  background: #121212;
  border-radius: 24px;
}

.payment-modal-inner {
  padding: 0.5rem;
}

.payment-icon i {
  font-size: 3rem;
  color: #c9a45c;
}

.payment-modal h3 {
  font-size: 1.1rem;
  margin: 0.8rem 0;
  font-weight: 500;
  color: white;
}

.payment-form {
  margin: 1.2rem 0;
}

.phone-input {
  width: 100%;
  padding: 1rem;
  border-radius: 50px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: white;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 1rem;
  outline: none;
}

.phone-input:focus {
  border-color: #c9a45c;
}

.pay-now-btn {
  width: 100%;
  padding: 1rem;
  background: #c9a45c;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: #0a0a0a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.pay-now-btn:hover {
  background: #dbb16c;
}

.pay-now-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.payment-footnote {
  font-size: 0.7rem;
  color: #555;
  margin-top: 0.5rem;
}

.payment-status {
  margin-top: 1rem;
  padding: 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
}

.payment-status.info {
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
}

.payment-status.success {
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
}

.payment-status.error {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
}

/* Mobile */
@media (max-width: 600px) {
  .payment-modal {
    margin: 1rem;
    width: calc(100% - 2rem);
  }
  
  .call-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .call-btn {
    justify-content: center;
  }
  
  .phone-input {
    font-size: 0.9rem;
    padding: 0.8rem;
  }
}

.phone-input {
  width: 100%;
  padding: 1rem;
  border-radius: 50px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: white;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 1rem;
  outline: none;
}

.phone-input::placeholder {
  color: #555;
  font-size: 0.85rem;
  text-align: center;
}

.phone-input:focus {
  border-color: #c9a45c;
}

/* ================= M-PESA GREEN PAYMENT MODAL ================= */
.payment-modal {
  max-width: 350px;
  text-align: center;
  background: linear-gradient(145deg, #fff, #f5f5f5);
  border-radius: 24px;
  border: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.payment-modal-inner {
  padding: 0.5rem;
}

.payment-icon i {
  font-size: 3.5rem;
  color: #00b843;  /* M-Pesa Green */
  background: rgba(0, 184, 67, 0.1);
  padding: 0.8rem;
  border-radius: 60px;
}

.payment-modal h3 {
  font-size: 1.1rem;
  margin: 0.8rem 0;
  font-weight: 600;
  color: #1a1a1a;
}

.payment-form {
  margin: 1.2rem 0;
}

.phone-input {
  width: 100%;
  padding: 1rem;
  border-radius: 50px;
  border: 1px solid #ddd;
  background: white;
  color: #1a1a1a;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 1rem;
  outline: none;
  font-weight: 500;
}

.phone-input:focus {
  border-color: #00b843;
  box-shadow: 0 0 0 3px rgba(0, 184, 67, 0.2);
}

.phone-input::placeholder {
  color: #aaa;
  font-size: 0.85rem;
  text-align: center;
  font-weight: normal;
}

.pay-now-btn {
  width: 100%;
  padding: 1rem;
  background: #00b843;  /* M-Pesa Green */
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 184, 67, 0.3);
}

.pay-now-btn:hover {
  background: #009f3a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 184, 67, 0.4);
}

.pay-now-btn:disabled {
  background: #ccc;
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.payment-footnote {
  font-size: 0.7rem;
  color: #888;
  margin-top: 0.5rem;
}

.payment-status {
  margin-top: 1rem;
  padding: 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
}

.payment-status.info {
  background: rgba(0, 184, 67, 0.1);
  color: #00b843;
}

.payment-status.success {
  background: rgba(0, 184, 67, 0.15);
  color: #008f3a;
}

.payment-status.error {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
}

/* Close button for M-Pesa modal */
.payment-modal .close-modal {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

.payment-modal .close-modal:hover {
  background: #00b843;
  border-color: #00b843;
}

.payment-modal .close-modal:hover svg {
  stroke: white;
}

/* Mobile */
@media (max-width: 600px) {
  .payment-modal {
    margin: 1rem;
    width: calc(100% - 2rem);
  }
}
.payment-status.error {
    color: #e74c3c;
}

.profile-name .verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  color: #27ae60;      /* success green – you can change to #c9a45c if you prefer gold */
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-left: 10px;
  vertical-align: middle;
  border: 1px solid rgba(39, 174, 96, 0.3);
}

.profile-name .verified-badge i {
  font-size: 0.7rem;
  color: #27ae60;
}

/* Related Blogs Section */
.related-blogs {
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.related-blogs h2 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #fff;
  font-family: 'Jost', sans-serif;
}

.related-blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.related-blog-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #333;
}

.related-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  border-color: #c9a45c;
}

.related-blog-card a {
  text-decoration: none;
  display: block;
}

.related-blog-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.related-blog-card h3 {
  padding: 0.8rem;
  font-size: 1rem;
  font-weight: 500;
  color: #ddd;
  margin: 0;
  line-height: 1.4;
}

.related-blog-card:hover h3 {
  color: #c9a45c;
}

@media (max-width: 700px) {
  .related-blogs-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .related-blog-card img {
    height: 120px;
  }
}
/* FAQ SECTION STYLES */
.faq-section {
  max-width: 850px;
  margin: 2rem auto;
  padding: 2rem;
  background: linear-gradient(145deg, #111, #0c0c0c);
  border-radius: 24px;
  border: 1px solid #333;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.faq-section h2 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #c9a45c;
  border-left: 4px solid #c9a45c;
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  transition: all 0.2s ease;
  border: 1px solid #2a2a2a;
}

.faq-item:hover {
  border-color: #c9a45c;
  box-shadow: 0 4px 12px rgba(201,164,92,0.1);
}

.faq-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-item h3::before {
  content: "❓";
  font-size: 1rem;
  opacity: 0.8;
}

.faq-item p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ccc;
  margin: 0;
  padding-left: 1.6rem;
}

/* Mobile adjustments */
@media (max-width: 700px) {
  .faq-section {
    padding: 1.2rem;
    margin: 1rem;
  }
  .faq-section h2 {
    font-size: 1.4rem;
  }
  .faq-item {
    padding: 1rem;
  }
  .faq-item h3 {
    font-size: 1rem;
  }
  .faq-item p {
    font-size: 0.85rem;
    padding-left: 1.2rem;
  }
}

@media (min-width: 1200px) {
  .gallery {
    max-height: none;
    min-height: auto;
  }
  .main-image {
    height: 600px;              /* or 70vh */
  }
}

/* GALLERY – base styles (mobile first, but we'll use media queries) */
.gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  max-height: min(70vh, 600px);
  min-height: 420px;
}

.main-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  width: 100%;
  height: 100%;
}

.main {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .35s ease, transform .5s ease;
  will-change: transform;
}

/* Default (mobile) – use cover to fill without letterboxing (original behavior) */
.main {
  object-fit: cover;
  object-position: center 20%;
}
.main.active {
  opacity: 1;
}
.main-image:hover .main.active {
  transform: scale(1.04);
}

/* For desktops/laptops (screens wider than 900px) – show full image without cropping */
@media (min-width: 901px) {
  .main {
    object-fit: contain;
    object-position: center;
  }
  .main-image:hover .main.active {
    transform: none; /* optional: remove zoom effect on contain to avoid weird scaling */
  }
}

/* Extra large screens – increase container height for better visibility */
@media (min-width: 1200px) {
  .gallery {
    max-height: none;
    min-height: auto;
  }
  .main-image {
    height: 600px; /* or 70vh – adjust as needed */
  }
}

/* Thumbnails (unchanged) */
.thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #c9a45c #222;
  -ms-overflow-style: none;
}
.thumbs::-webkit-scrollbar {
  width: 5px;
  display: none;
}
.thumbs::-webkit-scrollbar-track {
  background: #222;
}
.thumbs::-webkit-scrollbar-thumb {
  background: #c9a45c;
  border-radius: 10px;
}
.thumb {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0.6;
  border: 1px solid #333;
  transition: 0.2s;
  flex-shrink: 0;
}
.thumb.active {
  opacity: 1;
  border-color: #c9a45c;
}