/* Services Hero Section */
.services-hero {
   background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
url('../images/window1.jpg') center/cover no-repeat;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.services-hero h1{
	color: white;
}

/* Main Services Section */
.main-services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    gap: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: #4CAF50;
    min-width: 50px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.service-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.service-features li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    color: #444;
}

.service-features i {
    position: absolute;
    left: 0;
    color: #4CAF50;
}

/* Guarantees Section */
.service-guarantees {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.guarantee-card {
    background: white;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.guarantee-icon {
    font-size: 2rem;
    color: #4CAF50;
    margin-bottom: 15px;
}

.guarantee-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.guarantee-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Areas Section */
.service-areas {
    padding: 80px 0;
    background: white;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.area-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: transform 0.3s;
}

.area-card:hover {
    transform: translateY(-5px);
    background: #f0f9f0;
}

.area-card i {
    font-size: 2rem;
    color: #4CAF50;
    margin-bottom: 10px;
    display: block;
}

.area-card span {
    font-weight: 500;
    color: #333;
}

/* Order Section */
.service-order {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.order-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.order-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.order-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.order-steps li {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
    counter-increment: step-counter;
}

.order-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.order-steps strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.order-steps p {
    color: #555;
    line-height: 1.5;
}

.order-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.order-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .order-wrapper {
        grid-template-columns: 1fr;
    }
    
    .order-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .areas-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .order-cta {
        flex-direction: column;
    }
    
    .order-cta .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .guarantees-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }
}