/* style/contact.css */

.page-contact {
    font-family: Arial, sans-serif;
    color: #FFF6D6; /* Text Main */
    line-height: 1.6;
}

.page-contact__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, assuming body has header offset */
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.page-contact__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 675px;
}

.page-contact__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 20px;
    margin-top: -100px; /* Adjust to bring content slightly over image bottom */
    background: #111111; /* Card BG */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__main-title {
    font-size: clamp(2.5em, 5vw, 3.5em);
    color: #FFD36B; /* Glow */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

.page-contact__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #FFF6D6;
}

.page-contact__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-contact__btn-primary,
.page-contact__btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-contact__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button */
    color: #ffffff; /* Consistent white text on button */
    border: none;
    box-shadow: 0 4px 10px rgba(242, 193, 78, 0.4);
}

.page-contact__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(242, 193, 78, 0.6);
}

.page-contact__btn-secondary {
    background: #111111; /* Card BG */
    color: #F2C14E; /* Main Color */
    border: 2px solid #F2C14E; /* Main Color */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__btn-secondary:hover {
    background: #F2C14E; /* Main Color */
    color: #111111; /* Card BG */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(242, 193, 78, 0.4);
}

.page-contact__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-contact__introduction-section,
.page-contact__methods-section,
.page-contact__other-channels-section,
.page-contact__faq-section,
.page-contact__philosophy-section,
.page-contact__feedback-section,
.page-contact__operating-hours-section,
.page-contact__conclusion-section {
    padding: 60px 0;
    background: #0A0A0A; /* Background */
    text-align: center;
}

.page-contact__section-title {
    font-size: 2.5em;
    color: #FFD36B; /* Glow */
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.3;
}

.page-contact__text-block {
    font-size: 1.1em;
    color: #FFF6D6;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-contact__method-card {
    background: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-contact__method-icon {
    width: 100%; /* Ensure image fills card */
    height: auto;
    max-height: 200px; /* Limit height for consistency */
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-contact__method-title {
    font-size: 1.8em;
    color: #F2C14E; /* Main Color */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-contact__method-description {
    font-size: 1em;
    color: #FFF6D6;
    margin-bottom: 25px;
}

.page-contact__email-link {
    color: #F2C14E;
    text-decoration: none;
    font-weight: bold;
}

.page-contact__email-link:hover {
    text-decoration: underline;
}

.page-contact__channels-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.page-contact__channel-item {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    background: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 10px;
    padding: 30px;
    text-align: left;
}

.page-contact__channel-title {
    font-size: 1.8em;
    color: #F2C14E; /* Main Color */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-contact__social-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-contact__social-list li {
    margin-bottom: 10px;
}

.page-contact__social-link {
    color: #FFD36B;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-contact__social-link:hover {
    color: #F2C14E;
    text-decoration: underline;
}

.page-contact__faq-list {
    margin-top: 40px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__faq-item {
    background: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-contact__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: #FFF6D6;
    cursor: pointer;
    background: #1a1a1a; /* Slightly darker for question */
    border-bottom: 1px solid #3A2A12;
    list-style: none;
    user-select: none; /* Prevent text selection on click */
}

.page-contact__faq-question::-webkit-details-marker {
    display: none;
}

.page-contact__faq-question .page-contact__faq-qtext {
    flex-grow: 1;
    color: #F2C14E; /* Main Color for question text */
}

.page-contact__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    color: #FFD36B; /* Glow */
}

.page-contact__faq-item[open] .page-contact__faq-toggle {
    content: "−";
}

.page-contact__faq-answer {
    padding: 20px;
    font-size: 1em;
    color: #FFF6D6;
    background: #111111; /* Card BG */
    border-top: 1px solid #3A2A12;
}

.page-contact__faq-answer p {
    margin-bottom: 10px;
}

.page-contact__faq-answer a {
    color: #FFD36B;
    text-decoration: none;
    font-weight: bold;
}

.page-contact__faq-answer a:hover {
    text-decoration: underline;
}

.page-contact__hours-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 700px;
    margin: 30px auto;
    text-align: left;
    background: #111111;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    padding: 30px;
}

.page-contact__hours-info strong {
    color: #F2C14E;
}

.page-contact__copyright-info {
    padding: 20px;
    text-align: center;
    background: #0A0A0A; /* Background */
    border-top: 1px solid #3A2A12; /* Border */
    color: #FFF6D6;
    font-size: 0.9em;
}

/* --- Responsive Styles --- */

@media (max-width: 1024px) {
    .page-contact__hero-content {
        margin-top: -80px;
        padding: 15px;
    }

    .page-contact__main-title {
        font-size: 3em;
    }

    .page-contact__section-title {
        font-size: 2em;
    }

    .page-contact__methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .page-contact__channel-item {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .page-contact {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-contact__hero-section {
        padding-top: 10px !important; /* HERO section top padding */
        padding-bottom: 20px;
    }

    .page-contact__hero-content {
        margin-top: -60px;
        padding: 15px;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-contact__main-title {
        font-size: 2.2em;
    }

    .page-contact__hero-description {
        font-size: 1em;
    }

    .page-contact__cta-buttons {
        flex-direction: column;
        gap: 10px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-contact__btn-primary,
    .page-contact__btn-secondary,
    .page-contact a[class*="button"],
    .page-contact a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-contact__container {
        padding: 20px 15px;
    }

    .page-contact__introduction-section,
    .page-contact__methods-section,
    .page-contact__other-channels-section,
    .page-contact__faq-section,
    .page-contact__philosophy-section,
    .page-contact__feedback-section,
    .page-contact__operating-hours-section,
    .page-contact__conclusion-section {
        padding: 40px 0;
    }

    .page-contact__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .page-contact__text-block {
        font-size: 0.95em;
    }

    .page-contact__methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-contact__method-card {
        padding: 20px;
    }

    .page-contact__method-icon {
        max-height: 150px;
        min-width: 200px !important;
        min-height: 200px !important;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-contact__method-title {
        font-size: 1.5em;
    }

    .page-contact__channels-content {
        flex-direction: column;
        gap: 20px;
    }

    .page-contact__channel-item {
        padding: 20px;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-contact__channel-title {
        font-size: 1.5em;
    }

    .page-contact__faq-question {
        padding: 15px;
        font-size: 1.1em;
    }

    .page-contact__faq-answer {
        padding: 15px;
    }

    .page-contact img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-contact__section,
    .page-contact__card,
    .page-contact__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-contact__hours-info {
        padding: 20px;
    }
    .page-contact__copyright-info {
        padding: 15px;
    }
}