/* =====================================================
   hostlab2026AI-1 — HostLab style + ERC kleuren
   ===================================================== */

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-darker: #1e40af;
  --primary-gradient: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  --dark: #0f172a;
  --slate-800: #1e293b;
  --slate-600: #475569;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-color: #043d5f;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 16px;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://erchosting.nl/templates/hostlab2024/assets/img/whmcs-erchosting-2.jpg") center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.75) 0%, rgba(15,23,42,0.25) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 60px 0; }
.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.hero-sub {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.85);
  margin: 0 auto 32px;
  max-width: 600px;
  line-height: 1.6;
}
.btn-hero {
  display: inline-block;
  padding: 16px 44px;
  background: #f59e0b;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.btn-hero:hover { background: #d97706; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); text-decoration: none; color: #fff; }

/* ===== DOMAIN SEARCH ===== */
.search-domain {
  background: var(--white);
  padding: 30px 0;
}
.search-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin: 0 0 20px;
}
.field-search {
  width: 100%;
  height: 54px;
  border: 2px solid var(--slate-200);
  border-radius: 50px;
  padding: 0 24px;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}
.field-search:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(37,99,235,0.15); }
.btn-search {
  height: 54px;
  padding: 0 32px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 1.5rem;
}
.btn-search:hover { background: var(--primary-dark); transform: translateY(-1px); }
.domain-pricing {
  text-align: center;
  margin-top: 20px;
}
.domain-info {
  display: inline-block;
  padding: 8px 20px;
  margin: 4px;
  background: var(--slate-50);
  border-radius: 50px;
  font-size: 1.5rem;
  color: var(--slate-600);
  border: 1px solid var(--slate-200);
}
.domain-info .ext { font-weight: 700; color: var(--primary); }
.domain-info.last { background: var(--primary); color: #fff; border-color: var(--primary); font-weight: 600; }

/* ===== SECTIONS COMMON ===== */
.section-heading {
  text-align: center;
  margin-bottom: 36px;
}
.section-heading h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 8px;
}
.section-heading p {
  color: var(--slate-600);
  font-size: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}
.section-heading.light h2 { color: #fff; }
.section-heading.light p { color: rgba(255,255,255,0.8); }

/* ===== PRICING ===== */
.pricing-plans {
  padding: 50px 0;
  background: var(--slate-50);
}
.pricing-plans .row {
  display: flex;
  flex-wrap: wrap;
}
.pricing-plans [class*="col-"] {
  display: flex;
  margin-bottom: 24px;
}
.plan-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--slate-200);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.plan-card .btn-plan {
  margin-top: auto;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(37,99,235,0.15), var(--shadow);
  transform: scale(1.04);
}
.plan-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.plan-badge {
  position: absolute;
  top: 16px;
  right: -32px;
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 4px 36px;
  transform: rotate(45deg);
  letter-spacing: 0.06em;
}
.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}
.plan-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 24px;
}
.plan-price .currency { font-size: 1.5rem; vertical-align: super; }
.plan-price .period { font-size: 1rem; font-weight: 400; color: var(--slate-400); }
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}
.plan-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--slate-100);
  font-size: 1.5rem;
  color: var(--slate-600);
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan-features li::before { content: "\2713"; color: #10b981; font-weight: 700; }
.btn-plan {
  display: inline-block;
  padding: 14px 36px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.5rem;
}
.btn-plan:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,99,235,0.4); text-decoration: none; color: #fff; }
.plan-card.featured .btn-plan { background: #f59e0b; }
.plan-card.featured .btn-plan:hover { background: #d97706; }

/* ===== STATISTICS ===== */
.stats-section {
  padding: 50px 0;
  background: var(--primary-gradient);
  color: #fff;
  border-radius: var(--radius);
  margin: 0 16px;
}
.stat-item {
  text-align: center;
  padding: 16px;
}
.stat-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  opacity: 0.9;
}
.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0 0 4px;
}
.stat-label {
  font-size: 1.5rem;
  opacity: 0.85;
}

/* ===== FEATURES ===== */
.features-section {
  padding: 50px 0;
  background: var(--white);
}
.feature-box {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}
.feature-box:hover { background: var(--slate-50); transform: translateY(-3px); }
.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  transition: all 0.3s ease;
}
.feature-box:hover .feature-icon { background: var(--primary-dark); transform: scale(1.1); }
.feature-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 10px;
}
.feature-box p {
  font-size: 1.5rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin: 0;
}

/* ===== ABOUT ===== */
.about-section {
  padding: 50px 0;
  background: var(--slate-50);
}
.section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 20px;
}
.about-section p {
  font-size: 1.5rem;
  color: var(--slate-600);
  line-height: 1.7;
}
.btn-outline {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 8px;
  font-size: 1.5rem;
}
.btn-outline:hover { background: var(--primary); color: #fff; text-decoration: none; }
.service-mini {
  background: var(--white);
  padding: 24px 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--slate-200);
  transition: all 0.3s ease;
}
.service-mini:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.service-mini i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.service-mini h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 4px;
}
.service-mini p {
  font-size: 1.5rem;
  color: var(--slate-400);
  margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 50px 0;
  background: var(--primary-gradient);
}
.testimonial-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 24px;
  color: #fff;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.testimonial-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.testimonial-card .stars {
  color: #f59e0b;
  margin-bottom: 12px;
  font-size: 1.5rem;
}
.testimonial-card p {
  font-size: 1.5rem;
  line-height: 1.6;
  opacity: 0.9;
  font-style: italic;
}
.testimonial-card .author {
  font-size: 1rem;
  font-weight: 700;
  opacity: 0.8;
  margin-top: 12px;
}

