/* Contact Info Cards */
.contact-intro {
    margin-top: 2rem;
}

.contact-info-card {
    background: #ffffff;
    border: 1px solid #e0e7ed;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #660A4D 0%, #37003c 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-icon i {
    font-size: 1.75rem;
    color: #ffffff;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.contact-info-card p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: #ffffff;
    border: 1px solid #e0e7ed;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.contact-form-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.contact-form-header i {
    font-size: 1.5rem;
    color: #660A4D;
}

.contact-form-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

/* Form Styling */
.contact-form .form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.contact-form .form-label i {
    color: #660A4D;
    font-size: 1rem;
}

.contact-form .form-control {
    border: 2px solid #e0e7ed;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #660A4D;
    box-shadow: 0 0 0 0.2rem rgba(102, 10, 77, 0.1);
    outline: none;
}

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

/* Button */
.btn-info {
    background: linear-gradient(135deg, #660A4D 0%, #37003c 100%);
    border: none;
    color: #ffffff;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-info:hover {
    background: linear-gradient(135deg, #37003c 0%, #660A4D 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 10, 77, 0.3);
}

.btn-info i {
    font-size: 1.1rem;
}

/* Footer */
.contact-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e7ed;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.contact-footer i {
    color: #00ff87;
    font-size: 1.1rem;
}

/* Dark Mode */
.dark-mode .contact-info-card {
    background: #324064;
    border-color: #3d4f73;
}

.dark-mode .contact-icon {
    background: #1e2938;
}

.dark-mode .contact-info-card h3 {
    color: #ffffff;
}

.dark-mode .contact-info-card p {
    color: #a0aec0;
}

.dark-mode .contact-form-wrapper {
    background: #324064;
    border-color: #3d4f73;
}

.dark-mode .contact-form-header {
    border-bottom-color: #3d4f73;
}

.dark-mode .contact-form-header h2 {
    color: #ffffff;
}

.dark-mode .contact-form-header i {
    color: #00ff87;
}

.dark-mode .contact-form .form-label {
    color: #ffffff;
}

.dark-mode .contact-form .form-label i {
    color: #00ff87;
}

.dark-mode .contact-form .form-control {
    background: #1e2938;
    border-color: #3d4f73;
    color: #ffffff;
}

.dark-mode .contact-form .form-control:focus {
    border-color: #00ff87;
    box-shadow: 0 0 0 0.2rem rgba(0, 255, 135, 0.1);
}

.dark-mode .contact-form .form-control::placeholder {
    color: #6c7a89;
}

.dark-mode .contact-footer {
    border-top-color: #3d4f73;
    color: #a0aec0;
}

.dark-mode .btn-info {
    background: #1e2938;
}

.dark-mode .btn-info:hover {
    background: #2a3f5f;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .contact-form-header h2 {
        font-size: 1.25rem;
    }
}
