/* Enhanced Booking Page Desktop Styles */

/* Fade-up animations (desktop only) */
@media (min-width: 768px) {
  .fade-up-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .fade-up-element--animated {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Trust Signals Section - Force Visibility */
.trust-signals-section {
  padding: 4rem 0;
  background: var(--soft-cream);
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 10 !important;
}

.trust-signals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

/* Mobile trust signals optimizations */
@media (max-width: 768px) {
  .trust-signals-section {
    padding: 2rem 0 !important;
  }
  
  .trust-signals-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 0 1rem !important;
  }
  
  .trust-item {
    padding: 1.25rem !important;
    gap: 0.75rem !important;
    align-items: center !important;
    text-align: left !important;
  }
  
  .trust-icon {
    flex-shrink: 0 !important;
    padding: 0.75rem !important;
    background: rgba(184, 123, 107, 0.1) !important;
    border-radius: 10px !important;
  }
  
  .trust-content h3 {
    font-size: 1.1rem !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.3 !important;
  }
  
  .trust-content p {
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    color: #666 !important;
  }
}

/* Desktop override to remove red border */
@media (min-width: 768px) {
  .trust-item,
  body.booking-page .trust-item,
  .booking-page .trust-item {
    border: 1px solid #eee !important;
    background: white !important;
  }
}

.trust-icon {
  flex-shrink: 0;
  padding: 0.5rem;
  background: rgba(221, 221, 221, 0.1);
  border-radius: 8px;
}

.trust-icon svg {
  transition: all 0.3s ease;
}

.trust-content h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  color: var(--graphite-navy);
  font-weight: 600;
}

.trust-content p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

/* Section Header */
.booking-options .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.booking-options .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--graphite-navy);
}

.booking-options .section-header p {
  font-size: 1.2rem;
  color: #666;
}

/* Enhanced Booking Grid */
.booking-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.booking-card {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

/* Pro Site Enhancement */
.pro-site-card {
  border: 2px solid var(--color-accent);
  transform: scale(1.05);
}

.most-popular-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10;
}

/* Desktop Hover Effects */
@media (min-width: 769px) {
  .booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }
  
  .pro-site-card:hover {
    transform: scale(1.05) translateY(-5px);
  }
  
  /* Trust Signals Hover Effects - matching services page feature cards */
  .trust-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(221, 221, 221, 0.25);
    border-color: var(--color-accent);
  }
  
  .trust-item:hover .trust-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(221, 221, 221, 0.3));
  }
}

.booking-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 2rem;
}

.booking-card .card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

.booking-card .features-list {
  flex: 1;
  margin-bottom: 2rem;
  list-style: none;
  padding: 0;
}

.booking-card .plan-best-for {
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.booking-card .plan-cta {
  margin-top: auto;
  flex-shrink: 0;
}

.booking-header {
  padding: 2rem 2rem 0 2rem;
  text-align: center;
}

.booking-header h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--graphite-navy);
}

.booking-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0;
}

/* Card Content Structure */
.card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.5rem 2rem 2rem;
  height: 100%;
}

/* Enhanced Feature Lists */
.booking-features, .features-list {
  flex-grow: 1;
  margin-bottom: 1.5rem;
  list-style: none;
  padding: 0;
}

.booking-features li, .features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(221, 221, 221, 0.1);
  text-align: left;
}

.booking-features li:last-child, .features-list li:last-child {
  border-bottom: none;
}

.feature-check, .checkmark {
  flex-shrink: 0;
  margin-top: 0.1rem;
  width: 18px;
  height: 18px;
  background: #eee;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

/* Best For and Plan Best For styling */
.booking-best-for, .plan-best-for {
  margin: 0 0 1.5rem 0;
  padding: 1rem;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  font-size: 0.9rem;
}

/* CTA alignment at bottom */
.booking-cta, .plan-cta {
  margin-top: auto;
  padding-top: 0;
}

/* Enhanced Contact Form Section Styling */
.enhanced-contact-form-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 25%, #f8f9fa 50%, #e9ecef 75%, #f8f9fa 100%);
  overflow: hidden;
}

.form-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(184, 123, 107, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(31, 42, 54, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(184, 224, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.enhanced-section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.enhanced-section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--graphite-navy);
  margin-bottom: 1rem;
  position: relative;
}

.enhanced-section-header p {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.header-accent-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--muted-rose-gold-dark) 0%, var(--muted-rose-gold) 100%);
  margin: 0 auto;
  border-radius: 2px;
}

