.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.comm-subtitle {
    font-family: var(--font-heading);
    color: var(--primary-gold);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 700;
}

.comm-title {
    font-family: var(--font-heading);
    font-size: 48px;
    color: #000;
    line-height: 1.2;
    margin-bottom: 50px;
}

.office-title {
    font-family: var(--font-heading);
    font-size: 24px;
    color: #222;
    margin-bottom: 30px;
    font-weight: 700;
}

.comm-details-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.comm-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.comm-item .icon {
    width: 24px;
    color: #444;
    font-size: 18px;
    display: flex;
    justify-content: center;
    margin-top: 4px;
}

.comm-item p {
    color: #777;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.contact-map {
    height: 500px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feedback-section {
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.feedback-box {
    width: 100%;
    max-width: 1000px;
    background: #fff;
    padding: 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    text-align: center;
}

.feedback-subtitle {
    font-family: var(--font-heading);
    color: var(--primary-gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 700;
}

.feedback-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: #000;
    margin-bottom: 50px;
    font-weight: 700;
}

.contact-form {
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background-color: #f8f8f8;
    border: 1px solid transparent;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: #fff;
    border-color: #ddd;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

::placeholder {
    color: #888;
    opacity: 1;
}

.btn-gold-full {
    width: 100%;
    background: #C5A572;
    color: #fff;
    border: none;
    padding: 18px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 4px;
    text-transform: uppercase;
    transition: background 0.3s;
    margin-top: 20px;
    margin-bottom: 20px;
}

.btn-gold-full:hover {
    background: #B08E5A;
}

.feedback-footer {
    margin-top: 30px;
    border-top: 1px solid #C3AA71;
    padding-top: 15px;
    text-align: left;
}

.report-link {
    font-size: 13px;
    color: #999;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.report-link:hover {
    color: #666;
}

.info-icon {
    font-size: 14px;
    color: #ccc;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 350px;
    }

    .feedback-box {
        padding: 30px 20px;
        box-shadow: none;
    }

    .feedback-title {
        font-size: 24px;
    }
}