/* ========================================
   Services Archive Page Styles
   ======================================== */

.services-archive-main {
    --srv-primary: #2B6CB0;
    --srv-bg-light: #f8fafc;
    --srv-text-dark: #0f172a;
    --srv-text-muted: #475569;
    --srv-border: #e2e8f0;
    --srv-radius: 16px;
    background-color: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

/* 1. Services Hero */
.services-hero {
    padding: 60px 0;
    background-color: #ffffff;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 24px;
}

.breadcrumbs a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: var(--srv-primary);
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--srv-text-dark);
    margin: 0 0 20px;
    letter-spacing: -0.025em;
}

.page-subtitle {
    font-size: 20px;
    color: var(--srv-text-muted);
    max-width: 760px;
    line-height: 1.6;
}

/* 2. Services Grid */
.services-grid-section {
    padding-bottom: 100px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px;
    background-color: #ffffff;
    border: 1px solid var(--srv-border);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.service-icon-box {
    width: 64px;
    height: 64px;
    background-color: rgba(43, 108, 176, 0.1);
    color: var(--srv-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
    background-color: var(--srv-primary);
    color: #ffffff;
}

.service-icon-box i {
    font-size: 36px;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--srv-text-dark);
    margin: 0 0 12px;
}

.service-excerpt p {
    font-size: 16px;
    color: var(--srv-text-muted);
    line-height: 1.6;
    margin: 0;
}

.learn-more-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--srv-primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    transition: gap 0.3s ease;
}

.learn-more-link:hover {
    gap: 12px;
}

.learn-more-link .arrow-icon {
    font-size: 18px;
}

/* 3. Why Choose Us */
.why-choose-section {
    padding: 100px 0;
    background-color: var(--srv-bg-light);
}

.section-heading {
    font-size: 32px;
    font-weight: 800;
    color: var(--srv-text-dark);
    margin-bottom: 64px;
    text-align: center;
}

@media (min-width: 768px) {
    .section-heading {
        text-align: left;
    }
}

.perks-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .perks-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 60px;
    }
}

.perk-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.perk-icon {
    width: 48px;
    height: 48px;
    background-color: var(--srv-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(43, 108, 176, 0.3);
}

.perk-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--srv-text-dark);
    margin: 0;
}

.perk-item p {
    font-size: 16px;
    color: var(--srv-text-muted);
    line-height: 1.6;
}

/* 4. CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.cta-card {
    background-color: var(--srv-primary);
    border-radius: 32px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(43, 108, 176, 0.3);
}

@media (min-width: 1024px) {
    .cta-card {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 80px;
    }

    .cta-content {
        max-width: 600px;
    }
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

@media (min-width: 640px) {
    .cta-actions {
        flex-direction: row;
        width: auto;
    }
}

.btn-primary-white,
.btn-outline-white {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary-white {
    background-color: #ffffff;
    color: var(--srv-primary);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary-white:hover {
    transform: scale(1.05);
    background-color: #f8fafc;
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.btn-outline-white:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

.no-results {
    text-align: center;
    padding: 60px 0;
    color: var(--srv-text-muted);
}

a.btn-outline-white {
    color: white;
}