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

.contact-header-elegant {
    text-align: center;
    margin-bottom: 60px;
}

.contact-badge-elegant {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, #522113 0%, #8B3A1F 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 20px;
}

.contact-title-elegant {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.contact-title-elegant .gradient-text {
    background: linear-gradient(135deg, #522113 0%, #8B3A1F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle-elegant {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Form Section */
.contact-form-card-elegant {
    background: #fff;
    border-radius: 25px;
    padding: 45px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form-card-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #522113 0%, #8B3A1F 100%);
}

.form-title-elegant {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-title-elegant i {
    color: #522113;
    font-size: 1.5rem;
}

.form-group-elegant {
    margin-bottom: 25px;
}

.form-group-elegant label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.form-group-elegant .required {
    color: #e74c3c;
    margin-left: 3px;
}

.input-wrapper-elegant {
    position: relative;
}

.input-icon-elegant {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: #522113;
    font-size: 16px;
    z-index: 1;
    transition: all 0.3s ease;
}

.form-control-elegant {
    width: 100%;
    padding: 15px 20px 15px 50px;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    color: #333;
}

.form-control-elegant:focus {
    outline: none;
    border-color: #522113;
    background: #fff;
    box-shadow: 0 5px 20px rgba(82, 33, 19, 0.15);
}

.form-control-elegant:focus + .input-icon-elegant {
    color: #8B3A1F;
    transform: translateY(-50%) scale(1.2);
}

textarea.form-control-elegant {
    resize: vertical;
    min-height: 130px;
    padding-top: 15px;
}

.submit-wrapper-elegant {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-submit-elegant {
    flex: 1;
    padding: 18px 40px;
    background: linear-gradient(135deg, #522113 0%, #8B3A1F 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(82, 33, 19, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-submit-elegant::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;
}

.btn-submit-elegant:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit-elegant:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(82, 33, 19, 0.6);
}

.form-loader-elegant {
    display: none;
}

.form-messages-elegant {
    margin-top: 20px;
}

.alert-message-elegant {
    padding: 15px 20px;
    border-radius: 12px;
    display: none;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
}

.alert-success-elegant {
    background: rgba(40, 167, 69, 0.1);
    border: 2px solid #28a745;
    color: #155724;
}

.alert-error-elegant {
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid #dc3545;
    color: #721c24;
}

/* Info Section */
.contact-info-card-elegant {
    background: #fff;
    border-radius: 25px;
    padding: 45px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.info-title-elegant {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.info-description-elegant {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.contact-info-items-elegant {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item-elegant {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 18px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-info-item-elegant:hover {
    background: #fff;
    border-color: #522113;
    transform: translateX(-10px);
    box-shadow: 0 10px 30px rgba(82, 33, 19, 0.15);
}

.contact-icon-box-elegant {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #522113 0%, #8B3A1F 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
}

.contact-info-item-elegant:hover .contact-icon-box-elegant {
    transform: rotate(360deg) scale(1.1);
}

.contact-details-elegant {
    flex: 1;
}

.contact-details-elegant h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-details-elegant a {
    color: #522113;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-details-elegant a:hover {
    color: #8B3A1F;
    text-decoration: underline;
}

.contact-details-elegant span {
    color: #666;
    font-size: 1rem;
}

/* Map Section */
.map-section-elegant {
    margin-top: 60px;
}

.map-header-elegant {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #522113 0%, #8B3A1F 100%);
    color: #fff;
    border-radius: 20px 20px 0 0;
}

.map-header-elegant h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.map-wrapper-elegant {
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.map-wrapper-elegant iframe {
    display: block;
    width: 100%;
    height: 500px;
    border: none;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-section-elegant {
        padding: 70px 0;
    }
    
    .contact-title-elegant {
        font-size: 2.5rem;
    }
    
    .contact-form-card-elegant,
    .contact-info-card-elegant {
        padding: 35px;
    }
}

@media (max-width: 767px) {
    .contact-title-elegant {
        font-size: 2rem;
    }
    
    .contact-form-card-elegant,
    .contact-info-card-elegant {
        padding: 25px;
    }
    
    .form-title-elegant,
    .info-title-elegant {
        font-size: 1.5rem;
    }
    
    .contact-info-item-elegant {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon-box-elegant {
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .contact-section-elegant {
        padding: 50px 0;
    }
    
    .submit-wrapper-elegant {
        flex-direction: column;
    }
    
    .btn-submit-elegant {
        width: 100%;
    }
    
    .map-wrapper-elegant iframe {
        height: 350px;
    }
}
