/*
Theme Name: Pink Party House (Miami Soft-Glam)
Theme URI: https://pinkbouncehousebroward.com
Author: Antigravity & Moveb
Author URI: https://pinkbouncehousebroward.com
Description: High-end Miami Soft-Glam custom luxury event rental theme for Pink Party House Co. Mobile/tablet optimized with smooth motion scroll reveals, interactive dynamic price builder, custom TeamBooking styling, Formspree integration, and full legacy class compatibility.
Version: 1.2.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
License: Proprietary
Text Domain: pink-party-house
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================================
   DESIGN TOKENS & SYSTEM VARIABLES
   ========================================================================== */
:root {
  /* Surface & Canvas Tokens */
  --bg-page: #FFF9FA;
  --bg-surface: #FFFFFF;
  --bg-surface-soft: #FFF0F4;
  --bg-surface-tint: #FFE8EE;
  --bg-surface-glass: rgba(255, 255, 255, 0.94);
  --bg-surface-dark: #0F172A;
  
  /* Brand Pink Color Tokens */
  --primary-pink: #FF1E6D;
  --primary-pink-hover: #E00052;
  --primary-pink-active: #C20044;
  --primary-pink-light: #FFE2EC;
  --primary-pink-subtle: #FFF0F5;
  --primary-pink-border: #FCE0E8;
  
  /* Legacy PPH Variable Aliases */
  --pph-blush: #FFE2EC;
  --pph-blush-light: #FFF0F5;
  --pph-rose: #FF1E6D;
  --pph-rose-dark: #E00052;
  --pph-gold: #FFB800;
  --pph-cream: #FFF9FA;
  --pph-charcoal: #111827;
  --pph-white: #ffffff;
  --pph-grey: #525E75;
  --pph-border: #FCE0E8;
  
  /* Accent & Highlight Tokens */
  --accent-gold: #FFB800;
  --accent-coral: #FF6B8B;
  --accent-sunshine: #FFA84B;
  --accent-gradient: linear-gradient(135deg, #FF1E6D 0%, #FF6584 50%, #FFA84B 100%);
  --accent-gradient-card: linear-gradient(135deg, rgba(255, 30, 109, 0.05) 0%, rgba(255, 168, 75, 0.05) 100%);
  --accent-gradient-glow: linear-gradient(135deg, rgba(255, 30, 109, 0.35) 0%, rgba(255, 168, 75, 0.35) 100%);
  
  /* Text & Contrast Tokens */
  --text-main: #111827;
  --text-muted: #525E75;
  --text-light: #8E9BAE;
  --text-inverse: #FFFFFF;
  
  /* Border Tokens */
  --border-subtle: #FBE5EB;
  --border-hover: #FFA4C0;
  --border-focus: #FF1E6D;
  
  /* Radii & Geometry */
  --radius-xs: 8px;
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-pill: 9999px;
  
  /* Shadows & Glow Elevation */
  --shadow-xs: 0 2px 8px rgba(17, 24, 39, 0.04);
  --shadow-sm: 0 6px 20px rgba(255, 30, 109, 0.06), 0 2px 6px rgba(0, 0, 0, 0.02);
  --shadow-card: 0 14px 36px rgba(255, 30, 109, 0.08), 0 2px 6px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 24px 56px rgba(255, 30, 109, 0.22), 0 8px 16px rgba(0, 0, 0, 0.05);
  --shadow-modal: 0 30px 90px rgba(15, 23, 42, 0.3);
  
  /* Typography Tokens */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Layout Dimensions & Transitions */
  --max-w: 1240px;
  --header-h: 80px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   RESET & FOUNDATION
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* Scroll Progress Bar */
#scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--accent-gradient);
  z-index: 99999;
  width: 0%;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px rgba(255, 30, 109, 0.6);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
}

/* Container */
.container, .pph-container {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}

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

/* ==========================================================================
   MOTION & SCROLL REVEAL UTILITIES
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Ambient Glow Orbs */
.ambient-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
  animation: floatOrb 12s ease-in-out infinite alternate;
}

