/* Services Page Specific Styles */

/* Hero Section */
.services-hero {
    min-height: 60vh;
}

/* Work Content Card */
.work-content-card {
    background: var(--gray-100);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
}

.work-content-title {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

/* Work Content Grid */
.work-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.work-content-item h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.work-content-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Pricing Card */
.pricing-card {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-purple);
}

.pricing-card h4 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.pricing-card ul {
    margin-left: 1rem;
}

.pricing-card-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Image Fallback */
.image-fallback {
    display: none;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666;
}

/* Section with custom background */
.section-white-title {
    color: white;
}

.section-white-text {
    color: white;
}

.section-white-text h3 {
    color: white;
    margin-bottom: 2rem;
}

/* Carport Section Cards */
.carport-content-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
}

.carport-content-title {
    color: white;
    margin-bottom: 1rem;
}

.carport-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.carport-content-item h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.carport-content-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

/* Carport Pricing Card */
.carport-pricing-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid white;
}

.carport-pricing-card h4 {
    color: white;
    margin-bottom: 1rem;
}

.carport-pricing-card ul {
    margin-left: 1rem;
    color: rgba(255,255,255,0.9);
}

/* Services Grid (for tile section) */
.services-grid {
    margin-top: 1rem;
}

/* Service Item Card */
.service-item-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.service-item-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

.service-item-list {
    margin-left: 1rem;
    font-size: 0.9rem;
    line-height: 1.8;
}

/* Light Gray Section Background */
.section-light-gray {
    background: #f9fafb;
}

/* Reform Content Card */
.reform-content-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    box-shadow: var(--shadow-md);
}

.reform-content-title {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

/* Reform Section Styles */
.reform-section {
    margin-bottom: 2rem;
}

.reform-section-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.reform-section-list {
    margin-left: 1.5rem;
    line-height: 1.8;
    color: var(--gray-700);
}

/* CTA Section */
.cta-content {
    text-align: center;
    color: white;
}

.cta-title {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-description {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: white;
    color: var(--primary-purple);
    padding: 1rem 2rem;
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
}

.cta-hours {
    margin-top: 1rem;
    color: rgba(255,255,255,0.8);
}

/* Animation Styles for JavaScript */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* モバイル対応 */
@media (max-width: 768px) {
    .work-content-grid,
    .carport-content-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-text {
        padding: 1.5rem;
        text-align: left;
    }

    .pricing-card,
    .carport-pricing-card {
        padding: 1.5rem;
    }

    .work-content-card,
    .carport-content-card {
        padding: 1.5rem;
        margin: 1rem 0;
    }
}