/* /home/headajyj/public_html/headsntail/webpages/pages/services/css/services.css */

/* Reset */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

/* Base */

body{
font-family:Arial, Helvetica, sans-serif;
background:#0f172a;
color:#ffffff;
line-height:1.6;
}

/* Container */

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* Hero */

.services-hero{
padding:110px 0 70px 0;
text-align:center;
background:linear-gradient(180deg,#0f172a 0%,#020617 100%);
border-bottom:1px solid #1e293b;
}

.services-hero__content{
max-width:900px;
margin:0 auto;
}

.eyebrow,
.section-tag{
display:inline-block;
font-size:12px;
letter-spacing:1px;
text-transform:uppercase;
color:#38bdf8;
margin-bottom:12px;
font-weight:700;
}

.services-hero h1{
font-size:46px;
margin-bottom:18px;
font-weight:700;
line-height:1.15;
}

.services-hero .hero-sub{
max-width:760px;
margin:auto;
color:#cbd5f5;
font-size:18px;
}

/* Hero buttons */

.services-hero__actions{
margin-top:30px;
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.btn{
display:inline-block;
padding:12px 22px;
border-radius:10px;
text-decoration:none;
font-size:14px;
font-weight:600;
transition:all .2s ease;
}

.btn-primary{
background:#38bdf8;
color:#020617;
}

.btn-primary:hover{
background:#0ea5e9;
}

.btn-secondary{
border:1px solid #38bdf8;
color:#38bdf8;
}

.btn-secondary:hover{
background:#38bdf8;
color:#020617;
}

/* Hero stats */

.services-hero__stats{
margin-top:40px;
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.stat-card{
background:#020617;
border:1px solid #1e293b;
padding:18px 20px;
border-radius:10px;
min-width:180px;
box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.stat-card strong{
display:block;
font-size:16px;
color:#38bdf8;
margin-bottom:4px;
}

.stat-card span{
font-size:13px;
color:#94a3b8;
}

/* Services overview */

.services-overview{
padding:90px 0;
}

.section-heading{
text-align:center;
max-width:760px;
margin:auto;
margin-bottom:60px;
}

.section-heading h2{
font-size:32px;
margin-bottom:15px;
line-height:1.2;
}

.section-heading p{
color:#cbd5f5;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

/* Service card */

.service-card{
background:#020617;
padding:28px;
border-radius:14px;
border:1px solid #1e293b;
transition:all .25s ease;
box-shadow:0 10px 30px rgba(0,0,0,.16);
}

.service-card:hover{
transform:translateY(-6px);
border-color:#38bdf8;
box-shadow:0 18px 40px rgba(0,0,0,.22);
}

.service-card__icon{
font-size:13px;
color:#38bdf8;
margin-bottom:10px;
font-weight:700;
letter-spacing:1px;
}

.service-card h3{
font-size:20px;
margin-bottom:10px;
}

.service-card p{
color:#cbd5f5;
font-size:14px;
margin-bottom:12px;
}

.service-card ul{
padding-left:18px;
}

.service-card li{
font-size:13px;
color:#94a3b8;
margin-bottom:6px;
}

/* Focus section */

.services-focus{
padding:90px 0;
border-top:1px solid #1e293b;
border-bottom:1px solid #1e293b;
background:#020617;
}

.focus-layout{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.focus-copy h2{
font-size:30px;
margin-bottom:12px;
line-height:1.2;
}

.focus-copy p{
color:#cbd5f5;
}

.focus-points{
display:grid;
gap:20px;
}

.focus-point{
background:#0f172a;
border:1px solid #1e293b;
padding:20px;
border-radius:12px;
box-shadow:0 10px 26px rgba(0,0,0,.12);
}

.focus-point h3{
font-size:17px;
color:#38bdf8;
margin-bottom:6px;
}

.focus-point p{
font-size:14px;
color:#cbd5f5;
}

/* Process */

.services-process{
padding:90px 0;
}

.process-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
margin-top:40px;
}

.process-step{
background:#020617;
border:1px solid #1e293b;
padding:25px;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,.16);
}

.process-step__number{
font-size:13px;
color:#38bdf8;
font-weight:700;
display:block;
margin-bottom:8px;
letter-spacing:1px;
}

.process-step h3{
font-size:18px;
margin-bottom:8px;
}

.process-step p{
font-size:14px;
color:#cbd5f5;
}

/* CTA */

.services-cta{
padding:90px 0;
background:#020617;
border-top:1px solid #1e293b;
}

.cta-panel{
display:flex;
justify-content:space-between;
align-items:center;
gap:30px;
flex-wrap:wrap;
background:#0f172a;
border:1px solid #1e293b;
border-radius:16px;
padding:30px;
box-shadow:0 12px 32px rgba(0,0,0,.18);
}

.cta-copy{
max-width:550px;
}

.cta-copy h2{
font-size:30px;
margin-bottom:10px;
line-height:1.2;
}

.cta-copy p{
color:#cbd5f5;
}

.cta-actions{
display:flex;
gap:15px;
flex-wrap:wrap;
}

/* Responsive */

@media (max-width:900px){

.focus-layout{
grid-template-columns:1fr;
}

.cta-panel{
flex-direction:column;
align-items:flex-start;
}

.services-hero h1{
font-size:36px;
}

.section-heading h2{
font-size:28px;
}

.cta-copy h2{
font-size:28px;
}

}

@media (max-width:768px){

.services-hero{
padding:90px 0 60px 0;
}

.services-overview,
.services-focus,
.services-process,
.services-cta{
padding:70px 0;
}

.services-hero .hero-sub{
font-size:16px;
}

}

@media (max-width:560px){

.container{
width:92%;
}

.services-hero h1{
font-size:30px;
}

.section-heading h2,
.focus-copy h2,
.cta-copy h2{
font-size:24px;
}

.service-card,
.process-step,
.cta-panel{
padding:22px;
}

.btn{
width:100%;
text-align:center;
}

.cta-actions{
width:100%;
}

}