/* Services Page Styles */
.services-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/services-hero.jpg') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
}

.services-hero p {
    font-size: 1.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.services-main {
    padding: 4rem 0;
}

.service-category {
    margin-bottom: 4rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background-color: #FF6B00;
    color: white;
}

.service-icon {
    margin-right: 1.5rem;
    font-size: 2rem;
}

.service-header h2 {
    margin: 0;
    font-size: 1.8rem;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.service-image {
    border-radius: 8px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.service-category:hover .service-image img {
    transform: scale(1.05);
}

.service-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-features {
    margin: 1.5rem 0;
    padding: 0;
    list-style: none;
}

.service-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.service-features i {
    color: #FF6B00;
    margin-right: 0.8rem;
    margin-top: 0.2rem;
}

.service-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.service-packages {
    margin-top: 2rem;
}

.service-packages h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.package-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.package-card h5 {
    font-size: 1.2rem;
    margin-top: 0;
    color: #FF6B00;
}

.package-card ul {
    margin: 1rem 0;
    padding-left: 1.2rem;
    list-style-type: disc;
}

.package-card ul li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.services-cta {
    background: #FF6B00;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
}

.services-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .services-hero h1 {
        font-size: 2.2rem;
    }
    
    .services-hero p {
        font-size: 1.2rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
}