/*!* 基础样式 *!*/
/** {*/
/*    box-sizing: border-box;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    font-family: 'Inter', sans-serif;*/
/*}*/

body {
    background-color: #f9fafb;
    color: #374151;
    line-height: 1.5;
}

/*.container {*/
/*    max-width: 1200px;*/
/*    margin: 0 auto;*/
/*    padding: 2rem 1rem;*/
/*}*/

/* 卡片样式 */
.card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .card-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* 表单样式 */
.form-section {
    padding: 2rem;
}

.form-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.form-description {
    color: #6b7280;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background-color: #f9fafb;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.form-label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    padding: 0 0.25rem;
    background-color: #f9fafb;
    color: #6b7280;
    transition: all 0.3s ease;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    top: -0.5rem;
    font-size: 0.875rem;
    color: #3b82f6;
    background-color: white;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-input:invalid:not(:placeholder-shown):not(:focus) {

}

.form-input:invalid:not(:placeholder-shown):not(:focus) ~ .error-message {
    display: block;
}

.privacy-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.privacy-checkbox {
    margin-top: 0.25rem;
    margin-right: 0.5rem;
}

.privacy-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.privacy-checkbox:invalid:not(:focus) + .privacy-label {
    color: #ef4444;
}

.privacy-checkbox:valid + .privacy-label {
    color: #6b7280;
}

.submit-button {
    width: 15%;
    padding: 1rem;
    background-color: #9ca3af;
    color: white;
    font-weight: 500;
    border-radius: 0.5rem;
    border: none;
    cursor: not-allowed;
    transition: all 0.3s ease;
}

.form:valid .submit-button {
    background-color: #2562B3;
    cursor: pointer;
}

.form:valid .submit-button:hover {
    background-color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.success-message {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #d1fae5;
    border: 1px solid #10b981;
    border-radius: 0.5rem;
    color: #059669;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form:valid .success-message {
    opacity: 1;
}

/* 联系信息部分 */
.info-section {
    background-color: #1e293b;
    color: white;
    padding: 2rem;
}

.info-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.info-icon {
    background-color: rgba(59, 130, 246, 0.1);
    padding: 0.75rem;
    border-radius: 50%;
    margin-right: 1rem;
    color: #3b82f6;
}

.info-content h3 {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.info-content p {
    color: #94a3b8;
}

.social-links {
    margin-top: 3rem;
}

.social-links h3 {
    font-weight: 500;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
}

.social-icon {
    background-color: rgba(59, 130, 246, 0.1);
    padding: 0.75rem;
    border-radius: 50%;
    margin-right: 1rem;
    color: #3b82f6;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: rgba(59, 130, 246, 0.2);
}

/* 地图部分 */
.map-section {
    margin-top: 4rem;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.map-placeholder {
    height: 20rem;
    background-color: #e5e7eb;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 页脚 */
.footer {
    background-color: #1e293b;
    color: white;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-links {
    margin-top: 1rem;
}

.footer-link {
    color: #94a3b8;
    margin: 0 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}
.font-medium-h3{
    font-size: 20px;
}
.get-in-touch{
    color: #186AAB !important;
    margin-top: 50px
}
.contact-info{
    color: #186aab !important;
}
.form-font{
    margin-top: 10px;
}