* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a5276;
    --secondary-color: #2e86c1;
    --accent-color: #f39c12;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #f8f9fa;
    --white: #fff;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: 1px solid rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

/* 磨玻璃效果 */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.lang-select {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    appearance: auto;
}

.lang-select:hover {
    color: white;
    border-color: rgba(255,255,255,0.3);
}

.lang-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.3);
}

.lang-select option {
    background: #1a5276;
    color: white;
    padding: 8px;
}

/* 导航栏样式 */
header {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 100%),
        linear-gradient(135deg, #0a2540 0%, #14365c 50%, #1a5276 100%);
    color: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 20, 40, 0.35);
    border-bottom: 1px solid rgba(243, 156, 18, 0.35);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    transition: box-shadow 0.4s ease, background 0.4s ease;
}

header::after {
    content: "";
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(243, 156, 18, 0.6) 50%, transparent 100%);
}

header nav {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}


.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    transition: color 0.3s ease, background 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.nav-links a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0.35rem;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), #f5b942);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(243, 156, 18, 0.6);
}

.nav-links a:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
}

.nav-links a:hover::before {
    width: 60%;
}

.nav-links a.active {
    color: #ffffff;
    background: linear-gradient(180deg, rgba(243, 156, 18, 0.12) 0%, rgba(243, 156, 18, 0) 100%);
}

.nav-links a.active::before {
    width: 65%;
    background: linear-gradient(90deg, #f5b942, var(--accent-color), #f5b942);
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.8);
}

header.scrolled {
    box-shadow: 0 8px 40px rgba(0, 15, 30, 0.55);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 100%),
        linear-gradient(135deg, #06192e 0%, #0e2a48 50%, #14365c 100%);
}

header.scrolled nav {
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
}

/* 移动端汉堡按钮 */
.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* 英雄区域 */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 80%;
    max-width: 800px;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

