/* ===== DMC SARL — Corporate Website ===== */
:root{
  --blue: #0b2a5b;
  --blue-2: #143a7a;
  --red: #d7263d;
  --yellow: #ffc20e;
  --dark: #0a1220;
  --light: #f5f7fb;
  --gray: #6b7280;
  --text: #1a2332;
  --muted: #5a6478;
  --border: #e3e7ef;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(11,42,91,.08);
  --shadow-lg: 0 20px 50px rgba(11,42,91,.15);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  color:var(--text);
  line-height:1.6;
  background:#fff;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
h1,h2,h3,h4,h5{
  font-family:'Montserrat',sans-serif;
  font-weight:800;
  line-height:1.2;
  color:var(--blue);
}
.container{max-width:1240px;margin:0 auto;padding:0 24px}

/* ===== TOP BAR ===== */
.topbar{
  background:var(--dark);
  color:#cbd5e1;
  font-size:13px;
  padding:8px 0;
}
.topbar-inner{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px}
.topbar-right{display:flex;gap:18px;align-items:center;flex-wrap:wrap}
.topbar a{color:#cbd5e1;transition:color .2s}
.topbar a:hover{color:var(--yellow)}
.lang-switch{
  background:var(--red);
  color:#fff !important;
  padding:4px 10px;
  border-radius:4px;
  font-weight:700;
  font-size:12px;
  letter-spacing:.5px;
}
.lang-switch:hover{background:#b71c30}

/* ===== NAVBAR ===== */
.navbar{
  background:#fff;
  box-shadow:0 2px 20px rgba(0,0,0,.06);
  position:sticky;
  top:0;
  z-index:100;
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 24px;
  gap:20px;
}
.brand img{height:64px;width:auto}
.nav-links{display:flex;gap:30px;align-items:center}
.nav-links a{
  font-weight:600;
  font-size:15px;
  color:var(--text);
  position:relative;
  padding:6px 0;
  transition:color .2s;
}
.nav-links a::after{
  content:'';
  position:absolute;
  left:0;bottom:0;
  width:0;height:3px;
  background:var(--red);
  transition:width .25s;
}
.nav-links a:hover{color:var(--blue)}
.nav-links a:hover::after{width:100%}
.nav-cta{padding:12px 22px !important;font-size:14px}
.menu-toggle{
  display:none;
  background:none;border:none;
  font-size:28px;color:var(--blue);
  cursor:pointer;
}

/* ===== BUTTONS ===== */
.btn{
  display:inline-block;
  padding:14px 28px;
  border-radius:6px;
  font-weight:700;
  font-size:15px;
  cursor:pointer;
  border:2px solid transparent;
  transition:all .25s;
  font-family:'Montserrat',sans-serif;
  letter-spacing:.3px;
}
.btn-primary{background:var(--red);color:#fff;border-color:var(--red)}
.btn-primary:hover{background:#b71c30;border-color:#b71c30;transform:translateY(-2px);box-shadow:0 8px 20px rgba(215,38,61,.3)}
.btn-ghost{background:transparent;color:#fff;border-color:#fff}
.btn-ghost:hover{background:#fff;color:var(--blue)}
.btn-block{width:100%;text-align:center}

/* ===== HERO ===== */
.hero{
  position:relative;
  min-height:620px;
  display:flex;
  align-items:center;
  color:#fff;
  background:
    linear-gradient(135deg, rgba(11,42,91,.92) 0%, rgba(11,42,91,.7) 50%, rgba(215,38,61,.55) 100%),
    url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?w=1920&q=80') center/cover;
  padding:100px 0 80px;
  overflow:hidden;
}
.hero-overlay{
  position:absolute;inset:0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,194,14,.15), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(215,38,61,.2), transparent 50%);
  pointer-events:none;
}
.hero-content{position:relative;z-index:2;max-width:880px}
.hero-badge{
  display:inline-block;
  background:rgba(255,194,14,.15);
  color:var(--yellow);
  padding:8px 18px;
  border-radius:30px;
  font-size:13px;
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
  border:1px solid rgba(255,194,14,.4);
  margin-bottom:24px;
}
.hero h1{
  font-size:clamp(2rem,5vw,3.8rem);
  color:#fff;
  margin-bottom:24px;
  text-shadow:0 4px 20px rgba(0,0,0,.3);
}
.hero-sub{
  font-size:clamp(1rem,1.5vw,1.2rem);
  color:rgba(255,255,255,.92);
  max-width:760px;
  margin-bottom:36px;
  line-height:1.7;
}
.hero-cta{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:60px}
.hero-stats{
  display:flex;
  gap:50px;
  flex-wrap:wrap;
  padding-top:30px;
  border-top:1px solid rgba(255,255,255,.2);
}
.stat{display:flex;flex-direction:column}
.stat strong{
  font-family:'Montserrat',sans-serif;
  font-size:2.6rem;
  font-weight:900;
  color:var(--yellow);
  line-height:1;
}
.stat span{font-size:14px;color:rgba(255,255,255,.85);margin-top:6px}

/* ===== TRUST STRIP ===== */
.trust{
  background:var(--blue);
  padding:32px 0;
}
.trust-inner{
  display:flex;
  justify-content:space-around;
  align-items:center;
  flex-wrap:wrap;
  gap:24px;
}
.trust-item{
  color:#fff;
  font-weight:600;
  font-size:15px;
  letter-spacing:.5px;
  padding:6px 16px;
  position:relative;
}
.trust-item::before{
  content:'';
  display:inline-block;
  width:8px;height:8px;
  background:var(--yellow);
  border-radius:50%;
  margin-right:10px;
  vertical-align:middle;
}

/* ===== SECTIONS ===== */
.section{padding:90px 0}
.section-light{background:var(--light)}
.section-dark{background:var(--blue);color:#fff}
.section-dark h2,.section-dark h3,.section-dark h4{color:#fff}
.section-hse{
  background:linear-gradient(135deg, #fff 50%, #fff5d6 50%);
}
.section-why{background:#fff}
.eyebrow{
  display:inline-block;
  color:var(--red);
  font-weight:700;
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:14px;
}
.eyebrow-light{color:var(--yellow)}
.section-head{text-align:center;max-width:780px;margin:0 auto 60px}
.section-head h2{font-size:clamp(1.8rem,3vw,2.6rem);margin-bottom:14px}
.section-sub{color:var(--muted);font-size:17px;max-width:680px;margin:0 auto}

/* ===== TWO COL ===== */
.two-col{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:60px;
  align-items:start;
}
.two-col h2{font-size:clamp(1.6rem,2.5vw,2.2rem);margin-bottom:20px}
.two-col p{color:var(--muted);margin-bottom:16px;font-size:16px}
.compliance{
  background:#fff;
  border-left:4px solid var(--red);
  padding:14px 18px;
  margin-top:20px;
  border-radius:4px;
  box-shadow:var(--shadow);
  font-size:14px;
}
.compliance strong{display:block;color:var(--blue);margin-bottom:4px}
.values-card{
  background:#fff;
  padding:40px;
  border-radius:12px;
  box-shadow:var(--shadow-lg);
  border-top:4px solid var(--red);
}
.values-card h3{margin-bottom:24px;font-size:1.4rem}
.values li{display:flex;gap:16px;padding:14px 0;border-bottom:1px solid var(--border)}
.values li:last-child{border-bottom:none}
.v-dot{
  flex-shrink:0;
  width:14px;height:14px;
  border-radius:50%;
  margin-top:6px;
  box-shadow:0 0 0 4px rgba(0,0,0,.05);
}
.v-1{background:var(--red)}
.v-2{background:var(--blue)}
.v-3{background:var(--yellow)}
.v-4{background:#16a34a}
.v-5{background:#7c3aed}
.values strong{display:block;color:var(--blue);margin-bottom:4px;font-size:16px}
.values p{font-size:14px;color:var(--muted);margin:0}

/* ===== SERVICES ===== */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:24px;
}
.service-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  padding:36px 28px;
  border-radius:10px;
  transition:all .3s;
  position:relative;
  overflow:hidden;
}
.service-card::before{
  content:'';
  position:absolute;
  top:0;left:0;
  width:0;height:4px;
  background:var(--yellow);
  transition:width .35s;
}
.service-card:hover{
  background:rgba(255,255,255,.1);
  transform:translateY(-6px);
  border-color:rgba(255,194,14,.3);
}
.service-card:hover::before{width:100%}
.service-num{
  font-family:'Montserrat',sans-serif;
  font-size:2.2rem;
  font-weight:900;
  color:var(--yellow);
  opacity:.5;
  margin-bottom:12px;
  line-height:1;
}
.service-card h3{font-size:1.2rem;margin-bottom:14px;color:#fff}
.service-card p{color:rgba(255,255,255,.85);font-size:14.5px;margin-bottom:18px}
.service-card ul li{
  font-size:13.5px;
  color:rgba(255,255,255,.8);
  padding:6px 0 6px 22px;
  position:relative;
}
.service-card ul li::before{
  content:'✓';
  position:absolute;
  left:0;
  color:var(--yellow);
  font-weight:700;
}

/* ===== HSE ===== */
.hse-inner{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:60px;
  align-items:center;
}
.hse-inner h2{font-size:clamp(1.8rem,3vw,2.5rem);margin-bottom:18px}
.hse-inner p{color:var(--text);margin-bottom:30px;font-size:16.5px}
.hse-pillars{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.pillar{
  background:#fff;
  padding:18px 20px;
  border-radius:8px;
  border-left:4px solid var(--red);
  box-shadow:var(--shadow);
}
.pillar strong{
  display:block;
  color:var(--blue);
  font-size:18px;
  margin-bottom:4px;
  font-family:'Montserrat',sans-serif;
}
.pillar span{font-size:13.5px;color:var(--muted)}
.hse-stamp{display:flex;justify-content:center;align-items:center}
.hse-circle{
  width:280px;height:280px;
  border-radius:50%;
  background:radial-gradient(circle,var(--red),#8a0d1e);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  color:#fff;
  box-shadow:0 20px 50px rgba(215,38,61,.35);
  position:relative;
  animation:pulse 2.5s ease-in-out infinite;
}
.hse-circle::before{
  content:'';
  position:absolute;
  inset:-12px;
  border-radius:50%;
  border:3px dashed var(--yellow);
  opacity:.5;
}
@keyframes pulse{
  0%,100%{transform:scale(1)}
  50%{transform:scale(1.04)}
}
.hse-zero{
  font-family:'Montserrat',sans-serif;
  font-size:8rem;
  font-weight:900;
  line-height:1;
}
.hse-label{
  font-size:1.2rem;
  font-weight:700;
  letter-spacing:4px;
  margin-top:8px;
}

/* ===== WHY US ===== */
.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:24px;
}
.why-card{
  background:#fff;
  padding:32px 26px;
  border-radius:10px;
  box-shadow:var(--shadow);
  text-align:center;
  border-top:4px solid var(--blue);
  transition:all .3s;
}
.why-card:nth-child(2){border-top-color:var(--red)}
.why-card:nth-child(3){border-top-color:var(--yellow)}
.why-card:nth-child(4){border-top-color:#16a34a}
.why-card:nth-child(5){border-top-color:#7c3aed}
.why-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg)}
.why-num{
  display:inline-flex;
  width:50px;height:50px;
  background:var(--blue);
  color:#fff;
  border-radius:50%;
  align-items:center;
  justify-content:center;
  font-family:'Montserrat',sans-serif;
  font-weight:900;
  font-size:1.4rem;
  margin-bottom:16px;
}
.why-card:nth-child(2) .why-num{background:var(--red)}
.why-card:nth-child(3) .why-num{background:var(--yellow);color:var(--blue)}
.why-card:nth-child(4) .why-num{background:#16a34a}
.why-card:nth-child(5) .why-num{background:#7c3aed}
.why-card h4{font-size:1.1rem;margin-bottom:10px}
.why-card p{font-size:14px;color:var(--muted)}

/* ===== PROJECTS ===== */
.project-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px;
}
.project-card{
  background:#fff;
  border-radius:10px;
  padding:32px 28px;
  box-shadow:var(--shadow);
  border-left:5px solid var(--red);
  transition:all .3s;
}
.project-card:nth-child(2){border-left-color:var(--blue)}
.project-card:nth-child(3){border-left-color:var(--yellow)}
.project-card:nth-child(4){border-left-color:#16a34a}
.project-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.project-tag{
  display:inline-block;
  background:var(--red);
  color:#fff;
  padding:4px 12px;
  border-radius:4px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.5px;
  text-transform:uppercase;
  margin-bottom:14px;
}
.project-card:nth-child(2) .project-tag{background:var(--blue)}
.project-card:nth-child(3) .project-tag{background:var(--yellow);color:var(--blue)}
.project-card:nth-child(4) .project-tag{background:#16a34a}
.project-card h4{font-size:1.15rem;margin-bottom:10px}
.project-card p{color:var(--muted);font-size:14.5px}

/* ===== TEAM ===== */
.section-team{background:var(--light)}
.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
  max-width:1000px;
  margin:0 auto;
}
.team-card{
  background:#fff;
  padding:32px 24px;
  border-radius:10px;
  text-align:center;
  box-shadow:var(--shadow);
  transition:all .3s;
}
.team-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.placeholder-team{opacity:.92}
.team-photo{
  width:90px;height:90px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--blue),var(--blue-2));
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:2.2rem;
  margin:0 auto 18px;
  border:4px solid var(--yellow);
}
.team-card h4{font-size:1.1rem;margin-bottom:4px}
.team-role{
  display:block;
  color:var(--red);
  font-weight:600;
  font-size:14px;
  margin-bottom:14px;
}
.team-card p{font-size:14px;color:var(--muted)}

/* ===== CONTACT ===== */
.section-contact{
  background:linear-gradient(135deg, var(--blue) 0%, #0a1a3a 100%);
  color:#fff;
  position:relative;
  overflow:hidden;
}
.section-contact::before{
  content:'';
  position:absolute;
  top:-50%;right:-10%;
  width:600px;height:600px;
  background:radial-gradient(circle,rgba(255,194,14,.12),transparent 70%);
  border-radius:50%;
}
.contact-inner{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:60px;
  position:relative;
  z-index:2;
}
.contact-inner h2{color:#fff;font-size:clamp(1.8rem,3vw,2.4rem);margin-bottom:16px}
.contact-inner > div > p{color:rgba(255,255,255,.85);font-size:16px;margin-bottom:30px}
.contact-list li{
  display:flex;
  flex-direction:column;
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.contact-list strong{color:var(--yellow);font-size:13px;letter-spacing:1px;text-transform:uppercase;margin-bottom:4px}
.contact-list a,.contact-list span{color:#fff;font-size:15px}
.contact-list a:hover{color:var(--yellow)}

.contact-form{
  background:#fff;
  color:var(--text);
  padding:36px;
  border-radius:12px;
  box-shadow:var(--shadow-lg);
}
.contact-form h3{font-size:1.3rem;margin-bottom:20px;color:var(--blue)}
.row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.contact-form label{display:block;margin-bottom:16px}
.contact-form label span{display:block;font-size:13px;font-weight:600;color:var(--text);margin-bottom:6px}
.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  padding:12px 14px;
  border:1.5px solid var(--border);
  border-radius:6px;
  font-size:15px;
  font-family:inherit;
  transition:border-color .2s;
  background:#fafbfd;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:var(--blue);
  background:#fff;
}
.contact-form textarea{resize:vertical}
.form-note{margin-top:14px;font-size:14px;color:#16a34a;font-weight:600}

/* ===== FOOTER ===== */
.footer{background:var(--dark);color:#cbd5e1;padding:60px 0 0}
.footer-inner{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:50px;
  padding-bottom:40px;
}
.footer-logo{height:60px;margin-bottom:16px;background:#fff;padding:8px;border-radius:6px;width:auto;display:inline-block}
.footer p{font-size:14px;line-height:1.7;color:#9ca3af;max-width:380px}
.footer h5{
  color:#fff;
  font-size:15px;
  margin-bottom:18px;
  letter-spacing:1px;
  text-transform:uppercase;
}
.footer ul li{padding:6px 0;font-size:14.5px}
.footer ul a{color:#9ca3af;transition:color .2s}
.footer ul a:hover{color:var(--yellow)}
.footer-contact li{color:#9ca3af}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:20px 0;
  text-align:center;
  font-size:13px;
  color:#6b7280;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float{
  position:fixed;
  bottom:24px;
  right:24px;
  width:60px;height:60px;
  border-radius:50%;
  background:#25D366;
  color:#fff;
  font-size:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 20px rgba(37,211,102,.4);
  z-index:99;
  transition:transform .2s;
}
.whatsapp-float:hover{transform:scale(1.1)}

/* ===== RESPONSIVE ===== */
@media (max-width:980px){
  .nav-links,.nav-cta{display:none}
  .menu-toggle{display:block}
  .nav-links.open{
    display:flex;
    position:absolute;
    top:100%;left:0;right:0;
    background:#fff;
    flex-direction:column;
    padding:20px;
    gap:14px;
    box-shadow:0 8px 20px rgba(0,0,0,.1);
  }
  .two-col,.hse-inner,.contact-inner{grid-template-columns:1fr;gap:40px}
  .hse-stamp{order:-1}
  .hse-circle{width:220px;height:220px}
  .hse-zero{font-size:6rem}
  .footer-inner{grid-template-columns:1fr 1fr;gap:30px}
  .hero-stats{gap:30px}
  .stat strong{font-size:2rem}
}
@media (max-width:600px){
  .section{padding:60px 0}
  .topbar-inner{justify-content:center;text-align:center}
  .row{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr}
  .contact-form{padding:24px}
  .hse-pillars{grid-template-columns:1fr}
  .nav-inner{padding:10px 16px}
  .brand img{height:50px}
  .hero{min-height:520px;padding:70px 0 50px}
  .hero-stats{flex-direction:column;gap:20px}
  .stat{flex-direction:row;align-items:baseline;gap:12px}
}
