/* ===== PROPOXY VLOERWERKEN – Main Stylesheet ===== */

/* ----- Variables ----- */
:root {
  --orange:     #E8461C;
  --orange-dark:#C73A14;
  --charcoal:   #2D3142;
  --charcoal-lt:#3E4460;
  --gray:       #6B7280;
  --gray-lt:    #F4F5F7;
  --white:      #FFFFFF;
  --border:     #E2E4EA;
  --shadow:     0 4px 24px rgba(45,49,66,.10);
  --radius:     6px;
  --font:       'Inter', 'Segoe UI', system-ui, sans-serif;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--charcoal); line-height: 1.6; background: var(--white); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ----- Typography ----- */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.15; font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: 1.2rem; font-weight: 700; }
p  { font-size: 1rem; color: var(--gray); }

/* ----- Layout helpers ----- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--gray { background: var(--gray-lt); }
.section--dark { background: var(--charcoal); color: var(--white); }
.section--dark p { color: rgba(255,255,255,.75); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.center { text-align: center; }
.tag { display: inline-block; background: var(--orange); color: var(--white); font-size: .75rem;
       font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 12px;
       border-radius: 2px; margin-bottom: 14px; }
.eyebrow { display: block; color: var(--orange); font-weight: 700; letter-spacing: .08em;
           text-transform: uppercase; font-size: .85rem; margin-bottom: 10px; }
.divider { width: 56px; height: 4px; background: var(--orange); border-radius: 2px; margin: 16px auto 0; }
.divider--left { margin: 16px 0 0; }

/* ----- Buttons ----- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px;
       border-radius: var(--radius); font-weight: 700; font-size: .95rem;
       cursor: pointer; border: 2px solid transparent; transition: all .2s; white-space: nowrap; }
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--charcoal); }
.btn-outline-dark { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }
.btn-group { display: flex; flex-wrap: wrap; gap: 14px; }

/* ----- Navigation ----- */
.navbar { position: sticky; top: 0; z-index: 100; background: var(--white);
          box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.navbar__logo img { height: 50px; }
.navbar__logo span { font-size: 1.4rem; font-weight: 800; color: var(--charcoal); }
.navbar__logo span em { color: var(--orange); font-style: normal; }
.navbar__nav { display: flex; align-items: center; gap: 32px; }
.navbar__nav a { font-weight: 600; font-size: .9rem; color: var(--charcoal);
                 padding-bottom: 2px; border-bottom: 2px solid transparent; transition: .2s; }
.navbar__nav a:hover, .navbar__nav a.active { color: var(--orange); border-bottom-color: var(--orange); }
.navbar__cta { margin-left: 16px; }
.navbar__toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.navbar__toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal);
                       margin: 5px 0; transition: .3s; }

/* ----- Hero ----- */
.hero { background: linear-gradient(135deg, var(--charcoal) 0%, #1A1E30 100%);
        color: var(--white); padding: 100px 0 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0;
                background: url('images/hero-bg.jpg') center/cover no-repeat; opacity: .18; }
.hero__inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,70,28,.15);
               border: 1px solid rgba(232,70,28,.4); color: #FFA07A; font-size: .8rem;
               font-weight: 600; padding: 6px 14px; border-radius: 20px; margin-bottom: 20px; }
.hero__badge::before { content: '●'; color: var(--orange); font-size: .6rem; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--orange); }
.hero__sub { font-size: 1.1rem; color: rgba(255,255,255,.75); margin-bottom: 36px; max-width: 520px; }
.hero__stats { display: flex; gap: 36px; margin-top: 48px; padding-top: 36px;
               border-top: 1px solid rgba(255,255,255,.12); }
.hero__stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--orange); line-height: 1; }
.hero__stat span { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: 4px; }
.hero__image { border-radius: 12px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.hero__image img { width: 100%; height: 420px; object-fit: cover; }
.hero__image-placeholder { width: 100%; height: 420px; background: linear-gradient(135deg,#3E4460,#2D3142);
  border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 2px dashed rgba(255,255,255,.2); color: rgba(255,255,255,.4); font-size: .85rem; gap: 12px; }

/* ----- USP bar ----- */
.usp-bar { background: var(--orange); color: var(--white); padding: 16px 0; }
.usp-bar__list { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.usp-bar__item { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: .9rem; }
.usp-bar__item svg { flex-shrink: 0; }

/* ----- Services grid ----- */
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px;
                padding: 32px 28px; transition: .25s; position: relative; overflow: hidden; }
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--orange); }
.service-card__icon { width: 56px; height: 56px; background: rgba(232,70,28,.1);
                      border-radius: 10px; display: flex; align-items: center; justify-content: center;
                      margin-bottom: 20px; }
