/* This is the css for the contact page */
.healora-connect {
    padding: 100px 8%;
    background: #f4f9fc;
}

.connect-layout {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.connect-visual {
    flex: 1;
}

.connect-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.connect-panel {
    flex: 1.2;
    background: #ffffff;
    padding: 60px;
    border: 2px solid #1b262c;
    animation: fadeUp 0.8s ease forwards;
}

.connect-panel h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1b262c;
}

.connect-grid {
    display: flex;
    gap: 60px;
}

.connect-fields {
    flex: 1;
}

.connect-info {
    flex: 1;
}

.field-group {
    margin-bottom: 25px;
}

.field-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #1b262c;
}

.field-group input,
.field-group textarea,
.field-group select {
    width: 100%;
    border: none;
    border-bottom: 2px solid #1b262c;
    padding: 8px 0;
    background: transparent;
    outline: none;
    font-family: inherit;
    transition: 0.3s ease;
}

.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus {
    border-bottom: 2px solid #00B4D8;
}

.radio-row {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.radio-row label {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.form-message {
    margin-top: 12px;
    font-weight: 500;
}

.request-button {
    margin-top: 30px;
    background: #1b262c;
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.3s ease;
    font-weight: 500;
}

.request-button:hover {
    background: #00B4D8;
    transform: translateY(-2px);
}

.connect-info h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #1b262c;
}

.connect-info p {
    color: #555;
}


.socials {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.socials a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s ease;
}

.socials img {
    width: 24px;
    height: 24px;
}

.socials a:hover {
    background: #e6f4f7;
    transform: translateY(-3px);
}

/* This is the animation part*/

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* This is for the reponsivness of the page */
@media (max-width: 900px) {

    .healora-connect {
        padding: 60px 5%;
    }

    .connect-layout {
        flex-direction: column;
        gap: 40px;
    }

    .connect-visual {
        width: 100%;
    }

    .connect-visual img {
        height: auto;
        border-radius: 10px;
    }

    .connect-panel {
        width: 100%;
        padding: 30px;
        border-width: 1px;
    }

    .connect-panel h1 {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .connect-grid {
        flex-direction: column;
        gap: 30px;
    }

    .request-button {
        width: 100%;
    }

}