/*
Theme Name: Netpro's
Theme URI: https://netpros.nl
Author: Netpro's
Author URI: https://netpros.nl
Description: Custom WordPress theme for Netpro's - IT network engineering & cybersecurity services. Stabilize and secure your network.
Version: 2.1.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: netpros
*/

/* Netpro's — style.css
   Palette: deep navy + cyan accent (trustworthy, professional, minimal, tech-forward) */

:root {
  --navy-900: #0a1628;
  --navy-800: #0f2038;
  --navy-700: #16304f;
  --navy-600: #1e3f66;
  --cyan-400: #22d3ee;
  --cyan-300: #67e8f9;
  --white: #ffffff;
  --gray-100: #f4f7fa;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --radius: 8px;
  --max-width: 1140px;
  --shadow: 0 4px 20px rgba(10, 22, 40, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
}

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Nav ---------- */

.site-header {
  background: var(--navy-900);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan-400), var(--navy-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy-900);
  font-size: 15px;
}

.brand-name {
  color: var(--white);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

.main-nav a {
  color: var(--gray-300);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.15s ease;
  padding: 6px 0;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--cyan-300);
}

.nav-cta {
  background: var(--cyan-400);
  color: var(--navy-900) !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--cyan-300); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

/* ---------- Hero ---------- */

.hero {
  background: radial-gradient(1200px 500px at 80% -10%, rgba(34, 211, 238, 0.12), transparent),
              var(--navy-900);
  color: var(--white);
  padding: 100px 0 90px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  color: var(--cyan-300);
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero h1 span { color: var(--cyan-300); }

.hero p {
  font-size: 17px;
  color: var(--gray-300);
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.15s ease;
}

.btn-primary {
  background: var(--cyan-400);
  color: var(--navy-900);
}
.btn-primary:hover { background: var(--cyan-300); }

.btn-outline {
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--cyan-300); color: var(--cyan-300); }

.hero-panel {
  background: var(--navy-800);
  border: 1px solid var(--navy-600);
  border-radius: 12px;
  padding: 28px;
}

.hero-panel-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-panel-row:last-child { border-bottom: none; }

.hero-panel-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(34, 211, 238, 0.12);
  color: var(--cyan-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.hero-panel-text strong { color: var(--white); display: block; font-size: 14px; }
.hero-panel-text span { color: var(--gray-500); font-size: 13px; }

/* ---------- Trust strip ---------- */

.trust-strip {
  background: var(--gray-100);
  padding: 22px 0;
  border-bottom: 1px solid #e5e9ef;
}

.trust-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ---------- Sections ---------- */

section { padding: 80px 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.eyebrow {
  color: #0891b2;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.section-head h2 {
  font-size: 32px;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-head p { color: var(--gray-500); font-size: 16px; }

/* ---------- Cards / grids ---------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid #e5e9ef;
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

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

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--navy-900);
  color: var(--cyan-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 18px;
  color: var(--navy-900);
  margin-bottom: 10px;
}

.card p { color: var(--gray-500); font-size: 14.5px; }

.card a.link {
  display: inline-block;
  margin-top: 16px;
  color: #0891b2;
  font-weight: 600;
  font-size: 14px;
}

/* ---------- Process / steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  text-align: center;
  padding: 0 12px;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--cyan-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 16px;
}

.step h4 { font-size: 15px; color: var(--navy-900); margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--gray-500); }

/* ---------- Dark section (CTA) ---------- */

.cta-band {
  background: var(--navy-900);
  color: var(--white);
  text-align: center;
  padding: 70px 0;
}

.cta-band h2 { font-size: 28px; margin-bottom: 14px; }
.cta-band p { color: var(--gray-300); margin-bottom: 28px; }

/* ---------- Pricing ---------- */

.pricing-toggle-note {
  text-align: center;
  color: var(--gray-500);
  font-size: 14px;
  margin-bottom: 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  border: 1px solid #e5e9ef;
  border-radius: 12px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.price-card.featured {
  border-color: var(--cyan-400);
  box-shadow: var(--shadow);
  position: relative;
  transform: scale(1.03);
}

.featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan-400);
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
}

.price-card h3 { font-size: 18px; color: var(--navy-900); margin-bottom: 6px; }
.price-card .price-sub { color: var(--gray-500); font-size: 13.5px; margin-bottom: 20px; }

.price-amount {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.price-amount span { font-size: 15px; font-weight: 500; color: var(--gray-500); }

.price-card ul {
  list-style: none;
  margin: 24px 0 28px;
  flex-grow: 1;
}

.price-card li {
  padding: 8px 0;
  font-size: 14.5px;
  color: var(--gray-700);
  border-top: 1px solid #f0f2f5;
  display: flex;
  gap: 10px;
}
.price-card li:first-child { border-top: none; }

.price-card li::before {
  content: "✓";
  color: #0891b2;
  font-weight: 700;
}

.price-note {
  text-align: center;
  color: var(--gray-500);
  font-size: 14px;
  margin-top: 40px;
}

/* ---------- Contact ---------- */

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info h2 { color: var(--navy-900); font-size: 26px; margin-bottom: 16px; }
.contact-info p { color: var(--gray-500); margin-bottom: 28px; }

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-detail .card-icon { margin-bottom: 0; flex-shrink: 0; width: 40px; height: 40px; font-size: 17px; }

.contact-detail strong { display: block; color: var(--navy-900); font-size: 14.5px; }
.contact-detail span { color: var(--gray-500); font-size: 14px; }

.form-card {
  background: var(--gray-100);
  border: 1px solid #e5e9ef;
  border-radius: 12px;
  padding: 36px;
}

.form-row { margin-bottom: 20px; }

.form-row label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 7px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d6dce4;
  border-radius: 6px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--gray-700);
  background: var(--white);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--cyan-400);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15);
}

