/* ================= GLOBAL ================= */

body{
font-family:Arial, Helvetica, sans-serif;
margin:0;
line-height:1.6;
color:#222;
background:#ffffff;
}

.container{
max-width:1100px;
margin:0 auto;
padding:0 20px;
}

/* ================= TITLES ================= */

h2{
position:relative;
display:inline-block;
margin-bottom:30px;
}

h2::after{
content:"";
display:block;
width:60px;
height:3px;
background:#359935;
margin-top:8px;
}

/* ================= HEADER ================= */

.site-header{
background:linear-gradient(90deg,#2f8f2f,#359935);
border-bottom:1px solid rgba(0,0,0,0.1);
box-shadow:0 2px 6px rgba(0,0,0,0.08);
position:sticky;
top:0;
z-index:1000;
}

.site-header::after{
content:"";
display:block;
height:3px;
background:linear-gradient(90deg,#8cff8c,#2f8f2f,#8cff8c);
}

.header-inner{
max-width:1200px;
margin:0 auto;
padding:14px 20px;
  display:flex;
justify-content:space-between;
align-items:center;
}

.logo-block{
display:flex;
align-items:center;
gap:14px;
}

.site-logo{
height:60px;
}

.brand-text{
display:flex;
flex-direction:column;
}

.brand-text strong{
color:white;
font-size:1.05em;
}

.brand-text span{
color:#e9f7e9;
font-size:0.9em;
}

.main-nav{
display:flex;
align-items:center;
flex-wrap:nowrap;
}

.main-nav a{
margin-left:16px;
text-decoration:none;
color:white;
font-weight:600;
white-space:nowrap;
transition:0.2s;
}

.main-nav a:hover{
color:#e6ffe6;
}

/* ================= HERO ================= */

.hero{
background-image:
linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
url("/assets/hero-steel.jpg");
background-size:cover;
background-position:center;
padding:120px 20px;
text-align:center;
color:white;
}

.hero-content{
max-width:900px;
margin:0 auto;
}

.hero h1{
font-size:2.6em;
margin-bottom:20px;
}

.hero p{
font-size:1.2em;
color:#dfe6ee;
}

.cta-button{
display:inline-block;
background:#ffffff;
color:#003366;
padding:12px 28px;
font-weight:700;
border-radius:6px;
text-decoration:none;
margin-top:20px;
transition:0.25s;
}

.cta-button:hover{
background:#e6e6e6;
}

/* ================= STATS ================= */

.stats{
padding:40px 20px;
background:#f8fafc;
}

.stats-grid{
max-width:1000px;
margin:0 auto;
display:flex;
justify-content:space-between;
text-align:center;
flex-wrap:wrap;
}

.stats-grid div{
flex:1;
min-width:200px;
}

.stats-grid h3{
font-size:2em;
color:#003366;
}

/* ================= SOLUTIONS ================= */

.home-solutions{
padding:40px 20px;
text-align:center;
}

.solutions-grid{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
}

.solution-box{
background:#f4f6f9;
padding:30px;
width:360px;
border-radius:6px;
border:1px solid #e5e5e5;
box-shadow:0 4px 12px rgba(0,0,0,0.05);
transition:0.25s;
}

.solution-box:hover{
transform:translateY(-5px);
box-shadow:0 8px 25px rgba(0,0,0,0.12);
}

/* ================= WHY DAMANI ================= */

.why-damani{
background:#f8fafc;
padding:40px 20px;
text-align:center;
}

.why-grid{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
max-width:1100px;
margin:0 auto;
}

.why-grid div{
background:white;
padding:25px;
border-radius:6px;
border:1px solid #e5e5e5;
max-width:300px;
box-shadow:0 4px 12px rgba(0,0,0,0.05);
}

/* ================= INDUSTRIES ================= */

.industries{
padding:40px 20px;
text-align:center;
}

.industries-grid{
display:flex;
flex-wrap:wrap;
gap:30px;
justify-content:center;
max-width:1100px;
margin:0 auto;
}

.industries-grid div{
background:#f4f6f9;
padding:25px;
border-radius:6px;
max-width:250px;
border:1px solid #e5e5e5;
}

/* ================= HOME APPLICATIONS ================= */

.applications-preview{
background:#f8fafc;
padding:40px 20px;
text-align:center;
}

.applications-grid{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
max-width:1000px;
margin:0 auto;
}

.home-app-card{
background:white;
border-radius:6px;
overflow:hidden;
width:280px;
border:1px solid #e5e5e5;
box-shadow:0 4px 12px rgba(0,0,0,0.05);
transition:0.25s;
text-align:center;
}

.home-app-card:hover{
transform:translateY(-5px);
box-shadow:0 8px 25px rgba(0,0,0,0.12);
}

.home-app-card img{
width:100%;
height:170px;
object-fit:cover;
}

.home-app-card h3{
margin:18px 0 8px 0;
color:#003366;
}

.home-app-card p{
padding:0 20px 20px 20px;
}

/* ================= APPLICATION PAGE ================= */

.application-block{
padding:35px 20px;
}

.application-grid{
display:flex;
align-items:center;
gap:35px;
max-width:1100px;
margin:10px auto;
}

.application-grid.reverse{
flex-direction:row-reverse;
}

.application-image img{
width:100%;
max-width:460px;
border-radius:6px;
}

.application-text{
flex:1;
font-size:17px;
line-height:1.7;
}

/* ================= CONTACT ================= */

.contact-layout{
display:flex;
gap:60px;
max-width:1000px;
margin:40px auto;
align-items:flex-start;
}

.contact-form{
flex:1;
}

.contact-form form{
display:flex;
flex-direction:column;
gap:12px;
}

.contact-form input,
.contact-form textarea{
padding:10px;
border:1px solid #ccc;
border-radius:4px;
font-size:14px;
}

.contact-map{
flex:1;
}

/* ================= WORLD MAP ================= */

.world-map{
position:relative;
max-width:600px;
margin:0 auto;
border:1px solid #e5e5e5;
border-radius:6px;
padding:10px;
background:#fafafa;
}

.world-map img{
width:100%;
height:auto;
}

/* map points */

.map-point{
position:absolute;
width:14px;
height:14px;
background:#2ecc71;
border-radius:50%;
border:3px solid white;
box-shadow:0 0 8px rgba(0,0,0,0.3);
animation:pulse 2s infinite;
}

@keyframes pulse{

0%{
transform:scale(1);
box-shadow:0 0 0 0 rgba(46,204,113,0.7);
}

70%{
transform:scale(1.3);
box-shadow:0 0 0 12px rgba(46,204,113,0);
}

100%{
transform:scale(1);
}

}

/* map locations */

.canada{ top:32%; left:22%; }
.uk{ top:33%; left:47%; }
.germany{ top:36%; left:50%; }
.italy{ top:40%; left:51%; }
.japan{ top:37%; left:82%; }
.brazil{ top:63%; left:36%; }

/* ================= PARTNERS ================= */

.partners-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
max-width:800px;
margin:30px auto;
text-align:center;
}

.partner-card img{
width:120px;
margin:0 auto 10px auto;
filter:grayscale(100%);
transition:0.3s ease;
}

.partner-card:hover img{
filter:grayscale(0%);
transform:scale(1.08);
}

/* ================= FOOTER ================= */

.site-footer{
background:#359935;
color:white;
margin-top:40px;
padding:35px 20px;
}

.footer-container{
display:flex;
flex-wrap:wrap;
justify-content:space-between;
max-width:1100px;
margin:0 auto;
}

.footer-column{
min-width:250px;
}

.footer-column a{
color:white;
text-decoration:none;
}

.footer-logo{
height:48px;
margin-bottom:12px;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.3);
margin-top:20px;
padding-top:10px;
}

