.contact-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.contact-detail-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 5% 10%;
    gap: 20px;
    position: relative;
    top: -80px; /* pull cards over image a bit if needed */
    z-index: 1;
}

.contact-card {
    flex: 1 1 calc(33.333% - 20px);
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    box-sizing: border-box;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.contact-card i {
    font-size: 30px;
    margin-bottom: 15px;
    color: #3498db;
}

.contact-card h2 {
    font-family: 'MyCustomFont', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.contact-card p {
    font-family: 'MyCustomFont', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* RESPONSIVE STYLES */
@media (max-width: 992px) {
    .contact-card {
        flex: 1 1 calc(45% - 40px);
    }
}

@media (max-width: 768px) {
    .contact-detail-cards {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .contact-card {
        width: 100%;
        max-width: 500px;
    }
}

.contact-section {
    padding: 40px;
    display: flex;
    justify-content: center;
}

.contact-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    flex-wrap: wrap;
}

.contact-image {
    flex: 1;
    min-width: 300px;
    background: #f0f0f0;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form {
    flex: 1;
    padding: 40px;
    font-family: 'MyCustomFont', sans-serif;
}

.contact-form .badge {
    background: #e0e7ff;
    color: #4f46e5;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.contact-form h2 {
    margin-bottom: 20px;
    font-size: 28px;
    color: #1f2937;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.contact-form button {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #1d4ed8;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-form {
        padding: 20px;
    }
}

.map-section {
    padding: 0;
    margin: 0;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}
