/* ══════════════════════════════════════════════
   Contact Page Styles (ct- prefix)
   ══════════════════════════════════════════════ */

/* ── Page Background ── */
.bp-page {
    background: #EAF6FF;
}

/* ── Hero ── */
.ct-hero {
    background: #EAF6FF;
    padding: 100px 24px 40px;
    text-align: center;
    max-width: 100%;
}
.ct-hero__inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}
.ct-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #D0E8FB;
    border-radius: 24px;
    padding: 8px 20px;
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #3A8FC8;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(72,176,247,0.1);
}
.ct-hero h1 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 5vw, 40px);
    line-height: 1.1;
    color: #282828;
    margin-bottom: 12px;
}
.ct-hero__sub {
    font-family: 'Lora', serif;
    font-size: clamp(15px, 2vw, 17px);
    color: #707070;
    line-height: 1.6;
    max-width: 460px;
    margin: 0 auto;
    text-align: center;
}

/* ── Contact Options Grid ── */
.ct-options {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px 48px;
}
.ct-options__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.ct-opt {
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    display: block;
    position: relative;
    color: inherit;
}
.ct-opt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 14px 14px 0 0;
}
.ct-opt--chat::before { background: linear-gradient(90deg, #12C0C5, #0ea3a7); }
.ct-opt--phone::before { background: linear-gradient(90deg, #48B0F7, #3A8FC8); }
.ct-opt--email::before { background: linear-gradient(90deg, #FE8B7B, #e06b5d); }

.ct-opt:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.ct-opt__icon {
    font-size: 32px;
    margin-bottom: 14px;
}
.ct-opt__title {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #282828;
    margin-bottom: 4px;
}
.ct-opt__detail {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}
.ct-opt--chat .ct-opt__detail { color: #12C0C5; }
.ct-opt--phone .ct-opt__detail { color: #48B0F7; }
.ct-opt--email .ct-opt__detail { color: #FE8B7B; }

.ct-opt__sub {
    font-size: 12px;
    color: #A0A0A0;
}
.ct-opt__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #E8F5E9;
    border: 1px solid #C8E6C9;
    border-radius: 12px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #2E7D32;
    margin-top: 10px;
}
.ct-opt__dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4CD964;
    animation: ct-pulse 2s infinite;
}
@keyframes ct-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ── Main Content: Info + Form ── */
.ct-main {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px 56px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: start;
    text-align: left;
}

/* Left: Info */
.ct-info h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #282828;
    margin-bottom: 16px;
}
.ct-info__faq-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #D0E8FB;
    border-radius: 10px;
    padding: 14px 20px;
    text-decoration: none;
    margin-bottom: 28px;
    transition: all 0.2s ease;
    width: 100%;
    box-shadow: 0 2px 8px rgba(72,176,247,0.08);
}
.ct-info__faq-link:hover {
    border-color: #48B0F7;
    box-shadow: 0 4px 12px rgba(72,176,247,0.1);
}
.ct-info__faq-icon {
    font-size: 24px;
}
.ct-info__faq-text {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #3A8FC8;
}
.ct-info__faq-text span {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #888;
    margin-top: 2px;
}
.ct-info__faq-arrow {
    margin-left: auto;
    color: #B8B8B8;
    font-size: 16px;
}
.ct-info__section {
    margin-bottom: 24px;
}
.ct-info__label {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #48B0F7;
    margin-bottom: 8px;
}
.ct-info__text {
    font-size: 15px;
    color: #585858;
    line-height: 1.6;
}
.ct-info__text a {
    color: #48B0F7;
    text-decoration: none;
    font-weight: 500;
}
.ct-info__text a:hover {
    color: #3A8FC8;
    text-decoration: underline;
}

/* Right: Form */
.ct-form {
    background: #fff;
    border: 1px solid #D0E8FB;
    border-radius: 16px;
    padding: 32px;
    text-align: left;
}
.ct-form h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #282828;
    margin-bottom: 6px;
}
.ct-form__sub {
    font-size: 14px;
    color: #888;
    margin-bottom: 24px;
}
.ct-form__group {
    margin-bottom: 16px;
}
.ct-form__label {
    display: block;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #585858;
    margin-bottom: 6px;
}
.ct-form__label .req {
    color: #FE8B7B;
}
.ct-form__input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D0D0D0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    color: #282828;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
}
.ct-form__input:focus {
    border-color: #48B0F7;
}
.ct-form__input::placeholder {
    color: #B8B8B8;
}
textarea.ct-form__input {
    min-height: 120px;
    resize: vertical;
}
.ct-form__submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(180deg, #FE8B7B, #f47060);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(254,139,123,0.3);
    transition: all 0.25s ease;
    margin-top: 4px;
}
.ct-form__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(254,139,123,0.4);
}
.ct-form__note {
    text-align: center;
    font-size: 12px;
    color: #A0A0A0;
    margin-top: 12px;
}

/* ── reCAPTCHA & validation ── */
.ct-form .captcha-error {
    color: #e53935;
    font-size: 13px;
    margin-top: 4px;
    display: block;
}
.ct-form .message {
    margin-bottom: 16px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
}
.ct-form .message p.error {
    color: #e53935;
    background: #FFEBEE;
    padding: 12px 16px;
    border-radius: 8px;
}
.ct-form .message p.success {
    color: #2E7D32;
    background: #E8F5E9;
    padding: 12px 16px;
    border-radius: 8px;
}
.ct-form .hidden {
    display: none;
}
.ct-form .g-recaptcha {
    margin-bottom: 4px;
}

/* jQuery validation error styling */
.ct-form label.error {
    color: #e53935;
    font-size: 12px;
    margin-top: 4px;
    display: block;
    font-weight: 400;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .ct-options__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .ct-opt {
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
        padding: 20px;
    }
    .ct-opt__icon {
        margin-bottom: 0;
        font-size: 28px;
    }
    .ct-opt__badge {
        margin-top: 6px;
    }
    .ct-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
@media (max-width: 480px) {
    .ct-hero {
        padding: 40px 20px 32px;
    }
    .ct-options {
        padding: 0 20px 36px;
    }
    .ct-main {
        padding: 0 20px 40px;
    }
    .ct-form {
        padding: 24px;
    }
}
