/* ============================================================
   PEACE VILLA – Konkan Stay – Dedicated Stylesheet
   ============================================================ */

/* ─── Custom Properties ─── */
:root {
  --pv-green: #2e7d32;
  --pv-green-light: #43a047;
  --pv-green-dark: #1b5e20;
  --pv-emerald: #00c853;
  --pv-sage: #a5d6a7;
  --pv-cream: #f1f8e9;
  --pv-sand: #fff8e1;
  --pv-brown: #5d4037;
  --pv-gold: #f9a825;
  --pv-gradient: linear-gradient(135deg, #1b5e20, #2e7d32, #43a047);
  --pv-gradient-soft: linear-gradient(135deg, #e8f5e9, #f1f8e9, #fff8e1);
  --pv-shadow: 0 8px 32px rgba(46, 125, 50, 0.15);
  --pv-shadow-lg: 0 20px 60px rgba(46, 125, 50, 0.2);
  --pv-radius: 20px;
  --pv-radius-sm: 12px;
  --pv-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.pv-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 70px;
}

.pv-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pv-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes pv-hero-zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.12); }
}

/* Sound Toggle Button */
.pv-sound-toggle {
  position: absolute;
  bottom: 90px;
  right: 30px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.35s ease;
  animation: pv-sound-pulse 2.5s ease-in-out infinite;
}

.pv-sound-toggle:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.05);
}

.pv-sound-toggle.active {
  background: rgba(46, 125, 50, 0.35);
  border-color: rgba(165, 214, 167, 0.4);
  animation: none;
}

.pv-sound-icon {
  font-size: 1.2rem;
}

.pv-sound-label {
  letter-spacing: 0.5px;
}

@keyframes pv-sound-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2); }
  50% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
}

.pv-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(27, 94, 32, 0.4) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.pv-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 40px 24px;
}

.pv-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 125, 50, 0.25);
  border: 1px solid rgba(165, 214, 167, 0.4);
  border-radius: 50px;
  padding: 8px 28px;
  color: var(--pv-sage);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  animation: fade-in-up 0.8s ease forwards;
}

.pv-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  animation: fade-in-up 0.9s ease 0.1s both;
}

.pv-hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto 40px;
  animation: fade-in-up 1s ease 0.2s both;
}

.pv-hero-btns {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-in-up 1s ease 0.3s both;
}

.pv-btn-primary {
  background: var(--pv-gradient);
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 8px 30px rgba(46, 125, 50, 0.5);
  transition: var(--pv-transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.pv-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 45px rgba(46, 125, 50, 0.7);
}

.pv-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: var(--pv-transition);
  cursor: pointer;
  text-decoration: none;
}

.pv-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--pv-sage);
  transform: translateY(-4px);
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.pv-section-tag {
  display: inline-block;
  background: var(--pv-gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 22px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.pv-section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--pv-green-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.pv-section-title span {
  background: var(--pv-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pv-section-sub {
  color: var(--text-muted);
  max-width: 600px;
  margin: 10px auto 0;
  font-size: 1rem;
}

.pv-divider {
  width: 80px;
  height: 4px;
  background: var(--pv-gradient);
  border-radius: 4px;
  margin: 16px auto 0;
}

/* ============================================================
   SECTION 2 — ABOUT VILLA
   ============================================================ */
.pv-about {
  background: var(--pv-gradient-soft);
  padding: 100px 24px;
}

.pv-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.pv-about-img {
  position: relative;
  border-radius: var(--pv-radius);
  overflow: hidden;
  box-shadow: var(--pv-shadow-lg);
}

.pv-about-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pv-about-img:hover img {
  transform: scale(1.05);
}

.pv-about-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--pv-gradient);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
}

.pv-about-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--pv-green-dark);
  margin-bottom: 16px;
}

.pv-about-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.pv-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pv-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: #fff;
  border-radius: var(--pv-radius-sm);
  border: 1px solid rgba(46, 125, 50, 0.12);
  transition: var(--pv-transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.pv-feature-item:hover {
  transform: translateX(8px);
  border-color: var(--pv-green-light);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.12);
}

.pv-feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--pv-gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.pv-feature-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--pv-green-dark);
  font-weight: 700;
}

.pv-feature-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   SECTION 3 — ROOM & INTERIOR
   ============================================================ */
.pv-rooms {
  background: #fff;
  padding: 100px 24px;
}

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

.pv-room-card {
  position: relative;
  border-radius: var(--pv-radius);
  overflow: hidden;
  box-shadow: var(--pv-shadow);
  cursor: pointer;
  aspect-ratio: 4 / 3;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--pv-transition);
}

.pv-room-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.pv-room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pv-room-card:hover img {
  transform: scale(1.1);
}

.pv-room-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--pv-transition);
}

.pv-room-card:hover .pv-room-card-overlay {
  opacity: 1;
}

