/* ==========================================================================
   PANDHARINATH LODGE & RESTAURANT - COMPONENTS STYLESHEET
   Header, Cards, Gallery, Lightbox, Booking Modal, WhatsApp CTA
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DEVOTIONAL TOP ANNOUNCEMENT BAR
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--color-maroon-dark);
  color: var(--gold-light);
  font-size: 0.82rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(201, 151, 56, 0.25);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-quote {
  font-family: var(--font-devanagari);
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-contacts {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-bar-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #FFF2CC;
  font-size: 0.82rem;
}

.top-bar-contacts a:hover {
  color: var(--gold-bright);
}

/* --------------------------------------------------------------------------
   2. STICKY NAVBAR & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 253, 249, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 151, 56, 0.2);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

/* Compact header state when scrolled */
.site-header.scrolled {
  padding: 4px 0;
  background-color: rgba(255, 253, 249, 0.98);
  box-shadow: 0 4px 20px rgba(74, 14, 26, 0.12);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  transition: padding 0.3s ease;
}

.site-header.scrolled .navbar-inner {
  padding: 6px 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo .crest-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(201, 151, 56, 0.4));
  transition: transform 0.3s ease;
}

.site-header.scrolled .brand-logo .crest-icon {
  width: 36px;
  height: 36px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-maroon-dark);
  letter-spacing: 0.8px;
  line-height: 1.15;
}

.brand-subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-dark);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-main);
  padding: 6px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--color-maroon);
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 26px;
  background: transparent;
  border: none;
  /* Padding expands the tappable area to the 44x44px minimum touch target
     without changing the visible icon size (bars stay sized to the content box). */
  padding: 9px 6px;
}

.mobile-toggle-btn span {
  width: 100%;
  height: 3px;
  background-color: var(--color-maroon-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Drawer Overlay */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: #FFFDF9;
  z-index: 2000;
  box-shadow: -6px 0 24px rgba(0, 0, 0, 0.2);
  transition: right 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.mobile-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201, 151, 56, 0.2);
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.mobile-drawer-links .nav-link {
  font-size: 1.05rem;
  display: block;
}

/* --------------------------------------------------------------------------
   3. TRUST STRIP
   -------------------------------------------------------------------------- */
.trust-strip {
  background: #FFFFFF;
  border: 1px solid rgba(201, 151, 56, 0.2);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-maroon-dark);
}

.trust-item-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-light);
}

/* --------------------------------------------------------------------------
   4. PILGRIMAGE / TEMPLE HEADLINE SECTION
   -------------------------------------------------------------------------- */
.pilgrimage-highlight-box {
  background: linear-gradient(135deg, #FFFFFF 0%, #FAF5EC 100%);
  border: 1.5px solid rgba(201, 151, 56, 0.3);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 44px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.pilgrimage-highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--gold-gradient);
}

.proximity-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-maroon);
  color: #FFF2CC;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(107, 20, 38, 0.25);
}

.proximity-badge svg {
  width: 16px;
  height: 16px;
  fill: #FFD56B;
}

.pilgrimage-text {
  font-size: 1.15rem;
  color: var(--text-main);
  line-height: 1.8;
  margin-bottom: 24px;
}

.pilgrimage-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px dashed rgba(201, 151, 56, 0.3);
}

.meta-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.meta-point svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-primary);
}

/* --------------------------------------------------------------------------
   5. ROOMS SECTION CARDS
   -------------------------------------------------------------------------- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.room-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(201, 151, 56, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-primary);
}

.room-image-wrap {
  height: 230px;
  background: linear-gradient(135deg, #F3ECE1 0%, #E2D3BE 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.room-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.room-card:hover .room-photo {
  transform: scale(1.05);
}

.room-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--color-maroon);
  color: #FFF2CC;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.room-card-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-card-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--color-maroon-dark);
}

.room-card-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.room-highlights {
  list-style: none;
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.room-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-main);
  font-weight: 500;
}

.room-highlights li svg {
  width: 16px;
  height: 16px;
  fill: var(--gold-primary);
  flex-shrink: 0;
}

.room-card-action {
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   6. FACILITIES SECTION
   -------------------------------------------------------------------------- */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.facility-card {
  background: #FFFFFF;
  border: 1px solid rgba(201, 151, 56, 0.2);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.facility-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-md);
}

