/* Services Page Styles */

.services-hero {
    padding: 6rem 0 4rem;
    text-align: center;
}

.services-hero .page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.services-hero .page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Grid - 3 Column Layout */
.services-grid {
    padding: 4rem 0;
}

.services-grid .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.service-card {
    margin-bottom: 0;
    border: none;
    padding-bottom: 0;
}

.service-header {
    text-align: center;
    margin-bottom: 2rem;
}

.service-header h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.service-tagline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
}

.service-packages {
    display: grid;
    gap: 1rem;
}

/* Accordion Package Styles */
.package {
    background: var(--bg-elevated);
    border-radius: 8px;
    border: 1px solid var(--border-light);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 0;
}

.package:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Accordion Summary (Header) */
.package summary {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.package summary::-webkit-details-marker {
    display: none;
}

.package summary:hover {
    background: var(--bg-primary);
}

.package summary h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
    color: var(--text-primary);
}

.package summary .icon {
    color: var(--accent);
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.package[open] summary .icon {
    transform: rotate(180deg);
}

/* Accordion Content */
.package .package-content {
    padding: 0 1.5rem 1.5rem;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package-duration {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.package-includes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-includes li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.package-includes li:last-child {
    border-bottom: none;
}

.package-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Process Section */
.services-process {
    padding: 5rem 0;
    background: var(--bg-elevated);
}

.services-process h2 {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

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

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FAQ Section */
.services-faq {
    padding: 5rem 0;
}

.services-faq h2 {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.faq-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: 0;
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.services-cta {
    padding: 5rem 0;
    text-align: center;
    background: var(--bg-elevated);
}

.services-cta h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.services-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Tablet Adjustments */
@media (max-width: 1024px) {
    .services-grid .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-header h2 {
        font-size: 1.75rem;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .services-hero {
        padding: 4rem 0 3rem;
    }

    .services-grid .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-card {
        padding-bottom: 2rem;
        border-bottom: 1px solid var(--border-light);
    }

    .service-card:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .service-header h2 {
        font-size: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}