.glow-orb-1 {
  top: 6%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 30, 109, 0.16) 0%, rgba(255, 184, 0, 0.08) 60%, transparent 70%);
}

.glow-orb-2 {
  top: 45%;
  left: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 139, 0.14) 0%, rgba(255, 30, 109, 0.06) 60%, transparent 70%);
  animation-duration: 16s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 40px) scale(1.08); }
  100% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
  letter-spacing: -0.025em;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.badge-eyebrow, .pph-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-pink-subtle);
  color: var(--primary-pink);
  font-weight: 700;
  font-size: 0.785rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 2px 8px rgba(255, 30, 109, 0.06);
}

.section-title-wrap, .pph-section-header {
  margin-bottom: 3.5rem;
  text-align: center;
}

.section-title-wrap h2, .pph-section-header h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin-bottom: 1.1rem;
}

.section-title-wrap p, .pph-section-header p {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  max-width: 640px;
  margin: 0 auto;
}

/* ==========================================================================
   BUTTONS (MODERN & LEGACY COMPATIBILITY)
   ========================================================================== */
.btn-miami, .pph-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition-smooth);
  text-align: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-miami::after, .pph-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.btn-miami:hover::after, .pph-btn:hover::after {
  left: 100%;
}

.btn-miami.primary, .pph-btn--primary {
  background: var(--accent-gradient) !important;
  color: var(--text-inverse) !important;
  box-shadow: 0 12px 28px rgba(255, 30, 109, 0.32);
}

.btn-miami.primary:hover, .pph-btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 44px rgba(255, 30, 109, 0.45);
  color: #fff !important;
}

.btn-miami.secondary, .pph-btn--outline {
  background: var(--bg-surface) !important;
  color: var(--text-main) !important;
  border: 1.5px solid var(--border-subtle) !important;
  box-shadow: var(--shadow-xs);
}

.btn-miami.secondary:hover, .pph-btn--outline:hover {
  border-color: var(--primary-pink) !important;
  color: var(--primary-pink) !important;
  transform: translateY(-2px);
  background: var(--primary-pink-subtle) !important;
}

.btn-miami.sm {
  padding: 10px 22px;
  font-size: 0.88rem;
}

.btn-miami.white, .pph-btn--white {
  background: #FFFFFF !important;
  color: var(--primary-pink) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.btn-miami.white:hover, .pph-btn--white:hover {
  background: var(--bg-surface-dark) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   NAVIGATION & MOBILE DRAWER
   ========================================================================== */
.navbar-miami {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-surface-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar-miami.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-h);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 800;
  color: var(--text-main);
}

.sparkle-icon {
  color: var(--primary-pink);
  font-size: 1.5rem;
  animation: pulseSparkle 3s infinite ease-in-out;
}

@keyframes pulseSparkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.18) rotate(18deg); }
}

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

.nav-links-list a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
}

.nav-links-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary-pink);
  transition: width 0.25s ease;
  border-radius: var(--radius-pill);
}

.nav-links-list a:hover {
  color: var(--primary-pink);
}

.nav-links-list a:hover::after {
  width: 100%;
}

.nav-phone-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: var(--primary-pink-subtle);
  color: var(--primary-pink);
  font-weight: 700;
  font-size: 0.88rem;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.nav-phone-chip:hover {
  background: var(--primary-pink);
  color: #fff;
  transform: translateY(-1px);
}

/* Mobile Hamburger Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
  z-index: 1100;
  padding: 10px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s ease;
  margin: 5px 0;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  background: var(--primary-pink);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  background: var(--primary-pink);
}

/* Mobile Fullscreen Slide-Down Menu */
.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1050;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.mobile-nav-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1;
  cursor: pointer;
}