/* ================= MOBILE ================= */

@media (max-width:900px){

.header-inner{
flex-direction:column;
align-items:flex-start;
}

.main-nav{
flex-wrap:wrap;
margin-top:10px;
}

.main-nav a{
margin:6px 8px;
font-size:14px;
}

.hero{
padding:80px 20px;
}

.solutions-grid,
.why-grid,
.industries-grid,
.applications-grid,
.stats-grid{
flex-direction:column;
align-items:center;
}

.contact-layout{
flex-direction:column;
}

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

.footer-container{
flex-direction:column;
gap:30px;
}

}
/* ================= PARTNERS CARDS IMPROVEMENT ================= */

.partner-card img{
width:160px;
display:block;
margin:0 auto 15px auto;
filter:grayscale(100%);
transition:0.3s ease;
}

.partner-card:hover img{
filter:grayscale(0%);
transform:scale(1.05);
}

.partner-card h4{
font-size:18px;
margin-bottom:10px;
color:#003366;
}

.partner-card p{
font-size:14px;
line-height:1.5;
margin-bottom:10px;
}

.partners-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:35px;
max-width:1100px;
margin:40px auto;
}
/* ================= PARTNER CARDS IMPROVED ================= */

.partner-card{
background:#ffffff;
padding:25px;
border-radius:6px;
border:2px solid #e5e5e5;
box-shadow:0 6px 18px rgba(0,0,0,0.06);
transition:0.25s;
}

.partner-card:hover{
border-color:#359935;
box-shadow:0 8px 24px rgba(0,0,0,0.12);
transform:translateY(-3px);
}

.partner-card img{
width:170px;
display:block;
margin:0 auto 18px auto;
filter:grayscale(100%);
transition:0.3s;
}

.partner-card:hover img{
filter:grayscale(0%);
}

.partner-card h4{
font-size:18px;
margin-bottom:10px;
color:#003366;
}

.partner-card p{
font-size:14px;
line-height:1.5;
margin-bottom:10px;
}
/* ================= REFERENCES LOGO SLIDER ================= */

.references{
padding:60px 20px;
background:#f8fafc;
text-align:center;
}

.references-intro{
max-width:800px;
margin:0 auto 40px auto;
color:#555;
}

.logo-slider{
overflow:hidden;
position:relative;
max-width:1100px;
margin:0 auto;
}

.logo-track{
display:flex;
gap:60px;
animation:scrollLogos 35s linear infinite;
align-items:center;
}

.logo-track img{
height:50px;
filter:grayscale(100%);
opacity:0.8;
transition:1s;
}

.logo-track img:hover{
filter:grayscale(0%);
opacity:1;
transform:scale(1.05);
}

@keyframes scrollLogos{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}
/* ================= HERO SOLUTIONS ================= */

.hero-solutions{
background-image:
linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
url("/assets/loco-gand.jpg");
background-size:cover;
background-position:center;
}
/* ================= SOLUTIONS PAGE SPACING ================= */

.page-solutions .application-block{
padding:40px 20px;
}

.page-solutions .industries{
padding:35px 20px;
}

.page-solutions .references{
padding:40px 20px;
}

.page-solutions h2{
margin-bottom:25px;
}

.page-solutions .application-grid{
margin:20px auto;
}
/* ================= SOLUTIONS PAGE COMPACT ================= */

.page-solutions .application-block{
padding:30px 20px;
}

.page-solutions .industries{
padding:30px 20px;
}