/* ===== CTA BAR ===== */
.cta-bar {
  padding: 40px 0;
  background: var(--white);
}
.cta-bar h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 6px;
}
.cta-bar p {
  color: var(--slate-600);
  margin: 0;
  font-size: 1.5rem;
}
.btn-cta {
  display: inline-block;
  padding: 14px 36px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.5rem;
}
.btn-cta:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,99,235,0.3); text-decoration: none; color: #fff; }

/* ===== SERVICES CARDS ===== */
.services-section {
  padding: 50px 0;
  background: var(--slate-50);
}
.services-section .row {
  display: flex;
  flex-wrap: wrap;
}
.services-section [class*="col-"] {
  display: flex;
  margin-bottom: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--slate-200);
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon {
  padding: 28px 0 0;
}
.service-icon i {
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 2rem;
  color: #fff;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: inline-block;
}
.service-card-body {
  padding: 20px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body .btn-service {
  margin-top: auto;
}
.service-card-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 8px;
}
.service-card-body p {
  font-size: 1.5rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin: 0 0 16px;
}
.btn-service {
  display: inline-block;
  padding: 14px 36px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-service:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,99,235,0.4); color: #fff; text-decoration: none; }

/* ===== INCLUDED ===== */
.included-section {
  padding: 50px 0;
  background: var(--slate-50);
}
.included-section .row {
  display: flex;
  flex-wrap: wrap;
}
.included-section [class*="col-"] {
  display: flex;
  margin-bottom: 20px;
}
.included-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.included-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.included-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.included-item h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 6px;
}
.included-item p {
  font-size: 1.2rem;
  color: var(--slate-600);
  margin: 0;
  line-height: 1.5;
}

/* ===== VPS ===== */
.vps-section {
  padding: 50px 0;
  background: var(--white);
}
.vps-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.vps-features li {
  padding: 8px 0;
  font-size: 1.5rem;
  color: var(--slate-600);
  display: flex;
  align-items: center;
  gap: 10px;
}
.vps-features li i { color: #10b981; font-size: 1.2rem; }
.vps-visual {
  text-align: center;
  padding: 60px 20px;
  background: var(--slate-50);
  border-radius: var(--radius);
  border: 1px solid var(--slate-200);
}
.vps-visual i {
  font-size: 5rem;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}
.vps-visual p {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
  .hero-content h1 { font-size: 2rem; }
  .hero-section { min-height: 300px; margin: 8px; }
  .hero-content { padding: 40px 0; }
  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-4px); }
  .stats-section { margin: 0 8px; }
  .domain-info { font-size: 1.2rem; padding: 6px 14px; }
}

/* =====================================================
   Client Area Dashboard — ERC Hosting
   ===================================================== */

/* Stel uw vraag CTA */
.client-cta-section {
  padding: 20px 0;
}
.cta-card {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  border-radius: 12px;
  padding: 30px;
  color: #fff;
  text-align: center;
}
.cta-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 8px;
}
.cta-card p {
  font-size: 1.5rem;
  opacity: 0.9;
  margin: 0 0 20px;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.5rem;
}
.btn-cta:hover {
  background: rgba(255,255,255,0.3);
  color: #fff;
  text-decoration: none;
}

/* Domain registreren / verhuizen */
.client-domain-section {
  padding: 0 0 20px;
}
.domain-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 30px;
}
.domain-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}
.domain-card h3 i {
  color: #2563eb;
  margin-right: 8px;
}
.domain-card p {
  font-size: 1.5rem;
  color: #475569;
  margin: 0 0 16px;
}
.domain-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-secondary {
  display: inline-block;
  padding: 10px 24px;
  background: #fff;
  color: #2563eb;
  border: 2px solid #2563eb;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-secondary:hover {
  background: #2563eb;
  color: #fff;
  text-decoration: none;
}

/* Icon kleuren voor client area */
.text-green { color: #10b981 !important; }
.text-blue { color: #2563eb !important; }
.text-yellow { color: #f59e0b !important; }
.text-red { color: #ef4444 !important; }

/* Services panel bottom - 3x hoogte */
.services-bottom-col .panel-body {
  max-height: none;
}
.services-bottom-col {
  min-height: 600px;
}
.services-bottom-col .list-group {
  max-height: 470px !important;
}

/* Product details - zwarte tekst ipv blauw door .active in main.css */
.tab-pane.active .product-details h4,
.tab-pane.active .product-details .text-center {
  color: #000 !important;
}
.tab-pane.active .product-details h4 {
  font-size: 1.5rem !important;
  font-weight: 600;
}
.tab-pane.active .product-details .text-center {
  font-size: 1.5rem !important;
}


