.contact-page {
    color: var(--primary-black);
    padding: 32px 0 56px;
}

.contact-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #6f6f6f;
    font-size: 14px;
}

.contact-breadcrumb a {
    color: var(--primary-gold-dark);
    text-decoration: none;
    font-weight: 600;
}

.contact-breadcrumb a:hover {
    color: var(--primary-gold);
}

.contact-heading {
    max-width: 760px;
    margin-bottom: 24px;
}

.contact-heading h1,
.contact-form-panel h2,
.contact-info h2,
.contact-map-copy h2 {
    color: var(--primary-black);
    margin: 0;
}

.contact-heading h1 {
    font-size: 38px;
    line-height: 1.15;
    margin-bottom: 10px;
}

.contact-heading p,
.contact-form-panel > p,
.contact-map-copy p {
    color: #5f5f5f;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.contact-actions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.contact-action {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid #dedede;
    border-radius: 8px;
    background: #fff;
    color: var(--primary-black);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease;
}

.contact-action i {
    width: 18px;
    color: var(--primary-gold-dark);
    font-size: 16px;
    text-align: center;
    flex: 0 0 18px;
}

.contact-action:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold-dark);
}

.contact-action-primary {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #fff;
}

.contact-action-primary i,
.contact-action-primary:hover {
    color: #fff;
}

.contact-action-primary:hover {
    background: var(--primary-gold-dark);
    border-color: var(--primary-gold-dark);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    align-items: start;
    gap: 28px;
}

.contact-form-panel,
.contact-info,
.contact-map-section {
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
}

.contact-form-panel {
    padding: 28px;
}

.contact-form-panel h2,
.contact-info h2,
.contact-map-copy h2 {
    font-size: 24px;
    line-height: 1.3;
}

.contact-form-panel > p {
    margin-top: 8px;
    margin-bottom: 22px;
}

.contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.5;
}

.contact-alert-success {
    background: #eef8e9;
    border: 1px solid #c9e8bc;
    color: #315f1d;
}

.contact-alert-error {
    background: #fff1f1;
    border: 1px solid #f1c4c4;
    color: #8a1f1f;
}

.contact-alert-list ul {
    margin: 8px 0 0 18px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-field {
    min-width: 0;
}

.contact-field label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
    font-weight: 700;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    display: block;
    border: 1px solid #cfcfcf;
    border-radius: 8px;
    background: #fff;
    color: var(--primary-black);
    font-size: 15px;
    line-height: 1.5;
    padding: 12px 13px;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-field textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(123, 177, 53, 0.16);
}

.contact-field-error {
    display: block;
    margin-top: 6px;
    color: #b42318;
    font-size: 13px;
    line-height: 1.4;
}

.contact-submit {
    align-self: flex-start;
    min-height: 46px;
    padding: 12px 22px;
    border: 1px solid var(--primary-gold);
    border-radius: 8px;
    background: var(--primary-gold);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease;
}

.contact-submit:hover {
    background: var(--primary-gold-dark);
    border-color: var(--primary-gold-dark);
}

.contact-submit:disabled {
    cursor: wait;
    opacity: 0.76;
}

.contact-info {
    padding: 24px;
}

.contact-info-section + .contact-info-section {
    border-top: 1px solid #ededed;
    margin-top: 22px;
    padding-top: 22px;
}

.contact-info-section h3 {
    color: var(--primary-black);
    font-size: 18px;
    line-height: 1.35;
    margin: 0 0 14px;
}

.contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 16px;
}

.contact-info-row > i {
    color: var(--primary-gold-dark);
    font-size: 18px;
    line-height: 1.5;
    width: 20px;
    flex: 0 0 20px;
    text-align: center;
}

.contact-info-row h3 {
    margin-bottom: 6px;
}

.contact-info p,
.contact-location p {
    color: #5f5f5f;
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

.contact-location-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-location {
    padding-bottom: 16px;
    border-bottom: 1px solid #ededed;
}

.contact-location:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.contact-location h4 {
    color: var(--primary-black);
    font-size: 15px;
    line-height: 1.35;
    margin: 0 0 5px;
}

.contact-location a,
.contact-social-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: var(--primary-gold-dark);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
}

.contact-location a:hover,
.contact-social-list a:hover {
    color: var(--primary-gold);
}

.contact-social-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-social-list a {
    margin-top: 0;
    overflow-wrap: anywhere;
}

.contact-map-section {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 20px;
    margin-top: 28px;
    padding: 24px;
}

.contact-map-copy p {
    margin-top: 8px;
}

.contact-map {
    min-height: 320px;
    overflow: hidden;
    border: 1px solid #dedede;
    border-radius: 8px;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
}

@media screen and (max-width: 991px) {
    .contact-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-map-section {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 640px) {
    .contact-page {
        padding: 24px 0 40px;
    }

    .contact-heading h1 {
        font-size: 30px;
    }

    .contact-actions,
    .contact-field-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-panel,
    .contact-info,
    .contact-map-section {
        padding: 20px;
    }

    .contact-action,
    .contact-submit {
        width: 100%;
    }

    .contact-submit {
        justify-content: center;
    }

    .contact-map {
        min-height: 300px;
    }

    .contact-map iframe {
        min-height: 300px;
    }
}