.page-solutions .references{
padding:35px 20px;
}

.page-solutions .application-grid{
gap:35px;
margin:10px auto;
}

.page-solutions h2{
margin-bottom:18px;
}
/* ================= MOBILE SOLUTIONS LAYOUT ================= */

@media (max-width:900px){

.page-solutions .application-grid{
flex-direction:column;
text-align:center;
gap:20px;
}

.page-solutions .application-image img{
max-width:100%;
height:auto;
border-radius:6px;
}

.page-solutions .application-text{
font-size:16px;
line-height:1.6;
}

.page-solutions .application-text p{
max-width:95%;
margin:auto;
}

.page-solutions .cta-button{
margin-top:10px;
}

}
.page-solutions .application-image img{
max-width:420px;
}
/* ================= APPLICATIONS MOBILE OPTIMIZATION ================= */

@media (max-width:900px){

.application-grid{
flex-direction:column;
text-align:center;
gap:18px;
}

.application-grid.reverse{
flex-direction:column;
}

.application-image img{
width:100%;
max-width:420px;
border-radius:6px;
}

.application-text{
font-size:16px;
line-height:1.6;
}

.application-text p{
max-width:95%;
margin:auto;
}

.application-block{
padding:28px 20px;
}

}
/* ================= HERO APPLICATIONS ================= */

.hero-applications{
background-image:
linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
url("/assets/bat-oven.JPG");
background-size:cover;
background-position:center;
}


/* ================= HERO CONTACT ================= */

.hero-contact{
background-image:
linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
url("/assets/tag-cc.JPG");
background-size:cover;
background-position:center;
}
/* ================= VEROLINE IMAGE GRID ================= */

.veroline-gallery{
padding:50px 20px;
text-align:center;
background:#f8fafc;
}

.veroline-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
max-width:1100px;
margin:40px auto;
}

.veroline-item img{
width:100%;
border-radius:6px;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
transition:0.3s;
}

.veroline-item img:hover{
transform:scale(1.03);
box-shadow:0 6px 20px rgba(0,0,0,0.15);
}
.veroline-product{
width:100%;
max-width:380px;
display:block;
margin:25px auto;
border-radius:6px;
}
/* ================= VEROLINE PAGE ================= */

.veroline-grid img{
max-width:320px;
width:100%;
border-radius:6px;
margin:auto;
display:block;
}

.veroline-item{
text-align:center;
}
.veroline-tech img{
max-width:550px;
width:100%;
display:block;
margin:auto;
}
.pdf-download{
text-align:center;
max-width:650px;
margin:40px auto;
}
.veroline-grid img{
max-width:300px;
width:100%;
border-radius:6px;
}

.application-image img{
max-width:380px;
}
/* HERO VEROLINE */

.hero-veroline{
background-image:
linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
url("/assets/loco-quai.jpg");
background-size:cover;
background-position:center;
}


/* TECH DRAWINGS */

.veroline-tech{
display:flex;
gap:40px;
justify-content:center;
flex-wrap:wrap;
margin-top:30px;
}

.veroline-tech img{
max-width:420px;
width:100%;
height:auto;
}


/* VEROLINE SPECS */

.veroline-specs{
max-width:700px;
margin:auto;
line-height:1.7;
font-size:15px;
}


/* SMALLER APPLICATION IMAGES */

.application-image img{
max-width:340px;
width:100%;
border-radius:6px;
}


/* CENTER PDF */

.pdf-download{
text-align:center;
max-width:650px;
margin:50px auto;
}

.pdf-download a{
margin:10px;
display:inline-block;
}
/* HERO VEROLINE */

.hero-veroline{
background-image:
linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
url("/assets/loco-quai.jpg");
background-size:cover;
background-position:center;
}


/* TEXT STYLE */

.container p{
max-width:750px;
margin:auto;
margin-bottom:15px;
font-size:16px;
line-height:1.7;
color:#333;
}


/* TECHNICAL DRAWINGS */

.veroline-tech{
display:flex;
gap:50px;
justify-content:center;
flex-wrap:wrap;
margin-top:40px;
}

.tech-item{
text-align:center;
}

.tech-item img{
max-width:420px;
width:100%;
height:auto;
border-radius:6px;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.tech-item p{
margin-top:10px;
font-size:14px;
color:#555;
}


/* APPLICATION IMAGES */

.application-image img{
max-width:320px;
width:100%;
border-radius:6px;
}


/* PDF DOWNLOAD */

.pdf-download{
text-align:center;
max-width:700px;
margin:60px auto;
}

.pdf-buttons{
display:flex;
gap:20px;
justify-content:center;
flex-wrap:wrap;
margin-top:20px;
}

.pdf-button{
padding:12px 25px;
background:#003366;
color:white;
border-radius:5px;
text-decoration:none;
font-weight:600;
}
/* VEROLINE PI dimensions (30% larger) */

.vlpi-dim{
max-width:550px;
width:100%;
height:auto;
}
/* HERO VEROLINE */

.hero-veroline{
background-image:
linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
url("/assets/loco-quai.jpg");
background-size:cover;
background-position:center;
}


/* PRODUCT BLOCKS */

.veroline-product{
padding:50px 20px;
margin-top:40px;
}

.veroline-product.pi{
background:#f8fafc;
border-top:4px solid #003366;
}

.veroline-product.vi{
background:#ffffff;
border-top:4px solid #359935;
}


/* TEXT STYLE */

.veroline-intro{
max-width:700px;
margin:auto;
font-size:16px;
line-height:1.7;
}

.veroline-intro ul{
margin-top:15px;
padding-left:20px;
}

.veroline-intro li{
margin-bottom:6px;
}


/* TECH DRAWINGS */

.veroline-tech{
display:flex;
gap:40px;
justify-content:center;
flex-wrap:wrap;
margin-top:35px;
}

.veroline-tech img{
background:white;
padding:10px;
border:1px solid #e5e5e5;
border-radius:6px;
max-width:420px;
width:100%;
height:auto;
}

.vlpi-dim{
max-width:550px;
}

.vli-tech{
max-width:300px;
}


/* APPLICATION IMAGES */

.application-image img{
max-width:320px;
width:100%;
border-radius:6px;
}


/* PDF BUTTONS */

.pdf-download{
text-align:center;
max-width:700px;
margin:50px auto;
}

.pdf-buttons{
display:flex;
gap:20px;
justify-content:center;
flex-wrap:wrap;
margin-top:20px;
}
/* VEROLINE APPLICATION GRID */

.veroline-applications{
padding:40px 20px;
max-width:1100px;
margin:auto;
}

.veroline-app-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
margin-top:30px;
}

