/* ==========================================
   contact.css
   Scoped styles for the Contact Us page.
   All classes prefixed .cu- — zero conflict
   with style.css or any other page CSS.
   ========================================== */

/* ── Page base ─────────────────────────── */
.cu-page .cu-main {
    background: #f9f7f4;
    padding-bottom: 52px;
}

/* ── Breadcrumb ─────────────────────────── */
.cu-breadcrumb {
    padding: 14px 0 10px;
}

.cu-breadcrumb .breadcrumb {
    font-size: 13px;
    margin: 0;
    background: none;
    padding: 0;
}

.cu-breadcrumb .breadcrumb-item a {
    color: #555;
    text-decoration: none;
    transition: color .2s;
}

.cu-breadcrumb .breadcrumb-item a:hover {
    color: #e8a020;
}

.cu-breadcrumb .breadcrumb-item.active {
    color: #1a1a1a;
    font-weight: 700;
}

.cu-breadcrumb .breadcrumb-item+.cu-breadcrumb .breadcrumb-item::before {
    color: #bbb;
}

.cu-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #bbb;
}

/* ── Hero Banner ────────────────────────── */
.cu-hero-banner {
    position: relative;
    background: #FAF7F2;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 290px;
    margin-bottom: 32px;
    border: 1px solid #e4e0d8;
    padding: 24px;
}

.cu-hero-text {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    max-width: 480px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(253, 250, 244, 0.95) 100%);
    border: 1px solid rgba(228, 224, 216, 0.7);
    border-radius: 20px;
    padding: 38px 44px;
    margin-top: 11rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cu-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: #1a3c34;
    margin: 0;
    line-height: 1.1;
}

.cu-hero-desc {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.cu-hero-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.cu-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

@media (max-width: 767px) {
    .cu-hero-banner {
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
        padding: 0;
        background: #FAF7F2;
    }

    .cu-hero-text {
        position: relative;
        max-width: 100%;
        padding: 28px 20px;
        border-radius: 18px 18px 0 0;
        border: none;
        border-bottom: 1px solid #e4e0d8;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
    }

    .cu-hero-img {
        position: relative;
        height: 220px;
        width: 100%;
        z-index: 1;
    }
}

/* ── Sections ───────────────────────────── */
.cu-section {
    margin-bottom: 36px;
}

.cu-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: #1a3c34;
    margin-bottom: 20px;
}

/* ══════════════════════════════════════════
   CONTACT INFO BOX (left column)
══════════════════════════════════════════ */
.cu-info-box {
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #e4e0d8;
    padding: 28px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cu-info-title {
    font-size: 17px;
    font-weight: 800;
    color: #1a1a1a;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 22px;
}

/* Each info row */
.cu-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #f0ece4;
}

.cu-info-item:first-of-type {
    padding-top: 0;
}

.cu-info-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.cu-info-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f2ede4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #1a3c34;
    flex-shrink: 0;
    margin-top: 2px;
}

.cu-info-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cu-info-content strong {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
    display: block;
}

.cu-info-content span {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
}

.cu-call-btn {
    display: block;
    width: 100%;
    background: #1a3c34;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    padding: 12px;
    border-radius: 9px;
    text-decoration: none;
    margin-top: 22px;
    transition: background .2s ease;
}

.cu-call-btn:hover {
    background: #2d6a4f;
    color: #fff;
}

/* ══════════════════════════════════════════
   CONTACT FORM BOX (right column)
══════════════════════════════════════════ */
.cu-form-box {
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #e4e0d8;
    padding: 28px 28px 24px;
    height: 100%;
}

.cu-form-title {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 22px;
}

/* Labels */
.cu-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 7px;
    font-family: 'Nunito', sans-serif;
}

/* Input with icon */
.cu-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.cu-input-icon {
    position: absolute;
    left: 13px;
    font-size: 15px;
    color: #aaa;
    pointer-events: none;
    z-index: 1;
}

.cu-input {
    width: 100%;
    border: 1.5px solid #ddd8d0;
    border-radius: 9px;
    padding: 11px 14px 11px 38px;
    font-size: 13px;
    font-family: 'Nunito', sans-serif;
    color: #333;
    background: #fafaf8;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.cu-input:focus {
    border-color: #1a3c34;
    box-shadow: 0 0 0 3px rgba(26, 60, 52, .08);
    background: #fff;
}

.cu-input.cu-input-error {
    border-color: #e63946;
}

