.contact-section {
    padding: 56px 0 90px;
    background: #f6f0e6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    margin-bottom: 48px;
    align-items: start;
}

.contact-info-column,
.contact-form-column {
    min-width: 0;
}

.contact-cards {
    display: grid;
    gap: 18px;
    margin-top: 20px;
}

.contact-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(249,246,239,0.95));
    border: 1px solid rgba(200,154,67,0.18);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 12px 28px rgba(19, 41, 75, 0.05);
}

.contact-card-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 999px;
    background: rgba(200,154,67,0.14);
    color: #c89a43;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.contact-card-content span {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #8b93a3;
}

.contact-card-content strong {
    display: block;
    color: #13294b;
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.contact-card-content p {
    margin: 0;
    color: #5f6270;
    line-height: 1.75;
    font-size: 15px;
}

.contact-card-address {
    display: grid;
    grid-template-columns: 96px 1fr 130px;
    gap: 22px;
    align-items: start;
}

.contact-address-lines {
    display: grid;
    gap: 6px;
    margin-bottom: 16px;
    color: #4f5665;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 500;
}

.contact-card-address .contact-card-content strong {
    font-size: 24px;
    line-height: 1.22;
    margin-bottom: 14px;
}

.contact-card-address .contact-card-content p {
    color: #666d7d;
    font-size: 16px;
    line-height: 1.7;
}

.contact-card-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-card-qr img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    border-radius: 14px;
    background: #fff;
    padding: 8px;
    border: 1px solid #e5dccb;
}

.contact-card-qr small {
    text-align: center;
    color: #7a8190;
    font-size: 12px;
    line-height: 1.4;
}

.contact-action-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.contact-action-buttons a {
    min-width: 220px;
    min-height: 58px;
    padding: 0 26px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 800;
    text-align: center;
}

.contact-email-btn {
    border: 2px solid #13294b;
    color: #13294b;
    background: transparent;
}

.contact-email-btn:hover {
    background: #13294b;
    color: #fff;
}

.contact-form-wrap {
    margin-top: 18px;
}

.contact-form-card {
    background:
        radial-gradient(circle at top right, rgba(200,154,67,0.10), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,0.96), rgba(249,246,239,0.96));
    border: 1px solid rgba(200,154,67,0.20);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 16px 34px rgba(19, 41, 75, 0.06);
}

.contact-form-card h2 {
    margin: 0 0 12px;
    color: #13294b;
    font-size: 36px;
    line-height: 1.08;
}

.contact-form-card p {
    margin: 0 0 24px;
    color: #5f6270;
    line-height: 1.8;
    font-size: 16px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: #13294b;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #ddd2c2;
    background: #fff;
    border-radius: 16px;
    padding: 16px 18px;
    font-size: 16px;
    color: #13294b;
    outline: none;
    transition: all 0.2s ease;
    font-family: Arial, Helvetica, sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #c89a43;
    box-shadow: 0 0 0 3px rgba(200,154,67,0.10);
}

.contact-form-actions {
    margin-top: 22px;
}

.contact-form-actions .btn-gold,
.contact-submit {
    border: none;
    cursor: pointer;
    min-width: 220px;
}

.form-success-message,
.form-error-message {
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 18px;
    font-weight: 600;
    font-size: 14px;
}

.form-success-message {
    background: #edf7ee;
    border: 1px solid #b7d9bb;
    color: #256c35;
}

.form-error-message {
    background: #fff1f0;
    border: 1px solid #efc0bb;
    color: #b13b2e;
}