.service-card__icon svg { color: var(--orange); }
.service-card h3 { margin-bottom: 10px; color: var(--charcoal); }
.service-card p { font-size: .9rem; margin-bottom: 20px; }
.service-card .link-arrow { font-weight: 700; color: var(--orange); font-size: .9rem; display: flex;
                             align-items: center; gap: 6px; transition: gap .2s; }
.service-card:hover .link-arrow { gap: 10px; }

/* ----- Why us ----- */
.why-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.why-item { display: flex; gap: 16px; }
.why-item__icon { width: 44px; height: 44px; background: rgba(232,70,28,.1); border-radius: 50%;
                  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.why-item h3 { font-size: 1rem; margin-bottom: 4px; }
.why-item p { font-size: .88rem; }

/* ----- Process steps ----- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; counter-reset: steps; }
.step { text-align: center; position: relative; }
.step::after { content: ''; position: absolute; top: 28px; left: calc(50% + 36px);
               width: calc(100% - 72px); height: 2px; background: var(--border); }
.step:last-child::after { display: none; }
.step__num { width: 56px; height: 56px; background: var(--orange); color: var(--white);
             border-radius: 50%; display: flex; align-items: center; justify-content: center;
             font-weight: 800; font-size: 1.2rem; margin: 0 auto 16px; position: relative; z-index: 1; }
.step h3 { font-size: .95rem; margin-bottom: 8px; }
.step p { font-size: .85rem; }

/* ----- Testimonials ----- */
.testimonial { background: var(--white); border: 1px solid var(--border); border-radius: 10px;
               padding: 28px; box-shadow: var(--shadow); }
.testimonial__stars { color: var(--orange); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial p { font-size: .92rem; font-style: italic; color: var(--charcoal); margin-bottom: 20px; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--charcoal);
                       display: flex; align-items: center; justify-content: center; color: var(--white);
                       font-weight: 700; font-size: .9rem; flex-shrink: 0; }
.testimonial__name { font-weight: 700; font-size: .9rem; }
.testimonial__location { font-size: .8rem; color: var(--gray); }

/* ----- CTA Banner ----- */
.cta-banner { background: linear-gradient(135deg, var(--orange) 0%, #C73A14 100%); color: var(--white);
              padding: 64px 0; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 32px; font-size: 1.05rem; }
.cta-banner .btn-outline { border-color: var(--white); color: var(--white); }
.cta-banner .btn-outline:hover { background: var(--white); color: var(--orange); }
.cta-banner .btn-white { background: var(--white); color: var(--orange); border-color: var(--white); }
.cta-banner .btn-white:hover { background: rgba(255,255,255,.9); }

/* ----- Service detail page ----- */
.page-hero { background: linear-gradient(135deg, var(--charcoal), #1A1E30); color: var(--white);
             padding: 64px 0; }
.page-hero .eyebrow { color: var(--orange); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 600px; }
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; }
.check-list li::before { content: '✓'; background: var(--orange); color: var(--white);
  width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: .7rem; font-weight: 900; flex-shrink: 0; margin-top: 2px; }
.price-card { background: var(--gray-lt); border: 2px solid var(--border); border-radius: 10px;
              padding: 28px; }
.price-card--featured { border-color: var(--orange); background: var(--white); box-shadow: var(--shadow); }
.price-card h3 { margin-bottom: 8px; }
.price-card .price { font-size: 2rem; font-weight: 800; color: var(--orange); }
.price-card .price sub { font-size: .9rem; font-weight: 500; color: var(--gray); }

/* ----- Projects gallery ----- */
.project-card { border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); position: relative; }
.project-card__img { height: 240px; background: var(--gray-lt);
                     display: flex; align-items: center; justify-content: center; overflow: hidden; }
.project-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.project-card:hover .project-card__img img { transform: scale(1.05); }
.project-card__body { padding: 20px; background: var(--white); border: 1px solid var(--border);
                      border-top: none; border-radius: 0 0 10px 10px; }
.project-card__tag { font-size: .75rem; font-weight: 700; text-transform: uppercase;
                     color: var(--orange); letter-spacing: .06em; margin-bottom: 6px; }
.project-card h3 { font-size: 1rem; margin-bottom: 6px; }
.project-card p { font-size: .85rem; }

/* ----- Contact form ----- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info__item { display: flex; gap: 16px; }
.contact-info__item-icon { width: 48px; height: 48px; background: rgba(232,70,28,.1);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info__item strong { display: block; font-size: .85rem; color: var(--gray);
                              text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.contact-info__item p { color: var(--charcoal); font-size: .95rem; }
.form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-weight: 600; font-size: .85rem; color: var(--charcoal); }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font); font-size: .95rem; color: var(--charcoal);
  transition: border-color .2s; background: var(--white); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ----- About page ----- */
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px;
             overflow: hidden; text-align: center; }
