   /* Contact Form animation support */
/* Prevent flash before animation */
.contact-section .contact-form-wrapper,
.contact-section .contact-info,
.contact-section .form-group,
.contact-section .cta,
.contact-section .info-block,
.contact-section .divider {
    opacity: 0;
}

/* Smooth transitions */
.input-wrap {
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.info-block {
    transition: transform 0.3s ease;
}

.info-block h3 {
    transition: color 0.3s ease;
}

    .contact-section {
    /* background: radial-gradient(circle at top left, #0e1b1f, #05090b); */
    color: #ffffff;
}
.contact-section .container{
    padding-top: 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: stretch;
}

.contact-form-wrapper {
    background-color: var(--almost-black);
    border-radius: 40px;
    padding: 50px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 4px;
}

.input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #0b1519;
    border: 1px solid #1f2d33;
    border-radius: 12px;
    padding: 14px 16px;
}

.input-wrap input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    width: 100%;
}
.input-wrap input:lang(ar){
    text-align: right;
}
.input-wrap input,
textarea,
.input-wrap input::placeholder,
textarea::placeholder {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(14px, 0.833vw, 16px);
    line-height: clamp(20px, 1.25vw, 24px);
    font-weight: 400;
    color: var(--gayser);
}
.input-wrap input:focus::placeholder,
textarea:focus::placeholder {
    opacity: 0;
    transition: opacity 0.2s ease;
}
textarea {
    width: 100%;
    min-height: 160px;
    background: #0b1519;
    border: 1px solid #1f2d33;
    border-radius: 14px;
    padding: 16px;
    color: #fff;
    resize: none;
}

.form-group.full {
    grid-column: 1 / -1;
    margin-top: 30px;
    margin-bottom: 30px;
}

.submit-btn {
    margin-top: 30px;
    background: #ffd400;
    color: #000;
    border: none;
    border-radius: 10px;
    padding: 14px 26px;
    font-weight: 600;
    cursor: pointer;
}

.submit-btn:hover {
    opacity: 0.9;
}

/* RIGHT SIDE */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.info-block h3 {
    color: #64e3ff;
    font-size: 22px;
    margin-bottom: 6px;
}

.info-block p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.info-block a,
.info-block span {
    display: block;
    color: #ffffff;
    font-size: 16px;
}

.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #2a3a40, transparent);
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }

}
@media (max-width: 768px) {
    .contact-form-wrapper{
        padding: 60px 17px;
    }
    .input-wrap input::placeholder {
        font-size: clamp(14px, 0.833vw, 16px);
        line-height: clamp(20px, 1.25vw, 24px);

    }
    .input-wrap input::placeholder,
textarea::placeholder {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(14px, 0.833vw, 16px);
    line-height: clamp(20px, 1.25vw, 24px);
    font-weight: 400;
    color: var(--gayser);
}
}
