
.contact-banner {
    background: #d8c9bc;
    padding: 30px 10px;
    text-align: center;
    color: #20363a;
    position: relative;
}

.contact-banner h1 {
    font-size: 48px;
    margin-bottom: 15px;
    position: relative;
    margin-top:30px;
}

.contact-banner p {
    font-size: 21px;
    opacity: 0.9;
}


.contact-main {
    background: white;
    padding: 150px 20px 160px 20px;
}

.contact-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: nowrap;   
}


.contact-left {
    flex: 0 0 calc(50% - 30px);
    margin-left: 20px;  
}

.contact-left h2 {
    font-size: 34px;
    color: #3b281c;
    margin-bottom: 15px;
}

.contact-sub {
    color: #3b281c;
    margin-bottom: 40px;
    font-size: 18px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.contact-item span {
    width: 47px;              
    height: 47px;             
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: #f26522;
    color: #fff;
    border-radius: 8px;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: #3b281c;
    font-size:18px;
}

.contact-item p {
    color: #3b281c;
    font-size: 16px;
}

.contact-right {
    flex: 0 0 calc(50% - 30px);
    background: #ffffff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(111, 78, 55, 0.15);
}

.contact-right h3 {
    margin-bottom: 30px;
    color: #3b281c;
    font-size: 30px;
    margin-top:-10px
}


.contact-right input,
.contact-right textarea {
    width: 100%;
    padding: 14px 15px;
    margin-bottom: 20px;
    border: 2px solid #d8c7b8;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.3s ease;
    outline: none;
    background: white;
}

.contact-right input::placeholder,
.contact-right textarea::placeholder {
    color: #3b281c  
}

.contact-right input:focus,
.contact-right textarea:focus {
    border-color: #f05a28;
    background: #ffffff;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row input {
    flex: 1;
}

.contact-right textarea {
    height: 140px;
    resize: none;
}

.contact-right button {
    width: 100%;
    padding: 15px;
    background: #f05a28;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-right button:hover {
    background: #6f4e37;
    transform: translateY(-2px);
}

.g-recaptcha {
    margin-bottom: 20px;
}


@media (max-width: 768px) {

    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .form-row {
        flex-direction: column;
    }

}

/* =========================================
   CONTACT RESPONSIVE IMPROVEMENTS
========================================= */

@media (max-width: 768px) {

    .contact-main {
        padding: 60px 20px;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .contact-left h2 {
        font-size: 28px;
    }

    .contact-sub {
        font-size: 16px;
    }

    .contact-right {
        padding: 30px;
    }

    .contact-right h3 {
        font-size: 24px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

}


/* =========================================
   SMALL MOBILE (480px)
========================================= */

@media (max-width: 480px) {

    .contact-banner {
        padding: 20px 15px;
    }

    .contact-banner h1 {
        font-size: 30px;
        margin-top: 15px;
    }

    .contact-banner p {
        font-size: 16px;
    }

    .contact-left h2 {
        font-size: 22px;
    }

    .contact-item {
        gap: 12px;
        margin-bottom: 25px;
    }

    .contact-item span {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .contact-item h4 {
        font-size: 16px;
    }

    .contact-item p {
        font-size: 14px;
    }

    .contact-right {
        padding: 20px;
    }

    .contact-right input,
    .contact-right textarea {
        font-size: 14px;
        padding: 12px;
    }

    .contact-right button {
        font-size: 14px;
        padding: 13px;
    }

}