.veroline-card{
background:#ffffff;
border:1px solid #e5e5e5;
border-radius:6px;
padding:18px;
text-align:center;
box-shadow:0 3px 8px rgba(0,0,0,0.05);
}

.veroline-card img{
width:100%;
max-width:320px;
margin:auto;
display:block;
border-radius:6px;
}

.veroline-card p{
font-size:15px;
line-height:1.6;
margin-top:12px;
color:#444;
max-width:320px;
margin-left:auto;
margin-right:auto;
}


/* MOBILE */

@media (max-width:900px){

.veroline-app-grid{
grid-template-columns:1fr;
}

}
/* VEROLINE PI APPLICATION GRID */

.veroline-app-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
margin-top:30px;
}

.veroline-card{
background:white;
border:1px solid #e5e5e5;
border-radius:6px;
padding:18px;
text-align:center;
}

.veroline-card img{
max-width:420px;
width:100%;
border-radius:6px;
margin:auto;
display:block;
}

.veroline-card p{
max-width:420px;
margin:12px auto 0;
font-size:15px;
line-height:1.6;
}



/* VEROLINE I GRID */

.veroline-i-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
margin-top:30px;
max-width:900px;
margin-left:auto;
margin-right:auto;
}

.veroline-i-card{
background:white;
border:1px solid #e5e5e5;
border-radius:6px;
padding:18px;
text-align:center;
}

.veroline-i-card img{
max-width:420px;
width:100%;
border-radius:6px;
margin:auto;
display:block;
}

.veroline-i-card p{
max-width:420px;
margin:12px auto 0;
font-size:14px;
line-height:1.6;
}



/* MOBILE */

@media (max-width:900px){

.veroline-app-grid,
.veroline-i-grid{
grid-template-columns:1fr;
}

}
/* VEROLINE I dimensions (smaller) */

.vli-dim{
max-width:220px;
width:100%;
height:auto;
margin:auto;
display:block;
}
/* VEROLINE I photos larger */

/* VEROLINE I photos */

.vli-photo{
max-width:520px;
width:100%;
height:auto;
display:block;
margin:auto;
border-radius:6px;
border:1px solid #e5e5e5;
box-shadow:0 4px 10px rgba(0,0,0,0.08);
}
/* VEROLINE ADVANTAGES */

.veroline-advantages{
background:#f8fafc;
padding:50px 20px;
text-align:center;
}

.advantages-grid{
display:flex;
flex-wrap:wrap;
gap:30px;
justify-content:center;
max-width:1100px;
margin:40px auto;
}

.advantage-box{
background:white;
border:1px solid #e5e5e5;
border-radius:6px;
padding:25px;
max-width:250px;
box-shadow:0 4px 12px rgba(0,0,0,0.05);
transition:0.25s;
}

.advantage-box:hover{
transform:translateY(-6px);
box-shadow:0 8px 25px rgba(0,0,0,0.12);
}

.advantage-box h3{
color:#003366;
margin-bottom:10px;
}
.veroline-product{
padding:60px 20px;
margin-top:40px;
border-top:3px solid #e5e5e5;
}
/* ================= VEROLINE APPLICATION TITLE FIX ================= */

.veroline-i-applications{
padding:40px 20px;
max-width:1100px;
margin:auto;
}
/* ================= VEROLINE I APPLICATIONS ================= */

.veroline-i-applications{
padding:40px 20px;
max-width:1100px;
margin:auto;
}
/* ================= ABOUT FACILITIES ================= */

.about-facilities{
padding:40px 20px;
}

.about-facilities p{
max-width:750px;
margin-bottom:15px;
}

.about-photo{
text-align:center;
margin-top:25px;
}

.about-photo img{
max-width:650px;
width:100%;
border-radius:6px;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
}
/* ================= NEWS TITLES ================= */

.news-item h2 a{
color:#003366;
text-decoration:none;
}

.news-item h2 a:hover{
color:#359935;
text-decoration:none;
}
/* ================= DAMANI PREMIUM UPGRADE (SAFE) ================= */

/* GLOBAL IMPROVEMENT */

body{
  color:#1f2937;
  -webkit-font-smoothing:antialiased;
}

/* CONTAINER READABILITY */

.container{
  max-width:1120px;
}

/* TITLES (more premium / industrial) */

h1, h2, h3{
  letter-spacing:-0.3px;
}

h2::after{
  height:3px;
  border-radius:2px;
}

/* HEADER (slightly more premium) */

.site-header{
  box-shadow:0 3px 12px rgba(0,0,0,0.12);
}

/* HERO (more depth) */

.hero{
  padding:130px 20px;
}

