/* Shared Footer Styles */
.site-footer {
    background-color: #F2F2F2; /* Very light gray footer background */
    padding: 40px 0;
    border-top: 1px solid #e5e5e5;
}

.footer-text {
    color: #999;
    font-size: 12px;
    line-height: 1.8;
    margin: 0;
}

/* Container helper (in case it's not defined in the parent page) */
.site-footer .container {
    max-width: 1232px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Shared Contact Form Styles */
.contact-form-wrapper {
    max-width: 1232px;
    margin: 0 auto;
}

.form-control-custom, .form-select-custom {
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    padding: 15px;
    font-size: 14px;
    background-color: #fff;
}

.form-control-custom:focus, .form-select-custom:focus {
    box-shadow: none;
    border-color: #007bff;
}

.form-control-custom::placeholder {
    color: #999;
}

.btn-submit {
    background-color: #0056ff; /* Deeper blue matching UI */
    padding: 12px 60px;
    font-size: 16px;
    border-radius: 4px;
    border: none;
    color: white;
}

.btn-submit:hover {
    background-color: #0046d1;
    color: white;
}

/* Sleek Dark Notification Bar */
.notification-bar-container {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3000;
    pointer-events: none;
}

.notification-bar {
    background: #222222;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.notification-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.notification-icon.success {
    background-color: #4CAF50;
}

.notification-icon.error {
    background-color: #F44336;
}

.notification-text {
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

/* Remove blue focus outline from close buttons in modals/toasts */
.btn-close:focus {
    box-shadow: none;
    outline: none;
}
