/* ============================================================
   BELLA VITA BEACH HOUSE — style.css
   Primary:   #0891b2
   Secondary: #67e8f9
   Dark:      #0c4a6e
   Font:      Playfair Display + Cormorant Garamond + Jost
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --bv-primary: #0891b2;
  --bv-primary-dark: #0e7490;
  --bv-primary-light: #67e8f9;
  --bv-secondary: #0c4a6e;
  --bv-accent: #f0c84e;
  --bv-text-dark: #0f172a;
  --bv-text-mid: #334155;
  --bv-text-light: #64748b;
  --bv-white: #ffffff;
  --bv-off-white: #f0f9ff;
  --bv-border: rgba(8, 145, 178, 0.15);
  --bv-font-display: 'Playfair Display', serif;
  --bv-font-body: 'Jost', sans-serif;
  --bv-font-serif: 'Cormorant Garamond', serif;
  --bv-radius-sm: 8px;
  --bv-radius-md: 14px;
  --bv-radius-lg: 20px;
  --bv-radius-pill: 50px;
  --bv-shadow-sm: 0 4px 16px rgba(8, 145, 178, 0.08);
  --bv-shadow-md: 0 8px 32px rgba(8, 145, 178, 0.12);
  --bv-shadow-lg: 0 16px 56px rgba(8, 145, 178, 0.18);
  --bv-transition: all 0.3s ease;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--bv-font-body);
  color: var(--bv-text-dark);
  background-color: var(--bv-white);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  cursor: pointer;
  font-family: var(--bv-font-body);
}

/* ============================================================
   3. TYPOGRAPHY UTILITIES
   ============================================================ */
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bv-primary);
  margin-bottom: 0.7rem;
}

.section-eyebrow--light {
  color: var(--bv-primary-light);
}

.section-heading {
  font-family: var(--bv-font-display);
  font-size: clamp(2.1rem, 5vw, 2.9rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--bv-text-dark);
  margin-bottom: 1rem;
}

.section-heading--white {
  color: var(--bv-white);
}

.section-subtext {
  font-size: 0.97rem;
  color: var(--bv-text-light);
  line-height: 1.75;
  /* max-width: 540px; */
}

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn-bv-primary {
  display: inline-block;
  background: var(--bv-primary);
  color: var(--bv-white);
  padding: 0.85rem 2.2rem;
  border-radius: var(--bv-radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: none;
  transition: var(--bv-transition);
  text-decoration: none;
}

.btn-bv-primary:hover {
  background: var(--bv-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(8, 145, 178, 0.38);
  color: var(--bv-white);
}

.btn-bv-outline {
  display: inline-block;
  background: transparent;
  color: var(--bv-white);
  padding: 0.85rem 2.2rem;
  border-radius: var(--bv-radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: var(--bv-transition);
  text-decoration: none;
}

.btn-bv-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--bv-white);
  color: var(--bv-white);
}

.btn-bv-secondary {
  display: inline-block;
  background: transparent;
  color: var(--bv-primary);
  padding: 0.85rem 2.2rem;
  border-radius: var(--bv-radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 2px solid var(--bv-primary);
  transition: var(--bv-transition);
  text-decoration: none;
}

.btn-bv-secondary:hover {
  background: var(--bv-primary);
  color: var(--bv-white);
}

.btn-bv-ghost {
  background: transparent;
  border: none;
  color: var(--bv-primary);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-family: var(--bv-font-body);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: var(--bv-transition);
  padding: 0;
}

.btn-bv-ghost:hover {
  color: var(--bv-primary-dark);
}

/* ============================================================
   5. SECTION WRAPPER
   ============================================================ */
.bv-section {
  padding: 2rem 0;
}

.bg-section-alt {
  background-color: var(--bv-off-white);
}

.bv-section--dark {
  background-color: var(--bv-secondary);
}

/* ============================================================
   6. SCROLL ANIMATION
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-indicator {
  position: absolute;
  bottom: 0rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--bv-white);
  animation: bounce 2s infinite;
  opacity: .8;
  transition: var(--bv-transition);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.scroll-indicator:hover {
  opacity: 1;
  color: var(--bv-primary-light);
  transform: translateX(-50%) scale(1.15);
}

.scroll-indicator::after {
  content: 'Scroll Down';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background: var(--bv-primary);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.scroll-indicator:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ============================================================
   7. MOBILE OVERLAY MENU
   ============================================================ */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12, 74, 110, 0.98);
  z-index: 1100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.mobile-overlay.open {
  display: flex;
  animation: fadeIn 0.3s ease;
}

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

.mobile-close-btn {
  position: absolute;
  top: 1.4rem;
  right: 1.8rem;
  background: none;
  border: none;
  color: var(--bv-white);
  font-size: 1.6rem;
  line-height: 1;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.mobile-nav-link {
  color: var(--bv-white);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-nav-link:hover {
  color: var(--bv-primary-light);
}

/* ============================================================
   8. NAVBAR
   ============================================================ */
.bv-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 1rem;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  background: transparent;
}

.bv-navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 22px rgba(8, 145, 178, 0.11);
}

.bv-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  max-width: 1320px;
  margin: 0 auto;
}

