/* Services Page Specific Styles */
/* Color Palette: #4E1F00 (Dark Brown), #74512D (Medium Brown), #FEBA17 (Gold), #F8F4E1 (Cream) */

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, #4E1F00 0%, #74512D 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(254, 186, 23, 0.1) 50%, transparent 70%);
    animation: heroShine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.services-hero-content {
    position: relative;
    z-index: 2;
}

.services-hero h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services-hero .highlight {
    color: #FEBA17;
}

.services-hero p {
    color: #F8F4E1;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.services-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.services-stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(254, 186, 23, 0.2);
}

.services-stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FEBA17;
    display: block;
    margin-bottom: 0.5rem;
}

.services-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Services Overview */
.services-overview {
    padding: 6rem 0;
    background: white;
}

.services-overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.services-overview-text h2 {
    color: #4E1F00;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-overview-text p {
    color: #74512D;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.services-key-points {
    list-style: none;
    padding: 0;
}

.services-key-points li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #74512D;
    font-weight: 500;
}

.services-key-points li i {
    background: #FEBA17;
    color: #4E1F00;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.services-overview-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-image-placeholder {
    background: linear-gradient(135deg, #74512D, #4E1F00);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    width: 100%;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.services-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #FEBA17;
}

/* Main Services Grid */
.services-main {
    padding: 6rem 0;
    background: #F8F4E1;
}

.services-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.service-main-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(78, 31, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 5px solid #FEBA17;
}

.service-main-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(78, 31, 0, 0.15);
}

.service-main-header {
    background: linear-gradient(135deg, #FEBA17, #74512D);
    color: white;
    padding: 2rem;
    text-align: center;
}

.service-main-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.service-main-card h3 {
    color: white;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.service-main-body {
    padding: 2rem;
}

.service-main-description {
    color: #74512D;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #74512D;
    font-size: 0.95rem;
}

.service-features-list li i {
    color: #FEBA17;
    font-size: 0.9rem;
    width: 16px;
    flex-shrink: 0;
}

.service-main-footer {
    padding: 0 2rem 2rem;
    border-top: 1px solid #F8F4E1;
    margin-top: 1rem;
    padding-top: 1.5rem;
}

.service-cta-btn {
    background: #FEBA17;
    color: #4E1F00;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.service-cta-btn:hover {
    background: #74512D;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(254, 186, 23, 0.3);
}

/* Process Section */
.services-process {
    padding: 6rem 0;
    background: white;
}

.services-process h2 {
    text-align: center;
    color: #4E1F00;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: #F8F4E1;
    border-radius: 15px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: #FEBA17;
    transform: translateY(-5px);
}

.process-step-number {
    background: #FEBA17;
    color: #4E1F00;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(254, 186, 23, 0.3);
}

.process-step h4 {
    color: #4E1F00;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.process-step p {
    color: #74512D;
    margin: 0;
    line-height: 1.6;
}

/* CTA Section */
.services-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #4E1F00 0%, #74512D 100%);
    color: white;
    text-align: center;
}

.services-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-cta p {
    color: #F8F4E1;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.services-cta .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.services-cta .btn-primary {
    background: #FEBA17;
    color: #4E1F00;
}

.services-cta .btn-primary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 186, 23, 0.4);
}

.services-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.services-cta .btn-secondary:hover {
    background: white;
    color: #4E1F00;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-overview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.2rem;
    }
    
    .services-hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .services-stat-item {
        max-width: 250px;
    }
    
    .services-main-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .services-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-cta .btn {
        width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 1.8rem;
    }
    
    .services-overview-text h2 {
        font-size: 2rem;
    }
    
    .services-main-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-main-header,
    .service-main-body {
        padding: 1.5rem;
    }
}