.slide-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.slide-btn {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.slide-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.slide-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* 通用区域样式 */
section {
    padding: 80px 2rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* 特性区域 */
.features {
    background: linear-gradient(135deg, rgba(26, 82, 118, 0.9), rgba(46, 134, 193, 0.9));
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-card p {
    opacity: 0.9;
    line-height: 1.8;
}

/* 产品预览 */
.products-preview {
    background: var(--bg-color);
    padding: 5rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.product-card {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--glass-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26, 82, 118, 0.85) 0%, rgba(26, 82, 118, 0.3) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn {
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.product-card:hover .product-overlay .btn {
    transform: translateY(0);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    letter-spacing: 0.5px;
}

.product-badge.new {
    background: #27ae60;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.product-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.product-specs .spec-item {
    flex: 1;
    background: rgba(26, 82, 118, 0.05);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}

.spec-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

.spec-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.product-link:hover {
    gap: 0.8rem;
}

.view-more {
    text-align: center;
    margin-top: 3rem;
}

.view-more .btn {
    padding: 14px 40px;
    font-size: 1rem;
    border-radius: 50px;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 220px;
    }
    
    .product-info {
        padding: 1.5rem;
    }
}

/* 统计数据 */
.stats {
    background: linear-gradient(135deg, rgba(26, 82, 118, 0.9), rgba(46, 134, 193, 0.9));
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* 新闻预览 */
.news-preview {
    background: var(--bg-color);
}

.news-magazine {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.news-card {
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-card-featured {
    display: flex;
    flex-direction: column;
}

.news-card-featured .news-image {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.news-card-featured .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card-featured:hover .news-image img {
    transform: scale(1.05);
}

.news-card-featured .news-content {
    padding: 2rem;
}

.news-card-featured .news-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    line-height: 1.4;
    font-weight: 700;
}

.news-card-featured .news-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.news-card-compact {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
    align-items: stretch;
}

.news-card-compact .news-image {
    position: relative;
    height: 100%;
    min-height: 170px;
    overflow: hidden;
}

.news-card-compact .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card-compact:hover .news-image img {
    transform: scale(1.05);
}

.news-card-compact .news-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-card-compact .news-content h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    color: var(--primary-color);
    line-height: 1.4;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-compact .news-content p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-image {
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 37, 64, 0.85) 100%);
    pointer-events: none;
}

.news-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    z-index: 2;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tag-product {
    background: rgba(243, 156, 18, 0.85);
}

.tag-honor {
    background: rgba(231, 76, 60, 0.85);
}

.tag-service {
    background: rgba(39, 174, 96, 0.85);
}

.news-date-badge {
    position: absolute;
    bottom: 18px;
    left: 20px;
    color: #ffffff;
    text-align: left;
    z-index: 2;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.news-date-badge .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.1;
}

.news-date-badge .month {
    display: block;
    font-size: 0.85rem;
    margin-top: 2px;
    opacity: 0.9;
}

.news-date-inline {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(10, 37, 64, 0.85);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
}

.news-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(26, 82, 118, 0.15);
    font-size: 0.85rem;
    color: var(--text-light);
}

.news-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.news-meta i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    line-height: 1.4;
}

.news-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
    font-size: 0.95rem;
}

.read-more:hover {
    gap: 1rem;
}

/* CTA区域 */
.cta {
    background: linear-gradient(135deg, rgba(26, 82, 118, 0.9), rgba(46, 134, 193, 0.9));
    color: var(--white);
    text-align: center;
    padding: 100px 2rem;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* 页面英雄区域 */
.page-hero {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.breadcrumb {
    font-size: 1rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

/* 产品分类标签 */
.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 12px 30px;
    border: none;
    background: var(--white);
    color: var(--text-color);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

/* 产品价格 */
.product-price {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    color: var(--text-light);
}

.price-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* 产品分页 */
.product-pagination,
.news-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-btn {
    width: 45px;
    height: 45px;
    border: none;
    background: var(--white);
    color: var(--text-color);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.pagination-btn:hover,
.pagination-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.pagination-btn.next {
    width: auto;
    padding: 0 15px;
}

/* 服务内容 */
.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.highlight-item i {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.highlight-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.highlight-text p {
    margin-bottom: 0;
    color: var(--text-light);
}

.service-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* 服务类型 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 0;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.service-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,37,64,0) 40%, rgba(10,37,64,0.6) 100%);
    pointer-events: none;
}

.service-icon-floated {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-color), #e67e22);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 2;
    box-shadow: 0 6px 18px rgba(243, 156, 18, 0.45);
    border: 3px solid #ffffff;
}

.service-card h3,
.service-card p,
.service-card .service-list,
.service-card .service-link {
    padding-left: 2rem;
    padding-right: 2rem;
}

.service-card h3 {
    margin-top: 2.5rem;
}

.service-card p {
    margin-bottom: 1rem;
}

.service-card .service-list {
    margin-top: 1rem;
}

.service-card .service-link {
    display: inline-block;
    margin-bottom: 2rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.service-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-list i {
    color: var(--accent-color);
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* 服务流程 */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-50%);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* 服务承诺 */
.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.guarantee-item {
    padding: 2rem;
    text-align: center;
}

.guarantee-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.guarantee-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.guarantee-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* 新闻列表 */
.news-categories {
    background: var(--bg-color);
    padding: 2rem 0;
}

.news-list {
    background: var(--bg-color);
}

.news-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.news-card .news-image {
    position: relative;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}

.news-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.news-meta {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.news-meta i {
    margin-right: 0.3rem;
}

/* 新闻订阅 */
.news-subscribe {
    background: linear-gradient(135deg, rgba(26, 82, 118, 0.9), rgba(46, 134, 193, 0.9));
    color: var(--white);
    text-align: center;
    padding: 60px 2rem;
}

.subscribe-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.subscribe-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.subscribe-form input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.subscribe-form button {
    padding: 15px 30px;
}

/* 公司介绍 */
.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* 企业文化 */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    padding: 2.5rem;
    text-align: center;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* 发展历程 */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 30px);
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 30px);
}

.timeline-date {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    z-index: 2;
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 350px;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* 公司优势 */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.advantage-item {
    padding: 2rem;
}

.advantage-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.advantage-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.advantage-text p {
    color: var(--text-light);
}

/* 团队风采 */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-card {
    overflow: hidden;
}

.team-image {
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-info p {
    color: var(--text-light);
}

/* 联系信息 */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    padding: 2.5rem;
    text-align: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* 联系表单 */
.form-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.form-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.info-list {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.info-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.contact-qr {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-qr img {
    width: 150px;
    height: 150px;
    margin-bottom: 1rem;
}

.contact-qr p {
    color: var(--text-light);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* 地图 */
.map-container {
    height: 400px;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.map-address {
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* 分支机构 */
.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.branch-card {
    padding: 2rem;
    text-align: center;
}

.branch-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.branch-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.branch-card i {
    color: var(--accent-color);
}

/* 页脚 */
footer {
    background: #1a1a2e;
    color: var(--white);
    padding: 80px 2rem 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
}

.footer-logo h3 {
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 1rem;
    opacity: 0.8;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-info i {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

.footer-bottom a {
    color: var(--white);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--accent-color);
}

/* 动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 1024px) {
    nav {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, #06192e 0%, #0e2a48 100%);
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
        box-shadow: 0 16px 32px rgba(0, 15, 30, 0.4);
        border-top: 1px solid rgba(243, 156, 18, 0.35);
        flex-wrap: wrap;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 1.5rem;
        border-radius: 0;
        text-align: left;
    }
    
    .nav-links a::before {
        left: 1.5rem;
        bottom: 0.6rem;
        transform: translateX(0);
    }
    
    .nav-links a:hover::before,
    .nav-links a.active::before {
        width: 28px;
    }
    
    .lang-select {
        margin-right: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .service-content,
    .intro-content,
    .form-content {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .process-timeline::before {
        left: 30px;
        top: 0;
        bottom: 0;
        width: 4px;
        height: 100%;
        transform: none;
    }
    
    .process-step {
        width: 100%;
        max-width: 400px;
        padding-left: 80px;
    }
    
    .step-number {
        position: absolute;
        left: 0;
        margin: 0;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        padding-right: 0;
        padding-left: 80px;
        justify-content: flex-start;
    }
    
    .timeline-item:nth-child(even) {
        padding-left: 80px;
    }
    
    .timeline-date {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .news-card {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .products-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-magazine {
        grid-template-columns: 1fr;
    }

    .news-card-featured .news-image {
        height: 260px;
    }

    .news-card-featured .news-content {
        padding: 1.5rem;
    }

    .news-card-featured .news-content h3 {
        font-size: 1.25rem;
    }

    .news-card-compact {
        grid-template-columns: 140px 1fr;
    }

    .news-meta {
        gap: 1rem;
    }
    
    .product-specs {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
}


/* Tablet: allow nav items to wrap when space is limited */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 0.15rem;
    }
    
    .nav-links a {
        padding: 0.4rem 0.7rem;
        font-size: 0.85rem;
    }
    
    header nav {
        gap: 0.3rem;
    }
}

/* 弹窗样式 */
.popup-overlay {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: none;
}

.popup-overlay.active {
    display: block;
}

.popup-container {
    width: 380px;
    max-width: calc(100vw - 40px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    animation: popupSlideIn 0.4s ease;
    font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-header {
    background: linear-gradient(135deg, #1a5276, #2e86c1);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.popup-header h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.popup-body {
    padding: 20px;
}

.popup-body p {
    margin-bottom: 12px;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.6;
}

.popup-contact {
    margin-bottom: 16px;
}

.popup-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.85rem;
}

.popup-contact-item i {
    color: #1a5276;
    width: 20px;
    text-align: center;
}

.popup-buttons {
    display: flex;
    gap: 10px;
}

.popup-buttons .btn {
    flex: 1;
    text-align: center;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.popup-btn-primary {
    background: linear-gradient(135deg, #1a5276, #2e86c1);
    color: white;
    border: none;
}

.popup-btn-primary:hover {
    background: linear-gradient(135deg, #2e86c1, #1a5276);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 82, 118, 0.3);
}

.popup-btn-secondary {
    background: transparent;
    color: #1a5276;
    border: 2px solid #1a5276;
}

.popup-btn-secondary:hover {
    background: #1a5276;
    color: white;
    transform: translateY(-2px);
}

.popup-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 0.8rem;
    color: #888;
}

.popup-checkbox input[type="checkbox"] {
    accent-color: #1a5276;
}

.popup-brand {
    text-align: center;
    padding: 12px;
    background: rgba(26, 82, 118, 0.05);
    font-size: 0.75rem;
    color: #888;
}

.popup-brand strong {
    color: #1a5276;
}

.popup-float-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a5276, #2e86c1);
    color: white;
    border: none;
    box-shadow: 0 5px 20px rgba(26, 82, 118, 0.4);
    cursor: pointer;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    transition: all 0.3s ease;
    animation: popupFloat 2s ease-in-out infinite;
}

@keyframes popupFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.popup-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(26, 82, 118, 0.5);
}

.popup-float-btn.hidden {
    display: none;
}

.popup-form-group {
    margin-bottom: 12px;
}

.popup-form-group input,
.popup-form-group select,
.popup-form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid rgba(26, 82, 118, 0.2);
    border-radius: 8px;
    font-size: 0.85rem;
    font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.popup-form-group input:focus,
.popup-form-group select:focus,
.popup-form-group textarea:focus {
    border-color: #1a5276;
    box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.1);
}

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

.popup-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a5276' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.popup-buttons {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.popup-btn-primary {
    flex: 2;
    background: linear-gradient(135deg, #1a5276, #2e86c1);
    color: white;
    border: none;
    cursor: pointer;
}

.popup-btn-primary:hover {
    background: linear-gradient(135deg, #2e86c1, #1a5276);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 82, 118, 0.3);
}

.popup-btn-secondary {
    flex: 1;
    background: transparent;
    color: #1a5276;
    border: 2px solid #1a5276;
    cursor: pointer;
}

.popup-btn-secondary:hover {
    background: #1a5276;
    color: white;
    transform: translateY(-2px);
}

.popup-form-success {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.popup-form-success.show {
    display: block;
}

.popup-form-success i {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 10px;
}

.popup-form-success h4 {
    color: #1a5276;
    margin-bottom: 8px;
}

.popup-form-success p {
    color: #666;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .popup-container {
        width: calc(100vw - 40px);
        right: 0;
    }
    
    .popup-overlay {
        bottom: 10px;
        right: 10px;
    }
    
    .popup-float-btn {
        bottom: 10px;
        right: 10px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}