.contact-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15), transparent 70%);
    border-radius: 50%;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.12), transparent 70%);
    border-radius: 50%;
}

.contact-hero .badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(102, 126, 234, 0.25);
    color: #a5b4fc;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.contact-info-cards {
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.contact-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #d0d0d0;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #c7d2fe;
}

.contact-info-card .ci-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.contact-info-card .ci-icon.email {
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    color: #1d4ed8;
}

.contact-info-card .ci-icon.phone {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #1d4ed8;
}

.contact-info-card .ci-icon.location {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #d97706;
}

.contact-info-card .ci-icon.hours {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    color: #db2777;
}

.contact-info-card h6 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.contact-info-card p {
    color: #333333;
    font-size: 14px;
    margin-bottom: 0;
}

.contact-info-card a {
    color: #1d4ed8;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.contact-info-card a:hover {
    color: #1d4ed8;
}

.contact-form-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.contact-form-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid #d0d0d0;
}

.contact-form-wrapper .form-label {
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    border-radius: 12px;
    padding: 14px 18px;
    background-color: #f5f5f5;
    border: 2px solid #d0d0d0;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s;
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
    background-color: #fff;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.08);
}

.contact-form-wrapper .btn-submit {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
}

.contact-form-wrapper .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.35);
}

.contact-sidebar-info {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 24px;
    padding: 40px;
    color: #fff;
    height: 100%;
}

.contact-sidebar-info h3 {
    font-weight: 800;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.contact-sidebar-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-sidebar-item .cs-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: rgba(102, 126, 234, 0.15);
    color: #a5b4fc;
}

.contact-sidebar-item .cs-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    font-weight: 600;
}

.contact-sidebar-item .cs-value {
    font-weight: 600;
    font-size: 15px;
    color: #d0d0d0;
}

.contact-sidebar-item a {
    color: #d0d0d0;
    text-decoration: none;
}

.contact-sidebar-item a:hover {
    color: #a5b4fc;
}

.contact-sidebar-social {
    display: flex;
    gap: 10px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-sidebar-social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
}

.contact-sidebar-social a:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    transform: translateY(-2px);
}

.contact-map-section {
    padding: 0 0 80px;
    background: #f5f5f5;
}

.contact-map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #d0d0d0;
}

.faq-mini-section {
    padding: 60px 0;
    background: #fff;
}

.faq-mini-card {
    background: #f5f5f5;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #d0d0d0;
    transition: all 0.3s;
    height: 100%;
}

.faq-mini-card:hover {
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border-color: #c7d2fe;
}

.faq-mini-card h6 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 15px;
}

.faq-mini-card p {
    color: #333333;
    font-size: 13px;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .contact-hero {
        padding: 80px 0 50px;
    }

    .contact-form-wrapper,
    .contact-sidebar-info {
        padding: 28px 20px;
    }

    .contact-sidebar-info {
        margin-top: 24px;
    }
}


