/* service-page.css */

:root {
    --primary-color: #ff9a3c;
    --secondary-color: #ffd6a5;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-radius: 10px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 6px 12px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.bg-light {
    background-color: var(--light-bg) !important;
}

.margin-top {
    margin-top: 10%;
}

/* Header Section */
.service-hero-icon {
    font-size: 4em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-main-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.service-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0;
}

/* Section Titles */
.section-title {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title:not(.text-center)::after {
    left: 0;
    transform: none;
}

/* Service Overview */
.service-overview {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 3rem;
    margin-bottom: 3rem;
}

.service-description {
    font-size: 1.1rem;
    text-align: justify;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* Image Container */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.image-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.overview-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition);
}

.overview-image:hover {
    transform: scale(1.05);
}

/* Service Highlights */
.service-highlights {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: fit-content;
}

/* Additional Info Section */
.additional-info {
    margin-bottom: 3rem;
}

.info-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 3rem;
    border-left: 5px solid var(--primary-color);
}

.highlights-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.features-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
    text-align: justify;
}
/* Benefits Section */
.benefits-section {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 3rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-color);
    font-size: 1rem;
}

/* Process Section */
.process-section {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 3rem;
    margin-bottom: 3rem;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: var(--box-shadow);
}

.process-step h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-color);
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    padding: 4rem 2rem;
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    margin-top: 2rem;
}

/* Buttons */
.btn-contact {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-contact:hover {
    background-color: #e68a35;
    border-color: #e68a35;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-main-title {
        font-size: 2rem;
    }
    
    .service-hero-icon {
        font-size: 3em;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-overview,
    .benefits-section,
    .process-section {
        padding: 2rem 1.5rem;
    }
    
    .overview-image {
        height: 250px;
        margin-top: 2rem;
    }
    
    .cta-section {
        padding: 3rem 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons .btn {
        display: block;
        margin-bottom: 1rem;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .margin-top {
        margin-top: 5%;
    }
    
    .service-main-title {
        font-size: 1.8rem;
    }
    
    .service-hero-icon {
        font-size: 2.5em;
    }
}

/* Animation Classes */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