.mobile-drawer-content {
  position: relative;
  z-index: 2;
  background: rgba(255, 249, 250, 0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 3rem 2.25rem 2.5rem;
  width: 90%;
  max-width: 440px;
  box-shadow: var(--shadow-modal);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateY(-24px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-nav-drawer.open .mobile-drawer-content {
  transform: translateY(0) scale(1);
}

.mobile-drawer-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: var(--primary-pink-subtle);
  color: var(--primary-pink);
  border: 1px solid var(--border-subtle);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.mobile-drawer-close:hover {
  background: var(--primary-pink);
  color: #fff;
}

.mobile-drawer-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-bottom: 2rem;
}

.mobile-drawer-links a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
  display: inline-block;
}

.mobile-drawer-links a:hover {
  color: var(--primary-pink);
  background: var(--primary-pink-subtle);
}

.mobile-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-miami {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(4.5rem, 9vw, 7.5rem);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left h1 {
  font-size: clamp(2.5rem, 5.2vw, 4.4rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
}

.hero-left p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

.hero-proof-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-subtle);
}

.proof-num {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  color: var(--primary-pink);
  font-weight: 900;
  line-height: 1.1;
}

.proof-label {
  font-size: 0.825rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Hero Visual Box */
.hero-visual-box {
  position: relative;
}

.hero-main-card {
  background: var(--bg-surface);
  padding: 14px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.hero-main-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.hero-main-card img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: clamp(320px, 42vw, 470px);
  object-fit: cover;
}

.float-badge-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--bg-surface);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: floatCard 4s ease-in-out infinite alternate;
}

@keyframes floatCard {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

.float-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  background: var(--primary-pink-subtle);
  color: var(--primary-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

/* ==========================================================================
   MARQUEE BAR
   ========================================================================== */
.marquee-bar {
  background: var(--accent-gradient);
  color: #fff;
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(255, 30, 109, 0.25);
}

.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: marqueeScroll 26s linear infinite;
}

.marquee-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.925rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   CURATED COLLECTION & RENTALS GRID
   ========================================================================== */
.collection-sec, .pph-section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  position: relative;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-tab:hover, .filter-tab.active {
  background: var(--primary-pink);
  color: #fff;
  border-color: var(--primary-pink);
  box-shadow: 0 8px 22px rgba(255, 30, 109, 0.3);
}

.collection-grid-cards, .pph-card-grid, .pph-rental-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.product-card, .pph-card, .pph-rental-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover, .pph-card:hover, .pph-rental-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-pink-light);
}

.product-media, .pph-card__media, .pph-rental-card__media {
  position: relative;
  height: 280px;
  overflow: hidden;
  cursor: pointer;
  background: var(--primary-pink-subtle);
}

.product-media img, .pph-card__media img, .pph-rental-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-media img,
.pph-card:hover .pph-card__media img,
.pph-rental-card:hover .pph-rental-card__media img {
  transform: scale(1.06);
}

.card-badge-top, .pph-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--bg-surface-glass);
  backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-pink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  z-index: 2;
}

.product-info, .pph-card__body, .pph-rental-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h3, .pph-card h3, .pph-rental-card h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.product-info p, .pph-card p, .pph-rental-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
  margin-bottom: 18px;
  flex-grow: 1;
}

.spec-chips {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.spec-chip {
  background: var(--bg-surface-soft);
  color: var(--text-main);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.775rem;
  font-weight: 600;
}

.card-action-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.price-block span, .pph-card__price {
  font-size: 0.725rem;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
  display: block;
}

.price-block strong, .pph-rental-card__price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary-pink);
}

/* ==========================================================================
   INTERACTIVE PACKAGE ESTIMATOR (CALCULATOR)
   ========================================================================== */
.calc-section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: var(--bg-surface-soft);
  position: relative;
}

.calc-glass-box {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: clamp(24px, 4vw, 44px);
}

.calc-left h4 {
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.item-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.radio-card {
  border: 2px solid var(--border-subtle);
  padding: 14px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.radio-card.selected {
  border-color: var(--primary-pink);
  background: var(--primary-pink-subtle);
  box-shadow: 0 4px 16px rgba(255, 30, 109, 0.12);
}

.radio-card strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.radio-card span {
  font-size: 0.85rem;
  color: var(--primary-pink);
  font-weight: 800;
}

.addon-picker-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.addon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--bg-page);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-subtle);
  cursor: pointer;
  transition: all var(--transition-fast);
  min-height: 52px;
}

