/* Services Page Specific Styles */

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, rgba(26, 52, 9, 0.9), rgba(45, 80, 22, 0.8)), 
                url('public/pictures/1000265491.jpg') center/cover;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(26, 52, 9, 0.3), rgba(45, 80, 22, 0.3));
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

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

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.services-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.feature-item i {
    color: #90EE90;
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Services Navigation */
.services-nav {
    background: white;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 70px;
    z-index: 100;
}

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

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #f8fffe, #f0f8e8);
    color: #2d5016;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-btn:hover,
.nav-btn.active {
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
}

.nav-btn i {
    font-size: 1.2rem;
}

/* Service Section */
.service-section {
    padding: 100px 0;
}

.service-section.alt-bg {
    background: linear-gradient(135deg, #f0f8e8, #e8f5e8);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: 3px solid rgba(45, 80, 22, 0.1);
}

.service-icon-large {
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    flex-shrink: 0;
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.3);
}

.service-info h2 {
    color: #1a3409;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-info p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.7;
}

/* Service Types */
.service-types {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.service-type-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 80, 22, 0.05), transparent);
    transition: left 0.6s;
}

.service-type-card:hover::before {
    left: 100%;
}

.service-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(45, 80, 22, 0.2);
}

.service-type-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.service-type-card:nth-child(even) .type-image {
    order: 2;
}

.service-type-card:nth-child(even) .type-content {
    order: 1;
}

.type-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
}

.type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-type-card:hover .type-image img {
    transform: scale(1.05);
}

.type-image .image-placeholder {
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.type-image .image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.type-content h3 {
    color: #1a3409;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.type-content p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.95rem;
}

.feature-list i {
    color: #4a7c59;
    font-size: 0.9rem;
    width: 16px;
}

/* Additional Services */
.additional-services {
    background: linear-gradient(135deg, #f8fffe, #f0f8e8);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.additional-services h3 {
    color: #1a3409;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.8rem;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.additional-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.additional-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.15);
}

.additional-item i {
    color: #4a7c59;
    font-size: 1.3rem;
    width: 24px;
}

.additional-item span {
    font-weight: 600;
    color: #2d5016;
    font-size: 0.95rem;
}

/* Commercial Services */
.commercial-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.commercial-item {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.commercial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 80, 22, 0.05), transparent);
    transition: left 0.6s;
}

.commercial-item:hover::before {
    left: 100%;
}

.commercial-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(45, 80, 22, 0.2);
}

.commercial-image {
    position: relative;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.commercial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.commercial-item:hover .commercial-image img {
    transform: scale(1.05);
}

.commercial-image .image-placeholder {
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.commercial-image .image-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.commercial-item h3 {
    color: #1a3409;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.commercial-item p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.commercial-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.commercial-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.4rem 0;
    color: #555;
    font-size: 0.9rem;
}

.commercial-features i {
    color: #4a7c59;
    font-size: 0.8rem;
    width: 14px;
}

/* Commercial Benefits */
.commercial-benefits {
    background: linear-gradient(135deg, #f8fffe, #f0f8e8);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.commercial-benefits h3 {
    color: #1a3409;
    margin-bottom: 2.5rem;
    text-align: center;
    font-size: 1.8rem;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.15);
}

.benefit-item i {
    color: #4a7c59;
    font-size: 1.8rem;
    margin-top: 0.3rem;
}

.benefit-item h4 {
    color: #1a3409;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.benefit-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: white;
}

.process-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.process-section h2 {
    color: #1a3409;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.process-section .section-header p {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.process-step {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8fffe, #f0f8e8);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 80, 22, 0.05), transparent);
    transition: left 0.6s;
}

.process-step:hover::before {
    left: 100%;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(45, 80, 22, 0.15);
}

.step-number {
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
}

.step-content h3 {
    color: #1a3409;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design for Services Page */
@media (max-width: 1024px) {
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .service-type-card,
    .service-type-card:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-type-card:nth-child(even) .type-image,
    .service-type-card:nth-child(even) .type-content {
        order: initial;
    }
    
    .commercial-services {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .services-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .nav-buttons {
        gap: 0.5rem;
    }
    
    .nav-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .service-info h2 {
        font-size: 2rem;
    }
    
    .service-info p {
        font-size: 1rem;
    }
    
    .service-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .service-type-card {
        padding: 2rem;
    }
    
    .type-image {
        height: 200px;
    }
    
    .commercial-item {
        padding: 2rem;
    }
    
    .commercial-image {
        height: 150px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step {
        padding: 2rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .additional-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .services-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .nav-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .service-type-card,
    .commercial-item,
    .process-step {
        padding: 1.5rem;
    }
    
    .additional-services,
    .commercial-benefits {
        padding: 2rem;
    }
    
    .type-content h3,
    .commercial-item h3 {
        font-size: 1.3rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
}