.bv-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s;
}

.bv-logo img {
  height: 85px;
  width: auto;
  display: block;
}

.bv-logo:hover {
  opacity: 0.8;
}

.bv-navbar.scrolled .bv-logo {
  /* Image logo doesn't use text color */
}

.bv-nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bv-nav-links a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  text-decoration: none;
  transition: color 0.25s;
  white-space: nowrap;
}

.bv-navbar.scrolled .bv-nav-links a {
  color: var(--bv-text-mid);
}

.bv-nav-links a:hover {
  color: var(--bv-primary-light);
}

.bv-navbar.scrolled .bv-nav-links a:hover {
  color: var(--bv-primary);
}

.bv-nav-cta {
  background: var(--bv-primary) !important;
  color: var(--bv-white) !important;
  padding: 0.55rem 1.35rem !important;
  border-radius: var(--bv-radius-pill) !important;
  font-weight: 600 !important;
  transition: background 0.25s, transform 0.2s !important;
}

.bv-nav-cta:hover {
  background: var(--bv-primary-dark) !important;
  transform: translateY(-1px) !important;
}

.bv-navbar.scrolled .bv-nav-cta {
  background: var(--bv-primary) !important;
  color: var(--bv-white) !important;
}

.bv-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.bv-hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--bv-white);
  border-radius: 2px;
  transition: background 0.3s;
}

.bv-navbar.scrolled .bv-hamburger span {
  background: var(--bv-text-dark);
}

/* ============================================================
   9. HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1800&q=80') center / cover no-repeat;
  opacity: 0.65;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(8, 145, 178, 0.55) 0%,
      rgba(12, 74, 110, 0.65) 50%,
      rgba(0, 0, 0, 0.6) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding-top: 90px;
  padding-bottom: 3rem;
  width: 100%;
}

.hero-content {
  max-width: 880px;
  width: 100%;
  color: var(--bv-white);
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bv-primary-light);
  margin-bottom: 0.8rem;
}

.hero-title {
  font-family: var(--bv-font-display);
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--bv-white);
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-family: var(--bv-font-serif);
  font-size: clamp(1.05rem, 2.5vw, 1.45rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.2rem;
  letter-spacing: 0.02em;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
}

.hero-stat i {
  color: var(--bv-primary-light);
  font-size: 1rem;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.hero-badges-row {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badge-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.hero-badge-img:hover {
  transform: translateY(-5px) scale(1.05);
}

/* ============================================================
   10. SEARCH BAR
   ============================================================ */
.search-bar-wrapper {
  width: 100%;
  max-width: 900px;
  padding: 0 1rem;
}

.search-bar {
  background: var(--bv-white);
  border-radius: var(--bv-radius-md);
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.search-field {
  flex: 1;
  padding: 0.3rem 1.1rem;
  border-right: 1px solid var(--bv-border);
  min-width: 0;
}

.search-field:last-of-type {
  border-right: none;
}

.search-divider {
  width: 1px;
  height: 30px;
  background-color: var(--bv-border);
  margin: 0 5px;
}

.search-field label {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bv-text-light);
  margin-bottom: 0.2rem;
}

