.services {
    padding: 90px 0;
    background: #f7f8fa;
}


.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}


.section-title h2 {
    font-size: 38px;
    margin-bottom: 15px;
}


.section-title p {
    color: #666;
    font-size: 18px;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}


.service-card {
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
}


.service-card:hover {
    transform:translateY(-8px);
}


.icon {
    font-size:40px;
    margin-bottom:20px;
}


.service-card h3 {
    font-size:22px;
    margin-bottom:15px;
}


.service-card p {
    color:#666;
    line-height:1.6;
    min-height:100px;
}


.service-card span {
    display:block;
    margin-top:20px;
    font-weight:700;
    color:#f57c00;
}



@media(max-width:1000px){

.services-grid{
grid-template-columns:repeat(2,1fr);
}

}


@media(max-width:600px){

.services-grid{
grid-template-columns:1fr;
}

.section-title h2{
font-size:30px;
}

}
.cta-section {
padding:80px 0;
}


.cta-box {

background:#111827;
border-radius:30px;
padding:60px;
text-align:center;
color:white;

}


.cta-box h2 {

font-size:38px;
max-width:800px;
margin:0 auto 20px;

}


.cta-box p {

font-size:20px;
color:#d1d5db;
margin-bottom:35px;

}


.cta-buttons {

display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;

}


.btn-primary {

background:#f57c00;
color:white;
padding:18px 35px;
border-radius:12px;
font-weight:700;
text-decoration:none;
transition:.3s;

}


.btn-primary:hover {

background:#ff9800;

}



.btn-phone {

border:2px solid white;
color:white;
padding:16px 35px;
border-radius:12px;
font-weight:700;
text-decoration:none;

}


@media(max-width:600px){

.cta-box {

padding:35px 20px;

}


.cta-box h2 {

font-size:28px;

}

}
.form-section {

padding:90px 0;
background:#f7f8fa;

}



.form-wrapper {

display:grid;
grid-template-columns:1fr 450px;
gap:60px;
align-items:center;

}



.form-info h2 {

font-size:40px;
margin-bottom:20px;

}


.form-info p {

font-size:18px;
color:#666;
line-height:1.6;

}



.form-info ul {

list-style:none;
padding:0;
margin-top:35px;

}



.form-info li {

font-size:18px;
margin-bottom:18px;
color:#222;

}



.form-box {

background:white;
padding:40px;
border-radius:25px;
box-shadow:0 15px 40px rgba(0,0,0,.08);

}



.form-box h3 {

font-size:28px;
margin-bottom:25px;
text-align:center;

}



.form-box input,
.form-box textarea {


width:100%;
padding:16px;
margin-bottom:15px;

border:1px solid #ddd;
border-radius:10px;

font-size:16px;

}



.form-box textarea {

height:100px;
resize:none;

}



.checkbox {

display:flex;
gap:10px;
font-size:13px;
color:#777;
margin-bottom:20px;

}



.checkbox input {

width:auto;

}



.form-box button {


width:100%;
padding:18px;

background:#f57c00;
color:white;

border:none;
border-radius:12px;

font-size:18px;
font-weight:700;

cursor:pointer;

transition:.3s;

}



.form-box button:hover {

background:#ff9800;

}



@media(max-width:900px){

.form-wrapper {

grid-template-columns:1fr;

}


.form-info h2 {

font-size:32px;

}

}
.popup,
.thanks-popup {

position:fixed;
top:0;
left:0;
width:100%;
height:100%;

display:none;

align-items:center;
justify-content:center;

z-index:9999;

}



.popup.active,
.thanks-popup.active {

display:flex;

}



.popup-overlay {

position:absolute;
width:100%;
height:100%;

background:rgba(0,0,0,.65);

}



.popup-content,
.thanks-content {


position:relative;

background:white;

width:420px;

padding:40px;

border-radius:25px;

z-index:2;

box-shadow:0 20px 50px rgba(0,0,0,.2);

}



.popup-content h3,
.thanks-content h3 {

font-size:28px;
margin-bottom:15px;
text-align:center;

}



.popup-content p {

text-align:center;
color:#666;
margin-bottom:25px;

}



.popup-content input {


width:100%;

padding:16px;

margin-bottom:15px;

border:1px solid #ddd;

border-radius:10px;

font-size:16px;

}



.popup-content button[type="submit"] {


width:100%;

padding:17px;

background:#f57c00;

border:none;

border-radius:12px;

color:white;

font-size:17px;

font-weight:700;

cursor:pointer;

}



.popup-close {


position:absolute;

right:20px;

top:15px;

border:none;

background:none;

font-size:32px;

cursor:pointer;

}



.thanks-content {

text-align:center;

}



.thanks-close {


margin-top:20px;

padding:12px 30px;

border:none;

border-radius:10px;

background:#f57c00;

color:white;

cursor:pointer;

}



@media(max-width:500px){

.popup-content,
.thanks-content{

width:90%;

padding:30px 20px;

}

}
.footer {

background:#111827;

color:white;

padding:60px 0 20px;

}



.footer-grid {

display:grid;

grid-template-columns:2fr 1fr 1fr;

gap:50px;

}



.footer h3 {

font-size:26px;

margin-bottom:20px;

}



.footer h4 {

font-size:18px;

margin-bottom:20px;

}



.footer p {

color:#cbd5e1;

line-height:1.6;

}



.footer a {

display:block;

color:#cbd5e1;

text-decoration:none;

margin-bottom:12px;

transition:.3s;

}



.footer a:hover {

color:white;

}



.footer-bottom {

border-top:1px solid rgba(255,255,255,.15);

margin-top:40px;

padding-top:20px;

text-align:center;

font-size:14px;

}



@media(max-width:800px){


.footer-grid {

grid-template-columns:1fr;

gap:30px;

}


}