/* Contact Section Styles */
.contact-section {
    padding: 3rem 0;
}

.contact-card {
    background-color: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 245, 220, 0.1);
}

/* Limit width of contact card container */
.contact-section .section-card {
    max-width: none; /* use container width */
    margin-left: auto;
    margin-right: auto;
}

/* Space below section title */
.contact-section .section-title {
    margin-bottom: 2rem;
}

/* Apply glossy effect to contact cards */
.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--holo-gradient-1);
    opacity: 0.08;
    z-index: -1;
}

.contact-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -2;
}

.contact-card:hover::before {
    opacity: 0.1;
}

.contact-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(245, 245, 220, 0.1);
    color: inherit;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
    color: beige;
}

/* Form styling */
.form-control {
    background-color: rgba(245, 245, 220, 0.05);
    border: 1px solid var(--border-color);
    color: inherit;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: rgba(245, 245, 220, 0.1);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--secondary-color), 0.25);
    color: inherit;
}

.form-label {
    color: inherit;
}