* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background-color: #eaeaea;
}

/* Header Styles */
.contact-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background-color: #1a1a1a;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-header nav h4 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    max-width: 900px;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.contact-form-wrapper .form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-form-wrapper .form-control,
.contact-form-wrapper textarea {
    border-radius: 15px;
    border: 1px solid #9d9d9d;
    padding: 0.75rem 1rem;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper textarea:focus {
    border-color: #d6b82e;
    box-shadow: 0 0 0 0.2rem rgba(214, 184, 46, 0.25);
    outline: none;
}

.submit-btn {
    border: none;
    border-radius: 20px;
    padding: 0.75rem 3rem;
    font-size: 18px;
    background-color: #d6b82e;
    color: #000;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #c5a123;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(214, 184, 46, 0.3);
}

/* Contact Info Cards */
.contact-info-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-info-card .icon-wrapper {
    color: #d6b82e;
}

.contact-info-card h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Back Button */
.btn-outline-secondary {
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    transform: translateX(-5px);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .contact-form-wrapper {
        border-radius: 20px;
    }

    .submit-btn {
        width: 100%;
        padding: 0.75rem 2rem;
    }
}