.team-card__img { height: 200px; background: linear-gradient(135deg, var(--charcoal), var(--charcoal-lt));
                  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.3);
                  font-size: 3rem; }
.team-card__body { padding: 20px; }
.team-card h3 { margin-bottom: 4px; }
.team-card span { font-size: .85rem; color: var(--orange); font-weight: 600; }
.team-card p { font-size: .85rem; margin-top: 10px; }
.value-item { display: flex; gap: 20px; padding: 24px; border-radius: 10px; background: var(--white);
              border: 1px solid var(--border); }
.value-item__num { font-size: 2.5rem; font-weight: 900; color: rgba(232,70,28,.15);
                   line-height: 1; flex-shrink: 0; width: 48px; }
.value-item h3 { margin-bottom: 6px; }

/* ----- Footer ----- */
.footer { background: var(--charcoal); color: rgba(255,255,255,.75); }
.footer__main { padding: 64px 0 40px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__brand p { font-size: .9rem; margin: 16px 0 24px; max-width: 280px; }
.footer__logo { display: flex; align-items: center; gap: 10px; }
.footer__logo img { height: 42px; }
.footer__logo strong { font-size: 1.2rem; color: var(--white); font-weight: 800; }
.footer__logo strong em { color: var(--orange); font-style: normal; }
.footer__col h4 { color: var(--white); font-size: .85rem; text-transform: uppercase;
                  letter-spacing: .08em; margin-bottom: 20px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a { font-size: .9rem; transition: color .2s; }
.footer__col ul a:hover { color: var(--orange); }
.footer__social { display: flex; gap: 12px; margin-top: 16px; }
.footer__social a { width: 38px; height: 38px; background: rgba(255,255,255,.08); border-radius: 6px;
                    display: flex; align-items: center; justify-content: center; transition: .2s; }
.footer__social a:hover { background: var(--orange); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center;
                         font-size: .82rem; flex-wrap: wrap; gap: 8px; }
.footer__bottom a:hover { color: var(--orange); }

/* ----- Breadcrumb ----- */
.breadcrumb { padding: 12px 0; font-size: .82rem; color: rgba(255,255,255,.5); }
.breadcrumb a { color: rgba(255,255,255,.5); transition: .2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,.85); }
.breadcrumb__sep { margin: 0 8px; }

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .grid-4, .steps { grid-template-columns: repeat(2,1fr); }
  .step::after { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .hero { padding: 60px 0 48px; }
  .hero__inner, .grid-2, .contact-grid, .why-list { grid-template-columns: 1fr; }
  .hero__image { display: none; }
  .grid-3, .grid-4, .steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .navbar__nav { display: none; flex-direction: column; gap: 0; position: absolute;
                 top: 72px; left: 0; right: 0; background: var(--white);
                 box-shadow: 0 8px 24px rgba(0,0,0,.1); padding: 16px 0; }
  .navbar__nav.open { display: flex; }
  .navbar__nav a { padding: 12px 24px; border-bottom: none; border-left: 3px solid transparent; }
  .navbar__nav a:hover { border-left-color: var(--orange); background: var(--gray-lt); }
  .navbar__cta { display: none; }
  .navbar__toggle { display: block; }
  .navbar { position: relative; }
  .usp-bar__list { gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .hero__stats { gap: 20px; flex-wrap: wrap; }
}
