.elegant-contact-us .contact-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(to right, #667eea, #764ba2);
}
.elegant-contact-us .contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
}
.elegant-contact-us h1,
.elegant-contact-us p,
.elegant-contact-us label {
    color: white;
    font-family: 'Roboto', sans-serif;
}
.elegant-contact-us input,
.elegant-contact-us textarea {
    border: 1px solid white;
    background: transparent;
    color: white;
    padding: 10px;
    margin-bottom: 20px;
    width: 100%;
}
.elegant-contact-us input:focus,
.elegant-contact-us textarea:focus {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}
.elegant-contact-us button {
    background: linear-gradient(to right, #667eea, #764ba2);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
}
.elegant-contact-us button:hover {
    background: linear-gradient(to right, #764ba2, #667eea);
}
.elegant-contact-us button .loader {
    display: inline-block;
    border: 2px solid white;
    border-top: 2px solid transparent;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 0.75s linear infinite;
    margin-left: 10px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.elegant-contact-us .form-message {
    margin-top: 20px;
    color: white;
}

/* Success Modal Styles */
.elegant-contact-us .success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}
.elegant-contact-us .success-modal-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease-in-out;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.elegant-contact-us .success-modal-content h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 24px;
    font-family: 'Roboto', sans-serif;
}
.elegant-contact-us .success-modal-content p {
    color: white;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 20px;
}
.elegant-contact-us .success-modal-content button {
    background: linear-gradient(to right, #667eea, #764ba2);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: transform 0.2s;
}
.elegant-contact-us .success-modal-content button:hover {
    transform: translateY(-2px);
    background: linear-gradient(to right, #764ba2, #667eea);
}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9) translate(-50%, -50%); }
    to { opacity: 1; transform: scale(1) translate(-50%, -50%); }
}