body {
    background: white;
}

.contact-section {
    display: flex;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    background: white;
}

/* LEFT SIDE */

.left-side {
    flex: 1;
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #2b2b2b;

    /* subtle texture */
    background:
        linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
        url("https://www.transparenttextures.com/patterns/cubes.png");
}

.left-side h1 {
    font-size: 44px;
    font-weight: 600;
    color: #ff652f;
    margin-bottom: 15px;
    animation: slideLeft 0.8s ease forwards;
    opacity: 0;
}

.left-side h3 {
    font-weight: 400;
    margin-bottom: 25px;
    color: #444;
    animation: slideLeft 1s ease forwards;
    opacity: 0;
}

.left-side p {
    max-width: 420px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    animation: slideLeft 1.2s ease forwards;
    opacity: 0;
}

.contact-info {
    margin-top: 20px;
    animation: slideLeft 1.4s ease forwards;
    opacity: 0;
}

.contact-info div {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
}

.contact-info i {
    font-size: 20px;
    color: #ff652f;
}

/* RIGHT SIDE */

.right-side {
    flex: 1;
    background: #ffffff;
    padding: 80px 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideRight 0.8s ease forwards;
    opacity: 0;
}

.form-box {
    width: 100%;
    max-width: 480px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-box input,
.form-box textarea {
    width: 100%;
    padding: 14px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin-bottom: 18px;
    transition: 0.3s ease;
}

.form-box input:focus,
.form-box textarea:focus {
    border-color: #ff652f;
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15);
    outline: none;
}

.form-box textarea {
    min-height: 120px;
    resize: vertical;
}

.form-box button {
    background: #ff652f;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

.form-box button:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

/* Animations */

@keyframes slideLeft {
    from {
        transform: translateX(-40px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideRight {
    from {
        transform: translateX(40px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive */

@media(max-width: 900px) {
    .contact-section {
        flex-direction: column;
    }

    .left-side,
    .right-side {
        padding: 50px 25px;
    }

    .form-row {
        flex-direction: column;
    }

    .form-box button {
        width: 100%;
    }
}