/* Contact Page Styles */
.contact-section {
    padding: 60px 0;
    background-color: #fff;
}

.contact-info-box {
    background-color: #fff;
    padding: 30px;
    height: 100%;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 2rem;
}

.icon-address {
    background-color: #fff8e1;
    color: #ffc107;
}

.icon-phone {
    background-color: #e8f5e9;
    color: #4caf50;
}

.icon-email {
    background-color: #e1f5fe;
    color: #03a9f4;
}

.icon-line {
    background-color: #effbf1;
    color: #00B900;
}

.contact-label {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-value {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.qr-code {
    max-width: 150px;
    margin-top: 10px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.contact-form-box {
    background-color: #fff;
    padding: 30px;
}

.form-label {
    font-weight: 500;
    color: #555;
}

.form-control, .form-select {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    background-color: #fff;
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
    border-color: var(--primary-color);
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.captcha-img {
    height: 50px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 5px;
    background: #f8f9fa;
    font-family: monospace;
    font-size: 24px;
    letter-spacing: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    color: #555;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="150" height="50" viewBox="0 0 150 50"><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" font-family="monospace" font-size="24" fill="%23555">7039</text></svg>');
}

.btn-submit {
    background-color: #4caf50;
    border-color: #4caf50;
    color: white;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 500;
}

.btn-submit:hover {
    background-color: #43a047;
    border-color: #43a047;
    color: white;
}

.btn-cancel {
    background-color: #ff9800;
    border-color: #ff9800;
    color: white;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 500;
}

.btn-cancel:hover {
    background-color: #fb8c00;
    border-color: #fb8c00;
    color: white;
}

.map-section {
    height: 450px;
    width: 100%;
    background-color: #eee;
    margin-top: 50px;
    border-radius: 15px;
    overflow: hidden;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