.contact-export-band {
    padding: 10px 0 70px;
    background: linear-gradient(180deg, #f3ede3 0%, #f6f0e6 100%);
}

.contact-export-card {
    background:
        radial-gradient(circle at top left, rgba(19,41,75,0.05), transparent 24%),
        linear-gradient(180deg, #ffffff, #f8f4ec);
    border: 1px solid rgba(200,154,67,0.22);
    border-radius: 30px;
    padding: 42px;
    box-shadow: 0 18px 42px rgba(19, 41, 75, 0.06);
    text-align: center;
}

.contact-export-card h2 {
    margin: 0 0 14px;
    color: #13294b;
    font-size: 42px;
    line-height: 1.06;
}

.contact-export-card p {
    margin: 0 auto 24px;
    max-width: 820px;
    color: #5f6270;
    font-size: 17px;
    line-height: 1.85;
}

.contact-export-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.contact-export-point {
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(19, 41, 75, 0.08);
    border-radius: 18px;
    padding: 20px;
}

.contact-export-point strong {
    color: #13294b;
    font-size: 16px;
    line-height: 1.5;
}

.contact-map-section {
    padding: 10px 0 80px;
    background: #f6f0e6;
}

.contact-map-card {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(200,154,67,0.20);
    box-shadow: 0 16px 34px rgba(19, 41, 75, 0.06);
    background: #fff;
}

.contact-route-links {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.contact-route-link {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(200,154,67,0.18);
    border-radius: 18px;
    padding: 18px 20px;
    color: #13294b;
    box-shadow: 0 10px 24px rgba(19, 41, 75, 0.05);
    transition: all 0.2s ease;
}

.contact-route-link:hover {
    transform: translateY(-3px);
    border-color: rgba(200,154,67,0.38);
    box-shadow: 0 16px 30px rgba(19, 41, 75, 0.08);
}

.route-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,154,67,0.12);
    color: #c89a43;
    font-size: 22px;
}

.route-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.route-text strong {
    font-size: 18px;
    line-height: 1.2;
    color: #13294b;
}

.route-text small {
    font-size: 13px;
    line-height: 1.4;
    color: #6a6f7d;
}

@media (max-width: 900px) {
    .contact-grid,
    .contact-form-grid,
    .contact-export-points,
    .contact-route-links,
    .contact-card-address {
        grid-template-columns: 1fr;
    }

    .contact-form-card,
    .contact-export-card,
    .contact-card {
        padding: 24px;
        border-radius: 22px;
    }

    .contact-form-card h2,
    .contact-export-card h2 {
        font-size: 30px;
    }

    .contact-card-content strong {
        font-size: 20px;
    }

    .contact-card-address .contact-card-content strong {
        font-size: 22px;
    }

    .contact-address-lines {
        font-size: 16px;
    }

    .contact-action-buttons {
        flex-direction: column;
    }

    .contact-action-buttons a,
    .contact-form-actions .btn-gold,
    .contact-submit {
        width: 100%;
        min-width: 0;
        text-align: center;
    }

    .contact-card-qr {
        align-items: flex-start;
    }

    .contact-route-link {
        padding: 16px 18px;
    }

    .route-text strong {
        font-size: 16px;
    }
}

.contact-card-address {
    display: grid;
    grid-template-columns: 96px 1fr 160px;
    gap: 22px;
    align-items: start;
}

.contact-card-address .contact-card-content strong {
    display: block;
    font-size: 24px;
    line-height: 1.22;
    margin-bottom: 14px;
    color: #13294b;
}

.contact-address-lines {
    display: grid;
    gap: 6px;
    margin-bottom: 16px;
    color: #4f5665;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 500;
}

.contact-card-address .contact-card-content p {
    margin: 0;
    color: #666d7d;
    font-size: 16px;
    line-height: 1.7;
}

.contact-card-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-card-qr img {
    width: 112px;
    height: 112px;
    object-fit: contain;
    border-radius: 16px;
    background: #fff;
    padding: 8px;
    border: 1px solid #e5dccb;
    box-shadow: 0 8px 18px rgba(19, 41, 75, 0.05);
}

.contact-card-qr small {
    text-align: center;
    color: #7a8190;
    font-size: 12px;
    line-height: 1.4;
}

.contact-vcf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    background: rgba(200,154,67,0.12);
    border: 1px solid rgba(200,154,67,0.26);
    color: #13294b;
    font-size: 13px;
    font-weight: 800;
    transition: all 0.2s ease;
}

.contact-vcf-btn:hover {
    background: #c89a43;
    color: #13294b;
    transform: translateY(-1px);
}

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

    .contact-card-address .contact-card-content strong {
        font-size: 22px;
    }

    .contact-address-lines {
        font-size: 16px;
    }

    .contact-card-qr {
        align-items: flex-start;
    }

    .contact-card-qr img {
        width: 104px;
        height: 104px;
    }
}