/* Services Page Specific Styles */

.nav-link.active {
    color: var(--accent-yellow);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-yellow);
}

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    padding: 120px 0 4rem;
    text-align: center;
    position: relative;
}

.services-hero .container {
    position: relative;
    z-index: 2;
}

.services-hero h1 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.services-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--primary-black);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Portfolio Section */
.services-portfolio {
    padding: 4rem 0;
    background: #FFFFFF;
    position: relative;
}

.services-portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/honeycomb-pattern-new.png') repeat;
    background-size: 300px 300px;
    opacity: 0.06;
    z-index: 1;
}

.services-portfolio .container {
    position: relative;
    z-index: 2;
}

.service-section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid var(--border-gray);
}

.service-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.service-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px var(--shadow-light);
    transition: transform 0.3s ease;
}

.service-content:hover {
    transform: translateY(-5px);
}

.service-content h2 {
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.service-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--primary-black);
}

.service-details ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.service-details li {
    background: #FFFFFF;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    padding-left: 2.5rem;
    transition: all 0.3s ease;
}

.service-details li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-details li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-yellow);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Service Features Section */
.service-features {
    padding: 4rem 0;
    background: var(--bg-light);
}

.service-features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-light);
    transition: transform 0.3s ease;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-item p {
    color: var(--primary-black);
    line-height: 1.6;
}

/* Services CTA Section */
.services-cta {
    padding: 4rem 0;
    background: #FFFFFF;
}

.services-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px var(--shadow-light);
}

.services-cta h2 {
    margin-bottom: 1.5rem;
}

.services-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button.primary {
    background: var(--accent-yellow);
    color: var(--primary-black);
}

.cta-button.primary:hover {
    background: #E6C200;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.cta-button.secondary {
    background: var(--primary-black);
    color: #FFFFFF;
}

.cta-button.secondary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .services-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-content {
        padding: 2rem;
    }
    
    .service-content h2 {
        font-size: 1.8rem;
    }
    
    .service-details ul {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 100px 0 3rem;
    }
    
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .service-content,
    .services-cta .cta-content {
        padding: 1.5rem;
    }
    
    .service-content h2 {
        font-size: 1.6rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
}