.enhanced-form-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.enhanced-trust-signals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 0 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.enhanced-trust-item:nth-child(3) {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(184, 123, 107, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  position: relative;
}

.enhanced-trust-item:nth-child(3)::before {
  height: 4px;
  background: linear-gradient(90deg, var(--muted-rose-gold) 0%, var(--muted-rose-gold-dark) 50%, var(--muted-rose-gold) 100%);
}

.enhanced-trust-item:nth-child(3):hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(184, 123, 107, 0.25);
}

.enhanced-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(184, 123, 107, 0.15);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.enhanced-trust-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--muted-rose-gold-dark) 0%, var(--muted-rose-gold) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.enhanced-trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(184, 123, 107, 0.2);
  border-color: var(--muted-rose-gold-dark);
}

.enhanced-trust-item:hover::before {
  transform: scaleX(1);
}

.trust-icon-wrapper {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--muted-rose-gold-dark) 0%, var(--muted-rose-gold) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(184, 123, 107, 0.3);
}

.trust-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--graphite-navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.trust-text p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

.form-wrapper {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(184, 123, 107, 0.1);
  position: relative;
  overflow: hidden;
}

.form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--muted-rose-gold-dark) 0%, var(--muted-rose-gold) 50%, var(--muted-rose-gold-dark) 100%);
}

.guarantee-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: rgba(221, 221, 221, 0.1);
  border-radius: 6px;
  font-size: 0.8rem;
  color: #666;
  text-align: center;
}

.booking-cta .btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Enhanced Form Section */
.contact-form-section {
  padding: 5rem 0;
  background: #E8F4FD !important;
}

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #1F2A36;
}

.form-header p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.form-trust-signals {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.form-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

.branded-form-container {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  border: 1px solid rgba(221, 221, 221, 0.2);
}

.form-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.form-intro h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--graphite-navy);
}

.form-intro p {
  color: #666;
  font-size: 0.95rem;
}

.tally-form-wrapper {
  margin: 2rem 0;
}

.form-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.form-footer h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--graphite-navy);
}

