@charset "UTF-8";

/* Facility Page Specific Styles */

/* Common Colors matching image approx */
:root {
    --facility-green: #90d346;
    --facility-pink: #f7a0b0;
    --facility-blue: #00bfff;
}

.facility-intro-section {
    padding: 60px 0 100px;
}

/* Reusing Title Style from English page concept manually since no common utility yet */
.section-heading {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
    position: relative;
}

.section-heading::after {
    content: '';
    display: block;
    width: 150px;
    height: 20px;
    background: url('../img/treat.svg') no-repeat center center;
    background-size: contain;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subheading {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: 0.1em;
    color: #333;
    font-weight: 700;
}

/* Facility Intro Text */
.facility-intro-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.facility-main-desc {
    font-weight: bold;
    font-size: 17px;
    color: #333;
    line-height: 1.7;
}

.deco-line {
    width: 60px;
    height: 10px;
    background: repeating-linear-gradient(90deg,
            #ffcc00,
            #ffcc00 10px,
            transparent 10px,
            transparent 15px,
            #00bfff 15px,
            #00bfff 25px,
            transparent 25px,
            transparent 30px);
    display: block;
}

.deco-line.img-placeholder {
    height: 10px;
    /* width handled by class */
    background: #ccc;
    /* fallback or if placeholder class overrides */
    background: repeating-linear-gradient(90deg,
            #ffcc00,
            #ffcc00 8px,
            transparent 8px,
            transparent 12px,
            #00bfff 12px,
            #00bfff 20px,
            transparent 20px,
            transparent 24px,
            #ff99cc 24px,
            /* Adding pink for variety based on image impression */
            #ff99cc 32px,
            transparent 32px,
            transparent 36px);
    width: 80px;
}


/* Facility List */
.facility-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.facility-row {
    display: flex;
    align-items: flex-start;
    /* Align top */
    gap: 50px;
}

.facility-info {
    flex: 0 0 350px;
}

.facility-name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.facility-name.green-text {
    color: var(--facility-green);
}

.facility-name.pink-text {
    color: var(--facility-pink);
}

.facility-name.blue-text {
    color: var(--facility-blue);
}

.facility-details p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 0;
}

.facility-details .tel {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
}

.facility-map {
    flex: 1;
    height: 400px;
    background-color: #f0f0f0;
    border-radius: 20px;
    overflow: hidden;
}

.facility-map iframe {
    width: 100%;
    height: 100%;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .section-heading {
        font-size: 28px;
    }

    .facility-list {
        gap: 60px;
    }

    .facility-intro-row {
        gap: 10px;
    }

    .facility-main-desc {
        font-size: 13px;
    }

    .deco-line {
        width: 30px !important;
        /* Force small */
    }

    .facility-row {
        flex-direction: column;
        gap: 20px;
    }


    .facility-info {
        flex: auto;
        width: 100%;
    }

    .facility-map {
        width: 100%;
        height: 300px;
        /* Adjusted height for mobile */
    }
}


/* =========================================
   FAQ Styles (Moved from faq.css)
   ========================================= */

:root {
    --faq-pink: #e47d90;
    /* Matching the pink in the image */
}

/* FAQ Intro Text */
.faq-intro-section {
    padding: 0 0 100px;
}

/* Specific styling for the row containing description and lines */
.faq-intro-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    /* Increased from 80px to add more space */
    text-align: center;
    /* Ensure text is centered */
}

.faq-main-desc {
    font-weight: bold;
    font-size: 17px;
    color: #333;
    line-height: 1.7;
    margin: 0;
}

/* Override facility.css existing definition if needed or just update here if it was copied there */
/* Since we pasted it, we should find the pasted part. But wait, .faq-intro-row definition is missing in the pasted block! */
/* Ah, looking at the file content, .faq-intro-row is defined EARLIER in the file around line 51 under "Facility Intro Text" but that was for FACILITY intro. */
/* Wait, I am reusing classes. In facility.html I used `faq-intro-row`. */
/* In the FAQ css block I pasted, there isn't a `.faq-intro-row` definition? Let me check lines 210+. NO. */
/* It seems I relied on the existing `.facility-intro-row` styles? OR I missed copying it? */
/* In previous faq.css, `.faq-intro-row` existed. In facility.css lines 51-57 define `.facility-intro-row`. */
/* In facility.html (step 741), I used `<div class="faq-intro-row">`. */
/* So currently `faq-intro-row` has NO style in facility.css?? matching `facility-intro-row`? */
/* I should ADD .faq-intro-row style here. */


/* FAQ List Accordion */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    width: 100%;
}

/* Question Bar */
.faq-question {
    background-color: var(--faq-pink);
    color: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    /* transition: background-color 0.3s; */
}

/* Q Icon */
.icon-q {
    background: #fff;
    color: var(--faq-pink);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 4px;
    margin-right: 15px;
    font-size: 14px;
    flex-shrink: 0;
}

.question-text {
    font-weight: bold;
    font-size: 18px;
    flex: 1;
}

/* Toggle Icon (+ / -) */
.icon-toggle {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}

.icon-toggle::before,
.icon-toggle::after {
    content: '';
    position: absolute;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-toggle::before {
    width: 100%;
    height: 2px;
    /* Horizontal line */
}

.icon-toggle::after {
    width: 2px;
    height: 100%;
    /* Vertical line */
    transition: transform 0.3s;
}

/* When open, rotate vertical line to 90deg (or just hide it) to make minus */
.faq-item.open .icon-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* Answer Box */
.faq-answer {
    display: none;
    /* Hidden by default */
    border: 2px solid var(--faq-pink);
    border-top: none;
    background: #fff;
    padding: 20px;
}

.faq-item.open .faq-answer {
    display: block;
    /* Shown when open */
}

.answer-content {
    display: flex;
    align-items: flex-start;
}

.icon-a {
    background: var(--faq-pink);
    color: #fff;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 4px;
    margin-right: 15px;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 3px;
    /* Align with text top */
}

.answer-text p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #333;
}

/* Mobile Responsive additions */
@media (max-width: 768px) {
    .faq-question {
        padding: 12px 15px;
    }

    .question-text {
        font-size: 17px;
    }

    .answer-text p {
        font-size: 16px;
    }
}