/* Service Page Styles */

/* Hero Section */
.service-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: #0a0a0a;
}

.service-hero.compact-hero {
    min-height: auto;
    padding: 6.5rem 2rem 2.5rem;
}

.service-hero-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.service-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.service-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.service-hero.compact-hero .service-subtitle {
    margin: 0 auto 1.5rem;
}

.hero-image-container {
    max-width: 1024px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    object-fit: cover;
    max-height: 600px;
}

/* Process Section */
.process-section {
    padding: 6rem 2rem;
    background: #0a0a0a;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.01em;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    transition: all 300ms ease;
}

.step-circle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.step-label {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
}

.process-arrow {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0 -0.5rem;
}

/* Materials & Examples Section */
.materials-section {
    padding: 6rem 2rem;
    background: #0a0a0a;
}

.materials-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.materials-container.single-column {
    grid-template-columns: 1fr;
    max-width: 900px;
    justify-items: center;
}

.materials-container.single-column .materials-column {
    width: 100%;
    max-width: 720px;
}

.materials-container.single-column .materials-title {
    text-align: center;
}

.materials-title,
.examples-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.materials-column {
    display: flex;
    flex-direction: column;
}

.material-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    transition: all 300ms ease;
}

.material-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.material-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.material-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.examples-column {
    display: flex;
    flex-direction: column;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.example-item {
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 1;
}

.example-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.example-item:hover img {
    transform: scale(1.1);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: #0a0a0a;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: center;
}

.faq-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1;
}

.faq-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.02em;
    line-height: 1.5;
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #ffffff;
    transition: all 300ms ease;
}

.faq-question:hover {
    color: rgba(255, 255, 255, 0.7);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 300ms ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 400ms ease;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    padding-bottom: 1.5rem;
}

/* Mobile Responsive - Tablet */
@media (max-width: 768px) {
    .service-hero {
        padding: 6rem 1.5rem 3rem;
    }

    .service-hero.compact-hero {
        padding: 5.5rem 1.5rem 2rem;
    }

    .hero-image {
        border-radius: 1rem;
        max-height: 400px;
    }

    .process-section {
        padding: 4rem 1.5rem;
    }

    .process-steps {
        gap: 1.5rem;
    }

    .step-circle {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .step-label {
        font-size: 0.9rem;
    }

    .process-arrow {
        font-size: 1.25rem;
    }

    .materials-section {
        padding: 4rem 1.5rem;
    }

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

    .materials-container.single-column {
        max-width: 700px;
        margin: 0 auto;
    }

    .examples-grid {
        gap: 1rem;
    }

    .faq-section {
        padding: 4rem 1.5rem;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-header {
        position: static;
        transform: none;
    }

    .faq-header h2 {
        font-size: clamp(3rem, 12vw, 4rem);
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.25rem 0;
    }
}

/* Mobile Responsive - Mobile */
@media (max-width: 480px) {
    .service-hero {
        padding: 5rem 1rem 2rem;
    }

    .service-hero.compact-hero {
        padding: 4.75rem 1rem 1.5rem;
    }

    .service-subtitle {
        margin-bottom: 3rem;
    }

    .hero-image {
        border-radius: 0.75rem;
        max-height: 300px;
    }

    .process-section {
        padding: 3rem 1rem;
    }

    .process-steps {
        flex-direction: column;
        gap: 1rem;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: -0.5rem 0;
    }

    .step-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-label {
        font-size: 0.875rem;
    }

    .materials-section {
        padding: 3rem 1rem;
    }

    .materials-container {
        gap: 2.5rem;
    }

    .materials-container.single-column {
        max-width: 100%;
    }

    .material-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .material-card h3 {
        font-size: 1.25rem;
    }

    .material-card p {
        font-size: 0.9rem;
    }

    .examples-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .faq-section {
        padding: 3rem 1rem;
    }

    .faq-header h2 {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
        margin-bottom: 0.5rem;
    }

    .faq-subtitle {
        font-size: 0.9rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1rem 0;
    }

    .faq-icon {
        font-size: 1.25rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}
