/* Service Hero Section */
.service-hero {
    height: 40vh;
    min-height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 0;
}

.service-hero-content {
    text-align: center;
    color: #fff;
}

.service-hero-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 15px;
}

.service-hero-subtitle {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    display: block;
}

/* Service Overview Section */
.service-overview {
    padding: 100px 40px 60px;
    background-color: #fff;
    text-align: center;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    margin-bottom: 40px;
}

.section-title .en {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 10px;
}

.section-title .ja {
    font-size: 16px;
    font-weight: 500;
    color: #666;
}

.section-description {
    font-size: 16px;
    line-height: 2;
    color: #666;
}

/* Service Detail Section */
.service-detail {
    padding: 0 0 100px;
    background-color: #fff;
}

.service-detail:nth-child(even) {
    background-color: #f8f8f8;
}

.service-image-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 60px;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-text {
    max-width: 800px;
    margin: 0 auto;
}

.service-number {
    font-size: 64px;
    font-weight: 700;
    color: #f0f0f0;
    line-height: 1;
    margin-bottom: 30px;
}

.service-title {
    margin-bottom: 30px;
}

.service-title .ja {
    font-size: 28px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.service-title .en {
    font-size: 14px;
    color: #666;
    letter-spacing: 0.1em;
}

.service-description {
    font-size: 16px;
    line-height: 2;
    color: #333;
    margin-bottom: 40px;
}

.service-features {
    margin-bottom: 40px;
}

.service-features h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.service-features h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: #333;
}

.service-features ul {
    list-style: none;
}

.service-features li {
    font-size: 15px;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #666;
}

.service-price h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.service-price h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: #333;
}

.price-table {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row .plan {
    font-weight: 500;
}

.price-row .price {
    font-weight: 700;
}

.price-note {
    font-size: 12px;
    color: #666;
    margin-top: 15px;
}

.service-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

/* Contact CTA Section */
.contact-cta {
    padding: 100px 40px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&q=80') center/cover fixed;
    text-align: center;
    color: #fff;
    position: relative;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 20px 60px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #333;
    color: #fff;
    transform: translateY(-3px);
}

/* Header Override */
.header {
    position: fixed;
    background: transparent;
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
}

.nav-menu a {
    color: #fff;
}

.header.scrolled .nav-menu a {
    color: #333;
}

.hamburger span {
    background-color: #fff;
}

.header.scrolled .hamburger span {
    background-color: #333;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .service-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .service-hero {
        height: 30vh;
    }

    .service-hero-title {
        font-size: 36px;
    }

    .service-overview,
    .service-detail {
        padding: 60px 20px;
    }

    .section-title .en {
        font-size: 28px;
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-content.reverse {
        direction: ltr;
    }

    .service-text {
        order: 1;
    }

    .service-image {
        order: 2;
    }

    .service-number {
        font-size: 48px;
    }

    .service-title .ja {
        font-size: 24px;
    }

    .contact-cta {
        padding: 60px 20px;
        background-attachment: scroll;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-button {
        padding: 15px 40px;
    }

    .service-image-container {
        height: 300px;
    }

    .service-content {
        padding: 0 20px;
    }

    .service-text {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .service-hero-title {
        font-size: 28px;
    }

    .service-number {
        font-size: 36px;
    }

    .service-title .ja {
        font-size: 20px;
    }

    .price-table {
        padding: 20px;
    }

    .price-row {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .service-image-container {
        height: 200px;
    }
} 