.pv-room-card-label {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

/* ============================================================
   SECTION 4 — FOOD EXPERIENCE
   ============================================================ */
.pv-food {
  background: var(--pv-gradient-soft);
  padding: 100px 24px;
}

.pv-food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.pv-food-card {
  background: #fff;
  border-radius: var(--pv-radius);
  overflow: hidden;
  box-shadow: var(--pv-shadow);
  border: 1px solid rgba(46, 125, 50, 0.1);
  transition: var(--pv-transition);
  opacity: 0;
  transform: translateY(30px);
}

.pv-food-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.pv-food-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--pv-shadow-lg);
  border-color: var(--pv-green-light);
}

.pv-food-img-wrap {
  height: 210px;
  overflow: hidden;
  position: relative;
}

.pv-food-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pv-food-card:hover .pv-food-img-wrap img {
  transform: scale(1.08);
}

.pv-food-category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--pv-gradient);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.4);
}

.pv-food-body {
  padding: 20px;
}

.pv-food-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pv-green-dark);
  margin-bottom: 6px;
}

.pv-food-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   SECTION 5 — PRICING
   ============================================================ */
.pv-pricing {
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #43a047 100%);
  padding: 100px 24px;
}

.pv-pricing .pv-section-title {
  color: #fff;
}

.pv-pricing .pv-section-title span {
  background: linear-gradient(90deg, var(--pv-sage), var(--pv-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pv-pricing .pv-section-sub {
  color: rgba(255, 255, 255, 0.7);
}

.pv-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.pv-price-card {
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--pv-radius);
  overflow: hidden;
  transition: var(--pv-transition);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.pv-price-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.pv-price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(165, 214, 167, 0.2);
  border-color: rgba(165, 214, 167, 0.4);
}

.pv-price-featured {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: var(--pv-gold) !important;
  transform: scale(1.03);
}

.pv-price-featured.visible {
  transform: scale(1.03);
}

.pv-price-featured:hover {
  transform: scale(1.03) translateY(-10px) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(249, 168, 37, 0.3) !important;
}

.pv-price-ribbon {
  position: absolute;
  top: 16px;
  right: -8px;
  background: linear-gradient(135deg, #f9a825, #ff8f00);
  color: #fff;
  padding: 5px 18px 5px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 4px 0 0 4px;
  box-shadow: 0 4px 12px rgba(249, 168, 37, 0.4);
}

.pv-price-ribbon::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -8px;
  border: 4px solid transparent;
  border-top-color: #c17900;
  border-right-color: #c17900;
}

.pv-price-header {
  padding: 28px 24px 20px;
  text-align: center;
}

.pv-price-icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.pv-price-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.pv-price-header p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.pv-price-body {
  padding: 0 24px 28px;
}

.pv-price-amount {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--pv-sage);
  margin-bottom: 20px;
}

.pv-price-amount span {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

.pv-price-features {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.pv-price-features li {
  padding: 8px 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pv-price-features li:last-child {
  border-bottom: none;
}

.pv-price-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: var(--pv-radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--pv-green-dark);
  background: rgba(255, 255, 255, 0.9);
  transition: var(--pv-transition);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.pv-price-btn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.pv-price-btn-featured {
  background: linear-gradient(135deg, #f9a825, #ff8f00);
  color: #fff;
}

.pv-price-btn-featured:hover {
  background: linear-gradient(135deg, #ff8f00, #f9a825);
  box-shadow: 0 8px 30px rgba(249, 168, 37, 0.5);
}

/* ============================================================
   SECTION 6 — MENU
   ============================================================ */
.pv-menu {
  background: #fff;
  padding: 100px 24px;
}

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

.pv-menu-card {
  background: var(--pv-cream);
  border-radius: var(--pv-radius);
  overflow: hidden;
  border: 1px solid rgba(46, 125, 50, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--pv-transition);
  opacity: 0;
  transform: translateY(30px);
}

.pv-menu-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.pv-menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--pv-shadow);
  border-color: var(--pv-green-light);
}

.pv-menu-card-header {
  background: var(--pv-gradient);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.pv-menu-emoji {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pv-menu-card-header h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.pv-menu-list {
  list-style: none;
  padding: 20px 24px;
  margin: 0;
}

.pv-menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(46, 125, 50, 0.15);
  font-size: 0.9rem;
  color: var(--pv-brown);
  transition: var(--pv-transition);
}

.pv-menu-list li:last-child {
  border-bottom: none;
}

.pv-menu-list li:hover {
  padding-left: 8px;
  color: var(--pv-green-dark);
}

.pv-menu-price {
  font-weight: 700;
  color: var(--pv-green);
  background: rgba(46, 125, 50, 0.08);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.82rem;
}

/* ============================================================
   SECTION 7 — GALLERY
   ============================================================ */
.pv-gallery {
  background: var(--pv-gradient-soft);
  padding: 100px 24px;
}

.pv-gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.pv-filter-btn {
  padding: 10px 26px;
  border: 2px solid rgba(46, 125, 50, 0.2);
  background: #fff;
  color: var(--pv-green-dark);
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--pv-transition);
}

.pv-filter-btn:hover,
.pv-filter-btn.active {
  background: var(--pv-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(46, 125, 50, 0.3);
}

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

.pv-gallery-item {
  position: relative;
  border-radius: var(--pv-radius-sm);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--pv-transition);
  opacity: 0;
  transform: scale(0.92);
}

.pv-gallery-item.visible {
  opacity: 1;
  transform: scale(1);
}

.pv-gallery-item.hidden {
  display: none;
}

.pv-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pv-gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(46, 125, 50, 0.2);
}

.pv-gallery-item:hover img {
  transform: scale(1.1);
}

.pv-gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 94, 32, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--pv-transition);
}

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

.pv-gallery-zoom-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--pv-green-dark);
  transform: scale(0.5);
  transition: var(--pv-transition);
}

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

