.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all .3s;
}

.info-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(29, 78, 216, .08);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.icon-blue {
    background: linear-gradient(135deg, rgba(29, 78, 216, .15), rgba(59, 130, 246, .08));
}

.icon-gold {
    background: linear-gradient(135deg, rgba(212, 175, 55, .15), rgba(240, 208, 96, .08));
}

.icon-green {
    background: rgba(37, 211, 102, .12);
}

.info-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.info-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.info-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.contact-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.cf-title {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}

.cf-sub {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cf-group {
    margin-bottom: 18px;
}

.cf-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.cf-input {
    width: 100%;
    padding: 13px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    color: var(--text);
}

.cf-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, .08);
}

.cf-textarea {
    min-height: 120px;
    resize: vertical;
}

.cf-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236B7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.cf-submit {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all .3s;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 0 24px rgba(29, 78, 216, .3);
}

.cf-submit:hover {
    box-shadow: 0 0 40px rgba(29, 78, 216, .5);
    transform: translateY(-1px);
}

.cf-success {
    background: rgba(34, 197, 94, .06);
    border: 1px solid rgba(34, 197, 94, .2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    display: none;
    margin-top: 16px;
}

.cf-success-icon {
    font-size: 36px;
    margin-bottom: 8px;
}

.faq-section {
    background: var(--light-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    cursor: pointer;
    transition: all .3s;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(29, 78, 216, .08);
}

.faq-q {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.faq-q::after {
    content: '＋';
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.faq-item.open .faq-q::after {
    content: '－';
}

.faq-a {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    display: none;
}

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

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.office-card {
    background: var(--navy-2);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all .3s;
}

.office-card:hover {
    border-color: rgba(29, 78, 216, .4);
}

.office-flag {
    font-size: 32px;
    margin-bottom: 16px;
}

.office-city {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.office-address {
    font-size: 14px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.7;
}

@media(max-width:1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .offices-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}