/* ============================================================
   APEX SHARES — CONTACT PAGE STYLES
   Extracted from contact.blade.php
   ============================================================ */

.contact-hero {
    background: linear-gradient(135deg, #0B1F3A 0%, #1A3A6B 100%);
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 280px; height: 280px; border-radius: 50%;
    background: rgba(74, 127, 199,0.06);
}

.contact-hero h1 { color: #fff; font-size: clamp(2rem,4vw,3rem); font-weight: 800; margin-bottom: 12px; }
.contact-hero .breadcrumb { background: transparent; padding: 0; margin: 0; }
.contact-hero .breadcrumb-item { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.contact-hero .breadcrumb-item a { color: #4A7FC7; text-decoration: none; }
.contact-hero .breadcrumb-item.active { color: rgba(255,255,255,0.8); }
.contact-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.35); }

/* Info cards */
.contact-info-section { padding: 80px 0; background: #fff; }

.contact-info-card {
    background: #F8FAFB;
    border: 1.5px solid #E5E7EB;
    border-radius: 18px;
    padding: 36px 28px;
    height: 100%;
    text-align: center;
    transition: all 0.3s;
}

.contact-info-card:hover {
    border-color: rgba(74, 127, 199,0.4);
    box-shadow: 0 16px 40px rgba(11,31,58,0.07);
    transform: translateY(-4px);
}

.contact-info-icon {
    width: 62px; height: 62px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0B1F3A, #1A3A6B);
    display: flex; align-items: center; justify-content: center;
    color: #4A7FC7; font-size: 1.6rem;
    margin: 0 auto 18px;
}

.contact-info-card h5 { font-weight: 700; color: #0B1F3A; font-size: 1rem; margin-bottom: 8px; }

.contact-info-card p {
    color: #6B7280; font-size: 0.9rem; line-height: 1.7;
    font-weight: 400 !important; margin: 0;
}

.contact-info-card a {
    color: #35619E; font-weight: 600; text-decoration: none;
}

.contact-info-card a:hover { text-decoration: underline; }

/* Map */
.contact-map-section { padding: 0 0 80px; background: #fff; }

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid #E5E7EB;
    box-shadow: 0 10px 40px rgba(11,31,58,0.06);
}

/* FAQ */
.faq-section { padding: 80px 0; background: #F8FAFB; }

.faq-item {
    border: 1.5px solid #E5E7EB;
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
    background: #fff;
}

.faq-item:hover { border-color: rgba(74, 127, 199,0.3); }
.faq-item.open { border-color: rgba(74, 127, 199,0.4); }

.faq-question {
    padding: 18px 24px;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 600; font-size: 0.92rem; color: #0B1F3A;
    user-select: none; background: #fff;
}

.faq-question i { color: #4A7FC7; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(45deg); }

.faq-answer {
    padding: 0 24px 18px; background: #fff;
    color: #6B7280; font-size: 0.88rem;
    line-height: 1.7; font-weight: 400 !important;
    display: none;
}

.faq-item.open .faq-answer { display: block; }
