/* Contact Specific Styles - Based on Viseven Template */



/* BREADCRUMBS */
.breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    display: inline-block;
}

.breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--primary-blue);
}

.breadcrumb-separator {
    margin: 0 10px;
    opacity: 0.5;
}

/* FEATURE CARD (Contact Layout) */
/* CONTACT GRID CARDS */
.contact-card {
    background: #ffffff;
    border: 1px solid #c8cfff;
    border-radius: 40px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(11, 99, 172, 0.1);
    border-color: var(--primary-blue);
}

.contact-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

/* Specific colors for icons based on the image style if needed, 
   but using primary for consistency or specific classes */

.icon-blue {
    background-color: #e0f2fe;
    color: #0369a1;
}

.icon-green {
    background-color: #dcfce7;
    color: #15803d;
}

.icon-orange {
    background-color: #ffedd5;
    color: #c2410c;
}

.icon-indigo {
    background-color: #e0e7ff;
    color: #4338ca;
}

.contact-card h4 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-link {
    color: var(--primary-blue);
    font-weight: 500;
    margin-top: auto;
    word-break: break-all;
}

.contact-link:hover {
    text-decoration: underline;
}

/* FORM SECTION */
.contact-form-wrapper {
    background: #ffffff;
    border: 1px solid #dae2ed;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #eff2f6;
    background: #f8fafc;
    border-radius: 15px;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: #fff;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}


/* EXPERTISE CARD STYLES (Reused implementation for Contact Grid) */
.expertise-card {
    transition: all 0.3s ease;
    border: 1px solid #dae2ed; /* Ensure border is present by default if not set by utility */
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(11, 99, 172, 0.1);
    border-color: var(--primary-blue) !important;
}

/* Contact Social Buttons */
.contact-social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f4f8; /* Default background */
    color: #1e293b;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-social-btn:hover {
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Specific Social Brand Colors (Solid Backgrounds) */
.contact-social-btn.facebook { background-color: #1877f2; color: #ffffff; }
.contact-social-btn.facebook:hover { background-color: #166fe5 !important; box-shadow: 0 10px 20px rgba(24, 119, 242, 0.3); }

.contact-social-btn.twitter { background-color: #1da1f2; color: #ffffff; }
.contact-social-btn.twitter:hover { background-color: #0c85d0 !important; box-shadow: 0 10px 20px rgba(29, 161, 242, 0.3); }

.contact-social-btn.linkedin { background-color: #0a66c2; color: #ffffff; }
.contact-social-btn.linkedin:hover { background-color: #004182 !important; box-shadow: 0 10px 20px rgba(10, 102, 194, 0.3); }

.contact-social-btn.instagram { background-color: #e4405f; color: #ffffff; }
.contact-social-btn.instagram:hover { background-color: #d62e4c !important; box-shadow: 0 10px 20px rgba(228, 64, 95, 0.3); }

.contact-social-btn.youtube { background-color: #ff0000; color: #ffffff; }
.contact-social-btn.youtube:hover { background-color: #e60000 !important; box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3); }
/* Page Layout Fixes */
body {
    overflow-x: hidden;
}

/* Map Container */
.map-container {
    overflow: hidden;
    height: 450px;
    border: 1px solid #dae2ed;
}

.form-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:25px;
}
@media (max-width: 800px) {
.form-grid{
    grid-template-columns: 1fr;
    gap:20px;
}
.map-container {
    height: 350px;
}
.form-control {
    margin-bottom: 0px;
}
}
@media (max-width: 600px) {
.map-container {
    height: 270px !important;
}
}
