/* ============================================
   Service Page Styles (shared for all services)
   ============================================ */

/* --- Hero --- */
.service-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: var(--color-white);
}

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 30, 20, 0.55);
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.service-hero-accent {
    color: var(--color-white);
    opacity: 0.8;
}

.service-hero-title {
    font-size: 56px;
    color: var(--color-white);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.service-hero-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 20px;
    margin-bottom: 32px;
}

.service-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-hero-outline {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-family: var(--font-body);
    font-weight: 400;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.btn-hero-outline:hover {
    background: var(--color-gold);
    color: var(--color-white);
}

/* --- Intro (centered text) --- */
.service-intro {
    background: var(--color-white);
}

.service-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-intro-text p {
    margin-bottom: 18px;
    color: var(--color-body);
}

/* --- About (2-column) --- */
.service-about {
    background: var(--color-white);
}

.service-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-about-text p {
    margin-bottom: 18px;
}

.service-highlights {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.service-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-dark);
}

.service-highlight svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.service-about-image {
    overflow: hidden;
}

.service-about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* --- Features (4-column grid) --- */
.service-features {
    background: var(--color-light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--color-white);
    padding: 36px 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    color: var(--color-gold);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.feature-text {
    color: var(--color-body);
}

/* --- Atmosphere (2-column, reversed) --- */
.service-atmosphere {
    background: var(--color-white);
}

.service-atmosphere-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-atmosphere-image {
    overflow: hidden;
}

.service-atmosphere-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.service-atmosphere-text p {
    margin-bottom: 18px;
}

.service-atmosphere-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.service-atmosphere-text ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--color-body);
}

.service-atmosphere-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border: 1px solid var(--color-gold);
    transform: rotate(45deg);
}

/* --- Schedule / Table --- */
.service-schedule {
    background: var(--color-light-bg);
}

.pricing-table-wrapper {
    max-width: 800px;
    margin: 0 auto;
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pricing-table thead {
    background: var(--color-primary);
    color: var(--color-white);
}

.pricing-table th {
    font-family: var(--font-heading);
    font-weight: 400;
    padding: 16px 24px;
}

.pricing-table td {
    padding: 16px 24px;
    border-bottom: 1px solid #e8e5e0;
}

.pricing-table tbody tr:hover {
    background: rgba(0, 69, 55, 0.04);
}

.pricing-price {
    font-weight: 700;
    color: var(--color-primary);
}

.service-schedule-action {
    text-align: center;
    margin-top: 32px;
}

.btn-schedule-menu {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-family: var(--font-body);
    font-weight: 400;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.btn-schedule-menu:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* --- Gallery --- */
.service-gallery {
    background: var(--color-white);
}

.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.service-gallery-item {
    overflow: hidden;
    cursor: pointer;
}

.service-gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s;
}

.service-gallery-item:hover img {
    transform: scale(1.05);
}

/* --- CTA Band --- */
.service-cta {
    background: var(--color-primary);
    text-align: center;
}

.service-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.service-cta-accent {
    color: var(--color-gold);
}

.service-cta-title {
    font-size: 36px;
    color: var(--color-white);
    margin-bottom: 20px;
}

.service-cta-phone {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-white);
    text-decoration: none;
    margin-bottom: 28px;
    transition: color 0.3s;
}

.service-cta-phone:hover {
    color: var(--color-gold);
}

.btn-cta-gold {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-family: var(--font-body);
    font-weight: 400;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.btn-cta-gold:hover {
    background: var(--color-gold);
    color: var(--color-white);
}

/* --- Responsive --- */

@media (max-width: 992px) {
    .service-hero-title {
        font-size: 42px;
    }

    .service-about-grid,
    .service-atmosphere-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-about-image img,
    .service-atmosphere-image img {
        height: 360px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero {
        height: 50vh;
        min-height: 350px;
    }

    .service-hero-title {
        font-size: 32px;
    }

    .service-hero-text {
        font-size: 17px;
        margin-bottom: 24px;
    }

    .service-hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-hero-outline {
        width: 100%;
        max-width: 260px;
        text-align: center;
        background: rgba(0, 0, 0, 0.48);
    }

    .service-highlights {
        grid-template-columns: 1fr;
    }

    .service-about-image img,
    .service-atmosphere-image img {
        height: 280px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-gallery-item img {
        height: 200px;
    }

    .service-cta-title {
        font-size: 28px;
    }

    .service-cta-phone {
        font-size: 22px;
    }
}

/* --- FAQ Accordion --- */
.faq-section {
    background: var(--color-light-bg);
}

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

.faq-item {
    background: var(--color-white);
    border-bottom: 1px solid #e8e5e0;
    border-left: 3px solid transparent;
    transition: border-color 0.3s;
}

.faq-item.is-active {
    border-left-color: var(--color-gold);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-dark);
    text-align: left;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--color-gold);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.is-active .faq-question::after {
    content: '\2212';
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.faq-item.is-active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer-inner p {
    padding: 0 24px 20px;
    color: var(--color-body);
}

@media (max-width: 480px) {
    .service-hero-title {
        font-size: 26px;
    }

    .service-gallery-grid {
        grid-template-columns: 1fr;
    }

    .service-gallery-item img {
        height: 220px;
    }

    .feature-card {
        padding: 28px 18px;
    }

    .service-cta-title {
        font-size: 24px;
    }

    .faq-question {
        font-size: 16px;
        padding: 16px 18px;
    }

    .faq-answer-inner p {
        padding: 0 18px 16px;
    }
}
