/* Contact Page Styles */

/* Banner section */
.banner-banner {
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    margin-top: 60px;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.banner-banner .banner-content {
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-banner .banner-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.banner-banner .banner-content p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* Breadcrumb navigation */
.breadcrumb {
    margin-bottom: 40px;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb i {
    font-size: 12px;
    color: #666;
}

/* Contact container */
.contact-container {
    padding: 40px;
    background: #fff;
    margin-bottom: 60px;
}

.contact-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
}

.contact-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact content layout */
.contact-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

/* Contact info section */
.contact-info {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.info-icon i {
    font-size: 20px;
    color: #fff;
    transition: color 0.3s ease;
}

.info-item:hover .info-icon i {
    color: #ddbd84;
}

.info-details h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-details p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.qrcode-container {
    margin-top: 10px;
}

.qrcode-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border: 1px solid #e0e0e0;
}

.info-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 20px 0;
}

/* Contact form section */
.contact-form {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: #f9f9f9;
}

.contact-form h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Form styles */
form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ddbd84;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.verification-code {
    flex: 0 0 100px;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    color: #666;
    letter-spacing: 2px;
}
.verification-code img {
    cursor: pointer;
    width:100%;
    height: 42px;
}
.submit-btn {
    background: #ddbd84;
    color: #333;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    align-self: flex-start;
}

.submit-btn:hover {
    background: #ffca28;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}
#content {
    min-height: 260px;
    max-height: 400px;
    height: 260px;
    background: url(../images/contact1.jpg) #fff bottom right no-repeat;
}
/* Responsive */
@media (max-width: 768px) {
    .banner-banner {
        padding: 80px 0;
        min-height: 250px;
    }

    .banner-banner .banner-content h1 {
        font-size: 36px;
    }

    .banner-banner .banner-content p {
        font-size: 16px;
    }

    .contact-container {
        padding: 20px;
    }

    .contact-title {
        font-size: 24px;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-info {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .form-row {
        flex-direction: column;
    }

    .verification-code {
        flex: 0 0 auto;
        padding: 12px 20px;
    }

    .submit-btn {
        align-self: stretch;
    }
    .contact-form {
        padding: 0px;
        background: #fff;
        border-radius: 0px;
    }
    .qrcode-image {
        width: 150px;
        height: 150px;
    }
}