.section-contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.section-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8E7037, transparent);
}

.section-contact::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(142, 112, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.section-contact .contact .text {
    padding-right: 30px;
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-contact .contact .text h2 {
    font-size: 42px;
    color: #232323;
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
}

.section-contact .contact .text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #8E7037, transparent);
    animation: slideRight 1s ease-out;
}

@keyframes slideRight {
    from { width: 0; }
    to { width: 70px; }
}

.section-contact .contact .text p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
    font-size: 15px;
}

.section-contact .contact .text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-contact .contact .text ul li {
    padding: 18px 20px;
    color: #555;
    font-size: 15px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
    background: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
    border-left: 3px solid transparent;
}

.section-contact .contact .text ul li:hover {
    padding-left: 30px;
    color: #8E7037;
    border-left-color: #8E7037;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.section-contact .contact .text ul li i {
    color: #8E7037;
    margin-right: 15px;
    font-size: 20px;
    width: 25px;
    display: inline-block;
}

.section-contact .contact .text ul li a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.section-contact .contact .text ul li:hover a {
    color: #8E7037;
}

.section-contact .contact-form {
    background: #fff;
    padding: 50px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-contact .contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #8E7037, #232323);
    border-radius: 10px 10px 0 0;
}

.section-contact .field-text,
.section-contact .field-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.section-contact .field-text:focus,
.section-contact .field-textarea:focus {
    border-color: #8E7037;
    outline: none;
    box-shadow: 0 0 15px rgba(142, 112, 55, 0.2);
    background: #fafafa;
    transform: translateY(-2px);
}

.section-contact .field-textarea {
    resize: vertical;
    min-height: 150px;
}

.section-contact .btn-room {
    background: linear-gradient(135deg, #8E7037 0%, #6d5729 100%);
    color: #fff;
    padding: 16px 50px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: all 0.4s;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.section-contact .btn-room::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.section-contact .btn-room:hover::before {
    width: 300px;
    height: 300px;
}

.section-contact .btn-room:hover {
    background: linear-gradient(135deg, #232323 0%, #000 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
    .section-contact {
        padding: 70px 0;
    }
    
    .section-contact .contact .text {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .section-contact .contact-form {
        padding: 40px 25px;
    }
}
