/* Contact Us Section */
.contact-us {
    padding: 40px 10px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-us h2 {
    font-size: 2.4em;
    margin-bottom: 30px;
    color: #007bff;
}

/* Main cards container */
.main-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    padding: 25px 30px;
    text-decoration: none;
    color: #0056b3;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.big-card {
    width: 320px;
    font-size: 1.3em;
}

.big-card h3 {
    margin-bottom: 12px;
    color: #28a745;
}

/* Smaller social cards container */
.social-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.social-card {
    width: 140px;
    font-size: 1em;
    padding: 12px 10px;
    background: #e3f2fd;
    color: #007bff;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.social-card:hover {
    background: #28a745;
    color: white;
    box-shadow: 0 6px 15px rgba(0, 128, 0, 0.3);
    transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 768px) {
    .main-cards {
        flex-direction: column;
        align-items: center;
    }

    .big-card {
        width: 100%;
        max-width: 330px;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .social-card {
        width: 45%;
    }
}

/* FontAwesome icon styles */
.card i {
    margin-right: 12px;
    font-size: 1.3em;
    vertical-align: middle;
    color: #28a745;
}

.social-card i {
    color: #007bff;
}

/* Hover icon color */
.card:hover i,
.social-card:hover i {
    color: white;
}

/* TripAdvisor owl icon specific */
.tripadvisor-owl-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 6px;
    display: inline-block;
}

/* Ensure TripAdvisor card matches others */
.tripadvisor-card {
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.email-card:hover i,
.whatsapp-card:hover i {
    color: #440fbe !important;
}