/* Contact Page Styles */
.contact-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 10px 0 10px;
    box-sizing: border-box;
}

.contact-layout {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

/* Contact Form Card */
.contact-form-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.contact-form-card h2 {
    margin: 0 0 20px 0;
    font-size: 18px;
    color: #333;
    padding-bottom: 12px;
    border-bottom: 2px solid #FE9900;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #444;
    font-size: 13px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FE9900;
    box-shadow: 0 0 0 3px rgba(254, 153, 0, 0.1);
}

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

.contact-form .captcha-group {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 18px;
}

.contact-form .captcha-group label {
    margin-bottom: 10px;
}

.contact-form .captcha-image {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-form .captcha-image img {
    border-radius: 4px;
    border: 1px solid #ddd;
}

.contact-form .captcha-hint {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.contact-form .captcha-input {
    max-width: 200px;
}

.contact-form .submit-btn {
    background: linear-gradient(to bottom, #FE9900, #e88a00);
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    width: 100%;
}

.contact-form .submit-btn:hover {
    background: linear-gradient(to bottom, #e88a00, #d07a00);
    transform: translateY(-1px);
}

/* Contact Info Cards */
.contact-info-section {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.contact-info-card h3 {
    margin: 0 0 12px 0;
    font-size: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-card .icon {
    width: 32px;
    height: 32px;
    background: #FE9900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-info-card p {
    margin: 0;
    color: #555;
    font-size: 13px;
    line-height: 1.6;
}

.contact-info-card a {
    color: #0066c0;
    text-decoration: none;
}

.contact-info-card a:hover {
    color: #FE9900;
    text-decoration: underline;
}

.contact-info-card .highlight {
    font-weight: bold;
    color: #333;
}

.contact-info-card .schedule {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #666;
}

.contact-info-card.warning {
    background: #fff8e6;
    border-color: #ffe0a0;
}

.contact-info-card.warning h3 {
    color: #8a6d3b;
}

.contact-info-card.warning .icon {
    background: #f0ad4e;
}

.contact-info-card .note {
    margin-top: 10px;
    padding: 10px;
    background: #fff3cd;
    border-radius: 4px;
    font-size: 12px;
    color: #856404;
}

/* Messages */
.contact-message {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

.contact-message.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.contact-message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Responsive */
@media screen and (max-width: 700px) {
    .contact-layout {
        flex-direction: column;
    }

    .contact-info-section {
        flex: 1;
        width: 100%;
    }

    .contact-form-card {
        min-width: auto;
    }
}