.hero h1{
  letter-spacing:-0.5px;
  text-shadow:0 2px 8px rgba(0,0,0,0.4);
}

.hero p{
  max-width:720px;
  margin:auto;
}

/* CTA BUTTON (more industrial premium) */

.cta-button{
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
}

.cta-button:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 18px rgba(0,0,0,0.25);
}

/* GLOBAL SECTION SPACING */

section{
  padding-top:55px;
  padding-bottom:55px;
}

/* CARDS / BOXES (important visual upgrade) */

.solution-box,
.why-grid div,
.industries-grid div,
.home-app-card,
.veroline-card,
.veroline-i-card,
.advantage-box{
  border-radius:8px;
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
  transition:all 0.25s ease;
}

/* HOVER = subtle premium */

.solution-box:hover,
.home-app-card:hover,
.advantage-box:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

/* APPLICATION IMAGES (more premium) */

.application-image img,
.veroline-item img,
.tech-item img{
  box-shadow:0 6px 20px rgba(0,0,0,0.12);
}

/* PARTNERS (cleaner hover) */

.partner-card{
  border-radius:8px;
}

.partner-card:hover{
  transform:translateY(-4px);
}

/* STATS (stronger industrial contrast) */

.stats{
  background:#f1f5f9;
}

.stats-grid h3{
  font-weight:700;
}

/* TEXT IMPROVEMENT */

.container p{
  color:#374151;
}

/* LINKS (more professional feel) */

a{
  transition:0.2s;
}

a:hover{
  opacity:0.85;
}

/* FOOTER (more depth) */

.site-footer{
  box-shadow:0 -4px 20px rgba(0,0,0,0.15);
}

/* MAP POINT (slightly more visible) */

.map-point{
  box-shadow:0 0 10px rgba(0,0,0,0.5);
}

/* LOGO SLIDER (smoother feel) */

.logo-track img{
  transition:0.35s;
}

/* VEROLINE SECTIONS (more structured) */

.veroline-product{
  border-radius:8px;
}

/* PDF BUTTONS (more serious B2B feel) */

.pdf-button{
  box-shadow:0 4px 10px rgba(0,0,0,0.15);
}

.pdf-button:hover{
  transform:translateY(-2px);
}

/* MICRO UX IMPROVEMENT */

button, .btn{
  transition:all 0.25s ease;
}
/* ================= HERO TEXT IMPROVEMENT (SAFE SEO) ================= */

/* Assure un bon positionnement */
.hero,
.hero-solutions,
.hero-applications,
.hero-contact,
.hero-veroline{
  position:relative;
}

/* Renforce légèrement le voile sombre sans casser l'image */
.hero::before,
.hero-solutions::before,
.hero-applications::before,
.hero-contact::before,
.hero-veroline::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.25); /* léger boost lisibilité */
  z-index:1;
}

/* Met le contenu au-dessus */
.hero-content{
  position:relative;
  z-index:2;
}

/* TITRE HERO (effet premium lisible) */
.hero h1,
.hero-solutions h1,
.hero-applications h1,
.hero-contact h1,
.hero-veroline h1{
  text-shadow:0 3px 12px rgba(0,0,0,0.7);
  letter-spacing:1px;
  font-weight:600;
}

/* OPTION PREMIUM : petit trait sous le titre */
.hero h1::after,
.hero-solutions h1::after,
.hero-applications h1::after,
.hero-contact h1::after,
.hero-veroline h1::after{
  content:"";
  display:block;
  width:70px;
  height:3px;
  margin:14px auto 0;
  background:#ffffff;
  opacity:0.85;
}

/* PARAGRAPHE HERO plus lisible */
.hero p{
  text-shadow:0 2px 8px rgba(0,0,0,0.6);
}

/* MOBILE : éviter titres trop massifs */
@media (max-width:768px){
  .hero h1,
  .hero-solutions h1,
  .hero-applications h1,
  .hero-contact h1,
  .hero-veroline h1{
    font-size:2em;
    line-height:1.3;
  }
}
/* ================= HERO ULTRA LUXE ÉPURÉ ================= */

.hero,
.hero-solutions,
.hero-applications,
.hero-contact,
.hero-veroline{
  position:relative;
  overflow:hidden;
}

/* Overlay plus léger et plus naturel */
.hero::before,
.hero-solutions::before,
.hero-applications::before,
.hero-contact::before,
.hero-veroline::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.45) 0%,
      rgba(0,0,0,0.25) 40%,
      rgba(0,0,0,0.55) 100%
    );
  z-index:1;
}

/* Vignettage très subtil (moins marqué) */
.hero::after,
.hero-solutions::after,
.hero-applications::after,
.hero-contact::after,
.hero-veroline::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at center, transparent 70%, rgba(0,0,0,0.35) 100%);
  z-index:1;
}

.hero-content{
  position:relative;
  z-index:2;
}

/* TITRE : premium mais clean */
.hero h1,
.hero-solutions h1,
.hero-applications h1,
.hero-contact h1,
.hero-veroline h1{
  font-weight:600;
  letter-spacing:1.2px;
  line-height:1.2;
  text-transform:uppercase;

  /* profondeur élégante sans cadre */
  text-shadow:
    0 2px 6px rgba(0,0,0,0.5),
    0 8px 22px rgba(0,0,0,0.7);

  /* IMPORTANT : suppression totale du cadre */
  background:none;
  border:none;
  padding:0;
  backdrop-filter:none;
}

/* SUPPRESSION du trait décoratif */
.hero h1::after,
.hero-solutions h1::after,
.hero-applications h1::after,
.hero-contact h1::after,
.hero-veroline h1::after{
  content:none;
}