.facility-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(201, 151, 56, 0.12);
  border: 1px solid rgba(201, 151, 56, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold-dark);
  transition: var(--transition);
}

.facility-card:hover .facility-icon-wrap {
  background: var(--gold-primary);
  color: #FFFFFF;
}

.facility-card-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--color-maroon-dark);
}

.facility-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   7. HOTEL PHOTO GALLERY
   -------------------------------------------------------------------------- */
.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.gallery-filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: #FFFFFF;
  border: 1.5px solid rgba(201, 151, 56, 0.25);
  transition: var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--color-maroon);
  color: #FFF2CC;
  border-color: var(--color-maroon);
  box-shadow: 0 3px 12px rgba(107, 20, 38, 0.25);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(201, 151, 56, 0.2);
  box-shadow: var(--shadow-sm);
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-primary);
}

.gallery-thumb-placeholder {
  height: 220px;
  background: linear-gradient(135deg, #F3ECE1 0%, #E8DCBE 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gallery-thumb-placeholder.gallery-photo-wrap {
  padding: 0;
  display: block;
}

.gallery-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.gallery-thumb-placeholder svg {
  width: 42px;
  height: 42px;
  fill: var(--gold-dark);
  opacity: 0.6;
  margin-bottom: 10px;
}

.gallery-placeholder-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-maroon);
  background: rgba(255, 255, 255, 0.85);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.gallery-placeholder-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

.gallery-zoom-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74, 14, 26, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.gallery-zoom-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A0D04;
  transform: scale(0.7);
  transition: transform 0.25s ease;
}

.gallery-item:hover .gallery-zoom-icon {
  transform: scale(1);
}

.gallery-caption-bar {
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  background: #FFFFFF;
  border-top: 1px solid rgba(201, 151, 56, 0.15);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(14, 5, 8, 0.95);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-container {
  max-width: 900px;
  width: 100%;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1.5px solid var(--gold-primary);
}

.lightbox-header {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FDFBF7;
  border-bottom: 1px solid rgba(201, 151, 56, 0.2);
}

.lightbox-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-maroon-dark);
}

.lightbox-close-btn {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--color-maroon);
  padding: 4px;
}

.lightbox-content-wrap {
  min-height: 380px;
  max-height: 65vh;
  background: #F4EFE6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
}

.lightbox-photo {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: var(--color-maroon);
  z-index: 10;
  transition: var(--transition);
}

.lightbox-nav-btn:hover {
  background: var(--color-maroon);
  color: #FFFFFF;
}

.lightbox-prev-btn { left: 16px; }
.lightbox-next-btn { right: 16px; }

.lightbox-footer {
  padding: 16px 20px;
  background: #FDFBF7;
  border-top: 1px solid rgba(201, 151, 56, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lightbox-caption {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.lightbox-counter {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-dark);
}

/* --------------------------------------------------------------------------
   8. WHATSAPP BOOKING SYSTEM & FORM
   -------------------------------------------------------------------------- */
.booking-section {
  background: linear-gradient(180deg, #FAF7F2 0%, #F5EFE4 100%);
  position: relative;
}

.booking-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(201, 151, 56, 0.35);
  box-shadow: var(--shadow-lg);
  padding: clamp(28px, 6vw, 48px);
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-maroon-dark);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(201, 151, 56, 0.3);
  border-radius: var(--radius-sm);
  background: #FCFAF6;
  color: var(--text-main);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(201, 151, 56, 0.2);
}

.booking-disclaimer-box {
  background: rgba(201, 151, 56, 0.1);
  border-left: 4px solid var(--gold-primary);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   9. AADHAAR CARD PRIVACY MODAL
   -------------------------------------------------------------------------- */
.aadhaar-modal {
  position: fixed;
  inset: 0;
  background: rgba(25, 8, 12, 0.85);
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
}

.aadhaar-modal.active {
  display: flex;
}

.aadhaar-modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 580px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid var(--gold-primary);
  overflow: hidden;
  animation: modalPop 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

@keyframes modalPop {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.aadhaar-modal-header {
  background: linear-gradient(135deg, var(--color-maroon-dark) 0%, var(--color-maroon) 100%);
  color: #FFFFFF;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.aadhaar-modal-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: #FFF2CC;
  display: flex;
  align-items: center;
  gap: 10px;
}

.aadhaar-modal-body {
  padding: 26px;
}

.aadhaar-lead-text {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 22px;
  font-weight: 500;
}

.aadhaar-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.aadhaar-step-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #FDFBF7;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 151, 56, 0.2);
}

.aadhaar-step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-maroon);
  color: #FFF2CC;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.aadhaar-step-text {
  font-size: 0.92rem;
  color: var(--text-main);
}

