:root {
  --bg: #f6f8fb;
  --panel: rgba(255, 255, 255, 0.9);
  --text: #0f172a;
  --main-color: #ff0000;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.08);
  --dark: #020617;
  --soft: #e2e8f0;
  --radius: 28px;
  --radius-sm: 18px;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  --container: 1200px;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  line-height: 1.6;
}

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

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand img {
  width: 170px;
  height: auto;
}

.brand span {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.site-nav a {
  color: var(--muted);
  font-size: 15px;
}

.site-nav a.active,
.footer-list li.active,
.site-nav a:hover {
  color: var(--main-color);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: .25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--dark);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .15);
}

.btn:hover {
  transform: translateY(-1px);
}

.hero {
  padding: 70px 0 90px;
}

.hero-grid,
.two-col,
.contact-grid,
.content-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 34px;
  align-items: center;
}
.contact-grid {
  grid-template-columns: 0.7fr 1.3fr;
}

.eyebrow,
.page-kicker {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(38px, 7vw, 50px);
  line-height: 1.02;
  letter-spacing: -.05em;
  margin: 20px 0 0;
}

.hero p.lead,
.page-hero p.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 700px;
  margin-top: 22px;
}

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

.stats-row,
.feature-list,
.service-grid,
.gallery-grid,
.benefits-grid,
.job-grid {
  display: grid;
  gap: 18px;
}

.stats-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.stat,
.card,
.service-card,
.contact-card,
.job-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat {
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.stat strong {
  display: block;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-media img,
.image-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  min-height: 320px;
  box-shadow: var(--shadow);
}

.section {
  padding: 0 0 90px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-head h2 {
  font-size: clamp(30px, 5vw, 40px);
  line-height: 1.08;
  letter-spacing: -.04em;
  margin: 14px 0 0;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
  margin-top: 14px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.card,
.contact-card,
.job-box {
  padding: 28px;
}

.service-card h3,
.card h3,
.job-box h3 {
  margin: 0 0 12px;
  font-size: 21px;
  letter-spacing: -.03em;
  line-height: 1.05;
}

.card p,
.service-card p,
.contact-card p,
.job-box p,
li {
  color: var(--muted);
}

.two-col {
  align-items: stretch;
}

.card.dark {
  background: linear-gradient(145deg, #020617 0%, #111827 100%);
  color: #fff;
}

.card.dark p,
.card.dark li {
  color: #dbe4f0;
}

/* ALERT BASIS */
.alert {
  padding: 16px 18px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
  border: 1px solid transparent;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* SUCCESS */
.alert-success {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
}

/* ERROR */
.alert-error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #7f1d1d;
}

/* INFO (optioneel) */
.alert-info {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1e3a8a;
}

/* ICON (optioneel) */
.alert::before {
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
}

.alert-success::before {
  content: \"✔\";
}

.alert-error::before {
  content: \"⚠\";
}

.alert-info::before {
  content: \"ℹ\";
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.page-hero {
  padding: 60px 0 40px;
}

.page-body {
  padding-bottom: 90px;
}

.check-list,
.footer-list,
.job-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.check-list li,
.job-list li {
  position: relative;
  padding-left: 20px;
}

.check-list li::before,
.job-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: .7;
  position: absolute;
  left: 0;
  top: 10px;
}

.contact-grid {
  align-items: stretch;
}

.contact-card form {
  display: grid;
  gap: 14px;
}
.contact-information{
}
.contact-information p {
  margin: 14px 0px;
}
.contact-information .highlight {
  font-size: 30px;
  color: var(--main-color);
  font-weight: bold;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

input,
textarea,
select {
  font: inherit;
  width: 100%;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, .12);
  outline: none;
  font-weight: normal;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #111827;
  box-shadow: 0 0 0 4px rgba(17, 24, 39, .06);
}

.notice {
  padding: 14px 16px;
  border-radius: 16px;
  background: #ecfeff;
  border: 1px solid #bae6fd;
  color: #0f172a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 28px;
  padding: 50px 0 30px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 14px;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-bottom {
  padding: 18px 0 32px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .two-col,
  .contact-grid,
  .content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.open {
    display: flex;
  }
}

@media (max-width: 700px) {

  .service-grid,
  .gallery-grid,
  .stats-row,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero {
    padding-top: 40px;
  }

  .service-card,
  .card,
  .contact-card,
  .job-box,
  .stat {
    padding: 22px;
  }
}






/* Margin Top */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 10px !important; }
.mt-2 { margin-top: 20px !important; }
.mt-3 { margin-top: 30px !important; }
.mt-4 { margin-top: 40px !important; }
.mt-5 { margin-top: 50px !important; }
.mt-6 { margin-top: 60px !important; }
.mt-7 { margin-top: 70px !important; }
.mt-8 { margin-top: 80px !important; }
.mt-9 { margin-top: 90px !important; }
.mt-10 { margin-top: 100px !important; }

/* Margin Bottom */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 10px !important; }
.mb-2 { margin-bottom: 20px !important; }
.mb-3 { margin-bottom: 30px !important; }
.mb-4 { margin-bottom: 40px !important; }
.mb-5 { margin-bottom: 50px !important; }
.mb-6 { margin-bottom: 60px !important; }
.mb-7 { margin-bottom: 70px !important; }
.mb-8 { margin-bottom: 80px !important; }
.mb-9 { margin-bottom: 90px !important; }
.mb-10 { margin-bottom: 100px !important; }
