/* ============================================================
   文件名：home.css
   说明：首页独有样式（轮播、使命、关于、产品、合作、联系）
   适用范围：仅 index.html
   依赖：common.css
   ============================================================ */

/* -------------------- 1. Hero 轮播 -------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gray-900);
}
.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    overflow: hidden;
}
.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    background: var(--gray-900);
    position: relative;
}
.carousel-slide.active {
    display: flex;
}
.carousel-slide .slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    z-index: 1;
}
.carousel-slide .slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 12, 10, 0.30);
    z-index: 2;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    opacity: 0.5;
    z-index: 3;
}
.hero .container {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    padding: 140px 32px 100px;
}

/* 徽章 */
.hero-content .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 111, 28, 0.10);
    border: 1px solid rgba(232, 111, 28, 0.12);
    padding: 6px 18px 6px 14px;
    border-radius: 60px;
    font-size: 0.75rem;
    color: var(--orange-light);
    font-weight: 500;
    font-family: var(--font-en);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}
.hero-content .badge .dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(0.6);
    }
}

.hero-content h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-family: var(--font-cn);
    margin-bottom: 18px;
}
.hero-content h1 .orange {
    color: var(--orange);
}
.hero-content h1 .blue {
    color: var(--blue-light);
}
.hero-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.60);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.8;
    font-weight: 400;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* 轮播控制 */
.carousel-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 10;
}
.carousel-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.10);
    cursor: pointer;
    transition: var(--transition);
}
.carousel-dot.active {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.2);
}
.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.50);
}
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.25);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-arrow:hover {
    background: rgba(232, 111, 28, 0.50);
}
.carousel-arrow.prev {
    left: 24px;
}
.carousel-arrow.next {
    right: 24px;
}

/* -------------------- 2. Mission 使命区块 -------------------- */
.mission {
    padding: 20px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}
.mission::before,
.mission::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: pulse-glow 4s ease-in-out infinite;
}
.mission::before {
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 111, 28, 0.04), transparent 70%);
    animation-delay: 0s;
}
.mission::after {
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(43, 127, 196, 0.04), transparent 70%);
    animation-delay: 2s;
}
@keyframes pulse-glow {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.2;
    }
}
.mission .container {
    position: relative;
    z-index: 2;
}
.mission .content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}
.mission .icon-group {
    display: flex;
    gap: 18px;
    font-size: 2.6rem;
    color: var(--orange);
    flex-shrink: 0;
}
.mission .icon-group span {
    display: inline-block;
    animation: float-icon 3s ease-in-out infinite;
}
.mission .icon-group span:nth-child(1) {
    animation-delay: 0s;
}
.mission .icon-group span:nth-child(2) {
    animation-delay: 0.4s;
}
.mission .icon-group span:nth-child(3) {
    animation-delay: 0.8s;
}
@keyframes float-icon {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}
.mission .icon-group span:hover {
    animation: none;
    transform: rotate(8deg) scale(1.1);
    transition: transform 0.4s ease;
}
.mission .text {
    max-width: 100%;
    text-align: center;
}
.mission .text h2 {
    font-size: clamp(2.4rem, 5vw, 4.0rem);
    font-weight: 700;
    color: var(--gray-900);
    font-family: var(--font-cn);
    line-height: 1.4;
    opacity: 0;
    animation: fade-up 0.8s ease 0.3s forwards;
}
.mission .text h2 .orange {
    color: var(--orange);
}
.mission .text h2 .blue {
    color: var(--blue);
}
.mission .text .sub {
    font-size: 1rem;
    color: var(--gray-500);
    margin-top: 8px;
    font-weight: 400;
    letter-spacing: 2px;
    opacity: 0;
    animation: fade-up 0.8s ease 0.6s forwards;
}
@keyframes fade-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -------------------- 3. About 关于区块 -------------------- */
.about {
    padding: 80px 0;
    background: var(--gray-800);
    position: relative;
    overflow: hidden;
}
.about .container {
    position: relative;
    z-index: 2;
}
.about .section-title,
.about .company-name,
.about .company-sub,
.about .strength-card h5,
.about .cert-badges .cert {
    color: var(--white);
}
.about .section-sub,
.about .about-text p,
.about .cert-badges .cert {
    color: rgba(255, 255, 255, 0.70);
}
.about .company-sub {
    color: rgba(255, 255, 255, 0.50);
}
.about .business-tags .tag-item {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
}
.about .business-tags .tag-item:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.about .strength-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
}
.about .strength-card.orange-card {
    border-color: rgba(232, 111, 28, 0.30);
    background: rgba(232, 111, 28, 0.12);
}
.about .strength-card p {
    color: rgba(255, 255, 255, 0.50);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
    margin-top: 16px;
}
.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-text .company-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.2;
}
.about-text .company-name .highlight {
    color: var(--orange);
}
.about-text .company-sub {
    font-size: 0.95rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    border-left: 3px solid var(--orange);
    padding-left: 16px;
    font-family: var(--font-en);
}
.about-text p {
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 14px;
}
.about-text p:last-of-type {
    margin-bottom: 22px;
}
.business-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}
.business-tags .tag-item {
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: default;
}
.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 6px;
}
.cert-badges .cert {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}
.cert-badges .cert i {
    color: var(--orange);
    font-size: 1.1rem;
}
.cert-badges .cert i.blue {
    color: var(--blue);
}
.strength-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.strength-card {
    padding: 20px 12px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.strength-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.strength-card .icon {
    font-size: 1.8rem;
    margin-bottom: 6px;
    display: block;
    color: var(--orange);
}
.strength-card h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.strength-card p {
    font-size: 0.75rem;
    line-height: 1.4;
}

/* -------------------- 4. Products 产品展示 -------------------- */
.products {
    padding: 80px 0;
    background: var(--gray-100);
}

/* 卡片外层链接 */
.product-link-wrapper {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 44px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px 22px 26px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    opacity: 0;
    transition: var(--transition);
}
.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange);
    box-shadow: var(--shadow-lg);
}
.product-card:hover::before {
    opacity: 1;
}
.product-card .img-wrap {
    width: 100%;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
    padding: 10px;
}
.product-card .img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.product-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
    font-family: var(--font-cn);
}
.product-card .spec {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 10px;
    font-family: var(--font-en);
}
.product-card .desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
    font-weight: 400;
}
.product-card .product-tag {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: var(--font-en);
    color: var(--blue);
    background: var(--blue-bg);
    padding: 3px 16px;
    border-radius: 60px;
    letter-spacing: 0.5px;
}
.product-card .product-tag.orange-tag {
    color: var(--orange);
    background: var(--orange-bg);
}