/* TEXTE */
.hero p{
  text-shadow:0 2px 10px rgba(0,0,0,0.7);
  font-size:1.2em;
}

/* Animation légère (garde le côté premium sans effet visible) */
.hero-content{
  animation:fadeHeroSoft 1s ease-out;
}

@keyframes fadeHeroSoft{
  from{
    opacity:0;
    transform:translateY(15px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* MOBILE */
@media (max-width:768px){

  .hero h1,
  .hero-solutions h1,
  .hero-applications h1,
  .hero-contact h1,
  .hero-veroline h1{
    font-size:1.9em;
  }

  .hero p{
    font-size:1.05em;
  }

}
/* ================= HERO TITLE SOFT PREMIUM ================= */

.hero h1,
.hero-solutions h1,
.hero-applications h1,
.hero-contact h1,
.hero-veroline h1{

  /* on enlève l'effet agressif */
  text-transform:none; /* supprime les majuscules forcées */
  letter-spacing:0.3px;

  /* poids plus élégant */
  font-weight:500;

  /* rendu plus éditorial / premium */
  line-height:1.25;

  /* ombre plus subtile */
  text-shadow:
    0 2px 6px rgba(0,0,0,0.45),
    0 6px 16px rgba(0,0,0,0.55);
}
/* ================= FOOTER PREMIUM UPGRADE ================= */

/* Fond plus riche (dégradé subtil) */
.site-footer{
  background:linear-gradient(180deg,#2f8f2f 0%, #2a7f2a 100%);
  position:relative;
}

/* Ligne haute plus élégante */
.site-footer::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:1px;
  background:rgba(255,255,255,0.15);
}

/* Typo plus fine */
.footer-column h4{
  font-weight:500;
  letter-spacing:0.3px;
  margin-bottom:12px;
}

/* Liens plus premium */
.footer-column a{
  color:rgba(255,255,255,0.85);
  transition:all 0.25s ease;
}

/* Hover élégant (pas agressif) */
.footer-column a:hover{
  color:#ffffff;
  opacity:0.9;
  padding-left:4px; /* petit mouvement subtil */
}

/* Texte plus doux */
.site-footer p{
  color:rgba(255,255,255,0.75);
}

/* Séparateur bas amélioré */
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.2);
  margin-top:25px;
  padding-top:15px;
  font-size:14px;
  color:rgba(255,255,255,0.7);
}

/* Logo plus clean */
.footer-logo{
  filter:brightness(1.1);
}

/* Colonnes mieux espacées */
.footer-column{
  margin-bottom:10px;
}

/* Micro-interaction globale */
.footer-column a{
  display:inline-block;
}

/* MOBILE : plus respirant */
@media (max-width:900px){

  .footer-container{
    gap:25px;
  }

  .footer-column{
    margin-bottom:15px;
  }

}
.site-footer{
  box-shadow:0 -8px 30px rgba(0,0,0,0.2);
}
/* ================= CTA BUTTON PREMIUM ================= */

.cta-button{

  /* base plus qualitative */
  background:#ffffff;
  color:#003366;

  /* sensation de profondeur */
  box-shadow:
    0 4px 12px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.6);

  border-radius:6px;
  font-weight:600;
  letter-spacing:0.3px;

  /* transition plus fluide */
  transition:all 0.25s ease;

  position:relative;
  overflow:hidden;
}

/* effet hover premium */
.cta-button:hover{

  transform:translateY(-2px);

  box-shadow:
    0 8px 22px rgba(0,0,0,0.25);

  background:#f2f5f7;
}

/* effet clic (très important UX) */
.cta-button:active{

  transform:translateY(0);

  box-shadow:
    0 3px 10px rgba(0,0,0,0.2);

}

/* micro effet lumière au hover */
.cta-button::after{

  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;

  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );

  transition:0.5s;
}

.cta-button:hover::after{
  left:100%;
}
/* ================= COOKIE BANNER PREMIUM ================= */

#cookie-banner{
  position:fixed;
  bottom:25px;
  left:50%;
  transform:translateX(-50%);

  width:auto;
  max-width:720px;

  background:rgba(20,30,40,0.92);
  color:#ffffff;

  padding:16px 22px;
  border-radius:10px;

  box-shadow:0 12px 35px rgba(0,0,0,0.35);

  z-index:9999;

  backdrop-filter:blur(8px);

  animation:cookieFade 0.6s ease;
}

/* contenu aligné proprement */
.cookie-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

/* texte */
#cookie-banner p{
  margin:0;
  font-size:14px;
  color:rgba(255,255,255,0.85);
}

/* lien */
#cookie-banner a{
  color:#8cff8c;
  text-decoration:none;
}

#cookie-banner a:hover{
  text-decoration:underline;
}

/* boutons */
.cookie-buttons{
  display:flex;
  gap:10px;
}

/* style commun */
.cookie-buttons button{
  border:none;
  padding:7px 14px;
  border-radius:4px;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
  transition:all 0.25s ease;
}

/* bouton accepter (aligné avec ta charte) */
#accept-cookies{
  background:#359935;
  color:white;
}

#accept-cookies:hover{
  background:#2f8f2f;
  transform:translateY(-1px);
}

/* bouton refuser discret */
#reject-cookies{
  background:transparent;
  color:white;
  border:1px solid rgba(255,255,255,0.35);
}

#reject-cookies:hover{
  background:rgba(255,255,255,0.1);
}

/* animation d'apparition */
@keyframes cookieFade{
  from{
    opacity:0;
    transform:translate(-50%,20px);
  }
  to{
    opacity:1;
    transform:translate(-50%,0);
  }
}
 /* ================= COOKIE BANNER PREMIUM (FIXED) ================= */