/* Textarea */
.cu-textarea {
    width: 100%;
    border: 1.5px solid #ddd8d0;
    border-radius: 9px;
    padding: 11px 14px;
    font-size: 13px;
    font-family: 'Nunito', sans-serif;
    color: #333;
    background: #fafaf8;
    outline: none;
    resize: vertical;
    min-height: 120px;
    transition: border-color .2s, box-shadow .2s;
}

.cu-textarea:focus {
    border-color: #1a3c34;
    box-shadow: 0 0 0 3px rgba(26, 60, 52, .08);
    background: #fff;
}

.cu-textarea.cu-input-error {
    border-color: #e63946;
}

/* Submit button */
.cu-submit-btn {
    width: 100%;
    background: #e8a020;
    color: #fff;
    border: none;
    border-radius: 9px;
    padding: 14px;
    font-size: 15px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    transition: background .2s ease;
    letter-spacing: .02em;
}

.cu-submit-btn:hover {
    background: #d4911c;
}

.cu-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Success message */
.cu-success-msg {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #e0ede7;
    color: #1a5c36;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    padding: 14px 18px;
    border-radius: 9px;
    margin-top: 14px;
    border: 1px solid #a3cfbb;
}

.cu-success-msg i {
    font-size: 18px;
}

/* ══════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════ */
.cu-faq-section {
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid #e4e0d8;
    padding: 32px 28px;
}

.cu-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cu-faq-item {
    border-bottom: 1px solid #ede9e2;
}

.cu-faq-item:first-child {
    border-top: 1px solid #ede9e2;
}

.cu-faq-btn {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 6px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    color: #1a1a1a;
    cursor: pointer;
    text-align: left;
    transition: color .2s;
}

.cu-faq-btn:hover {
    color: #1a3c34;
}

.cu-faq-btn.cu-open {
    color: #1a3c34;
}

.cu-faq-btn.cu-open .cu-faq-toggle {
    transform: rotate(45deg);
    color: #e8a020;
}

.cu-faq-toggle {
    font-size: 20px;
    color: #888;
    transition: transform .3s ease, color .2s;
    flex-shrink: 0;
}

.cu-faq-body {
    display: none;
    padding: 0 8px 18px;
}

.cu-faq-body.cu-open {
    display: block;
}

.cu-faq-body p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ══════════════════════════════════════════
   CHANNEL CARDS (Call / Email / Live Chat)
══════════════════════════════════════════ */
.cu-channel-card {
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #e4e0d8;
    padding: 24px 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    transition: all .25s ease;
}

.cu-channel-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .1);
    border-color: #e8a020;
    transform: translateY(-3px);
}

/* Icon area */
.cu-channel-icon {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.cu-channel-icon--phone {
    background: #e8f4e8;
    color: #1a7a50;
}

.cu-channel-icon--email {
    background: #fef3e2;
    color: #e8a020;
}

.cu-channel-icon--chat {
    background: #1a3c34;
    color: #fff;
    border-radius: 50%;
}

/* Badge on phone icon */
.cu-channel-badge {
    position: absolute;
    bottom: -3px;
    right: -3px;
    background: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #1a7a50;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .15);
}

/* Info text */
.cu-channel-info {
    flex: 1;
}

.cu-channel-info h5 {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 4px;
    font-family: 'Nunito', sans-serif;
}

.cu-channel-info strong {
    font-size: 15px;
    font-weight: 800;
    color: #1a1a1a;
    display: block;
    margin-bottom: 5px;
}

.cu-channel-info p {
    font-size: 13px;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

/* CTA button */
.cu-channel-btn {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    padding: 11px 18px;
    border-radius: 9px;
    text-decoration: none;
    transition: all .2s ease;
    margin-top: 4px;
}

.cu-channel-btn--dark {
    background: #1a3c34;
    color: #fff;
    border: none;
}

.cu-channel-btn--dark:hover {
    background: #2d6a4f;
    color: #fff;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 767px) {
    .cu-form-box {
        padding: 20px 16px;
    }

    .cu-info-box {
        padding: 20px 16px;
    }

    .cu-faq-section {
        padding: 22px 16px;
    }

    .cu-channel-card {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 14px;
    }

    .cu-channel-info {
        flex: 1;
        min-width: 140px;
    }

    .cu-channel-btn {
        width: auto;
        padding: 10px 20px;
    }
}

@media (max-width: 575px) {
    .cu-channel-card {
        flex-direction: column;
    }

    .cu-channel-btn {
        width: 100%;
    }
}