.social-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.social-cards-container a {
    text-decoration: none;
    color: inherit;
    display: block;
    border-radius: 16px;
}

.social-card {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.social-card .icon {
    font-size: 40px;
    color: #ffffff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.1);
}

.social-card h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 10px;
}

.social-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* Unique Icon Backgrounds */
.facebook .icon { background: #1877f2; }
.instagram .icon {
    background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5);
}
.tiktok .icon { background: #000000; }
.youtube .icon { background: #ff0000; }


/* -------- Contact Card Section (As Is) -------- */

.contact-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.contact-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-card .icon {
    font-size: 38px;
    color: #fff;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Title and Text */
.contact-card h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 16px;
}

.contact-card a {
    color: #004080;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Unique Colors */
.call .icon { background: #1877f2; }
.whatsapp .icon { background: #25d366; }
.email .icon { background: #ff9900; }
.gsite .icon { background: #4285f4; }
.gprofile .icon { background: #ea4335; }

.contact-cards-container a {
    text-decoration: none;
    color: inherit;
    display: block;
    border-radius: 16px;
}

/* Responsive Tweaks */
@media (max-width: 500px) {
    .contact-card .icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .contact-card h3 {
        font-size: 18px;
    }

    .contact-card p {
        font-size: 14px;
    }
}
