/* ===== Contact Form ===== */
.contact-form-wrap {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 36px;
}

.section-header-left {
    margin-bottom: 28px;
}

.section-header-left .section-label {
    margin-bottom: 6px;
}

.section-header-left h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-header-left p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
}

.contact-form .form-floating {
    margin-bottom: 0;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.9rem;
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
    height: auto;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(102, 46, 145, 0.08);
}

.contact-form .form-floating label {
    font-size: 0.86rem;
    color: var(--gray-400);
}

.contact-form textarea.form-control {
    min-height: 140px;
}

.contact-form .btn-primary-custom {
    margin-top: 8px;
    padding: 14px 36px;
    font-size: 0.95rem;
}

/* Success State */
.contact-form-success {
    text-align: center;
    padding: 40px 20px;
}

.contact-success-icon {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 16px;
}

.contact-form-success h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-form-success p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 20px;
}

/* ===== Contact Sidebar ===== */
.contact-sidebar {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    padding: 36px 28px;
    color: #fff;
    position: sticky;
    top: 100px;
}

.contact-sidebar-header {
    margin-bottom: 28px;
}

.contact-sidebar-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}

.contact-sidebar-header p {
    font-size: 0.88rem;
    opacity: 0.75;
    margin: 0;
    line-height: 1.6;
}

.contact-sidebar-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.contact-sidebar-item {
    display: flex;
    gap: 14px;
}

.contact-sidebar-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-sidebar-body h6 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    opacity: 0.7;
    color: #fff;
}

.contact-sidebar-body p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.contact-sidebar-body a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-sidebar-body a:hover {
    opacity: 0.7;
}

/* ===== How to Get Here ===== */
.how-to-get {
    background: var(--gray-50);
}

.how-step {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.how-step:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(102, 46, 145, 0.08);
    transform: translateY(-4px);
}

.how-step-num {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.3;
}

.how-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(102, 46, 145, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 16px;
}

.how-step h6 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.how-step p {
    font-size: 0.84rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

/* ===== Contact FAQ ===== */
.contact-faq {
    background: #fff;
}

.contact-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-faq-item {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.contact-faq-item.active {
    border-color: var(--primary);
}

.contact-faq-q {
    padding: 18px 20px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: color 0.3s ease;
}

.contact-faq-q:hover {
    color: var(--primary);
}

.contact-faq-icon {
    font-size: 1.1rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.contact-faq-item.active .contact-faq-icon {
    transform: rotate(45deg);
}

.contact-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.contact-faq-a p {
    padding: 0 20px 18px;
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
    .contact-sidebar { position: static; margin-top: 0; }
    .contact-form-wrap { padding: 28px; }
}

@media (max-width: 767.98px) {
    .contact-form-wrap { padding: 20px; }
    .contact-sidebar { padding: 28px 20px; }
    .section-header-left h2 { font-size: 1.25rem; }
}