.search-field input,
.search-field select {
  border: none;
  outline: none;
  font-size: 0.94rem;
  font-family: var(--bv-font-body);
  color: var(--bv-text-dark);
  background: transparent;
  width: 100%;
}

.search-submit-btn {
  background: var(--bv-primary);
  color: var(--bv-white);
  border: none;
  padding: 0.85rem 1.7rem;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--bv-transition);
  margin-left: 0.8rem;
  font-family: var(--bv-font-body);
}

.search-submit-btn:hover {
  background: var(--bv-primary-dark);
}

/* ============================================================
   11. ABOUT SECTION
   ============================================================ */
.about-section {
  background-color: var(--bv-white);
  padding: 4rem 0;
}

.section-text {
  font-family: var(--bv-font-body);
  font-size: 1rem;
  color: var(--bv-text-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.about-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-info-row {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.about-info-icon {
  color: var(--bv-primary);
  font-size: 1.3rem;
  margin-top: 3px;
}

.about-info-title {
  font-family: var(--bv-font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bv-text-dark);
  margin-bottom: 0.15rem;
}

.about-info-desc {
  font-size: 0.9rem;
  color: var(--bv-text-light);
  margin: 0;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.about-stat-card {
  background: var(--bv-white);
  padding: 2.5rem 1.5rem;
  border-radius: var(--bv-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 40px rgba(8, 145, 178, 0.08);
  border: 1px solid rgba(8, 145, 178, 0.05);
  transition: var(--bv-transition);
}

.about-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(8, 145, 178, 0.15);
  border-color: var(--bv-primary-light);
}

.about-stat-num {
  font-family: var(--bv-font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bv-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-stat-label {
  font-family: var(--bv-font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bv-text-light);
}

@media (max-width: 991px) {
  .about-stats-grid {
    margin-top: 3rem;
  }
}

@media (max-width: 575px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   12. PROPERTY SHOWCASE SECTION
   ============================================================ */
.property-showcase {
  background-color: var(--bv-white);
  /* padding: 8rem 0 4rem 0; */
  overflow: hidden;
}

.property-container {
  max-width: 1360px;
  margin: 4rem auto;
  background: var(--bv-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.08);
}

.property-image-col {
  position: relative;
  min-height: 600px;
}

.property-main-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.property-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}

.property-location-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--bv-white);
  padding: 0.6rem 1.2rem;
  border-radius: var(--bv-radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--bv-text-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.property-location-badge i {
  color: var(--bv-primary);
}

.property-content-col {
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
}

.prop-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--bv-primary);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.prop-title {
  font-family: var(--bv-font-display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--bv-text-dark);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.prop-sub-features {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bv-text-light);
  margin-bottom: 2.2rem;
  border-top: 1px solid var(--bv-border);
  padding-top: 1rem;
  display: inline-block;
}

.prop-main-desc {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--bv-text-mid);
  margin-bottom: 2.5rem;
  max-width: 90%;
  transition: opacity 0.4s ease;
}

.prop-stats-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--bv-border);
}

.prop-stat-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.prop-stat-item i {
  font-size: 1.25rem;
  color: var(--bv-text-light);
  opacity: 0.6;
}

.prop-stat-info {
  display: flex;
  flex-direction: column;
}

.prop-stat-info strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bv-text-dark);
}

.prop-stat-info small {
  font-size: 0.7rem;
  color: var(--bv-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.prop-tags-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.8rem;
}

.prop-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: var(--bv-radius-pill);
  border: 1px solid var(--bv-border);
  color: var(--bv-text-mid);
  transition: all 0.3s ease;
}

.prop-tag:hover {
  background: rgba(8, 145, 178, 0.05);
  border-color: var(--bv-primary);
  color: var(--bv-primary);
}