.aadhaar-privacy-shield-box {
  background: #FFF8E7;
  border: 1.5px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 26px;
}

.privacy-shield-icon {
  width: 24px;
  height: 24px;
  fill: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.privacy-note-text {
  font-size: 0.86rem;
  color: #593E0A;
  line-height: 1.5;
  font-weight: 600;
}

.aadhaar-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* --------------------------------------------------------------------------
   10. GOOGLE MAPS SECTION
   -------------------------------------------------------------------------- */
.maps-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(201, 151, 56, 0.3);
  box-shadow: var(--shadow-md);
  background: #FFFFFF;
}

.maps-iframe-container {
  width: 100%;
  height: 420px;
  position: relative;
}

.maps-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.maps-address-card {
  padding: 24px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.maps-address-info h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.maps-address-info p {
  font-size: 0.95rem;
}

.maps-action-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   11. CUSTOMER REVIEWS
   -------------------------------------------------------------------------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: #FFFFFF;
  border: 1px solid rgba(201, 151, 56, 0.25);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}

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

.review-stars {
  color: #F8B500;
  display: flex;
  gap: 4px;
  font-size: 1.1rem;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  /* Darkened from #4285F4 to meet WCAG AA 4.5:1 contrast on the light badge background */
  color: #1A56C4;
  background: #EEF4FD;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.review-comment {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
}

.review-author {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed rgba(201, 151, 56, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-author-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-maroon-dark);
}

.review-author-date {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* --------------------------------------------------------------------------
   12. GOOGLE BUSINESS CTA SECTION
   -------------------------------------------------------------------------- */
.business-cta-box {
  background: linear-gradient(135deg, var(--color-maroon-dark) 0%, var(--color-purple) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 60px);
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold-primary);
}

.business-cta-box h3 {
  color: #FFF2CC;
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  margin-bottom: 14px;
}

.business-cta-box p {
  color: #F3ECE1;
  max-width: 620px;
  margin: 0 auto 30px auto;
  font-size: 1.1rem;
}

.business-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* --------------------------------------------------------------------------
   13. FLOATING WHATSAPP BUTTON
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 10px;
  /* Darkened from #25D366 to meet WCAG AA 4.5:1 contrast with white text */
  background-color: #0F7A3D;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 24px rgba(15, 122, 61, 0.45);
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 30px rgba(15, 122, 61, 0.6);
  color: #FFFFFF;
}

.floating-whatsapp.pulse-active {
  animation: gentlePulse 2s infinite;
}

@keyframes gentlePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Mobile Quick Bar at bottom */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-top: 1.5px solid rgba(201, 151, 56, 0.3);
  padding: 10px 16px;
  z-index: 1400;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

.mobile-bottom-inner {
  display: flex;
  gap: 10px;
}

.mobile-bottom-inner .btn {
  flex: 1;
  padding: 11px 12px;
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   14. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-maroon-dark);
  color: #F8EFE4;
  padding-top: 70px;
  padding-bottom: 40px;
  border-top: 3px solid var(--gold-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: #FFF2CC;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #E2D3CE;
  font-size: 0.92rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-bright);
  padding-left: 6px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: #E2D3CE;
}

.footer-contact-list svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(201, 151, 56, 0.2);
  text-align: center;
  font-size: 0.85rem;
  color: #C0B0AA;
}

/* The global "p" rule (style.css) otherwise wins over this inherited color,
   since a directly-matching tag rule beats an inherited parent value. */
.footer-bottom p {
  color: #C0B0AA;
}

.footer-privacy-text {
  font-size: 0.82rem;
  color: #C0B0AA;
  margin-top: 8px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-toggle-btn {
    display: flex;
  }
  
  .top-bar-contacts {
    display: none;
  }
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: block;
  }
  
  body {
    padding-bottom: 65px; /* space for mobile bottom bar */
  }
  
  .floating-whatsapp {
    bottom: 80px;
    right: 20px;
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  
  .trust-strip {
    justify-content: flex-start;
  }
}