.form-row textarea { resize: vertical; min-height: 110px; }

.form-submit {
  width: 100%;
  border: none;
  padding: 14px;
  font-size: 15px;
}

.form-note {
  font-size: 12.5px;
  color: var(--gray-500);
  margin-top: 14px;
  text-align: center;
}

.map-placeholder {
  margin-top: 40px;
  background: var(--gray-100);
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  color: var(--gray-500);
  font-size: 14px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-900);
  color: var(--gray-300);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .brand-name { margin-bottom: 12px; }
.footer-brand p { color: var(--gray-500); font-size: 13.5px; max-width: 260px; }

.footer-col h5 {
  color: var(--white);
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--gray-500); font-size: 14px; }
.footer-col a:hover { color: var(--cyan-300); }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--gray-500);
}

.social-links { display: flex; gap: 14px; }
.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gray-300);
}
.social-links a:hover { border-color: var(--cyan-400); color: var(--cyan-300); }

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  background: var(--navy-900);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.page-hero h1 { font-size: 36px; margin-bottom: 12px; letter-spacing: -0.02em; }
.page-hero p { color: var(--gray-300); font-size: 16px; max-width: 560px; margin: 0 auto; }

/* ---------- Editor / stadspagina content ---------- */

.page-extra-content h2 {
  font-size: 24px;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  margin: 36px 0 12px;
}
.page-extra-content h2:first-child { margin-top: 0; }
.page-extra-content h3 {
  font-size: 19px;
  color: var(--navy-900);
  margin: 28px 0 10px;
}
.page-extra-content p {
  color: var(--gray-700);
  font-size: 15.5px;
  margin-bottom: 14px;
}
.page-extra-content ul,
.page-extra-content ol {
  margin: 0 0 16px 22px;
  color: var(--gray-700);
  font-size: 15.5px;
}
.page-extra-content li { margin-bottom: 6px; }
.page-extra-content a { color: #0891b2; font-weight: 600; }
.page-extra-content img { border-radius: var(--radius); }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .grid-3, .pricing-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}

@media (max-width: 640px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 32px; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }

  /* Mobile dropdown menu (toggled via .nav-toggle button) */
  .site-header { position: sticky; }
  .nav-wrap { position: relative; }
  .main-nav.mobile-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-900);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 24px rgba(10, 22, 40, 0.35);
    z-index: 99;
  }
  .main-nav.mobile-open ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 16px;
  }
  .main-nav.mobile-open a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .main-nav.mobile-open li:last-child a { border-bottom: none; }
}
