/* ================================================================
   Contact Us Page — contact-us.css
   Mirrors the visual language of about.css (Inter / soft cards / blue accents)
   ================================================================ */

/* ---- Font ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body.contact-us-template {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #4b5563;
}

/* ---- Floating Chat Button (reuses pattern from about) ---- */
.contact-chat-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 50;
    background: #0084ff;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 132, 255, 0.3);
    transition: background 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-chat-btn:hover {
    background: #0070e0;
    box-shadow: 0 15px 35px rgba(0, 132, 255, 0.35);
    color: #fff;
}

/* ================================================================
   HERO
   ================================================================ */
.contact-hero {
    position: relative;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
    padding: 6rem 1.5rem 5rem;
    text-align: center;
    overflow: hidden;
}

.contact-hero::before,
.contact-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    pointer-events: none;
}

.contact-hero::before {
    width: 320px;
    height: 320px;
    background: rgba(0, 132, 255, 0.18);
    top: -80px;
    left: -80px;
}

.contact-hero::after {
    width: 380px;
    height: 380px;
    background: rgba(124, 58, 237, 0.14);
    bottom: -120px;
    right: -100px;
}

.contact-hero__inner {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    z-index: 1;
}

.contact-hero__eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0084ff;
    background: rgba(0, 132, 255, 0.1);
    padding: 0.4rem 0.9rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.contact-hero__title {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 1.25rem;
}

.contact-hero__subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}

/* ================================================================
   CONTACT GRID (form + info)
   ================================================================ */
.contact-grid-wrap {
    max-width: 1200px;
    margin: -3rem auto 5rem;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* ---- Form Card ---- */
.contact-form-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.12);
    padding: 2.5rem;
}

.contact-form-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.5rem;
}

.contact-form-card__subtitle {
    font-size: 0.9375rem;
    color: #6b7280;
    margin: 0 0 2rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form__field label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.contact-form__field label span {
    color: #ef4444;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 0.9375rem;
    color: #111827;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
    box-sizing: border-box;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
    outline: none;
    background: #fff;
    border-color: #0084ff;
    box-shadow: 0 0 0 3px rgba(0, 132, 255, 0.15);
}

.contact-form__field textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}

.contact-form__field select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%236b7280%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
}

.contact-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.9rem 1.75rem;
    background: #0084ff;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
    box-shadow: 0 8px 20px rgba(0, 132, 255, 0.25);
}

.contact-form__submit:hover {
    background: #0070e0;
    box-shadow: 0 12px 26px rgba(0, 132, 255, 0.35);
}

.contact-form__submit:active {
    transform: translateY(1px);
}

/* ---- Info Cards (right column) ---- */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -12px rgba(0, 0, 0, 0.12);
}

.contact-info-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-info-card__icon--blue {
    background: rgba(0, 132, 255, 0.1);
    color: #0084ff;
}

.contact-info-card__icon--green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.contact-info-card__icon--purple {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

.contact-info-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.5rem;
}

.contact-info-card__text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 0 0.75rem;
}

.contact-info-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact-info-card__list a {
    color: #0084ff;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.15s;
}

.contact-info-card__list a:hover {
    color: #0070e0;
    text-decoration: underline;
}

.contact-info-card__address {
    font-style: normal;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4b5563;
}

/* ================================================================
   CTA / PARALLAX BANNER
   ================================================================ */
.contact-cta {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.contact-cta__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.contact-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(0, 132, 255, 0.55) 100%);
    z-index: 1;
}

.contact-cta__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 4rem 1.5rem;
    color: #fff;
}

.contact-cta__title {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
}

.contact-cta__title strong {
    color: #11998e;
}

.contact-cta__text {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin: 0 0 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-cta__text strong {
    color: #fff;
    font-weight: 600;
}

.contact-cta__btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #fff;
    color: #0084ff;
    border-radius: 9999px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.1s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-cta__btn:hover {
    background: #0084ff;
    color: #fff;
    transform: translateY(-1px);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-hero {
        padding: 4.5rem 1.25rem 4rem;
    }

    .contact-hero__title {
        font-size: 2.25rem;
    }

    .contact-grid-wrap {
        margin-top: -2rem;
        padding: 0 1rem;
    }

    .contact-form-card {
        padding: 1.75rem;
    }
}

@media (max-width: 600px) {
    .contact-hero__title {
        font-size: 1.875rem;
    }

    .contact-hero__subtitle {
        font-size: 1rem;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .contact-cta__title {
        font-size: 1.625rem;
    }

    .contact-chat-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 0.65rem 1.15rem;
        font-size: 0.8125rem;
    }
}