.addon-row:hover {
  border-color: var(--primary-pink);
  background: #FFF5F8;
}

.addon-row input[type="checkbox"] {
  accent-color: var(--primary-pink);
  width: 22px;
  height: 22px;
  cursor: pointer;
  flex-shrink: 0;
}

.addon-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.925rem;
  font-weight: 600;
}

.addon-val {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--primary-pink);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-left: 8px;
}

.calc-receipt {
  background: var(--accent-gradient-card);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3.5vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1.5px dashed var(--primary-pink-border);
}

.receipt-title h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.receipt-items-table {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 18px;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.925rem;
  color: var(--text-muted);
}

.receipt-total-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.receipt-total-bar span {
  font-size: 1.1rem;
  font-weight: 700;
}

.receipt-total-bar strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.5rem);
  color: var(--primary-pink);
  font-weight: 900;
  transition: transform 0.2s ease;
}

.receipt-total-bar strong.price-pop {
  transform: scale(1.15);
}

/* ==========================================================================
   EXPERIENCE / WHY US & GALLERY
   ========================================================================== */
.experience-sec {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.perk-cards-stack, .pph-feature-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 2rem;
}

.perk-card, .pph-feature {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.perk-card:hover, .pph-feature:hover {
  transform: translateX(6px);
  border-color: var(--primary-pink-light);
}

.perk-icon, .pph-feature__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-pink-subtle);
  color: var(--primary-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.perk-text h4, .pph-feature h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.perk-text p, .pph-feature p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.gallery-quad, .pph-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.gallery-quad-item, .pph-gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: clamp(160px, 22vw, 220px);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  background: var(--primary-pink-subtle);
}

.gallery-quad-item img, .pph-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-quad-item:hover img, .pph-gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-quad-item.wide {
  grid-column: span 2;
  height: clamp(200px, 28vw, 270px);
}

/* ==========================================================================
   PACKAGES & PRICING CARDS (LEGACY COMPATIBILITY)
   ========================================================================== */
.pph-package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.pph-package-card {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-smooth);
}

.pph-package-card--featured {
  border-color: var(--primary-pink);
  box-shadow: var(--shadow-hover);
}

.pph-package-card__ribbon {
  background: var(--accent-gradient);
  color: #fff;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px;
}

.pph-package-card__head {
  padding: 24px;
  background: var(--primary-pink-subtle);
  text-align: center;
}

.pph-package-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-pink);
}

.pph-package-card__body {
  padding: 24px;
}

.pph-package-card__body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

/* ==========================================================================
   TEAM BOOKING & CALENDAR STYLING OVERRIDES
   ========================================================================== */
.booking-section-wrapper {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: #FFFFFF;
}

.tbk-frontend, .custom-booking-panel {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  padding: clamp(20px, 4vw, 40px);
  font-family: var(--font-body);
}

.tbk-frontend .tbk-calendar-header,
.tbk-calendar .tbk-header {
  background: var(--primary-pink-subtle) !important;
  color: var(--primary-pink) !important;
  border-radius: var(--radius-sm);
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  padding: 12px !important;
}

.tbk-frontend .tbk-calendar-day.tbk-active,
.tbk-frontend .tbk-slot.tbk-available {
  background: var(--primary-pink) !important;
  color: #FFFFFF !important;
  border-radius: var(--radius-pill) !important;
}

.tbk-frontend .tbk-action-button,
.tbk-frontend input[type="submit"] {
  background: var(--accent-gradient) !important;
  color: #fff !important;
  border-radius: var(--radius-pill) !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  padding: 14px 28px !important;
  border: none !important;
  box-shadow: 0 10px 25px rgba(255, 30, 109, 0.3) !important;
}

/* ==========================================================================
   FORMSPREE & CONTACT FORM 7 STYLING
   ========================================================================== */
.formspree-form-box,
.wpcf7-form {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
}

