/* =========================
   SERVICES PAGE STYLES
   ========================= */

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.services-hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.services-hero-content h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.services-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.services-hero-image {
    display: flex;
    justify-content: center;
}

.services-hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
}

/* Service Categories Section */
.service-categories-section {
    padding: 5rem 2rem;
    background-color: white;
}

.service-categories-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-categories-header h2 {
    color: #222;
}

.service-categories-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-category {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.service-category:hover {
    background-color: #e8eef7;
    border-top-color: #007bff;
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 123, 255, 0.15);
}

.service-category i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.service-category h3 {
    color: #222;
    margin-bottom: 0.5rem;
}

.service-category p {
    color: #666;
    font-size: 0.95rem;
}

/* Detailed Services Section */
.detailed-services-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.detailed-service {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.detailed-service-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
}

.detailed-service-text h2 {
    color: #222;
    margin-bottom: 1.5rem;
}

.detailed-service-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.detailed-service-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.detailed-service-text ul li {
    color: #555;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.detailed-service-text ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 2rem;
    background-color: white;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-header h2 {
    color: #222;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: #666;
    font-size: 1.1rem;
}

.pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid transparent;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: #007bff;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 123, 255, 0.15);
}

.pricing-card.featured {
    border-color: #007bff;
    background-color: white;
    box-shadow: 0 4px 16px rgba(0, 123, 255, 0.1);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #007bff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    color: #222;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    color: #007bff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price span {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: #555;
    border-bottom: 1px solid #eee;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #28a745;
    margin-right: 0.8rem;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .detailed-service {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 3rem 1rem;
    }

    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-categories-section,
    .detailed-services-section,
    .pricing-section {
        padding: 3rem 1rem;
    }

    .service-categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .detailed-service {
        padding: 1.5rem;
    }

    .service-category i {
        font-size: 2rem;
    }

    .price {
        font-size: 2rem;
    }

    .pricing-features {
        text-align: center;
    }
}
