/* ===========================
   Contact Page - Modern Eye Catching
   =========================== */

.contact-in {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px auto;
    max-width: 1200px;
    padding: 0 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-in:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Contact Address */
.contact-address {
    flex: 1 1 350px;
    padding: 25px;
    background: #fafafa;
    border-radius: 12px;
    text-align: center;
}

.contact-address .city {
    font-size: 2rem;
    font-weight: 700;
    color: #b52b65;
    margin-bottom: 15px;
}

.contact-address p {
    font-size: 1rem;
    color: #333;
    margin: 10px 0;
}

.contact-address img {
    max-width: 220px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-address a {
    display: inline-block;
    margin: 5px 10px;
    font-weight: 600;
    color: #444;
    transition: all 0.3s ease;
}

.contact-address a i {
    margin-right: 5px;
}

.contact-address a:hover {
    color: #b52b65;
}

/* Contact Map */
.contact-map {
    flex: 1 1 350px;
    padding: 25px;
    background: #f1f1f1;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    text-align: center;
}

.contact-map a {
    color: #b52b65;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-map a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    width: 100%;
    padding: 20px;
    margin-top: 30px;
    background: #fafafa;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form hr.line {
    border: 0;
    height: 2px;
    background-color: #b52b65;
    margin-bottom: 20px;
}

.contact-form h1 {
    font-size: 2rem;
    color: #b52b65;
    margin-bottom: 20px;
    text-align: center;
}

.contact-form input.contact-form-txt,
.contact-form textarea.contact-form-textarea {
    width: 100%;
    padding: 15px 20px;
    margin: 12px 0;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #b52b65;
    outline: none;
    box-shadow: 0 0 8px rgba(181, 43, 101, 0.2);
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-form button.contact-form-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #b52b65;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button.contact-form-btn:hover {
    background-color: #9c2354;
    transform: translateY(-2px);
}

/* Responsive */
@media screen and (max-width: 992px) {
    .contact-in {
        flex-direction: column;
    }

    .contact-address,
    .contact-map {
        flex: 1 1 100%;
    }
}

.captcha-container {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.captcha-display {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.captcha-text {
    font-family: 'Courier New', monospace;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 3px;
    padding: 8px 15px;
    background: #ffffff;
    border: 2px dashed #b52b65;
    border-radius: 5px;
    color: #333;
    user-select: none;
}

#captcha-canvas {
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
}

.reload-captcha {
    margin-top: 10px;
    padding: 8px 15px;
    background: #b52b65;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.reload-captcha:hover {
    background: #9d2456;
    transform: scale(1.05);
}

.contact-form-txt.error {
    border-color: #ff3860;
    background-color: #fff8f8;
}