/* Custom CSS overrides for Shahzad Agencies */

/* Footer link hover color - lighter shade of #26009a for better visibility on dark background */
.rs-footer a:hover {
    color: #6b4dd9 !important;
}

.rs-footer .contact-info a:hover,
.rs-footer .address-info a:hover,
.rs-footer .phn-number a:hover,
.rs-footer .email a:hover {
    color: #6b4dd9 !important;
}

/* Footer bottom copyright link hover */
.footer-bottom-section a:hover {
    color: #6b4dd9 !important;
}

/* Contact Form Styling Improvements */
#contact-form {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(38, 0, 154, 0.1);
}

#contact-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

#contact-form .form-control:focus {
    border-color: #26009a;
    background: #fff;
    box-shadow: 0 0 0 0.2rem rgba(38, 0, 154, 0.15);
    outline: none;
}

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

#contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

#contact-form #captcha-question {
    display: block;
    color: #26009a;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

#contact-form .primary-btn {
    width: 100%;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    background: linear-gradient(135deg, #26009a 0%, #3d1bb8 100%);
    box-shadow: 0 4px 12px rgba(38, 0, 154, 0.3);
}

#contact-form .primary-btn:hover {
    background: linear-gradient(135deg, #1f0077 0%, #2d1492 100%);
    box-shadow: 0 6px 16px rgba(38, 0, 154, 0.4);
    transform: translateY(-2px);
}

#contact-form .primary-btn:active {
    transform: translateY(0);
}

#contact-form .primary-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Form Messages Styling */
#form-messages {
    margin-bottom: 20px;
    border-radius: 6px;
    animation: slideDown 0.3s ease;
}

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

#form-messages.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left: 4px solid #28a745;
}

#form-messages.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-left: 4px solid #dc3545;
}

/* Contact Information Section */
.contact-list {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #26009a;
}

.contact-list .info-text {
    margin-bottom: 15px;
}

.contact-list .info-text b {
    color: #26009a;
    display: block;
    margin-bottom: 5px;
}

.contact-list a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: #26009a;
    text-decoration: underline;
}

/* Title Styling */
.title-headding {
    color: #26009a;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #26009a;
    display: inline-block;
}
