.contact-us-container {
    min-height: 100vh;
    background: #E7F2F0;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-us-header {
    text-align: center;
    margin-bottom: 40px;
    color: #295C61;
}

    .contact-us-header h1 {
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 10px;
        color: #295C61;
    }

    .contact-us-header p {
        font-size: 1.1rem;
        color: #295C61;
        opacity: 0.8;
    }

.contact-us-form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    backdrop-filter: blur(10px);
}

.contact-us-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 600;
    color: #295C61;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control {
    border: 2px solid #D5E8E6;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

    .form-control:focus {
        outline: none;
        border-color: #295C61;
        box-shadow: 0 0 0 3px rgba(41, 92, 97, 0.1);
        background: white;
    }

    .form-control::placeholder {
        color: #999;
    }

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #295C61 0%, #1a3a3d 100%);
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .submit-btn:hover {
        background: linear-gradient(135deg, #1a3a3d 0%, #295C61 100%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(41, 92, 97, 0.3);
    }

    .submit-btn:active {
        transform: translateY(0);
    }

.alert {
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: none;
    font-weight: 500;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #155724;
    border-left: 4px solid #28a745;
}
.demochat {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px !important;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/* Dark mode support */
/*@media (prefers-color-scheme: dark) {
    .contact-us-container {
        background: linear-gradient(135deg, #295C61 0%, #1a3a3d 100%);
    }

    .contact-us-header h1,
    .contact-us-header p {
        color: #D5E8E6;
    }

    .contact-us-form-container {
        background: rgba(41, 92, 97, 0.95);
        color: #D5E8E6;
    }

    .form-label {
        color: #D5E8E6;
    }

    .form-control {
        background: rgba(213, 232, 230, 0.1);
        border-color: #295C61;
        color: #D5E8E6;
    }

        .form-control:focus {
            background: rgba(213, 232, 230, 0.2);
            border-color: #D5E8E6;
        }

        .form-control::placeholder {
            color: #D5E8E6;
            opacity: 0.7;
        }

    .submit-btn {
        background: linear-gradient(135deg, #D5E8E6 0%, #a8d5d0 100%);
        color: #295C61;
    }

        .submit-btn:hover {
            background: linear-gradient(135deg, #a8d5d0 0%, #D5E8E6 100%);
            color: #1a3a3d;
        }
}*/

/* Responsive design */
@media (max-width: 768px) {
    .contact-us-container {
        padding: 20px 15px;
    }

    .contact-us-header h1 {
        font-size: 2rem;
    }

    .contact-us-form-container {
        padding: 30px 20px;
    }

    .submit-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