.formspree-grid-fields,
.wpcf7-form p {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.formspree-full-col,
.wpcf7-form p:has(textarea),
.wpcf7-form p:has(input[type="submit"]) {
  grid-column: span 2;
}

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

.form-floating-group label,
.wpcf7-form label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-input-glam,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-subtle);
  background: var(--bg-page);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  outline: none;
  transition: all var(--transition-fast);
}

.form-input-glam:focus,
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: var(--primary-pink);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(255, 30, 109, 0.12);
}

.wpcf7-form input[type="submit"],
.btn-formspree-submit {
  background: var(--accent-gradient);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 12px 28px rgba(255, 30, 109, 0.32);
  transition: all var(--transition-smooth);
}

.wpcf7-form input[type="submit"]:hover,
.btn-formspree-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(255, 30, 109, 0.45);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-sec {
  padding: clamp(4.5rem, 8vw, 6.5rem) 0;
  background: var(--bg-surface-soft);
}

.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item.active {
  border-color: var(--primary-pink);
  box-shadow: var(--shadow-card);
}

.faq-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  gap: 12px;
}

.faq-icon {
  color: var(--primary-pink);
  font-size: 1.35rem;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-content {
  max-height: 300px;
  padding-bottom: 22px;
}

/* ==========================================================================
   VIP RESERVATION BANNER
   ========================================================================== */
.vip-banner {
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(20px, 4vw, 40px);
  background: var(--accent-gradient);
  color: #fff;
  border-radius: var(--radius-xl);
  margin: clamp(3.5rem, 6vw, 5.5rem) auto;
  text-align: center;
  box-shadow: var(--shadow-hover);
  position: relative;
  overflow: hidden;
}

.vip-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.vip-banner h2 {
  color: #fff;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  margin-bottom: 1rem;
}

.vip-banner p {
  font-size: clamp(1rem, 2vw, 1.18rem);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  opacity: 0.96;
}

.reservation-form-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 740px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.res-input {
  padding: 16px 22px;
  border-radius: var(--radius-pill);
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  flex: 1 1 200px;
  outline: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

/* ==========================================================================
   LIGHTBOX MODAL & TOAST
   ========================================================================== */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(14px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.lightbox-modal.open {
  display: flex;
  animation: fadeIn 0.3s ease;
}

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

.lightbox-img-wrapper {
  max-width: 960px;
  width: 100%;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-modal);
}

.lightbox-img-wrapper img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-miami {
  background: var(--bg-surface-dark);
  color: #94A3B8;
  padding: clamp(4rem, 7vw, 6rem) 0 2.5rem;
}

.footer-grid-layout {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

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

.footer-col a:hover {
  color: var(--primary-pink);
}

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

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (TABLET & MOBILE)
   ========================================================================== */

/* Tablet Breakpoint (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }
  
  .hero-left p {
    margin-inline: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-proof-bar {
    max-width: 520px;
    margin-inline: auto;
  }

  .hero-visual-box {
    max-width: 600px;
    margin: 0 auto;
  }

  .calc-glass-box {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .exp-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .footer-grid-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* Mobile Breakpoint (max-width: 768px) */
@media (max-width: 768px) {
  :root {
    --header-h: 70px;
  }

  .nav-links-list,
  .nav-phone-chip {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .collection-grid-cards,
  .pph-card-grid,
  .pph-rental-grid {
    grid-template-columns: 1fr;
  }

  .float-badge-card {
    position: static;
    margin-top: 14px;
    justify-content: center;
    animation: none;
  }

  .reservation-form-row {
    flex-direction: column;
  }

  .res-input,
  .vip-banner button {
    width: 100%;
    flex: 1 1 100%;
  }

  .footer-grid-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-line {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .gallery-quad,
  .pph-gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-quad-item,
  .gallery-quad-item.wide,
  .pph-gallery-item {
    grid-column: span 1;
    height: 200px;
  }

  .formspree-grid-fields,
  .wpcf7-form p {
    grid-template-columns: 1fr;
  }

  .formspree-full-col,
  .wpcf7-form p:has(textarea),
  .wpcf7-form p:has(input[type="submit"]) {
    grid-column: span 1;
  }
}