.prop-btn-group {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-prop {
  padding: 1.1rem 2.5rem;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.btn-prop-primary {
  background: var(--bv-primary);
  color: var(--bv-white);
  border: none;
}

.btn-prop-primary:hover {
  background: var(--bv-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(8, 145, 178, 0.2);
}

.btn-prop-outline {
  border: 1px solid var(--bv-border);
  color: var(--bv-text-dark);
  background: transparent;
}

.btn-prop-outline:hover {
  background: var(--bv-text-dark);
  color: var(--bv-white);
  border-color: var(--bv-text-dark);
}

/* Bottom Tabs Nav */
.property-nav-tabs {
  display: flex;
  border-top: 1px solid var(--bv-border);
  background: var(--bv-white);
  align-items: center;
}

.prop-tab-item {
  flex: 1;
  padding: 1.8rem 1rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--bv-text-light);
  cursor: pointer;
  border-right: 1px solid var(--bv-border);
  transition: all 0.3s ease;
  position: relative;
}

.prop-tab-item:last-of-type {
  border-right: none;
}

.prop-tab-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--bv-primary);
  transition: width 0.3s ease;
}

.prop-tab-item.active {
  color: var(--bv-primary);
}

.prop-tab-item.active::after {
  width: 100%;
}

.prop-tab-item:hover {
  background: #fdfdfd;
  color: var(--bv-text-dark);
}

.prop-tab-nav-arrows {
  display: flex;
  border-left: 1px solid var(--bv-border);
}

.prop-nav-arrow {
  width: 60px;
  height: 60px;
  border: none;
  background: transparent;
  color: var(--bv-text-light);
  font-size: 0.9rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--bv-border);
}

.prop-nav-arrow:hover {
  color: var(--bv-primary);
  background: #f9f9f9;
}

@media (max-width: 1199px) {
  .property-content-col {
    padding: 3rem 3rem;
  }
}

@media (max-width: 991px) {
  .property-container {
    margin: 2rem 1rem;
  }

  .property-image-col {
    min-height: 400px;
  }

  .prop-stats-row {
    gap: 1.5rem;
  }

  .property-nav-tabs {
    flex-wrap: wrap;
  }

  .prop-tab-item {
    flex: 1 1 50%;
    border-bottom: 1px solid var(--bv-border);
  }

  .prop-tab-nav-arrows {
    display: none;
  }
}

@media (max-width: 575px) {
  .property-content-col {
    padding: 2.5rem 1.5rem;
  }

  .prop-stats-row {
    flex-direction: column;
    gap: 1.2rem;
  }

  .prop-btn-group {
    flex-direction: column;
  }

  .btn-prop {
    width: 100%;
  }

  .prop-tab-item {
    flex: 1 1 100%;
  }
}

/* ============================================================
   12. GALLERY SHOWCASE SECTION (MASONRY STYLE)
   ============================================================ */
.gallery-showcase {
  background-color: var(--bv-white);
  padding: 3rem 0;
}

.gallery-filter-btns {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.gallery-filter {
  background: var(--bv-white);
  border: 1px solid var(--bv-border);
  color: var(--bv-text-mid);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--bv-font-body);
}

.gallery-filter.active,
.gallery-filter:hover {
  background: var(--bv-primary);
  border-color: var(--bv-primary);
  color: var(--bv-white);
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.2);
}

.gallery-pill-eyebrow {
  display: inline-block;
  background-color: var(--bv-primary);
  color: var(--bv-white);
  padding: 0.35rem 1.4rem;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.gallery-main-title {
  font-family: var(--bv-font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #1a365d;
  /* Darker navy for the title */
  margin-bottom: 2.5rem;
}

.gallery-masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  grid-auto-rows: 200px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  /* Highly rounded as in image */
  overflow: hidden;
  cursor: pointer;
  background-color: #f3f4f6;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  transform: translateY(-5px);
  z-index: 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  color: #4b5563;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  pointer-events: none;
  z-index: 1;
}

.gallery-item .gallery-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-hover-overlay {
  opacity: 1;
}

.gallery-hover-overlay i {
  color: var(--bv-white);
  font-size: 1.8rem;
}

/* Responsive Grid Adjustments */
@media (max-width: 991px) {
  .gallery-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
  }
}

