.contact-card-enhanced {
    background: linear-gradient(135deg, 
        rgba(105, 5, 233, 0.05) 0%, 
        rgba(192, 112, 255, 0.03) 50%,
        rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.contact-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(105, 5, 233, 0.02) 0%, 
        rgba(192, 112, 255, 0.01) 50%,
        rgba(255, 255, 255, 0.03) 100%);
    z-index: 1;
}

.contact-card-enhanced > .container {
    position: relative;
    z-index: 2;
}

/* ===== HERO SECTION ===== */
.contact-hero {
    margin-bottom: 3rem;
}

.contact-title {
    background: linear-gradient(135deg, #6905E9 0%, #7C01DD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(105, 5, 233, 0.3);
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.trust-stats {
    margin-top: 2rem;
}

.trust-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.trust-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(105, 5, 233, 0.3);
}

.stat-number {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ===== CONTACT INFO CARD ===== */
.contact-info-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-title {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.info-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Benefits List */
.benefits-list {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
    color: #ffffff;
}

.benefit-item i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Contact Methods */
.contact-methods {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.methods-title {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.method-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.method-item:last-child {
    border-bottom: none;
}

.method-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-right: 1rem;
}

.method-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method-value {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ===== CONTACT FORM CARD ===== */
.contact-form-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(105, 5, 233, 0.05) 0%, 
        rgba(192, 112, 255, 0.03) 50%,
        rgba(255, 255, 255, 0.05) 100%);
    z-index: 1;
}

.form-container {
    position: relative;
    z-index: 2;
}

.form-title {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Form Styling */
.form-container .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    padding: 0.875rem 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-container .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(105, 5, 233, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(105, 5, 233, 0.25);
    color: #ffffff;
}

.form-container .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-container label {
    color: #ffffff !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

/* Submit Button */
.form-container .btn-primary {
    background: linear-gradient(135deg, #6905E9 0%, #7C01DD 100%);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(105, 5, 233, 0.3);
}

.form-container .btn-primary:hover {
    background: linear-gradient(135deg, #5b05cc 0%, #6b01c4 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(105, 5, 233, 0.4);
}

/* Checkbox Styling */
.form-container .form-check-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.form-container .form-check-input:checked {
    background: linear-gradient(135deg, #6905E9 0%, #7C01DD 100%);
    border-color: #6905E9;
}

.form-container .form-check-label {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Security Badges */
.form-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.security-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.security-item i {
    color: #28a745;
    font-size: 1rem;
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 992px) {
    .contact-card-enhanced {
        padding: 2rem 1.5rem;
        margin: 1rem 0;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .trust-stat {
        padding: 1rem 0.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .contact-card-enhanced {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }
    
    .contact-hero {
        margin-bottom: 2rem;
    }
    
    .contact-title {
        font-size: 1.75rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .trust-stats .row {
        gap: 0.75rem;
    }
    
    .trust-stat {
        padding: 1rem 0.5rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .benefit-item {
        font-size: 0.95rem;
        padding: 0.5rem 0;
    }
    
    .method-item {
        padding: 0.75rem 0;
    }
    
    .method-value {
        font-size: 1rem;
    }
    
    .form-container .form-control {
        font-size: 0.95rem;
        padding: 0.75rem 0.875rem;
    }
    
    .form-container .btn-primary {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}

@media (max-width: 576px) {
    .contact-card-enhanced {
        padding: 1rem 0.75rem;
        margin: 5.5rem 0;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .contact-subtitle {
        font-size: 0.95rem;
    }
    
    .trust-stats .col-6 {
        margin-bottom: 0.75rem;
    }
    
    .trust-stat {
        padding: 0.75rem 0.5rem;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 1rem;
    }
    
    .info-title,
    .form-title {
        font-size: 1.25rem;
    }
    
    .benefit-item {
        font-size: 0.9rem;
    }
    
    .method-item i {
        font-size: 1.25rem;
        margin-right: 0.75rem;
    }
    
    .method-value {
        font-size: 0.95rem;
    }
    
    .form-container .form-control {
        font-size: 0.9rem;
        padding: 0.7rem 0.75rem;
    }
    
    .form-container .btn-primary {
        font-size: 0.95rem;
        padding: 0.8rem 1.25rem;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    .trust-stat,
    .benefit-item,
    .form-container .btn-primary {
        transition: none;
    }
    
    .trust-stat:hover,
    .benefit-item:hover {
        transform: none;
    }
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
    .contact-card-enhanced {
        border: 2px solid #ffffff;
    }
    
    .form-container .form-control {
        border: 2px solid #ffffff;
    }
    
    .form-container .form-control:focus {
        border-color: #6905E9;
        box-shadow: 0 0 0 0.25rem rgba(105, 5, 233, 0.5);
    }
}
