/* Contact Us Section */
.contactus-theme {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ef 100%);
    padding: 60px 0 40px 0;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.contactus-header {
    text-align: center;
    margin-bottom: 40px;
}

.contactus-header h1 {
    font-size: 2.8rem;
    color: #1a365d;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.contactus-underline {
    width: 80px;
    height: 4px;
    background: #ff6f61;
    margin: 0 auto;
    border-radius: 2px;
}

.contactus-info-container {
    display: flex;
    flex-direction: row;      /* Ensure cards are side by side */
    flex-wrap: nowrap;        /* Prevent wrapping to next line */
    justify-content: center;
    align-items: stretch;
    gap: 32px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contactus-info-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(26, 54, 93, 0.08), 0 1.5px 4px rgba(26, 54, 93, 0.08);
    padding: 32px 28px;
    min-width: 260px;
    max-width: 320px;
    flex: 1 1 320px;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: left;
}

.contactus-info-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 32px rgba(26, 54, 93, 0.13), 0 2px 8px rgba(26, 54, 93, 0.10);
}

.contactus-info-card.selected {
    border: 2px solid #ff6f61;
    box-shadow: 0 12px 32px rgba(255, 111, 97, 0.15), 0 2px 8px rgba(26, 54, 93, 0.10);
}

.contactus-info-card h3 {
    color: #ff6f61;
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.contactus-info-card p {
    color: #1a365d;
    font-size: 1.05rem;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contactus-info-card i {
    color: #ff6f61;
    font-size: 1.1rem;
}

.contactus-map-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.contactus-map-container iframe {
    border: none;
    border-radius: 18px;
    width: 95vw;
    max-width: 700px;
    height: 340px;
    box-shadow: 0 4px 24px rgba(26, 54, 93, 0.10);
}

.contactus-container {
    max-width: 950px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(26,54,93,0.10);
    padding: 40px 24px 32px 24px;
}

/* Responsive Design */
@media (max-width: 900px) {
    .contactus-info-container {
        flex-direction: column;   /* Stack cards on small screens */
        align-items: center;
        gap: 24px;
    }
    .contactus-map-container iframe {
        height: 260px;
    }
}

@media (max-width: 600px) {
    .contactus-header h1 {
        font-size: 2rem;
    }
    .contactus-info-card {
        padding: 22px 12px;
        min-width: 0;
        max-width: 95vw;
    }
    .contactus-map-container iframe {
        height: 180px;
    }
}