/* Maintenance Hero Section */
.maintenance-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;
}

.maintenance-hero h1 {
	color: white;
font-size: 2.5rem;
margin-bottom: 20px;
}

.maintenance-hero .hero-subtitle {
font-size: 1.2rem;
max-width: 700px;
margin: 0 auto 30px;
}

.maintenance-hero .hero-cta {
display: flex;
gap: 20px;
justify-content: center;
margin-top: 40px;
}

/* Importance Section */
.maintenance-importance {
padding: 80px 0;
background-color: #f8f9fa;
}

.importance-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 30px;
margin-top: 50px;
}

.importance-card {
background: white;
padding: 30px;
border-radius: 10px;
text-align: center;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
transition: transform 0.3s;
}

.importance-card:hover {
transform: translateY(-10px);
}

.icon-box {
width: 80px;
height: 80px;
background: #4CAF50;
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
margin: 0 auto 20px;
}

.importance-card h3 {
font-size: 1.2rem;
margin-bottom: 15px;
color: #333;
}

.importance-card p {
color: #666;
line-height: 1.6;
}

/* Services Section */
.maintenance-services {
padding: 80px 0;
background-color: white;
}

.services-tabs {
margin-top: 50px;
}

.tab-buttons {
display: flex;
justify-content: center;
gap: 15px;
margin-bottom: 30px;
}

.tab-btn {
padding: 12px 25px;
background: #f8f9fa;
border: none;
border-radius: 5px;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s;
}

.tab-btn:hover {
background: #e9ecef;
}

.tab-btn.active {
background: #4CAF50;
color: white;
}

.tab-content {
display: none;
}

.tab-content.active {
display: block;
}

.service-details {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
}

.service-image {
border-radius: 10px;
overflow: hidden;
height: 350px;
}

.service-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.service-info h3 {
font-size: 1.5rem;
margin-bottom: 20px;
color: #333;
}

.service-info p {
color: #666;
line-height: 1.6;
margin-bottom: 20px;
}

.service-info ul {
list-style: none;
padding: 0;
margin: 0 0 25px;
color: #666;
line-height: 1.8;
}

.service-info li {
position: relative;
padding-left: 25px;
margin-bottom: 10px;
}

.service-info li::before {
content: '\f00c';
font-family: 'Font Awesome 5 Free';
font-weight: 900;
position: absolute;
left: 0;
color: #4CAF50;
}

.service-meta {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 25px;
}

.price {
font-size: 1.3rem;
font-weight: bold;
color: #333;
}

.duration {
color: #666;
display: flex;
align-items: center;
gap: 5px;
}

/* Schedule Section */
.maintenance-schedule {
padding: 80px 0;
background-color: #f8f9fa;
}

.schedule-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
margin-top: 50px;
align-items: center;
}

.schedule-image img {
width: 100%;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.schedule-item {
margin-bottom: 30px;
}

.schedule-item h3 {
font-size: 1.2rem;
margin-bottom: 15px;
color: #333;
display: flex;
align-items: center;
gap: 10px;
}

.schedule-item h3 i {
color: #4CAF50;
}

.schedule-item ul {
list-style: none;
padding: 0;
margin: 0;
color: #666;
line-height: 1.8;
}

.schedule-item li {
position: relative;
padding-left: 25px;
margin-bottom: 8px;
}

.schedule-item li::before {
content: '';
position: absolute;
left: 0;
top: 10px;
width: 8px;
height: 8px;
background: #4CAF50;
border-radius: 50%;
}

/* Benefits Section */
.maintenance-benefits {
padding: 80px 0;
background-color: white;
}

.benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 50px;
}

.benefit-card {
background: #f8f9fa;
padding: 30px;
border-radius: 10px;
text-align: center;
transition: transform 0.3s;
}

.benefit-card:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-icon {
font-size: 2rem;
color: #4CAF50;
margin-bottom: 20px;
}

.benefit-card h3 {
font-size: 1.2rem;
margin-bottom: 15px;
color: #333;
}

.benefit-card p {
color: #666;
line-height: 1.6;
}

/* CTA Section */
.maintenance-cta {
padding: 80px 0;
background-color: #f8f9fa;
}

.cta-card {
background: white;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
display: grid;
grid-template-columns: 1fr 1fr;
}

.cta-content {
padding: 50px;
}

.cta-content h2 {
font-size: 2rem;
margin-bottom: 20px;
color: #333;
}

.cta-content p {
color: #666;
line-height: 1.6;
margin-bottom: 30px;
}

.cta-form {
display: grid;
gap: 20px;
}

.form-group input,
.form-group select {
width: 100%;
padding: 15px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 1rem;
}

.cta-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

/* Responsive Styles */
@media (max-width: 992px) {
.service-details {
grid-template-columns: 1fr;
}

.service-image {
    height: 250px;
}

.schedule-wrapper {
    grid-template-columns: 1fr;
}

.schedule-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
}

.cta-card {
    grid-template-columns: 1fr;
}

.cta-image {
    height: 300px;
}

}

@media (max-width: 768px) {
.maintenance-hero .hero-cta {
flex-direction: column;
}

.tab-buttons {
    flex-direction: column;
}

.tab-btn {
    width: 100%;
}

}

@media (max-width: 576px) {
.maintenance-hero h1 {
font-size: 2rem;
}

.importance-cards {
    grid-template-columns: 1fr;
}

.cta-content {
    padding: 30px;
}