/* -------------------- 5. Clients 合作伙伴 -------------------- */
/* ===== 合作伙伴（图片 + 悬停遮罩） ===== */
.clients {
    padding: 70px 0;
    background: var(--gray-800);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.clients .section-title {
    color: var(--white);
}
.clients .section-sub {
    color: rgba(255, 255, 255, 0.60);
}

/* 合作伙伴网格 — 保留原布局 */
.clients .grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px 32px;
    margin-top: 32px;
}

/* 每个合作伙伴卡片 — 保留原样式 */
.clients .partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    transition: all 0.35s ease;
    width: 120px;
    height: 60px;
    cursor: default; /* 无链接，默认箭头 */
}

/* 悬停：边框变色 + 背景提亮 + 上浮 */
.clients .partner-item:hover {
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.20);
}

/* Logo 图片容器 — 相对定位，用于遮罩 */
.clients .partner-logo {
    position: relative;
    /* width: 120px;
    height: 60px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

/* 图片样式 */
.clients .partner-logo img {
    width: 100%;
    /*height: 100%;*/
    object-fit: contain;
    /*filter: brightness(0) invert(1) opacity(0.70);*/
    transition: filter 0.3s ease;
}

/* 悬停时图片变亮 */
.clients .partner-item:hover .partner-logo img {
    filter: brightness(0) invert(1) opacity(1);
}

/* 遮罩层 — 默认透明隐藏，完全覆盖图片 */
.clients .partner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gray-800); /* 橙色半透明遮罩 */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: var(--radius-sm);
    pointer-events: none; /* 防止干扰鼠标事件 */
}

/* 悬停时遮罩淡入，完全覆盖图片 */
.clients .partner-item:hover .partner-overlay {
    opacity: 1;
}

/* 遮罩上的文字 — 白色，居中 */
.clients .partner-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    font-family: var(--font-cn);
    padding: 8px;
    line-height: 1.4;
    letter-spacing: 0.5px;
    word-break: break-word;
    max-width: 90%;
}

/* -------------------- 6. Contact 联系我们 -------------------- */
/* ===== 联系我们 ===== */
.contact-section {
    padding: 80px 0;
    background: var(--gray-900);
    position: relative;
    overflow: hidden;
}
.contact-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 111, 28, 0.03), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.contact-section .container {
    position: relative;
    z-index: 2;
}
.contact-section .section-title {
    color: var(--white);
}
.contact-section .section-sub {
    color: rgba(255, 255, 255, 0.40);
}

/* 联系信息网格 */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-top: 44px;
    align-items: stretch;
}

/* 联系信息列表 */
.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-info .item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.contact-info .item:last-child {
    border-bottom: none;
}
.contact-info .item .icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 111, 28, 0.08);
    border-radius: 50%;
    color: var(--orange);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-info .item .text {
    color: rgba(255, 255, 255, 0.60);
    font-size: 0.95rem;
    font-weight: 400;
}
.contact-info .item .text strong {
    color: var(--white);
    font-weight: 600;
    display: block;
    font-size: 0.95rem;
}

