/*
 * Inner-page additions (Careers / My Team / Reviews / Contact).
 * Only NEW classes live here — the original design files
 * (style.css / responsive.css) are untouched. Styling follows the
 * existing design language (.stat-card, .agent-content, .info-item).
 */

/* Careers — benefits section */
.benefits-sec {
    padding: 70px 0;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    height: 100%;
    transition: 0.3s;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.benefit-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 22px;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #111;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

/* My Team — contact lines inside the agent card */
.agent-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 10px;
}

.agent-meta a,
.agent-meta span {
    color: #666;
    font-size: 14px;
    text-decoration: none;
}

.agent-meta a:hover {
    color: var(--primary-color);
}

/* Inquiry section — contact detail rows (reuses .info-item / .icon-box) */
.inquiry-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

/* Inquiry form — marketing consent checkbox (dark text inside the white
   .contact-form-box card; the .custom-check styles are white-on-dark) */
.contact-form-box .inquiry-consent .wpcf7-list-item {
    margin: 0;
}

.contact-form-box .inquiry-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
}

.contact-form-box .inquiry-consent input.form-check-input {
    width: 18px;
    height: 18px;
    flex: none;
    margin-top: 3px;
}

.contact-form-box .inquiry-consent .wpcf7-list-item-label {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .benefit-card img {
        height: auto;
    }
}
