/* --- Services Page Styles --- */

.services-page {
    background-color: #fff;
}

/* Hero Section */
.services-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1f4e 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: #fff;
}

.services-hero .subtitle {
    font-size: 22px;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 30px;
}

.services-hero .intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.8;
}

/* Services Grid Section */
.services-grid-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 12px;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 10px;
}

.service-card > p {
    color: #666;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 15px;
}

.service-card ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Why Us Section */
.why-us-section {
    padding: 80px 0;
    text-align: center;
}

.why-us-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-us-card {
    padding: 30px;
    border-left: 4px solid var(--primary-color);
    background: var(--bg-light);
    text-align: left;
}

.why-us-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--primary-color);
}

.why-us-card p {
    margin: 0;
    color: #555;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
}

.cta-section h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px;
    color: #fff;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.8;
}

.cta-section .btn-primary {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
}

.cta-section .btn-primary:hover {
    background: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 36px;
    }
    .services-hero .subtitle {
        font-size: 18px;
    }
    .services-hero .intro-text {
        font-size: 16px;
    }
    .why-us-section h2 {
        font-size: 28px;
    }
}