#cookie-banner{
  position:fixed;
  bottom:25px;
  left:50%;
  transform:translateX(-50%);
  max-width:720px;
  width:auto;
  background:rgba(20,30,40,0.92);
  color:#ffffff;
  padding:16px 22px;
  border-radius:10px;
  box-shadow:0 12px 35px rgba(0,0,0,0.35);
  z-index:9999;
  backdrop-filter:blur(8px);
  animation:cookieFade 0.6s ease;
}

.cookie-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

#cookie-banner p{
  margin:0;
  font-size:14px;
  color:rgba(255,255,255,0.85);
}

#cookie-banner a{
  color:#8cff8c;
  text-decoration:none;
}

#cookie-banner a:hover{
  text-decoration:underline;
}

.cookie-buttons{
  display:flex;
  gap:10px;
}

.cookie-buttons button{
  border:none;
  padding:7px 14px;
  border-radius:4px;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
  transition:all 0.25s ease;
}

#accept-cookies{
  background:#359935;
  color:white;
}

#accept-cookies:hover{
  background:#2f8f2f;
  transform:translateY(-1px);
}

#reject-cookies{
  background:transparent;
  color:white;
  border:1px solid rgba(255,255,255,0.35);
}

#reject-cookies:hover{
  background:rgba(255,255,255,0.1);
}

/* FIX IMPORTANT */
@keyframes cookieFade{
  from{
    opacity:0;
    transform:translate(-50%,20px);
  }
  to{
    opacity:1;
    transform:translate(-50%,0);
  }
}

/* MOBILE */
@media (max-width:768px){

  #cookie-banner{
    width:90%;
    padding:14px;
  }

  .cookie-content{
    flex-direction:column;
    align-items:flex-start;
  }

  .cookie-buttons{
    width:100%;
    justify-content:flex-end;
  }

}
  /* ================= MOBILE FIX SOLUTIONS ================= */

@media (max-width:768px){

  .solutions-grid{
    flex-direction:column;
    align-items:center;
  }

  .solution-box{
    width:100%;
    max-width:340px;
    margin:auto;
    text-align:center;
  }

}
  /* ================= MOBILE CENTER FIX (REAL FIX) ================= */

@media (max-width:768px){

  .home-solutions{
    text-align:center;
  }

  .solutions-grid{
    display:flex;
    flex-direction:column;
    align-items:center;
  }

  .solution-box{
    width:90%;
    max-width:360px;
    margin:0 auto;
    text-align:center;
  }

  .solution-box p{
    text-align:center;
  }

}
  .home-solutions h2{
  display:block;
  text-align:center;
}
  /* ================= MOBILE FIX SOLUTIONS (FINAL CLEAN) ================= */

@media (max-width:768px){

  /* Section centrée */
  .home-solutions{
    text-align:center;
  }

  /* Grid en colonne + centrage */
  .solutions-grid{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:20px;
  }

  /* Cartes */
  .solution-box{
    width:90%;
    max-width:360px;
    margin:0 auto;
    text-align:center;
  }

  /* Titres */
  .solution-box h3{
    text-align:center;
    margin-bottom:10px;
  }

  /* Texte */
  .solution-box p{
    text-align:center;
  }

  /* Lien → transformé en bouton centré */
  .solution-box a{
    display:inline-block;
    margin-top:15px;
    text-align:center;
  }

  /* IMPORTANT : corrige le décalage du H2 */
  .home-solutions h2{
    display:block;
    text-align:center;
    margin-left:auto;
    margin-right:auto;
  }

}
/* ================= FINAL HEADER + FOOTER HONEYCOMB ================= */

/* ===== HEADER ===== */

body .site-header{

  background:
    linear-gradient(
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.55)
    ),
    url("/assets/image-header.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-bottom:1px solid rgba(255,255,255,0.15);

  box-shadow:
    0 4px 20px rgba(0,0,0,0.35),
    inset 0 0 40px rgba(0,255,120,0.08);
}

/* Ligne lumineuse moderne */
body .site-header::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:2px;

  background:linear-gradient(
    90deg,
    transparent,
    #8cff8c,
    transparent
  );

  opacity:0.7;
}


/* ===== FOOTER ===== */

body .site-footer{

  background:
    linear-gradient(
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.65)
    ),
    url("/assets/image-header.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  box-shadow:
    0 -6px 25px rgba(0,0,0,0.4),
    inset 0 0 50px rgba(0,255,120,0.08);
}

/* Ligne supérieure du footer */
body .site-footer::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:2px;

  background:linear-gradient(
    90deg,
    transparent,
    #8cff8c,
    transparent
  );

  opacity:0.6;
}
/* ================= FIX HERO TOO DARK ================= */

body .hero,
body .hero-solutions,
body .hero-applications,
body .hero-contact,
body .hero-veroline{
  background-image:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    inherit;
}

/* Allège les overlays ajoutés plus haut */
body .hero::before,
body .hero-solutions::before,
body .hero-applications::before,
body .hero-contact::before,
body .hero-veroline::before{
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.20),
      rgba(0,0,0,0.05),
      rgba(0,0,0,0.25)
    ) !important;
}

/* Réduit aussi le vignettage */
body .hero::after,
body .hero-solutions::after,
body .hero-applications::after,
body .hero-contact::after,
body .hero-veroline::after{
  background:
    radial-gradient(
      circle at center,
      transparent 75%,
      rgba(0,0,0,0.25) 100%
    ) !important;
}
/* ================= COPYRIGHT BAR PREMIUM GLASS FIX ================= */

