/* =====================================================
   AISLING KOREA - Contact Page Styles (Premium Editorial)
   ===================================================== */

/* =====================================================
   Contact Section
   ===================================================== */
.contact-section {
    padding: 120px 0;
    background: #ffffff;
}

.contact-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-section .section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--s-color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.contact-section .section-title {
    font-family: var(--s-font-display, 'Playfair Display', serif);
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Contact Main Grid - 2단 레이아웃 (좌: 연락처/지도, 우: 문의 폼) */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: stretch;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-title {
    font-family: var(--s-font-display, 'Playfair Display', serif);
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    /* padding-bottom: 24px;
    border-bottom: 1px solid #eeeeee;*/
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-icon {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--s-color-primary);
    flex-shrink: 0;
    margin-top: 0px;
}

.contact-info-icon svg {
    width: 30px;
    height: 30px;
    stroke-width: 1.5;
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.contact-info-label {
    font-size: 0.85rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-info-value {
    font-size: 1.25rem;
    color: #1a1a1a;
    font-weight: 500;
    line-height: 1.6;
}

.contact-map {
    flex-grow: 1;
    min-height: 300px;
    border: 1px solid #eeeeee;
    border-radius: 15px;
    overflow: hidden;
}

.contact-map-placeholder {
    height: 100% !important;
    min-height: 300px;
    background: #f5f5f5;
}

/* Right Column: Inquiry Form */
.contact-right {
    background: #085a3c;
    border-radius: 15px;
    padding: 50px;
    /*border: 1px solid #eeeeee;*/
}

.contact-form-title {
    font-family: var(--s-font-display, 'Playfair Display', serif);
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.contact-right .inquiry-form-wrapper {
    padding: 0;
    box-shadow: none;
    background: transparent;
}

.contact-right .form-section {
    margin-bottom: 32px;
}

.contact-right .form-section:last-child {
    margin-bottom: 0;
}

.contact-right .form-section-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
    padding-bottom: 0px;
    border-bottom: 0px solid #e0e0e0;
}

.contact-right .form-label {
    display: none;
}

.contact-right .checkbox-text,
.contact-right .checkbox-text a {
    color: #fff;
}

.contact-right .form-actions .btn-primary {
    background: #fff;
    color: #085a3c;
    border-radius: 0;
}

.contact-right .form-actions .btn-secondary {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 0;
}

.contact-right .form-control,
.contact-right .form-textarea {
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 0;
}

.contact-right .form-control::placeholder {
    color: #fff;
}

/* =====================================================
   FAQ Section
   ===================================================== */
.faq-section {
    padding: 120px 0;
    background: #ffffff;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-section .section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--s-color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.faq-section .section-title {
    font-family: var(--s-font-display, 'Playfair Display', serif);
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

.faq-item {
    background: #ffffff;
    border-radius: 0;
    margin-bottom: 0;
    overflow: hidden;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:first-child {
    border-top: 1px solid #085a3c;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 20px;
    font-size: 1.35rem;
    font-weight: 500;
    color: #1a1a1a;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #fff;
    background: #085a3c;
}

.faq-question svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #999999;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
    color: var(--s-color-primary);
}

.faq-answer {
    display: none;
    padding: 0 0 32px 0;
    font-size: 1rem;
    color: #666666;
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-list-empty {
    text-align: center;
    padding: 60px 0;
    color: #999999;
    font-size: 1.05rem;
}

/* =====================================================
   Responsive Styles
   ===================================================== */
@media (max-width: 991px) {

    .contact-section,
    .faq-section {
        padding: 80px 0;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-right {
        padding: 40px 32px;
    }
}

@media (max-width: 767px) {

    .contact-section .section-title,
    .faq-section .section-title {
        font-size: 28px;
        margin-bottom: 0;
    }

    .contact-right {
        padding: 32px 20px;
    }

    .contact-form-title {
        font-size: 1.5rem;
    }

    .contact-info-title {
        font-size: 1.5rem;
    }

    .faq-question {
        padding: 24px 0;
        font-size: 1.05rem;
    }

    .contact-section .section-header {
        margin-bottom: 40px;
    }

    .contact-info-value {
        font-size: 18px;
    }

    .contact-right .form-actions .btn-primary {
        padding: 15px 0;
    }

    .contact-right .form-actions .btn-secondary {
        padding: 15px 0;
    }

    .contact-section,
    .faq-section {
        padding: 0 0 80px 0;
    }

    .faq-section .section-header {
        margin-bottom: 40px;
    }

}

/* Hide section titles per designer spec */
.contact-info-title,
.contact-form-title {
    display: none;
}