/* Contact Details Section */
.detail-grid {
    background-color: var(--light-color);
    padding: 60px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid var(--primary-color);
    background-color: var(--secondary-color);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.icon-large {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.card-info {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-info a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-info a:hover {
    color: var(--primary-color);
}

.card-description {
    font-size: 0.95rem;
    color: var(--accent-color);
    line-height: 1.6;
}

/* Map Section */
#contact-map {
    margin-top: 60px;
}

.map-embed-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #f0f0f0;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.map-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

