/* Mechanical Maintenance Page Styles */
.maintenance-page {
    padding-bottom: 50px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../../assets/images/mechanical-maintenance-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Content */
.maintenance-content {
    padding: 80px 0;
}

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2a5298;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-bottom: 3px solid transparent;
}

.service-item:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid #e67e22;
}

.service-item i {
    font-size: 3rem;
    color: #e67e22;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #555;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li i {
    color: #e67e22;
    margin-right: 15px;
    font-size: 1.2rem;
}

.sidebar {
    margin-top: 60px;
}

.contact-card, .service-areas {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.contact-card h3, .service-areas h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-areas ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-areas li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.service-areas li:last-child {
    border-bottom: none;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #e67e22;
    color: white;
}

.btn-primary:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.btn-light {
    background: white;
    color: #e67e22;
}

.btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(230, 126, 34, 0.9), rgba(211, 84, 0, 0.9)), url('../../assets/images/mechanical-cta-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 25px;
}

.member-info h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 5px;
}

.member-info .position {
    color: #e67e22;
    font-weight: 500;
    margin-bottom: 15px;
}

.member-info .bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    gap: 15px;
}

.member-social a {
    width: 35px;
    height: 35px;
    background: #fff5e6;
    color: #e67e22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #e67e22;
    color: white;
    transform: translateY(-3px);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.contact-info p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.8rem;
    color: #e67e22;
    margin-right: 20px;
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 8px;
}

.contact-item p {
    color: #666;
    margin: 0 0 5px;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #e67e22;
    outline: none;
}

/* Responsive Designs */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sidebar {
        margin-top: 40px;
    }
    
    .service-item {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .maintenance-content {
        padding: 60px 0;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.7rem;
    }
    
    .service-item {
        padding: 20px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
} 