/* Services Page Specific Styles */

/* Page Header */
.page-header {
    background: var(--gradient);
    color: var(--white);
    padding: 8rem 0 4rem;
    margin-top: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="beauty-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23beauty-pattern)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Services Content */
.services-content {
    padding: 6rem 0;
    background: var(--cream);
}

.service-section {
    margin-bottom: 8rem;
    background: var(--white);
    border-radius: 25px;
    padding: 4rem 3rem;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-pink);
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: var(--box-shadow);
}

.service-header-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.service-header-text p {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
}

.service-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-details.reverse {
    direction: rtl;
}

.service-details.reverse > * {
    direction: ltr;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
    position: relative;
}

.service-info h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.service-info ul {
    list-style: none;
    margin-bottom: 3rem;
}

.service-info ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem 0;
    font-size: 1.1rem;
    line-height: 1.5;
}

.service-info ul li i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.service-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--cream) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--box-shadow);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient);
    border-radius: 20px;
    z-index: -1;
}

.image-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Service Process */
.service-process {
    background: var(--white);
    padding: 6rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--light-pink);
    border-radius: 20px;
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--box-shadow);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 2rem;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: var(--box-shadow);
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Active navigation link */
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* Logo link styling */
.logo a {
    text-decoration: none;
}

/* Responsive Design for Services Page */
@media (max-width: 968px) {
    .service-section {
        padding: 3rem 2rem;
        margin-bottom: 6rem;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .service-header-text h2 {
        font-size: 2.5rem;
    }
    
    .service-details {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-details.reverse {
        direction: ltr;
    }
    
    .image-placeholder {
        height: 300px;
    }
    
    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    
    .process-step {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .service-section {
        padding: 2.5rem 1.5rem;
        margin-bottom: 4rem;
    }
    
    .service-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .service-header-text h2 {
        font-size: 2rem;
    }
    
    .service-header-text p {
        font-size: 1.1rem;
    }
    
    .service-info h3 {
        font-size: 1.5rem;
    }
    
    .service-info ul li {
        font-size: 1rem;
    }
    
    .image-placeholder {
        height: 250px;
    }
    
    .image-placeholder i {
        font-size: 3rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .service-section {
        padding: 2rem 1rem;
        border-radius: 15px;
    }
    
    .service-header {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .service-icon-large {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .service-header-text h2 {
        font-size: 1.8rem;
    }
    
    .service-details {
        gap: 2rem;
    }
    
    .service-info h3 {
        font-size: 1.3rem;
    }
    
    .service-info ul {
        margin-bottom: 2rem;
    }
    
    .image-placeholder {
        height: 200px;
        border-radius: 15px;
    }
    
    .process-step {
        padding: 2rem 1rem;
    }
}

/* Animation enhancements */
.service-section {
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
}

.service-section:nth-child(2) { animation-delay: 0.1s; }
.service-section:nth-child(3) { animation-delay: 0.2s; }
.service-section:nth-child(4) { animation-delay: 0.3s; }
.service-section:nth-child(5) { animation-delay: 0.4s; }
.service-section:nth-child(6) { animation-delay: 0.5s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects for service sections */
.service-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-section:hover .service-icon-large {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}