/* ============================================================
   SECTION 8 — BOOKING
   ============================================================ */
.pv-booking {
  background: var(--pv-gradient-soft);
  padding: 100px 24px;
}

/* Main Booking Card */
.pv-booking-card {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--pv-radius);
  border: 1px solid rgba(46, 125, 50, 0.12);
  box-shadow: 0 12px 40px rgba(46, 125, 50, 0.1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--pv-transition);
}

.pv-booking-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Info Strip — 3 columns */
.pv-booking-info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.pv-booking-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 30px 28px;
  border-right: 1px solid rgba(46, 125, 50, 0.08);
  transition: var(--pv-transition);
}

.pv-booking-info-item:last-child {
  border-right: none;
}

.pv-booking-info-item:hover {
  background: rgba(46, 125, 50, 0.03);
}

.pv-booking-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--pv-gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 6px 18px rgba(46, 125, 50, 0.25);
}

.pv-booking-info-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--pv-green-dark);
  margin-bottom: 3px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.pv-booking-info-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

.pv-booking-info-item p a {
  color: var(--pv-green);
  font-weight: 600;
  transition: var(--pv-transition);
}

.pv-booking-info-item p a:hover {
  color: var(--pv-green-dark);
}

/* Separator */
.pv-booking-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46, 125, 50, 0.15), transparent);
  margin: 0 28px;
}

/* CTA Area */
.pv-booking-cta {
  padding: 32px 28px 36px;
  text-align: center;
}

.pv-booking-cta-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.6;
}

.pv-booking-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}

.pv-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: var(--pv-radius-sm);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: var(--pv-transition);
  cursor: pointer;
  letter-spacing: 0.3px;
}

.pv-action-call {
  background: var(--pv-gradient);
  color: #fff;
  box-shadow: 0 6px 22px rgba(46, 125, 50, 0.35);
}

.pv-action-call:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 38px rgba(46, 125, 50, 0.5);
}

.pv-action-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.3);
}

.pv-action-wa:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 38px rgba(37, 211, 102, 0.5);
}



/* ============================================================
   LIGHTBOX
   ============================================================ */
.pv-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  animation: pv-lb-in 0.3s ease;
}

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

@keyframes pv-lb-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.pv-lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--pv-radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  object-fit: contain;
}

.pv-lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--pv-transition);
  z-index: 10001;
}

.pv-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.pv-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--pv-transition);
  z-index: 10001;
}

.pv-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.pv-lightbox-prev { left: 24px; }
.pv-lightbox-next { right: 24px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .pv-about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pv-about-img img {
    height: 300px;
  }

  .pv-booking-info-strip {
    grid-template-columns: 1fr;
  }

  .pv-booking-info-item {
    border-right: none;
    border-bottom: 1px solid rgba(46, 125, 50, 0.08);
  }

  .pv-booking-info-item:last-child {
    border-bottom: none;
  }


  .pv-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pv-price-featured {
    transform: scale(1);
  }

  .pv-price-featured.visible {
    transform: scale(1);
  }

  .pv-price-featured:hover {
    transform: translateY(-10px) !important;
  }
}

@media (max-width: 768px) {
  .pv-room-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pv-food-grid {
    grid-template-columns: 1fr;
  }

  .pv-pricing-grid {
    grid-template-columns: 1fr;
  }

  .pv-menu-grid {
    grid-template-columns: 1fr;
  }

  .pv-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pv-booking-cta-btns {
    flex-direction: column;
    max-width: 100%;
  }

  .pv-booking-cta {
    padding: 24px 20px 28px;
  }
}

@media (max-width: 480px) {
  .pv-hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .pv-btn-primary,
  .pv-btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .pv-room-grid {
    grid-template-columns: 1fr;
  }

  .pv-gallery-grid {
    grid-template-columns: 1fr;
  }

  .pv-gallery-filters {
    gap: 8px;
  }

  .pv-filter-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}
