/* Services Page Styles */

.page-header {
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: var(--deep-charcoal);
    background-image: linear-gradient(to bottom, #232323, #1d1d1d);
}

/* Large Pink Blob - Top Left */
.page-header::after {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background-color: var(--bubblegum-pink);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.9;
    filter: blur(40px);
    z-index: 0;
    animation: float-blob 20s ease-in-out infinite alternate;
}

/* Large Blue Blob - Bottom Right */
.page-header::before {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    background-color: var(--azure-blue);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.9;
    filter: blur(40px);
    z-index: 0;
    animation: float-blob 25s ease-in-out infinite alternate-reverse;
}

/* Yellow Blob - Center */
.page-header .container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 230px;
    height: 230px;
    background-color: var(--golden-yellow);
    border-radius: 40% 60% 60% 40% / 40% 50% 50% 60%;
    opacity: 0.85;
    filter: blur(35px);
    animation: pulse 8s ease-in-out infinite;
    z-index: 0;
}

/* Additional blob removed */

@keyframes float-blob {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(30px, 30px) rotate(15deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(20px, 20px) rotate(10deg);
    }
}

.page-title {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

/* Removed title underline */

.page-description {
    color: var(--light-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Services Overview Section */
.services-overview {
    padding: 80px 0;
    background-color: var(--white);
}

.services-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-charcoal);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.services-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--golden-yellow);
}

.services-content p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Services Grid Section */
.services-grid-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: left; /* Align content to the left */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    transition: height 0.3s ease;
}

.service-card:nth-child(1)::before {
    background-color: var(--bubblegum-pink);
}

.service-card:nth-child(2)::before {
    background-color: var(--golden-yellow);
}

.service-card:nth-child(3)::before {
    background-color: var(--azure-blue);
}

.service-card:nth-child(4)::before {
    background-color: var(--bubblegum-pink);
}

.service-card:nth-child(5)::before {
    background-color: var(--golden-yellow);
}

.service-card:nth-child(6)::before {
    background-color: var(--azure-blue);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    display: inline-block;
}

.service-card:nth-child(1) .service-icon {
    color: var(--bubblegum-pink);
}

.service-card:nth-child(2) .service-icon {
    color: var(--golden-yellow);
}

.service-card:nth-child(3) .service-icon {
    color: var(--azure-blue);
}

.service-card:nth-child(4) .service-icon {
    color: var(--bubblegum-pink);
}

.service-card:nth-child(5) .service-icon {
    color: var(--golden-yellow);
}

.service-card:nth-child(6) .service-icon {
    color: var(--azure-blue);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--deep-charcoal);
}

.service-description {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

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

.service-features li {
    color: var(--dark-gray);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--bubblegum-pink);
}

.service-card:nth-child(1) .service-features li::before {
    color: var(--bubblegum-pink);
}

.service-card:nth-child(2) .service-features li::before {
    color: var(--golden-yellow);
}

.service-card:nth-child(3) .service-features li::before {
    color: var(--azure-blue);
}

.service-card:nth-child(4) .service-features li::before {
    color: var(--bubblegum-pink);
}

.service-card:nth-child(5) .service-features li::before {
    color: var(--golden-yellow);
}

.service-card:nth-child(6) .service-features li::before {
    color: var(--azure-blue);
}

.service-link {
    color: var(--deep-charcoal);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-card:nth-child(1) .service-link {
    color: var(--bubblegum-pink);
}

.service-card:nth-child(2) .service-link {
    color: var(--golden-yellow);
}

.service-card:nth-child(3) .service-link {
    color: var(--azure-blue);
}

.service-card:nth-child(4) .service-link {
    color: var(--bubblegum-pink);
}

.service-card:nth-child(5) .service-link {
    color: var(--golden-yellow);
}

.service-card:nth-child(6) .service-link {
    color: var(--azure-blue);
}

.service-link::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover::after {
    transform: translateX(5px);
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-charcoal);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    display: block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background-color: var(--golden-yellow);
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bubblegum-pink);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step:nth-child(2) .step-number {
    background-color: var(--golden-yellow);
}

.process-step:nth-child(3) .step-number {
    background-color: var(--azure-blue);
}

.process-step:nth-child(4) .step-number {
    background-color: var(--bubblegum-pink);
}

.process-step:nth-child(5) .step-number {
    background-color: var(--golden-yellow);
}

.process-step:nth-child(6) .step-number {
    background-color: var(--azure-blue);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-charcoal);
    margin-bottom: 10px;
}

.step-description {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-charcoal);
    margin-bottom: 15px;
    position: relative;
    cursor: pointer;
    padding-right: 30px; /* Space for the plus/minus icon */
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    color: var(--bubblegum-pink);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(0deg);
}

.faq-answer {
    color: var(--dark-gray);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px; /* Large enough to contain any answer */
    margin-bottom: 15px;
    opacity: 1;
    transition: max-height 0.6s ease, opacity 0.5s ease 0.1s;
}

/* Responsive styles */
@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
}