/* Enhanced Contact Form and Info Box Styling */

/* Contact Wrapper - Improved spacing and background */
.contact-wrapper {
    padding: 7rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

/* Contact Content - Centered layout */
.contact-content-centered {
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Form - Enhanced styling */
.contact-form {
    background: white;
    padding: 3.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.15);
    border: 1px solid rgba(0, 123, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.contact-form:hover::before {
    transform: scaleX(1);
}

.contact-form h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Info Box - Enhanced styling */
.info-box {
    background: white;
    padding: 3.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.15);
    border: 1px solid rgba(0, 123, 255, 0.1);
    height: fit-content;
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.info-box:hover::before {
    transform: scaleX(1);
}

.info-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2.5rem;
    position: relative;
}

.info-box h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
}

/* Contact Item - Enhanced styling */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 1.5rem;
    color: white;
    background: linear-gradient(135deg, #007bff, #0056b3);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(0, 123, 255, 0.3);
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-item p, .contact-item a {
    color: #64748b;
    font-size: 1.1rem;
}

.contact-item a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Trust Indicators - Enhanced styling */
.trust-indicators {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    position: relative;
}

.trust-indicators::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
}

.trust-indicators h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.trust-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    color: #64748b;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.trust-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

.trust-list li:hover {
    transform: translateX(5px);
    color: #334155;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form, .info-box {
        padding: 2.5rem;
    }
}