.form-footer p {
  color: #666;
  font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media only screen and (max-width: 767px) {
  /* Override any fade-up animations on mobile - CRITICAL FIX */
  .fade-up-element {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    display: block !important;
  }

  /* Force containers to be visible - EXCLUDE header container */
  .container:not(.site-header .container) {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
  }

  /* Trust Signals Mobile - ULTRA Force Display */
  .trust-signals-section,
  body.booking-page .trust-signals-section,
  .booking-page .trust-signals-section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 2rem 0 !important;
    background: var(--soft-cream) !important;
    width: 100% !important;
    position: relative !important;
    z-index: 1000 !important;
    height: auto !important;
    overflow: visible !important;
    transform: none !important;
    margin: 0 !important;
    min-height: 200px !important;
  }
  
  .trust-signals-grid,
  body.booking-page .trust-signals-grid,
  .booking-page .trust-signals-grid {
    display: block !important;
    padding: 0 1rem !important;
    margin: 0 !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
    position: relative !important;
    z-index: 999 !important;
  }
  
  .trust-item,
  body.booking-page .trust-item,
  .booking-page .trust-item {
    display: block !important;
    width: 100% !important;
    margin: 0 0 1rem 0 !important;
    padding: 1rem !important;
    background: #ffffff !important;
    border: 1px solid #eee !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    position: relative !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: 60px !important;
  }
  
  body.booking-page .trust-item:last-child {
    margin-bottom: 0 !important;
  }
  
  body.booking-page .trust-icon {
    display: block !important;
    float: left !important;
    margin: 0 1rem 0 0 !important;
    padding: 0.5rem !important;
    background: rgba(221, 221, 221, 0.1) !important;
    border-radius: 6px !important;
    width: auto !important;
    height: auto !important;
  }
  
  body.booking-page .trust-content {
    display: block !important;
    overflow: hidden !important;
    width: auto !important;
  }
  
  body.booking-page .trust-content h3 {
    margin: 0 0 0.5rem 0 !important;
    font-size: 1rem !important;
    color: #1F2A36 !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
  }
  
  body.booking-page .trust-content p {
    margin: 0 !important;
    color: #666666 !important;
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
  }
  
  .trust-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }
  
  .trust-content p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  /* Enhanced Pro Site Visual Prominence */
  .booking-card.pro-site-card {
    transform: none !important;
    border: 2px solid var(--color-accent) !important;
    background: linear-gradient(135deg, rgba(221, 221, 221, 0.05) 0%, rgba(221, 221, 221, 0.02) 100%) !important;
    position: relative !important;
  }
  
  .booking-card.pro-site-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: var(--color-accent) !important;
    border-radius: 16px 16px 0 0 !important;
    z-index: 1 !important;
  }
  
  .booking-card .most-popular-badge {
    top: 1rem !important;
    right: 1rem !important;
    left: 1rem !important;
    padding: 0.6rem 1rem !important;
  }

  /* Enhanced Contact Form Mobile Styles */
  .enhanced-contact-form-section {
    padding: 60px 0 !important;
  }
  
  .enhanced-section-header {
    margin-bottom: 3rem !important;
    padding: 0 1rem !important;
  }
  
  .enhanced-section-header h2 {
    font-size: 2rem !important;
  }
  
  .enhanced-section-header p {
    font-size: 1rem !important;
  }
  
  .enhanced-form-container {
    padding: 0 1rem !important;
  }
  
  .enhanced-trust-signals {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto !important;
    gap: 1.5rem !important;
    margin-bottom: 2.5rem !important;
    padding: 0 !important;
    max-width: none !important;
  }
  
  .enhanced-trust-item:nth-child(3) {
    grid-column: 1 !important;
    justify-self: stretch !important;
    max-width: none !important;
  }
  
  .enhanced-trust-item {
    padding: 1.5rem !important;
    gap: 0.75rem !important;
    border-radius: 12px !important;
  }
  
  .trust-icon-wrapper {
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px !important;
  }
  
  .trust-text h4 {
    font-size: 1rem !important;
    margin-bottom: 0.25rem !important;
  }
  
  .trust-text p {
    font-size: 0.875rem !important;
  }
  
  .form-wrapper {
    padding: 1.5rem !important;
    border-radius: 16px !important;
    margin: 0 !important;
  }

  /* Mobile-Optimized Pricing Cards */
  .plans-grid,
  .booking-options .plans-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    padding: 0 1rem !important;
    margin: 0 !important;
    width: 100% !important;
  }
  
  .plan-card,
  .booking-card {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
    border: 2px solid rgba(221, 221, 221, 0.2) !important;
    background: white !important;
    position: relative !important;
    overflow: hidden !important;
  }
  
  /* Enhanced Pro Site Mobile Styling */
  .plan-card.featured,
  .booking-card.pro-site-card {
    border: 3px solid var(--muted-rose-gold-dark) !important;
    box-shadow: 0 12px 40px rgba(184, 123, 107, 0.2) !important;
    transform: none !important;
  }
  
  .plan-card.featured::before,
  .booking-card.pro-site-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 6px !important;
    background: linear-gradient(90deg, var(--muted-rose-gold) 0%, var(--muted-rose-gold-dark) 50%, var(--muted-rose-gold) 100%) !important;
    z-index: 2 !important;
  }
  
  /* Mobile Card Headers */
  .card-header {
    padding: 2rem 2rem 1.5rem !important;
    text-align: center !important;
    position: relative !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
  }
  
  .card-header h3 {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: var(--graphite-navy) !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
  }
  
  .price {
    font-size: 2.25rem !important;
    font-weight: 700 !important;
    color: var(--muted-rose-gold-dark) !important;
    margin: 0 !important;
    line-height: 1.2 !important;
  }
  
  /* Mobile Most Popular Badge */
  .most-popular-badge {
    position: absolute !important;
    top: 1rem !important;
    left: 1rem !important;
    right: 1rem !important;
    background: linear-gradient(135deg, var(--muted-rose-gold-dark) 0%, var(--muted-rose-gold) 100%) !important;
    color: white !important;
    padding: 0.75rem 1rem !important;
    border-radius: 8px !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    text-align: center !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    box-shadow: 0 4px 12px rgba(184, 123, 107, 0.3) !important;
    z-index: 3 !important;
  }
  
  /* Mobile Card Content */
  .plan-card-content,
  .card-content {
    padding: 1.5rem 2rem 2rem !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }
  
  /* Mobile Features List */
  .features-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }
  
  .features-list li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
    padding: 0.75rem 0 !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    color: var(--iron-black) !important;
    border-bottom: 1px solid rgba(221, 221, 221, 0.15) !important;
    text-align: left !important;
  }
  
  .features-list li:last-child {
    border-bottom: none !important;
  }
  
  .checkmark,
  .feature-check {
    flex-shrink: 0 !important;
    width: 24px !important;
    height: 24px !important;
    background: var(--muted-rose-gold-dark) !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    font-weight: bold !important;
    margin-top: 0.1rem !important;
  }
  
  /* Mobile Best For Section */
  .plan-best-for,
  .booking-best-for {
    background: rgba(184, 123, 107, 0.08) !important;
    border: 1px solid rgba(184, 123, 107, 0.2) !important;
    border-radius: 12px !important;
    padding: 1.25rem !important;
    margin: 0 !important;
  }
  
  .plan-best-for p,
  .booking-best-for p {
    margin: 0 !important;
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
    color: var(--iron-black) !important;
  }
  
  .plan-best-for strong,
  .booking-best-for strong {
    color: var(--graphite-navy) !important;
    font-weight: 600 !important;
  }
  
  /* Mobile CTA Buttons */
  .plan-cta,
  .booking-cta {
    margin-top: auto !important;
    padding-top: 0 !important;
  }
  
  .plan-cta .btn,
  .booking-cta .btn {
    width: 100% !important;
    padding: 1rem 2rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    background: var(--muted-rose-gold-dark) !important;
    color: white !important;
    border: 2px solid var(--muted-rose-gold-dark) !important;
  }
  
  .plan-cta .btn:hover,
  .booking-cta .btn:hover {
    background: var(--muted-rose-gold) !important;
    border-color: var(--muted-rose-gold) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(184, 123, 107, 0.3) !important;
  }
  
  /* Mobile Section Headers */
  .booking-options .section-header,
  .section-header {
    padding: 0 1rem !important;
    margin-bottom: 3rem !important;
    text-align: center !important;
  }
  
  .booking-options .section-header h2,
  .section-header h2 {
    font-size: 2rem !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
  }
  
  .booking-options .section-header p,
  .section-header p {
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
    color: #666 !important;
  }
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    border-radius: 25px !important;
    box-shadow: 0 2px 8px rgba(221, 221, 221, 0.3) !important;
    width: auto !important;
  }
  
  /* Section Header Mobile */
  .booking-options {
    padding-top: 1rem;
  }
  
  .booking-options .section-header {
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  
  .booking-options .section-header h2 {
    font-size: 1.9rem;
    margin-bottom: 0.8rem;
  }
  
  .booking-options .section-header p {
    font-size: 1.05rem;
    line-height: 1.5;
  }
  
  /* Enhanced Booking Cards Mobile */
  .booking-grid {
    flex-direction: column;
    gap: 0;
    padding: 0 1rem;
  }
  
  .booking-card {
    min-width: auto;
    flex: none;
    border-radius: 20px;
    margin-bottom: 3rem;
  }
  
  .booking-card:last-child {
    margin-bottom: 0;
  }
  
  .booking-header {
    padding: 3rem 1.5rem 1rem 1.5rem;
  }
  
  .card-header {
    padding: 3rem 1.5rem 1rem 1.5rem;
    text-align: center;
  }
  
  .booking-content, .card-content {
    padding: 0 1.5rem 2rem 1.5rem;
  }
  
  .booking-header h2, .card-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--graphite-navy);
  }
  
  .booking-price, .card-header .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
  }
  
  /* Enhanced Feature Lists */
  .booking-features li, .features-list li {
    padding: 0.8rem 0;
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .booking-best-for {
    margin: 1.5rem 0;
    padding: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.5;
    border-radius: 12px;
  }
  
  .guarantee-badge {
    padding: 0.8rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    border-radius: 10px;
  }
  
  /* Enhanced Mobile CTAs */
  .booking-cta .btn {
    padding: 1.2rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 12px;
    min-height: 48px;
  }
  
  /* Streamlined Form Mobile */
  .contact-form-section {
    padding: 2rem 0 !important;
    background: #E8F4FD !important;
  }
  
  .form-header {
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  
  .form-header h2 {
    font-size: 1.9rem;
    margin-bottom: 0.8rem;
    color: #1F2A36 !important;
  }
  
  .form-header p {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
  
  /* Horizontal Trust Signals for Form */
  .form-trust-signals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 0 1rem;
  }
  
  .form-trust-item {
    background: white;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    justify-content: center;
    font-size: 0.85rem;
    text-align: center;
  }
  
  /* Enhanced Form Container */
  .branded-form-container {
    padding: 1.5rem;
    margin: 2rem 1rem 0 1rem;
    border-radius: 20px;
    border: 2px solid rgba(221, 221, 221, 0.2);
  }
  
  .form-intro {
    margin-bottom: 1.5rem;
  }
  
  .form-intro h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  
  .form-intro p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .form-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
  
  .form-footer h3 {
    font-size: 1.1rem;
  }
  
  .form-footer p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}/* VERSION: v1803-MOBILE-FIX-DEPLOYED */
