/* Contact Form Styles */

/* Contact form container */
.contact-content {
    line-height: 1.6;
    background-color: rgba(8, 4, 28, 0.88);
    padding: 25px;
    border-radius: 10px;
}

/* Contact form headings */
.contact-content h3 {
    color: #fff;
    margin-bottom: 1.5rem;
}

/* Contact form labels */
#contactForm .form-label {
    color: #898989;
    font-weight: 100;
}

/* Contact form itself */
#contactForm {
    background-color: rgba(8, 4, 28, 0.88);
    border: none;
    box-shadow: none;
}

/* Glass card container */
.glass-card {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
    /* Adjust padding for smaller screens */
    .glass-card-body {
        padding: 15px;
    }
    
    .contact-content {
        padding: 15px;
    }
    
    /* Make form elements full width on mobile */
    #contactForm .form-control {
        width: 100%;
    }
    
    /* Increase font size for better readability on mobile */
    #contactForm .form-label {
        font-size: 1.1rem;
    }
    
    /* Make submit button full width on mobile */
    #contactForm .btn-primary {
        width: 100%;
        padding: 15px;
    }
    
    /* Reduce top margin on mobile */
    .container.mt-5 {
        margin-top: 20px !important;
    }
    
    /* Custom class for mobile margin */
    .mt-mobile-80 {
        margin-top: 5rem;
    }
    
    @media (max-width: 768px) {
        .mt-mobile-80 {
            margin-top: 20px !important;
        }
    }
    
    /* Add margin at the bottom to prevent content from going under footer */
    #contactForm {
        margin-bottom: 70px;
    }
    
    /* Style the submit button to ensure it's visible */
    #contactForm .btn-primary {
        margin-bottom: 20px;
        position: relative;
        z-index: 10;
    }
    
    /* Responsive styling for contact form */
    @media (max-width: 768px) {
        #contactForm {
            padding: 15px;
        }
        
        #contactForm .form-control {
            font-size: 14px;
        }
    }
}

/* Glass card body */
.glass-card-body {
    padding: 25px;
}

/* Primary button styling */
#contactForm .btn-primary {
    background-image: linear-gradient(to right, var(--button-gradient-left), var(--button-gradient-right));
    border: none;
    color: var(--text-color-white);
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
}

/* Primary button hover state */
#contactForm .btn-primary:hover {
    background-image: linear-gradient(to right, var(--button-gradient-hover-left), var(--button-gradient-hover-right));
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}