.btn-blue { background-color: #1e3a8a; color: white; border-radius: 50px; border: none; padding: 10px 25px; font-weight: 600; text-decoration: none; }

/* --- Main Layout --- */
.contact-wrapper { padding: 80px 0px; }
.section-title { font-weight: 800; color: #1e3a8a; font-size: 2.8rem; margin-bottom: 15px; }

/* --- LARGE SOCIAL ICONS SECTION --- */
.social-container {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    margin-bottom: 60px;
    border: 1px solid rgba(255,255,255,0.8);
}
.social-label { 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    color: #1e3a8a; 
    margin-bottom: 30px;
    display: block;
    text-align: center;
}

.social-flex {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-big-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Large Brand Icon Styles */
.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
    transition: 0.3s;
}

/* Brand Colors */
.facebook { background: #e7f0ff; color: #1877F2; }
.instagram { background: #fff0f5; color: #E4405F; }
.twitter { background: #e8f7fe; color: #1DA1F2; }

.social-big-item span {
    font-weight: 600;
    color: #475569;
    font-size: 0.9rem;
}

.social-big-item:hover { transform: translateY(-10px); }
.social-big-item:hover .icon-box { transform: scale(1.1); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }

/* --- Info Cards --- */
.info-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    height: 100%;
    transition: 0.3s;
}
.info-card i { font-size: 35px; color: #1e3a8a; margin-bottom: 20px; display: block; }
.info-card h5 { font-weight: 700; margin-bottom: 10px; color: #1e3a8a; }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .section-title { font-size: 2.2rem; }
    .social-flex { gap: 20px; }
    .icon-box { width: 70px; height: 70px; font-size: 28px; }
    .contact-wrapper {  padding: 40px 15px; }
}
/* --- Map Container --- */
.map-frame {
    border-radius: 30px; overflow: hidden;
    border: 10px solid white; box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    margin-top: 50px; height: 400px; width: 100%;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .section-title { font-size: 1.8rem; }
    .icon-box { width: 70px; height: 70px; font-size: 28px; }
    .map-frame { height: 300px; border: 5px solid white; }
}
