/* Quote Request page specific styles (offerte-aanvragen.php) */
:root {
  --primary: #1DA1F2;
  --primary-dark: #7B2FF7;
  --primary-light: #F4F9F8;
  --text-main: #0F172A;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  background-color: #ffffff;
}

.hero-v2 {
  padding-top: 40px; /* Reduced offset */
  background: var(--primary-gradient);
  color: #fff;
}

.hero-form-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
  max-width: 550px;
  margin: 0 auto;
  position: relative;
  border: 1px solid rgba(241, 245, 249, 0.5);
}

.form-card-body {
  padding: 30px;
}

.hero-v2 .promo-notice {
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid #FF8E53;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.hero-v2 .form-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 500;
}

@media (max-width: 991px) {
  .hero-v2 {
    padding-top: 40px; /* Reduced for AuraHost V2 Header + Spacer */
  }
  .hero-form-card {
    margin-top: 40px;
  }
}

/* Pricing Section Styles */
.tabs-wrapper {
  position: relative;
  margin-bottom: 40px;
  width: 100%;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  padding: 5px 5px 15px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pricing-tabs::-webkit-scrollbar {
  display: none;
}

.p-tab-btn {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 12px 30px;
  border-radius: 100px;
  font-weight: 700;
  color: var(--text-main);
  transition: var(--transition);
  white-space: nowrap;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.p-tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.p-tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(29, 161, 242, 0.2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.p-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  padding: 30px;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
}

.p-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: rgba(29, 161, 242, 0.2);
}

.p-card.active {
  border: 2px solid var(--primary);
  background: #fdfdfd;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: #FF8E53;
    color: #ffffff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.p-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; display: block; }
.p-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 20px; display: block; }

.p-features { list-style: none; padding: 0; margin: 0; border-top: 1px solid #f1f5f9; padding-top: 20px; }
.p-features li { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text-main); margin-bottom: 8px; }
.p-features i { color: #2ed391; font-size: 1.1rem; }

@media (max-width: 1200px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pricing-grid { grid-template-columns: 1fr; } }