@media (max-width: 575px) {
  .gallery-masonry-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .gallery-item--tall,
  .gallery-item--wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ============================================================
   13. LIGHTBOX
   ============================================================ */
.bv-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.bv-lightbox.open {
  display: flex;
}

.lb-close-btn {
  position: fixed;
  top: 1.4rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--bv-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  cursor: pointer;
  z-index: 1;
}

.lb-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lb-nav-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--bv-white);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.lb-nav-btn:hover {
  background: var(--bv-primary);
}

.lb-prev {
  left: 1.5rem;
}

.lb-next {
  right: 1.5rem;
}

.lb-content-wrap {
  width: 90vw;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-main-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lb-placeholder {
  display: none;
  width: 700px;
  max-width: 85vw;
  height: 500px;
  max-height: 80vh;
  background: linear-gradient(135deg, #0891b2, #0c4a6e);
  border-radius: var(--bv-radius-md);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.45);
}

.lb-placeholder i {
  font-size: 4rem;
  opacity: 0.3;
}

.lb-placeholder span {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.lb-placeholder small {
  font-size: 0.65rem;
  opacity: 0.32;
  color: var(--bv-white);
}

.lb-caption {
  position: fixed;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--bv-font-serif);
  font-style: italic;
  font-size: 0.92rem;
  text-align: center;
  white-space: nowrap;
}

.lb-counter {
  position: fixed;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
}

@media (max-width: 767px) {
  .lb-content-wrap {
    height: 60vh;
    width: 95vw;
  }
  .lb-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .lb-caption {
    font-size: 0.82rem;
    white-space: normal;
    padding: 0 1rem;
    bottom: 4rem;
  }
}

/* ============================================================
   14. EXPLORE SECTION
   ============================================================ */
/* ============================================================
   14. EXPLORE SECTION
   ============================================================ */
.explore-subheading {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bv-text-mid);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.explore-tabs {
  display: flex;
  gap: 0.8rem;
  margin: 3rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

.explore-tab-btn {
  background: var(--bv-white);
  border: 1px solid var(--bv-border);
  color: var(--bv-text-mid);
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--bv-font-body);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.explore-tab-btn.active,
.explore-tab-btn:hover {
  background: var(--bv-primary);
  border-color: var(--bv-primary);
  color: var(--bv-white);
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.2);
}

.explore-tab-btn i {
  font-size: 0.85rem;
}

.explore-card {
  background: var(--bv-white);
  border: 1px solid var(--bv-border);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--bv-shadow-sm);
}

.explore-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.explore-card-img {
  height: 230px;
  width: 100%;
  overflow: hidden;
  background-color: #f3f4f6;
}

.explore-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.explore-card:hover .explore-card-img img {
  transform: scale(1.08);
}

.explore-card-body {
  padding: 1.8rem;
}

.explore-card-title {
  font-family: var(--bv-font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bv-text-dark);
  margin-bottom: 0.75rem;
}

.explore-card-desc {
  font-size: 0.92rem;
  color: var(--bv-text-mid);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.explore-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.4rem;
  border-top: 1px solid var(--bv-border);
}

.explore-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bv-primary);
}

.explore-detail-link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bv-primary);
  text-decoration: none;
  transition: gap 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.explore-detail-link:hover {
  gap: 0.7rem;
}

/* ============================================================
   15. REVIEWS SECTION
   ============================================================ */
.reviews-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?w=1920') center / cover no-repeat;
  background-attachment: fixed;
  padding: 8rem 0;
  overflow: hidden;
}

.reviews-section .container-xl {
  position: relative;
  z-index: 2;
}

.reviews-section .section-eyebrow {
  color: #f97316;
}

.reviews-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12, 74, 110, 0.7), rgba(12, 74, 110, 0.4));
  backdrop-filter: blur(2px);
}

.review-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--bv-radius-lg);
  padding: 2rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.15);
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.review-stars {
  color: #fca311;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.review-date {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.review-text {
  font-family: var(--bv-font-body);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  flex: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: #fca311;
  color: var(--bv-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.reviewer-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--bv-white);
  margin-bottom: 2px;
}

.reviewer-loc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Remove featured styles as they are now standardized */
.review-card--featured {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}


/* ============================================================
   16. BENEFITS SECTION (BETTER THAN AIRBNB)
   ============================================================ */
.benefits-section {
  /* padding: 6rem 0; */
  background-color: var(--bv-white);
}

