/* Additional Styles for Service Pages */

/* Services Page Specific Styles */
.services-hero {
    padding: 140px 0 80px 0;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #1E293B 100%);
    color: white;
    text-align: center;
}

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

.services-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.services-hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.services-main {
    padding: var(--space-xl) 0;
    background: var(--color-bg-light);
}

.service-coming-soon {
    opacity: 0.6;
    cursor: default;
    pointer-events: none;
    position: relative;
}

.coming-soon-badge {
    background: var(--color-text-light);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.all-trades-section {
    padding: var(--space-xl) 0;
    background: var(--color-primary);
    color: white;
    text-align: center;
}

.all-trades-content {
    max-width: 800px;
    margin: 0 auto;
}

.all-trades-content .section-title {
    color: white;
}

.all-trades-content .large-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.all-trades-content .description-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.all-trades-content .btn {
    background: white;
    color: var(--color-primary);
}

.all-trades-content .btn:hover {
    background: var(--color-bg-light);
    transform: translateY(-2px);
}

.why-services {
    padding: var(--space-xl) 0;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.why-card p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.services-cta {
    padding: var(--space-xl) 0;
    background: var(--color-bg-light);
    text-align: center;
}

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

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Active nav link */
.nav-links a.active {
    color: var(--color-primary);
    font-weight: 600;
}

/* Services Section on Homepage */
.services-section {
    padding: var(--space-xl) 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-link-card {
    background: var(--color-bg-light);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--color-text);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-link-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.service-link-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-link-card p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.learn-more {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link-card:hover .learn-more {
    gap: 1rem;
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 500;
}

/* Search Terms Section */
.search-terms {
    padding: var(--space-xl) 0;
    background: var(--color-bg-light);
}

.search-terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.search-term {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    color: var(--color-text);
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--color-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-term:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.search-term::before {
    content: "🔍 ";
    margin-right: 0.5rem;
}

/* Responsive adjustments for service pages */
@media (max-width: 768px) {
    .stats-row {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .search-terms-grid {
        grid-template-columns: 1fr;
    }
}