/* Services Page Specific Styles */

/* Hero Section */
.services-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    color: #2C5F41;
    margin-bottom: 20px;
    font-weight: 700;
}

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

/* Services Overview */
.services-overview {
    padding: 80px 0;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro h2 {
    color: #2C5F41;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.services-intro p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

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

.service-detailed {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

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

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

.service-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    color: #2C5F41;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

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

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    color: #666;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4F9A94;
    font-weight: bold;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C5F41;
    background: rgba(79, 154, 148, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: auto;
}

/* Packages Section */
.packages-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.packages-section h2 {
    text-align: center;
    color: #2C5F41;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.packages-intro {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.package-card.featured {
    transform: scale(1.05);
    border: 3px solid #4F9A94;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #2C5F41, #4F9A94);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-header {
    background: linear-gradient(135deg, #2C5F41 0%, #4F9A94 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.package-header h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
}

.package-content {
    padding: 30px;
}

.package-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.package-content li {
    color: #666;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.package-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4F9A94;
    font-weight: bold;
}

.package-btn {
    display: block;
    width: 100%;
    background: linear-gradient(45deg, #2C5F41, #4F9A94);
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 95, 65, 0.3);
}

/* Process Section */
.process-section {
    padding: 80px 0;
}

.process-section h2 {
    text-align: center;
    color: #2C5F41;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #4F9A94;
}

.step-number {
    background: linear-gradient(45deg, #2C5F41, #4F9A94);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #2C5F41;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step-content p {
    color: #666;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    color: #2C5F41;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #2C5F41;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2C5F41 0%, #4F9A94 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .cta-button {
    background: white;
    color: #2C5F41;
}

.cta-buttons .cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.cta-buttons .secondary-button {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .secondary-button:hover {
    background: white;
    color: #2C5F41;
}

/* Active Navigation Link */
.nav-menu a.active {
    color: #2C5F41;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-detailed {
        grid-template-columns: 1fr;
    }
    
    .service-detailed:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .service-detailed:nth-child(even) .service-image,
    .service-detailed:nth-child(even) .service-content {
        order: initial;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 100px 0 60px;
    }
    
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-content {
        padding: 30px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .cta-button,
    .cta-buttons .secondary-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .services-intro h2,
    .packages-section h2,
    .process-section h2,
    .faq-section h2,
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .package-header {
        padding: 20px;
    }
    
    .package-content {
        padding: 20px;
    }
}