.elementor-21 .elementor-element.elementor-element-2171182{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-d1e58f2 */.contact-section {
    background: linear-gradient(135deg, #f5f0e6, #e8dcc8);
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
    color: #000;
}

/* Title */
.contact-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 10px;
    animation: fadeDown 1s ease;
}

.contact-subtitle {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeUp 1s ease;
}

/* Layout */
.contact-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* Info Box */
.contact-info {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.4);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(184,150,90,0.3);
    animation: slideLeft 1s ease;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info p {
    margin: 10px 0;
}

/* Social Icons */
.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 22px;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
}

/* Form */
.contact-form {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.4);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(184,150,90,0.3);
    animation: slideRight 1s ease;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    outline: none;
}

.contact-form textarea {
    height: 120px;
}

/* Button */
.contact-form button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(45deg, #b8965a, #d4b06a);
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    box-shadow: 0 5px 20px rgba(184,150,90,0.5);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}/* End custom CSS */