.footer-bottom{

  /* Effet verre harmonisé */
  background:
    linear-gradient(
      90deg,
      rgba(20,120,80,0.85),
      rgba(15,90,60,0.85)
    );

  backdrop-filter: blur(6px);

  /* Intégration visuelle avec le footer */
  border-top:1px solid rgba(255,255,255,0.15);

  /* Glow subtil comme le header */
  box-shadow:
    0 -2px 10px rgba(0,0,0,0.25),
    inset 0 0 20px rgba(0,255,120,0.08);

  /* Texte plus clean */
  color:rgba(255,255,255,0.85);

  text-align:center;
  padding:14px 10px;
  font-size:14px;
  letter-spacing:0.3px;
}

/* Petit effet lumineux horizontal (cohérence header) */
.footer-bottom::before{
  content:"";
  display:block;
  height:1px;
  width:100%;
  margin-bottom:10px;

  background:linear-gradient(
    90deg,
    transparent,
    rgba(140,255,140,0.5),
    transparent
  );

  opacity:0.6;
}
/* ================= COPYRIGHT FINAL CLEAN ================= */

.footer-bottom{

  /* ✅ couleur exacte du logo */
  background-color: rgb(51,153,51);

  /* ✅ texte */
  color:#ffffff;
  text-align:center;
  padding:14px 10px;
  font-size:14px;

  /* ✅ séparation propre */
  border-top:1px solid rgba(255,255,255,0.2);

}
/* ===== FIX ULTRA FORCÉ FOOTER ===== */

.site-footer{
  position:relative;
}

/* bandeau copyright VRAIMENT isolé */
.site-footer .footer-bottom{
  
  position:relative;
  z-index:999;

  /* couleur brute */
  background: rgb(51,153,51) !important;

  /* reset total */
  background-image:none !important;
  backdrop-filter:none !important;
  box-shadow:none !important;

  color:#ffffff;
  text-align:center;
  padding:14px 10px;

  border-top:none;
}
/* ===== FIX FOOTER COPYRIGHT SANS TOUCHER HTML ===== */

.site-footer > div:last-child{

  /* on écrase le style inline */
  background: rgb(51,153,51) !important;

  /* sécurité */
  background-image: none !important;

}

/* texte */
.site-footer > div:last-child p{
  color:#ffffff !important;
  margin:0;
}
/* ================= LOGO SIZE GLOBAL FIX ================= */

/* Header logo */
.site-logo{
  height:80px !important; /* +33% approx */
}

/* Footer logo */
.footer-logo{
  height:80px !important; /* même taille que header */
}
/* === CTA LOGIGRAMME TRACKROLL-ID === */

.logigram-cta {
display: inline-block;
padding: 18px 28px;
margin: 25px 0;
font-size: 1.1em;
font-weight: 600;
color: #ffffff;
background: linear-gradient(135deg, #047857, #059669);
border-radius: 8px;
text-decoration: none;
box-shadow: 0 8px 20px rgba(0,0,0,0.2);
transition: all 0.3s ease;
}

.logigram-cta:hover {
background: linear-gradient(135deg, #065f46, #047857);
transform: translateY(-2px);
box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.logigram-cta::after {
content: " →";
}
/* === CTA LOGIGRAMME TRACKROLL-ID === */

.logigram-cta {
display: block;
width: fit-content;
margin: 30px auto;

padding: 18px 32px;
font-size: 1.1em;
font-weight: 600;

color: #ffffff !important;
background: rgb(51,153,51) !important; /* force la couleur */

border-radius: 10px;
text-decoration: none;

box-shadow: 0 10px 25px rgba(0,0,0,0.25);
transition: all 0.3s ease;
}

.logigram-cta:hover {
background: #065f46 !important;
transform: translateY(-2px);
box-shadow: 0 14px 30px rgba(0,0,0,0.3);
}

.logigram-cta::after {
content: " →";
}
/* === LIGHTBOX IMAGE LOGIGRAMME === */

.lightbox-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: auto;
height: auto;
max-width: 95vw;
max-height: 95vh;
}

.lightbox {
display: none;
position: fixed;
z-index: 9999;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.95);
overflow: auto; /* 🔥 permet le scroll */
}

.lightbox:target {
display: block;
}

.lightbox-close {
position: absolute;
top: 20px;
right: 35px;
color: #fff;
font-size: 40px;
text-decoration: none;
}
/* ================= COOKIE POLICY PAGE ================= */

.cookie-policy-page{
  padding:60px 20px;
  background:#f8fafc;
}

.cookie-policy-box{
  max-width:900px;
  margin:0 auto;
  background:white;
  padding:40px;
  border-radius:8px;
  border:1px solid #e5e5e5;
  box-shadow:0 6px 20px rgba(0,0,0,0.08);
}

.cookie-policy-box h1{
  font-size:32px;
  margin-bottom:10px;
  color:#003366;
}

.cookie-policy-box h2{
  margin-top:30px;
  font-size:22px;
}

.cookie-policy-box p{
  font-size:15px;
  line-height:1.7;
  color:#374151;
}

.cookie-policy-box ul{
  padding-left:20px;
}

.cookie-policy-box li{
  margin-bottom:8px;
}

/* lien retour */
.cookie-back{
  display:inline-block;
  margin-top:25px;
  font-weight:600;
  color:#359935;
  text-decoration:none;
}

.cookie-back:hover{
  text-decoration:underline;
}

/* MOBILE */
@media (max-width:768px){

  .cookie-policy-box{
    padding:25px;
  }

  .cookie-policy-box h1{
    font-size:26px;
  }

}