.benefits-subheading {
  font-size: 0.95rem;
  color: var(--bv-text-mid);
  margin-top: 0.5rem;
}

.benefit-card {
  padding: 1.5rem;
  height: 100%;
}

.benefit-header-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.benefit-icon {
  font-size: 1.3rem;
  color: var(--bv-primary);
  flex-shrink: 0;
}

.benefit-title {
  font-family: var(--bv-font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--bv-text-dark);
  margin: 0;
  line-height: 1.2;
}

.benefit-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--bv-text-mid);
  margin: 0;
}

@media (max-width: 991px) {
  .benefit-card {
    padding: 1rem 0;
  }
}

.direct-compare-box {
  background: linear-gradient(145deg, #ecfeff, #cffafe);
  border-radius: 22px;
  padding: 2.2rem;
}

.compare-box-title {
  font-family: var(--bv-font-display);
  font-size: 1.2rem;
  color: var(--bv-secondary);
  text-align: center;
  margin-bottom: 1.2rem;
}

.compare-row-item {
  background: var(--bv-white);
  border-radius: var(--bv-radius-sm);
  padding: 0.95rem 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.65rem;
  box-shadow: 0 2px 10px rgba(8, 145, 178, 0.07);
}

.compare-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--bv-text-mid);
}

.compare-vals {
  display: flex;
  gap: 1.8rem;
}

.compare-val {
  text-align: center;
}

.compare-val span {
  display: block;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bv-text-light);
  margin-bottom: 0.18rem;
}

.compare-val strong {
  font-size: 0.88rem;
  font-weight: 700;
}

.compare-val--good strong {
  color: #16a34a;
}

.compare-val--bad strong {
  color: #dc2626;
}

/* ============================================================
   17. FAQ SECTION
   ============================================================ */
.faq-top-wrap {
  margin-bottom: 2rem;
}

.faq-category-list {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  margin-top: 1.8rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 1px solid var(--bv-border);
  padding-bottom: 0.5rem;
}

.faq-cat-btn {
  background: transparent;
  border: none;
  padding: 0.75rem 1.4rem;
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--bv-text-mid);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--bv-font-body);
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.faq-cat-btn.active {
  background: #0d2830;
  color: var(--bv-white);
  box-shadow: var(--bv-shadow-sm);
}

.faq-cat-btn:hover:not(.active) {
  color: var(--bv-primary);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bv-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--bv-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.faq-question-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--bv-font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: #1e293b;
  text-align: left;
}

.faq-question-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.faq-question-left i {
  color: var(--bv-text-mid);
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

.faq-item.active .faq-question-left i {
  color: var(--bv-primary);
}

.faq-chevron {
  color: #94a3b8;
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--bv-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f8fafc;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  border-top: 1px solid #f1f5f9;
}

.faq-answer p {
  padding: 1.5rem 1.8rem;
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #475569;
}

/* ============================================================
   18. FOOTER
   ============================================================ */
/* ============================================================
   18. FOOTER - UPDATED
   ============================================================ */
.bv-footer {
  background-color: var(--bv-secondary);
  color: var(--bv-white);
  padding: 6rem 0 3rem;
}

.footer-branding-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.footer-logo img {
  max-width: 220px;
  height: auto;
}

.footer-head-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  text-align: right;
  margin: 0;
  font-family: var(--bv-font-display);
}

.footer-divider-top {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 4rem;
}

.footer-col-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--bv-white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--bv-font-body);
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-list li {
  margin-bottom: 0.85rem;
}

.footer-link-list a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.94rem;
  transition: color 0.2s ease;
}

.footer-link-list a:hover {
  color: var(--bv-primary-light);
}

.footer-text-block p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.94rem;
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

/* Newsletter Card */
.footer-newsletter-card {
  background: var(--bv-white);
  border-radius: 16px;
  padding: 2.8rem 2.2rem;
  color: var(--bv-text-dark);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.newsletter-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #1a1a1a;
  font-family: var(--bv-font-display);
}

.newsletter-card-field {
  margin-bottom: 1.8rem;
}

.newsletter-card-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
  color: #1a1a1a;
}

