/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, #1a5f4a 0%, #2d8659 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* ===== Contact Content ===== */
.contact-content {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 700;
}

/* ===== Contact Methods ===== */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-method {
    padding: 30px;
    background-color: #f5f5f0;
    border-radius: 8px;
    border-left: 4px solid #1a5f4a;
}

.contact-method h3 {
    font-size: 18px;
    color: #1a5f4a;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-method p {
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contact-method a {
    color: #1a5f4a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #2d8659;
}

.contact-description {
    font-size: 13px;
    color: #666666;
    margin-top: 10px;
}

/* ===== Contact Form ===== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.required {
    color: #ff6b6b;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5f4a;
    box-shadow: 0 0 0 3px rgba(26, 95, 74, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ff6b6b;
    background-color: rgba(255, 107, 107, 0.05);
}

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

.form-group.checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.form-group.checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
}

.form-group.checkbox label {
    margin: 0;
    font-size: 13px;
    cursor: pointer;
}

.form-group.checkbox a {
    color: #1a5f4a;
    text-decoration: underline;
}

.form-note {
    font-size: 12px;
    color: #999999;
    text-align: center;
    margin-top: 10px;
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 28px;
    }

    .contact-info h2,
    .contact-form-wrapper h2 {
        font-size: 24px;
    }

    .contact-methods {
        gap: 20px;
    }

    .contact-method {
        padding: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
    }
}
