/* ===================================
   SERVICES PAGE - MATCHING INDEX STYLE
   =================================== */

/* Navigation styles inline in HTML */
.main-navigation {
    background: #1a2f45;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.1em;
    text-decoration: none;
}
.nav-menu { display: flex; }
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}
.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s;
}
.nav-link:hover { color: #00a7b5; }
.btn-get-started {
    padding: 0.625rem 1.5rem;
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-get-started:hover {
    background: #00a7b5;
    border-color: #00a7b5;
}

/* Hero Section - Clean */
.service-hero-clean {
    background: linear-gradient(135deg, #1a2f45 0%, #0f1e2e 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    color: white;
}

.hero-content-clean {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge-clean {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 167, 181, 0.15);
    color: #00a7b5;
    border: 1px solid rgba(0, 167, 181, 0.3);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.hero-title-clean {
    font-size: 2.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-desc-clean {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

/* Sticky Category Navigation - FIXED TO TOP */
.category-nav-fixed {
    background: white;
    border-bottom: 2px solid #e2e8f0;
    position: sticky;
    top: 80px;
    z-index: 900;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.category-list-fixed {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    padding: 1rem 0;
    margin: 0;
    flex-wrap: wrap;
}

.category-link-fixed {
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    transition: all 0.2s;
    white-space: nowrap;
}

.category-link-fixed:hover,
.category-link-fixed.active {
    color: white;
    background: #00a7b5;
}

/* Service Sections */
.service-section-clean {
    padding: 5rem 0;
}

.service-section-clean.alt-bg {
    background: #f7fafc;
}

.section-intro-clean {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: #e0f2fe;
    color: #0066cc;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-title-clean {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 1rem;
}

.section-subtitle-clean {
    font-size: 1.125rem;
    color: #64748b;
    margin: 0;
}

/* Service Grid - 3 Columns like Homepage */
.service-grid-3-clean {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card-clean {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.service-card-clean:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.service-icon-clean {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.service-card-clean:hover .service-icon-clean {
    transform: scale(1.05);
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
}

.service-card-clean h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card-clean p {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.card-tag-clean {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #00a7b5;
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a2332 0%, #2d4a62 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-primary-inverse {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #1a2332;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-inverse:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    background: #1a2332;
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #00a7b5;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title-clean {
        font-size: 2rem;
    }
    
    .service-grid-3-clean {
        grid-template-columns: 1fr;
    }
    
    .category-list-fixed {
        gap: 0.5rem;
    }
    
    .category-link-fixed {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
    }
}