.newsletter-card-field input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 0.6rem 0;
  font-size: 1rem;
  font-family: var(--bv-font-body);
  outline: none;
  color: #333;
  background: transparent;
  transition: border-color 0.2s;
}

.newsletter-card-field input:focus {
  border-color: var(--bv-primary);
}

.newsletter-card-field input::placeholder {
  color: #ccc;
}

.newsletter-card-btn {
  width: 100%;
  background: var(--bv-primary);
  color: var(--bv-white);
  border: none;
  border-radius: 8px;
  padding: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.8rem;
}

.newsletter-card-btn:hover {
  background: var(--bv-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(8, 145, 178, 0.3);
}

.footer-divider-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 5rem;
  margin-bottom: 2rem;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-legal-links a {
  color: inherit;
  text-decoration: none;
  margin: 0 1.2rem;
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: var(--bv-white);
}

.footer-designer span {
  color: var(--bv-white);
  font-weight: 700;
}

@media (max-width: 991px) {
  .footer-branding-row {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .footer-head-text p {
    text-align: center;
    br { display: none; }
  }
  .footer-bottom-row {
    flex-direction: column;
    gap: 1.8rem;
    text-align: center;
  }
  .footer-newsletter-card {
    margin-top: 1rem;
  }
}
  margin-top: 0.55rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--bv-primary-light);
}

/* ============================================================
   19. RESPONSIVE — TABLET (max-width: 991px)
   ============================================================ */
@media (max-width: 991.98px) {
  .bv-nav-links {
    display: none;
  }

  .bv-hamburger {
    display: flex;
  }

  .prop-info-wrap {
    padding-left: 0;
  }

  .faq-sidebar {
    position: static;
  }

  .faq-category-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .faq-cat-btn {
    width: auto;
  }

  .gallery-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-item--large {
    grid-column: span 2;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }
}

/* ============================================================
   20. RESPONSIVE — MOBILE (max-width: 767px)
   ============================================================ */
@media (max-width: 767.98px) {
  .bv-section {
    padding: 3rem 0;
  }

  .hero-stats {
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .hero-stat {
    flex-basis: 45%;
    justify-content: center;
  }

  .hero-stat span {
    font-size: 0.82rem;
  }

  .search-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 1.2rem;
    gap: 0.5rem;
  }

  .search-divider {
    display: none;
  }

  .search-field {
    border-right: none;
    border-bottom: 1px solid var(--bv-border);
    padding: 0.8rem 0;
  }

  .search-field:last-of-type {
    border-bottom: none;
  }

  .search-submit-btn {
    margin-left: 0;
    margin-top: 0.8rem;
    width: 100%;
    padding: 1rem;
  }

  .gallery-masonry-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
    gap: 10px;
  }

  .gallery-item--tall,
  .gallery-item--wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .lb-prev {
    left: 0.4rem;
  }

  .lb-next {
    right: 0.4rem;
  }

  .lb-placeholder {
    height: 300px;
  }

  .reviews-meta-row {
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .explore-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
  }

  .explore-tab-btn {
    flex-shrink: 0;
    white-space: nowrap;
  }
}

/* ============================================================
   21. RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-badges-row {
    flex-direction: column;
    align-items: center;
  }

  .hero-badge-img {
    height: 34px;
  }

  .gallery-masonry-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .gallery-item--large,
  .gallery-item--wide {
    grid-column: span 1;
  }

  .compare-row-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .direct-compare-box {
    padding: 1.4rem;
  }

  .prop-float-card {
    flex-wrap: wrap;
    gap: 0.6rem;
  }
}

/* ============================================================
   22. BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 50px;
  height: 50px;
  background: var(--bv-primary);
  color: var(--bv-white);
  border: none;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: var(--bv-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5) translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}

.back-to-top:hover {
  background: var(--bv-primary-dark);
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 12px 32px rgba(8, 145, 178, 0.4);
}

.back-top-text {
  font-size: 0.6rem;
  font-weight: 700;
  margin-top: -2px;
  letter-spacing: 0.05em;
}

.back-to-top i {
  font-size: 0.9rem;
}

@media (max-width: 767px) {
  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
  }
}