
.contact-section {
    padding: 40px 0;
    background-image: url(../images/bg-all-img.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.top-info {
    padding: 34px 0 10px;
    /* background: white; */
}

.info-card {
    background: #fff;
    border-radius: 16px;
    padding: 11px 20px;
    border: 1px solid #e9eef8;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(8,22,46,0.04);
    height: 100%;
    transition: 0.4s
}

    .info-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 36px rgba(8,22,46,0.08)
    }

.topline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,#00c2b2,#00a99d);
    transform-origin: left;
    transform: scaleX(0)
}

.info-card .icon {
    /* width: 36px; */
    /* height: 36px; */
    /* background: #eefaf8; */
    /* border-radius: 10px; */
    /* display: grid; */
    /* place-items: center; */
    /* color: #00a99d; */
    /* font-size: 16px; */
    /* margin-bottom: 12px; */
}

.info-card h5 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 4px
}

.info-card .muted {
    font-size: 14px;
    font-weight: 600;
    color: #08162e;
    margin-bottom: 6px
}

.info-card .small {
    font-size: 12px;
    color: #6b7a94;
    line-height: 1.5;
    margin: 0;
}

/* Main contact */
.contact-main {
    padding: 20px 0 60px
}

.reveal-left {
    opacity: 1;
    transform: translate(0);
}

.reveal-right {
    opacity: 1;
    transform: translate(0);
}
/* Form card */
.form-card {
    background: #fff;
    border-radius: 8px;
    padding: 18px;
    border: 1px solid #e9eef8;
    box-shadow: 0 10px 40px rgba(8,22,46,0.06)
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* margin-bottom: 1px; */
    gap: 16px;
}

    .form-header h3 {
        font-size: 18px;
        font-weight: 700
    }

    .form-header p {
        /* font-size: 11px; */
        /* color: #6b7a94; */
        /* margin-top: 4px; */
        /* letter-spacing: 0.02em; */
    }

.badge-soft {
    background: #eefaf8;
    color: #138286;
    border: 1px solid #d4f2ef;
    padding: 3px 9px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap
}

label {
    font-size: 10px;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: #5a6a85;
    margin-bottom: 6px;
    display: block;
    text-transform: uppercase
}

.inp {
    width: 100%;
    background: #f7f9ff;
    border: 1px solid #e3e9f5;
    /* border-radius: 8px; */
    padding: 8px 10px;
    font-size: 13px;
    outline: none;
    transition: 0.3s;
    color: #08162e
}

    .inp::placeholder {
        color: #9aa8c3;
        font-size: 12px
    }

    .inp:focus {
        border-color: #00c2b2;
        box-shadow: 0 0 0 3px rgba(0,194,178,0.12);
        background: #fff
    }

.select-wrap {
    position: relative
}

    .select-wrap i {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
        color: #6b7a94;
        font-size: 12px
    }

    .select-wrap select {
        appearance: none;
        cursor: pointer
    }

.textarea {
    /* min-height: 100px; */
    resize: none
}

.check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 11px;
    color: #6b7a94;
    line-height: 1.5;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    cursor: pointer
}

    .check input {
        width: 16px;
        height: 16px;
        accent-color: #00a99d;
        margin-top: 2px;
        flex-shrink: 0
    }



/* Location card - RIGHT SIDE ONLY */
.loc-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e9eef8;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(8,22,46,0.06)
}

.loc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px 10px;
    border-bottom: 1px solid #f0f3fa
}

    .loc-header h4 {
        font-size: 16px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 0;
    }

        .loc-header h4 i {
            color: #00a99d
        }

.top-info .icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #078b78;
    background: #eaf8f5;
    margin-bottom: 10px;
    border-radius: 12px;
}

    .top-info .icon svg {
        width: 24px;
        height: 24px;
        display: block;
    }