/* ===== 地图占位（图片背景 + 遮罩 + 圆角） ===== */
.map-placeholder {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    min-height: 280px;
    background: var(--gray-700);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

/* 地图图片 — 居中显示，覆盖整个容器 */
.map-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* 半透明遮罩层 — 降低图片亮度，让文字更清晰 */
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 12, 10, 0.55);
    z-index: 2;
    border-radius: var(--radius-lg);
}

/* 地图上的文字内容 — 居中显示在最上层 */
.map-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 280px;
    padding: 20px;
}

.map-content i {
    font-size: 3rem;
    color: var(--orange);
    opacity: 0.9;
    margin-bottom: 10px;
    display: block;
}

.map-content .label {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.90);
}

.map-content .sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.50);
    margin-top: 4px;
}

/* ===== 联系链接（手机端可点击） ===== */
.contact-link {
    color: rgba(255, 255, 255, 0.60);
    text-decoration: none;
    transition: color 0.3s ease;
    /* display: inline-block;*/
}

.contact-link:hover {
    color: var(--white);
}

/* 电话链接 - 悬停时橙色 
.phone-link:hover {
    color: var(--orange) !important;
}

/* 邮箱链接 - 悬停时蓝色 */
.email-link:hover {
    color: var(--blue-light) !important;
}

/* 地址链接 - 悬停时橙色 */
.address-link:hover {
    color: var(--orange) !important;
}

/* 地图导航按钮 */
.map-nav-btn {
    display: none;  /* 默认隐藏，仅手机端显示 */
    margin-top: 14px;
    padding: 8px 20px;
    background: var(--orange);
    color: var(--white);
    border-radius: 60px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.3s, transform 0.2s;
    gap: 8px;
    align-items: center;
}

.map-nav-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.map-nav-btn i {
    font-size: 0.9rem;
}


/* -------------------- 7. 首页滚动动画 -------------------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 {
    transition-delay: 0.08s;
}
.reveal-delay-2 {
    transition-delay: 0.16s;
}
.reveal-delay-3 {
    transition-delay: 0.24s;
}
.reveal-delay-4 {
    transition-delay: 0.32s;
}

/* -------------------- 8. 首页响应式 -------------------- */
@media (max-width: 1024px) {
    .hero .container {
        gap: 40px;
    }
    .hero-content h1 {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    .about-grid {
        gap: 36px;
    }
    .strength-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 36px;
        padding: 120px 24px 80px;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .carousel-arrow {
        display: none;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .strength-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .map-placeholder {
        min-height: 200px;
    }
    .mission .content {
        flex-direction: column;
        gap: 20px;
    }
    .mission .icon-group {
        font-size: 2.2rem;
    }
	.contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .map-placeholder {
        min-height: 200px;
    }
    .map-content {
        min-height: 200px;
    }
}

@media (max-width: 700px) {
    .hero {
        min-height: auto;
    }
    .carousel-container,
    .carousel-slide {
        min-height: 90vh;
    }
    .hero .container {
        padding: 100px 20px 60px;
    }
    .about-text .company-name {
        font-size: 1.6rem;
    }
    .strength-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .strength-card {
        padding: 16px 10px;
    }
    .strength-card .icon {
        font-size: 1.6rem;
    }
    .strength-card h5 {
        font-size: 0.8rem;
    }
    .strength-card p {
        font-size: 0.7rem;
    }
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .product-card {
        padding: 22px 16px 20px;
    }
    .product-card .img-wrap {
        height: 100px;
    }
    .clients .grid {
        gap: 12px 20px;
    }
    .clients .grid .logo-item {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
	.map-nav-btn {
        display: inline-flex;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 0.95rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .strength-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .strength-card {
        padding: 12px 8px;
    }
    .strength-card .icon {
        font-size: 1.4rem;
    }
    .strength-card h5 {
        font-size: 0.75rem;
    }
    .strength-card p {
        font-size: 0.65rem;
    }
    .about-text .company-name {
        font-size: 1.4rem;
    }
    .about-text p {
        font-size: 0.95rem;
    }
    .business-tags .tag-item {
        font-size: 0.75rem;
        padding: 4px 14px;
    }
    .clients .grid {
        gap: 8px 12px;
    }
    .clients .grid .logo-item {
        font-size: 0.65rem;
        padding: 4px 10px;
    }
    .contact-info .item .text {
        font-size: 0.85rem;
    }
    .map-placeholder {
        min-height: 160px;
    }
    .map-placeholder .map-content i {
        font-size: 2.2rem;
    }
    .map-placeholder .map-content .label {
        font-size: 0.85rem;
    }
    .mission .text h2 {
        font-size: 1.2rem;
    }
    .mission .icon-group {
        font-size: 1.8rem;
        gap: 12px;
    }
	.map-placeholder {
        min-height: 160px;
    }
    .map-content {
        min-height: 160px;
    }
    .map-content i {
        font-size: 2.2rem;
    }
    .map-content .label {
        font-size: 0.85rem;
    }
	.map-nav-btn {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
}