/* =============================================
   CONTACT.CSS — Vividhity Ventures
   Matches screenshot: bg image, green circle
   icons, black card, light grey inputs
   ============================================= */

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("../images/contact us.png");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    filter: brightness(0.52);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    z-index: 1;
}

/* ── WRAPPER ── */
.contact-wrapper {
    max-width: 1160px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* ── LEFT INFO ── */
.contact-info {
    color: #fff;
}

.contact-info h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.15;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

/* Green circle — exactly like screenshot */
.info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #085394;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(32, 201, 151, 0.4);
}

.info-text {
    font-size: 16px;
    color: #fff;
    line-height: 1.65;
    padding-top: 8px;
}

/* ── RIGHT: DARK CARD ── */
.contact-card {
    background: rgba(0, 0, 0, 0.82) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 10px;
    padding: 36px 32px;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.contact-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: #fff;
}

/* ── INPUTS — light grey like screenshot ── */
.input {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 14px;
    background: rgba(240, 242, 248, 0.92);
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: #1a1a2e;
    box-sizing: border-box;
    outline: none;
    transition: box-shadow 0.2s, background 0.2s;
}

.input::placeholder {
    color: #94a3b8;
}

.input:focus {
    background: #fff;
    box-shadow: 0 0 0 2px rgba(32, 201, 151, 0.4);
}

.input option {
    background: #1a1a2e;
    color: #fff;
}

textarea.input {
    resize: vertical;
    min-height: 110px;
}

/* ── PHONE ROW ── */
.phone-row {
    display: flex;
    gap: 8px;
    margin-bottom: 0;
}

.phone-row .input {
    margin-bottom: 14px;
}

/* ── CAPTCHA ── */
.captcha-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(240, 242, 248, 0.92);
    border-radius: 4px;
    padding: 12px 14px;
    margin-bottom: 16px;
}

.captcha-check {
    width: 20px;
    height: 20px;
    border: 2px solid #0e7490;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0e7490;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.captcha-text {
    flex: 1;
    font-size: 14px;
    color: #334155;
    font-family: 'DM Sans', sans-serif;
}

.captcha-logo {
    font-size: 9px;
    text-align: right;
    color: #94a3b8;
    line-height: 1.4;
}

/* ── SUBMIT BUTTON — white like screenshot ── */
.btn-submit {
    background: #fff;
    border: 1.5px solid #fff;
    border-radius: 4px;
    color: #1a1a2e;
    padding: 12px 28px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: block;
}

.btn-submit:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

/* ── MAP ── */
.map-section {
    width: 100%;
    line-height: 0;
}

.map-section iframe {
    width: 100%;
    height: 430px;
    border: 0;
    display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        padding: 80px 24px 60px;
        min-height: auto;
    }

    .contact-card {
        padding: 28px 22px;
    }
}

@media (max-width: 500px) {
    .phone-row {
        flex-direction: column;
    }
}