
:root{
  --bg:#050607;
  --bg2:#0b0e12;
  --panel:#0f141b;
  --panel2:#121923;
  --line:#243140;
  --white:#ffffff;
  --text:#f5f8fb;
  --muted:#aeb8c5;
  --blue:#1068ff;
  --blue2:#0b53d5;
  --yellow:#ffd21a;
  --cyan:#18c7ec;
  --green:#19b86c;
  --max:1240px;
  --radius:20px;
  --shadow:0 22px 60px rgba(0,0,0,.32);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
.container{width:min(92%,var(--max));margin:auto}

/* Brand */
.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  min-width:290px;
}
.brand-symbol{
  width:62px;
  height:62px;
  flex:0 0 62px;
}
.brand-copy{
  display:flex;
  flex-direction:column;
  line-height:1;
}
.brand-name{
  font-weight:1000;
  font-size:2.15rem;
  letter-spacing:-1.5px;
  white-space:nowrap;
}
.brand-name .jo{color:#fff}
.brand-name .dro{color:var(--blue)}
.brand-tag{
  margin-top:7px;
  color:#4cbcff;
  font-size:.64rem;
  font-weight:900;
  letter-spacing:.35px;
  white-space:nowrap;
  text-transform:uppercase;
}
.brand-tag .heat{color:var(--yellow)}
.brand-tag .air{color:var(--cyan)}

/* Header */
.topbar{
  background:#020304;
  border-bottom:1px solid #121923;
  color:#c9d2dd;
  font-size:.9rem;
}
.topbar .container{
  min-height:36px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(2,3,4,.96);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.header-row{
  min-height:90px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:28px;
}
nav ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:23px;
}
nav a{
  color:#e5e9ee;
  font-weight:900;
  font-size:.88rem;
  text-transform:uppercase;
}
nav a:hover,.active{color:var(--blue)}
.header-phone{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:1.18rem;
  font-weight:1000;
  white-space:nowrap;
}
.header-phone small{
  display:block;
  color:#1592ff;
  font-size:.72rem;
  font-weight:700;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:56px;
  padding:0 22px;
  border-radius:11px;
  border:1px solid transparent;
  font-weight:1000;
  transition:.2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  background:linear-gradient(135deg,#1269ff,#0b45d0);
  box-shadow:0 12px 28px rgba(16,104,255,.22);
}
.btn-outline{
  border-color:#2e8cff;
  background:rgba(3,8,15,.78);
}
.btn-dark{
  border-color:#314255;
  background:#0a0e13;
}

/* Homepage hero */
.hero{
  min-height:575px;
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:
    linear-gradient(90deg,#050607 0%,rgba(5,6,7,.99) 42%,rgba(5,6,7,.68) 61%,rgba(5,6,7,.18) 82%,rgba(5,6,7,.04) 100%),
    url('hero-van.jpg') right center/60% cover no-repeat,
    #050607;
  border-bottom:1px solid #17202b;
}
.hero-content{
  width:min(92%,var(--max));
  margin:auto;
  position:relative;
  z-index:2;
  padding:68px 0 60px;
}
.hero-text{max-width:650px}
.eyebrow{
  font-weight:900;
  font-size:.98rem;
  margin-bottom:14px;
}
.hero h1{
  margin:0 0 20px;
  font-size:clamp(2.5rem,5.5vw,4.85rem);
  line-height:1.01;
  letter-spacing:-2.1px;
}
.hero h1 .heating{color:var(--yellow)}
.hero h1 .plumbing{color:var(--blue)}
.hero h1 .airco{color:var(--cyan)}
.hero-subtitle{
  font-size:1.28rem;
  font-weight:1000;
  letter-spacing:.5px;
  margin:0 0 15px;
}
.hero-subtitle b{color:var(--blue)}
.hero p{
  max-width:590px;
  color:#d4dbe3;
  margin:0 0 26px;
  font-size:1.04rem;
}
.hero p strong{color:#178cff}
.actions{display:flex;gap:14px;flex-wrap:wrap}

/* Services strip */
.services-strip{background:#050607;padding:0}
.service-grid{
  width:min(94%,1240px);
  margin:-4px auto 0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border:1px solid #1c2734;
  border-radius:14px 14px 0 0;
  overflow:hidden;
}
.service-panel{
  min-height:220px;
  padding:28px;
  border-right:1px solid #2b394a;
}
.service-panel:last-child{border-right:0}
.service-panel.plumbing{background:linear-gradient(135deg,#082653,#06162f)}
.service-panel.heating{background:linear-gradient(135deg,#3c2f04,#1b1502)}
.service-panel.airco{background:linear-gradient(135deg,#073b47,#052329)}
.service-head{display:flex;gap:18px;align-items:flex-start}
.service-icon{
  width:62px;height:62px;
  flex:0 0 62px;
  display:grid;
  place-items:center;
  font-size:2.7rem;
}
.service-panel h3{margin:0 0 8px;font-size:1.25rem}
.service-panel ul{list-style:none;padding:0;margin:0;color:#f1f4f8;font-size:.94rem}
.service-panel li{margin:4px 0}
.service-panel li::before{content:"✓ ";font-weight:900}
.plumbing li::before{color:#29bdff}
.heating li::before{color:var(--yellow)}
.airco li::before{color:var(--cyan)}

/* Trust bar */
.trustbar{
  background:#020304;
  border-top:1px solid #19232f;
  border-bottom:1px solid #19232f;
}
.trust-grid{display:grid;grid-template-columns:repeat(5,1fr)}
.trust-item{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:11px;
  padding:14px;
  border-right:1px solid #202b37;
  font-size:.83rem;
  font-weight:900;
}
.trust-item:last-child{border-right:0}
.trust-item .ico{font-size:1.65rem;color:var(--blue)}

/* Generic */
section.content{padding:76px 0}
.section-head{max-width:760px;margin-bottom:34px}
.section-head h2{
  font-size:clamp(2rem,4vw,3.1rem);
  line-height:1.08;
  letter-spacing:-1px;
  margin:0 0 10px;
}
.section-head p{margin:0;color:var(--muted)}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.card h3{margin:0 0 8px}
.card p{margin:0;color:var(--muted)}
.light{background:#eef2f6;color:#14191f}
.light .section-head p{color:#596673}
.light .card{background:#fff;border-color:#d7e0e8}
.light .card p{color:#53606d}
.stars{color:#ffbf00;letter-spacing:2px;font-size:1.1rem}

/* Page hero */
.page-hero{
  padding:76px 0 62px;
  background:
    radial-gradient(circle at 82% 18%,rgba(16,104,255,.18),transparent 28%),
    linear-gradient(180deg,#080c11,#050607);
  border-bottom:1px solid #17202b;
}
.page-hero h1{
  margin:0 0 14px;
  font-size:clamp(2.6rem,5vw,4.7rem);
  line-height:1.02;
  letter-spacing:-2px;
}
.page-hero p{max-width:760px;color:#c7d0da;font-size:1.1rem;margin:0}

/* Pricing */
.price-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.price-card{background:#fff;color:#131820;border:1px solid #d7dfe7;border-radius:18px;padding:24px}
.price-card .price{font-size:1.75rem;font-weight:1000;color:#0d55d4;margin:8px 0}
.price-card p{margin:0;color:#596571}
.notice{
  padding:18px;
  border-left:4px solid var(--yellow);
  background:#181501;
  color:#efe6a9;
  border-radius:10px;
}

/* Gallery */
.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.gallery-card{
  min-height:230px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:24px;
  border:1px solid #2b3a4d;
  border-radius:18px;
  background:linear-gradient(145deg,#121a25,#0a0f16);
}
.gallery-card span{color:var(--muted)}

/* Contact */
.contact-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:28px}
.contact-box{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:20px;
  padding:28px;
}
.contact-item{padding:15px 0;border-bottom:1px solid #243140}
.contact-item:last-child{border-bottom:0}
form{display:grid;gap:13px}
label{font-weight:800;font-size:.92rem}
input,textarea,select{
  width:100%;
  padding:14px 15px;
  border-radius:11px;
  border:1px solid #314157;
  background:#080d13;
  color:#fff;
  font:inherit;
}
textarea{min-height:145px;resize:vertical}

/* CTA */
.cta{
  padding:58px 0;
  background:linear-gradient(135deg,#0d55d5,#071a40);
  border-top:1px solid #174685;
}
.cta-row{display:flex;justify-content:space-between;align-items:center;gap:26px}
.cta h2{margin:0 0 6px;font-size:clamp(2rem,4vw,3rem)}
.cta p{margin:0;color:#d8e5f8}

/* Footer */
footer{
  padding:42px 0 100px;
  background:#020304;
  border-top:1px solid #121923;
}
.footer-grid{display:grid;grid-template-columns:1.2fr .8fr .8fr;gap:28px}
footer p,footer div{color:#aab4c0}
footer h4{color:#fff;margin:0 0 8px}
.footer-brand .brand{transform:scale(.9);transform-origin:left top}

.mobile-bar{display:none}

/* Responsive */
@media(max-width:1040px){
  .header-row{grid-template-columns:auto 1fr}
  .header-phone{display:none}
  nav ul{justify-content:flex-end;gap:16px}
  nav a{font-size:.8rem}
  .brand{min-width:250px}
  .brand-name{font-size:1.9rem}
  .brand-tag{font-size:.58rem}
  .brand-symbol{width:56px;height:56px;flex-basis:56px}
}
@media(max-width:820px){
  nav{display:none}
  .header-row{display:flex;justify-content:space-between}
  .hero{
    background:
      linear-gradient(180deg,rgba(5,6,7,.92),rgba(5,6,7,.86)),
      url('hero-van.jpg') center/cover no-repeat;
  }
  .service-grid{grid-template-columns:1fr}
  .service-panel{border-right:0;border-bottom:1px solid #2b394a}
  .service-panel:last-child{border-bottom:0}
  .trust-grid{grid-template-columns:1fr 1fr}
  .trust-item{justify-content:flex-start;border-bottom:1px solid #202b37}
  .grid-3,.price-grid,.gallery{grid-template-columns:1fr 1fr}
  .contact-grid{grid-template-columns:1fr}
}
@media(max-width:580px){
  .topbar .container{justify-content:center;text-align:center;padding:7px 0}
  .header-row{min-height:78px}
  .brand{min-width:0;gap:9px}
  .brand-symbol{width:46px;height:46px;flex-basis:46px}
  .brand-name{font-size:1.65rem}
  .brand-tag{font-size:.49rem;margin-top:5px}
  .hero{min-height:auto}
  .hero-content{padding:50px 0}
  .hero h1{letter-spacing:-1px}
  .actions .btn{width:100%}
  .trust-grid,.grid-3,.grid-2,.price-grid,.gallery{grid-template-columns:1fr}
  .cta-row{flex-direction:column;align-items:flex-start}
  .footer-grid{grid-template-columns:1fr}
  .mobile-bar{
    position:fixed;left:0;right:0;bottom:0;z-index:150;
    display:grid;grid-template-columns:1fr 1fr;gap:8px;padding:10px;
    background:rgba(2,3,4,.98);border-top:1px solid #273546;
  }
  .mobile-bar a{padding:14px 10px;text-align:center;border-radius:10px;font-weight:1000}
  .mobile-call{background:var(--green)}
  .mobile-quote{background:var(--blue)}
}


/* Real project photos */
.photo-gallery{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
.photo-card{
  overflow:hidden;
  border-radius:20px;
  border:1px solid #2b394b;
  background:#0d131b;
}
.photo-card img{
  width:100%;
  height:330px;
  object-fit:cover;
}
.photo-card .caption{
  padding:18px 20px 20px;
}
.photo-card .caption h3{
  margin:0 0 6px;
}
.photo-card .caption p{
  margin:0;
  color:var(--muted);
}
.project-list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.project-chip{
  padding:22px;
  border:1px solid #273648;
  border-radius:16px;
  background:#0d131b;
}
.project-chip strong{display:block;margin-bottom:5px}
.project-chip span{color:var(--muted);font-size:.94rem}

/* Google reviews */
.google-summary{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:26px;
}
.google-score{
  font-size:2.6rem;
  line-height:1;
  font-weight:1000;
}
.google-stars{
  color:#ffbd00;
  font-size:1.45rem;
  letter-spacing:2px;
}
.google-meta{
  color:#5f6a75;
  font-weight:700;
}
.review-card{
  position:relative;
}
.review-card::before{
  content:"G";
  position:absolute;
  top:18px;
  right:20px;
  font-size:1.35rem;
  font-weight:1000;
  color:#4285f4;
}
.review-card blockquote{
  margin:12px 0 14px;
  color:#2f3945;
  font-size:1rem;
}
.review-card small{
  color:#697582;
}
.review-link{
  display:inline-flex;
  margin-top:22px;
  font-weight:900;
  color:#0d55d4;
}

@media(max-width:820px){
  .photo-gallery,.project-list{grid-template-columns:1fr 1fr}
}
@media(max-width:580px){
  .photo-gallery,.project-list{grid-template-columns:1fr}
  .photo-card img{height:250px}
}


/* V6: hero van is an explicit image, so it cannot disappear behind a background gradient */
.hero-v6{
  background:
    radial-gradient(circle at 72% 20%,rgba(16,104,255,.13),transparent 30%),
    linear-gradient(180deg,#050607,#07090c);
  min-height:575px;
}
.hero-layout-v6{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(430px,0.95fr);
  align-items:center;
  gap:34px;
}
.hero-van-v6{
  position:relative;
  z-index:3;
  align-self:center;
}
.hero-van-v6 img{
  width:100%;
  max-width:650px;
  margin-left:auto;
  border-radius:18px;
  border:1px solid #26384d;
  box-shadow:0 26px 70px rgba(0,0,0,.42);
}

/* Live original realization gallery from JODRO.be */
.original-gallery-frame{
  width:100%;
  height:760px;
  overflow:hidden;
  border:1px solid #2a3a4e;
  border-radius:18px;
  background:#fff;
  box-shadow:0 18px 50px rgba(0,0,0,.25);
}
.original-gallery-frame iframe{
  width:100%;
  height:100%;
  border:0;
  background:#fff;
}

@media(max-width:980px){
  .hero-layout-v6{
    grid-template-columns:1fr;
  }
  .hero-van-v6{
    margin-top:10px;
  }
  .hero-van-v6 img{
    margin:0;
    max-width:760px;
  }
}
@media(max-width:580px){
  .hero-v6{
    background:#050607;
  }
  .hero-layout-v6{
    display:block;
  }
  .hero-van-v6{
    margin-top:24px;
  }
  .hero-van-v6 img{
    border-radius:13px;
  }
  .original-gallery-frame{
    height:620px;
  }
}


/* V7 - Selected original JODRO realization photos */
.real-photo-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.real-photo{
  margin:0;
  border-radius:16px;
  overflow:hidden;
  border:1px solid #2c3948;
  background:#0d131a;
  aspect-ratio:1/1;
}
.real-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .25s ease;
}
.real-photo:hover img{
  transform:scale(1.03);
}
@media(max-width:900px){
  .real-photo-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:520px){
  .real-photo-grid{grid-template-columns:1fr 1fr;gap:10px}
}


/* V8 remarks */
.alt-project{
  background:#090d12;
  border-top:1px solid #17202b;
  border-bottom:1px solid #17202b;
}
.pending-gallery{
  grid-template-columns:repeat(3,1fr);
}
.pending-photo{
  aspect-ratio:4/3;
  border-radius:16px;
  border:1px dashed #34465c;
  background:linear-gradient(145deg,#111923,#0a0f15);
  display:grid;
  place-items:center;
  text-align:center;
  padding:22px;
  color:#8491a0;
  font-weight:700;
}
@media(max-width:900px){
  .pending-gallery{grid-template-columns:1fr 1fr}
}
@media(max-width:520px){
  .pending-gallery{grid-template-columns:1fr}
}

.hp-field{position:absolute!important;left:-9999px!important;width:1px;height:1px;overflow:hidden}
