.office-card {
 background: var(--white);
 border: 1px solid var(--border-gray);
 border-radius: 12px;
 padding: 14px;
 transition: all 0.25s ease; }
 .office-card:hover {
 box-shadow: 0 8px 24px rgba(0, 102, 204, 0.12);
 border-color: var(--primary-blue);
 }
 .office-badge {
 display: inline-block;
 padding: 4px 12px;
 font-size: 0.75rem;
 font-weight: 600;
 border-radius: 4px;
 text-transform: uppercase;
 letter-spacing: 0.5px;
 margin-bottom: 1rem;
 }
 .office-badge.hq {
 background: var(--accent-gold);
 color: var(--white);
 }
 .office-badge.regional {
 background: var(--primary-blue);
 color: var(--white);
 }
 .office-badge.partner {
 background: var(--success-green);
 color: var(--white);
 }
 .office-card h3 {
 color: var(--primary-navy);
 margin-bottom: 0.5rem;
 font-size: 1.25rem;
 }
 .office-card .country {
 color: var(--text-medium);
 font-weight: 500;
 margin-bottom: 0.75rem;
 font-size: 1rem;
 }
 .office-card .address {
 color: var(--text-medium);
 line-height: 1.7;
 margin-bottom: 0.75rem;
 }
 .office-card .contact-info {
 margin-top: 1rem;
 }
 .office-card .contact-info p {
 margin-bottom: 0.5rem;
 color: var(--text-dark);
 }
 .office-card .contact-info a {
 color: var(--primary-blue);
 }
 .office-card .contact-info a:hover {
 color: var(--primary-navy);
 }
 .office-card .specializations {
 margin-top: 1rem;
 padding-top: 1rem;
 border-top: 1px solid var(--border-gray);
 font-size: 0.875rem;
 color: var(--text-medium);
 }
 .offices-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 14px;
 margin-top: 3rem;
 }
 
.hero-features a.hero-feature-item { transition: all 0.3s ease; }
.hero-features a.hero-feature-item:hover { transform: translateY(-4px); background: rgba(255,255,255,0.15); }
.hero-features a.hero-feature-item:hover h4 { color: #8a6d1c; }
