/* =============================================================
   contact.css — styles for contact_us.php
   ============================================================= */

/* ── Offices Section ── */
.ct-offices-section {
    background: #0c0118;
    padding: 20px 0 60px;
}
.ct-offices-header {
    text-align: center;
    margin-bottom: 40px;
}
.ct-offices-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7c3aed;
    margin-bottom: 12px;
}
.ct-offices-title {
    font-size: 32px;
    font-weight: 700;
    color: #f0eaff;
    margin-bottom: 8px;
}
.ct-offices-sub {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}

/* ── Office cards ── */
.ct-office-card {
    background: #110d1e;
    border: 1px solid rgba(124,58,237,0.2);
    border-radius: 20px;
    padding: 32px 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.ct-office-card:hover {
    border-color: rgba(124,58,237,0.5);
    box-shadow: 0 16px 48px rgba(124,58,237,0.1);
    transform: translateY(-4px);
}
.ct-office-card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.ct-office-flag {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}
.ct-office-flag--usa {
    background: rgba(59,130,246,0.15);
    border: 2px solid rgba(59,130,246,0.35);
    color: #60a5fa;
}
.ct-office-flag--bd {
    background: rgba(16,185,129,0.15);
    border: 2px solid rgba(16,185,129,0.35);
    color: #34d399;
}
.ct-office-region {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #7c3aed;
    margin-bottom: 3px;
}
.ct-office-name {
    font-size: 20px;
    font-weight: 700;
    color: #f0eaff;
}
.ct-office-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin-bottom: 20px;
}
.ct-office-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}
.ct-office-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.ct-office-detail-row svg { flex-shrink: 0; margin-top: 2px; }
.ct-office-addr {
    font-size: 15px;
    color: #9ca3af;
    line-height: 1.7;
    font-style: normal;
    margin: 0;
}
.ct-office-phone {
    font-size: 15px;
    font-weight: 600;
    color: #a78bfa;
    text-decoration: none;
    transition: color 0.2s;
}
.ct-office-phone:hover { color: #c4b5fd; }
.ct-office-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: #7c3aed;
    text-decoration: none;
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 8px;
    padding: 9px 18px;
    align-self: flex-start;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.ct-office-map-btn:hover {
    background: rgba(124,58,237,0.15);
    color: #a78bfa;
    border-color: rgba(124,58,237,0.5);
}

/* ── Contact form left panel ── */
.ct-form-info-item--addr { align-items: flex-start; }
.ct-form-info-item--addr svg { margin-top: 3px; flex-shrink: 0; }

.ct-panel-office-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #a78bfa;
    margin-bottom: 4px;
}

.ct-panel-addr {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.65;
    font-style: normal;
    margin: 0 0 4px;
}

.ct-info-panel-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}
.ct-info-panel-link:hover { color: #a78bfa; }

.ct-panel-phone {
    font-size: 13px;
    font-weight: 600;
    color: #a78bfa;
}
.ct-panel-phone:hover { color: #c4b5fd; }

/* ── Support hours ── */
.ct-panel-hours {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ct-panel-hours-title {
    font-size: 13px;
    font-weight: 600;
    color: #d1d5db;
}
.ct-panel-hours-val {
    font-size: 13px;
    color: #6b7280;
}
