/* GEO导航页面样式 */

/* ========== Hero Banner ========== */
.geo-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #0a1628;
}

.geo-banner-img {
    width: 100% !important;
    height: auto !important;
    display: block;
    object-fit: contain;
}

/* ========== 品牌介绍 ========== */
.geo-brand-intro {
    padding: 30px 0 20px;
    text-align: center;
    background: #fff;
}

.geo-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0 0 15px 0;
}

.geo-section-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* ========== 服务卡片 ========== */
.geo-services {
    padding: 20px 0 40px;
    background: #fff;
}

.geo-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.geo-service-card {
    background: #e8f0fe;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.geo-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 100, 255, 0.12);
}

.geo-card-icon {
    margin-bottom: 24px;
}

.geo-card-icon-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.geo-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
}

.geo-card-subtitle {
    font-size: 15px;
    color: #666;
    margin: 0 0 24px 0;
}

.geo-card-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.geo-tag {
    display: inline-block;
    padding: 2px 8px;
    background: #4a90e2;
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    border: none;
    line-height: 1.4;
}

/* ========== 内容介绍 ========== */
.geo-content {
    padding: 30px 0;
    background: #fff;
}

.geo-content-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.geo-content-inner p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 20px 0;
}

.geo-contact-info {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0099ff;
}

.geo-contact-info p {
    text-indent: 0;
    margin: 10px 0;
    font-size: 16px;
    color: #333;
}

/* ========== 响应式设计 ========== */
@media (max-width: 1200px) {
    .geo-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .geo-section-title {
        font-size: 24px;
    }
    .geo-service-grid {
        grid-template-columns: 1fr;
    }
}
