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

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.navbar {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
}

.logo-text {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.logo-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #fff;
}

.nav-contact {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.nav-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

/* 移动端导航按钮 */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.nav-toggle span {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* 移动端导航菜单 */
.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.nav-mobile.active {
    display: block;
}

.nav-mobile-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-mobile-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s;
}

.nav-mobile-menu a:hover,
.nav-mobile-menu a.active {
    color: #fff;
}

.hero {
    background: linear-gradient(180deg, #0a1628 0%, #1a2a4a 50%, #2d4a6f 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.title-highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 28px;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.btn-outline {
    background: transparent;
    color: #1a2a4a;
    border: 2px solid #1a2a4a;
}

.btn-outline:hover {
    background: #1a2a4a;
    color: #fff;
}

.stats {
    background: #fff;
    padding: 60px 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.core-value,
.cases {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: #666;
}

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

.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.value-icon.blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.value-icon.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.value-icon.green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.value-icon.orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.value-icon.pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.value-icon.blue-light {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.value-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a2a4a;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.learn-more {
    font-size: 14px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.learn-more:hover {
    text-decoration: underline;
}

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

.case-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.case-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.case-info {
    padding: 25px;
}

.case-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a2a4a;
    margin-bottom: 10px;
}

.case-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.case-link {
    font-size: 14px;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
}

.case-link:hover {
    text-decoration: underline;
}

.cases-more {
    text-align: center;
    margin-top: 40px;
}

.cta {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer {
    background: #0a1628;
    padding: 60px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-section {
    color: #fff;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: contain;
}

.footer-logo span {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.footer-section p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.qr-code {
    text-align: center;
}

.qr-code img {
    width: 100px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

.qr-code span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* 二维码触发按钮 */
.qr-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 120px;
}

.qr-trigger:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.qr-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.qr-trigger span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

/* 二维码弹窗 */
.qr-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.qr-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-modal-content {
    background: linear-gradient(135deg, #1a2a4a 0%, #0a1628 100%);
    margin: auto;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.qr-modal-content img {
    width: 250px;
    height: auto;
    border-radius: 15px;
    margin-bottom: 20px;
}

.qr-modal-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin: 0;
}

.qr-modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.qr-modal-close:hover,
.qr-modal-close:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

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

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .core-value-grid,
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

.about-hero {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
    padding: 80px 0;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.about-hero-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.company-intro {
    padding: 80px 0;
    background: #fff;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.intro-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.stat-box .stat-num {
    font-size: 36px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 8px;
}

.stat-box .stat-name {
    font-size: 14px;
    color: #666;
}

.core-team {
    padding: 80px 0;
    background: #fff;
}

.core-team .section-header h2 {
    color: #1a2a4a;
}

.core-team .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.team-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid #f0f0f0;
}

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

.team-info {
    text-align: left;
}

.team-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a2a4a;
    margin-bottom: 5px;
}

.team-info .team-title {
    font-size: 14px;
    color: #3b82f6;
    margin-bottom: 15px;
    font-weight: 500;
}

.team-info p {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
}

.corporate-culture {
    padding: 80px 0;
    background: #fff;
}

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

.culture-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 15px;
}

.culture-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.culture-icon.blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.culture-icon.green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.culture-icon.orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.culture-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a2a4a;
    margin-bottom: 15px;
}

.culture-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.partners {
    padding: 80px 0;
    background: #f8f9fa;
}

.partners-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.partner-item img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.partner-item:hover img {
    opacity: 1;
}

.partner-item span {
    font-size: 14px;
    color: #666;
}

.contact-cta {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
    padding: 80px 0;
    text-align: center;
}

.contact-cta .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-cta h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .core-value-grid,
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .intro-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .nav-contact {
        display: none;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-desc {
        font-size: 14px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .core-value-grid,
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .partners-content {
        gap: 30px;
    }
}

.news-hero,
.contact-hero {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
    padding: 60px 0;
    text-align: center;
}

.news-hero-content h1,
.contact-hero-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.news-hero-content p,
.contact-hero-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.news-filter {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.filter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    background: #f5f5f5;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    background: #e8e8e8;
}

.filter-btn.active {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
}

.news-grid {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.news-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

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

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

.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1a2a4a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
}

.news-cta {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
    padding: 60px 0;
    text-align: center;
}

.news-cta .cta-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.news-cta .cta-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.contact-main {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2,
.contact-form h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a2a4a;
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.info-icon.phone {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.info-icon.map {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.info-icon.clock {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.info-icon.mail {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.info-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a2a4a;
    margin-bottom: 5px;
}

.info-content p {
    font-size: 14px;
    color: #333;
    margin-bottom: 3px;
}

.info-hint {
    font-size: 12px;
    color: #999 !important;
}

.social-section {
    background: #0a1628;
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
}

.social-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.social-icon span:first-child {
    font-size: 24px;
}

.social-icon span:last-child {
    font-size: 13px;
    color: #fff;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group textarea {
    resize: none;
}

.btn.full-btn {
    width: 100%;
    justify-content: center;
}

.form-hint {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 15px;
}

.contact-bottom-cta {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
    padding: 60px 0;
    text-align: center;
}

.contact-bottom-cta .cta-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.contact-bottom-cta .cta-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.contact-btn {
    font-size: 20px !important;
    padding: 15px 50px !important;
}

@media (max-width: 992px) {
    .news-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .news-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .social-icons {
        justify-content: center;
    }
}

.solutions-hero {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
    padding: 60px 0;
    text-align: center;
}

.solutions-hero-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.solutions-hero-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.solutions-main {
    padding: 60px 0;
    background: #f8f9fa;
}

.solutions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.solution-card {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 40px;
}

.solution-tag {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
}

.solution-row {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
}

.solution-card.reverse-card .solution-row {
    flex-direction: row-reverse;
}

.solution-image-wrap {
    flex: 1;
    max-width: 50%;
    border-radius: 12px;
    overflow: hidden;
}

.solution-image-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.solution-text {
    flex: 1;
    max-width: 50%;
}

.solution-section {
    margin-bottom: 25px;
}

.solution-section:last-child {
    margin-bottom: 0;
}

.solution-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.solution-list {
    list-style: none;
    padding: 0;
}

.solution-list li {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
}

.solution-list li .dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    margin-right: 12px;
    margin-top: 6px;
    flex-shrink: 0;
}

.solution-results {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(247, 147, 30, 0.08) 100%);
    border-radius: 12px;
    padding: 20px 30px;
    margin-bottom: 25px;
}

.result-box {
    font-size: 15px;
    color: #666;
}

.result-num {
    color: #ff6b35;
    font-weight: 600;
}

.result-text {
    color: #666;
}

.solution-btn {
    text-align: left;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #ff6b35;
    color: #ff6b35;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-outline:hover {
    background: #ff6b35;
    color: #fff;
}

.btn-secondary {
    padding: 12px 30px;
    background: #f5f5f5;
    color: #666;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background: #e8e8e8;
    color: #333;
}

.solutions-cta {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
    padding: 60px 0;
    text-align: center;
}

.solutions-cta .cta-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.solutions-cta .cta-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .solution-card {
        padding: 25px;
    }
    
    .solution-row {
        flex-direction: column !important;
        gap: 25px;
    }
    
    .solution-image-wrap,
    .solution-text {
        max-width: 100%;
        width: 100%;
    }
    
    .solution-image-wrap img {
        height: 200px;
    }
    
    .solution-btn {
        text-align: center;
    }
    
    .btn-outline {
        width: 100%;
        text-align: center;
    }
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
    padding: 60px 0;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.services-hero-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.services-main {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.blue-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.purple-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.green-icon {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.orange-icon {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.pink-icon {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
}

.purple-light-icon {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
}

.service-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.service-desc p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-section {
    margin-bottom: 20px;
}

.service-section h3 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.service-section ul {
    list-style: none;
    padding: 0;
}

.service-section li {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

.service-section li .dot {
    width: 6px;
    height: 6px;
    background: #ff6b35;
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 6px;
    flex-shrink: 0;
}

.service-btn {
    margin-top: 20px;
}

.services-cta {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.services-cta .cta-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.services-cta .cta-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
    }
}

/* Cases Page Styles */
.cases-hero {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
    padding: 60px 0;
    text-align: center;
}

.cases-hero-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.cases-hero-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.cases-main {
    padding: 60px 0;
    background: #f8f9fa;
}

.cases-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cases-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: #ff6b35;
    color: #ff6b35;
}

.filter-btn.active {
    background: #1a2a4a;
    border-color: #1a2a4a;
    color: #fff;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.case-image {
    position: relative;
}

.case-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.case-info {
    padding: 25px;
}

.case-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.case-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.case-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.stat-item {
    text-align: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #ff6b35;
}

.stat-label {
    font-size: 12px;
    color: #666;
}

.case-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #1a2a4a;
    color: #fff;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.case-btn:hover {
    background: #0a1628;
}

.cases-cta {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
    padding: 60px 0;
    text-align: center;
}

.cases-cta .cta-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.cases-cta .cta-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.btn-primary-orange {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
}

.btn-primary-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

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

@media (max-width: 768px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .cases-filter {
        flex-wrap: wrap;
    }
    
    .filter-btn {
        padding: 8px 20px;
    }
}

/* News Card Link */
.news-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-card-link:hover .news-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.news-card {
    transition: all 0.3s ease;
}

/* News Detail Page */
.news-detail {
    padding: 60px 0;
    background: #f8f9fa;
}

.detail-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.detail-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.detail-meta {
    display: flex;
    gap: 20px;
    color: #999;
    font-size: 14px;
    margin-bottom: 30px;
}

.detail-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.detail-content {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

.detail-content p {
    margin-bottom: 20px;
}

.detail-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a2a4a;
    margin-top: 30px;
    margin-bottom: 15px;
}

.detail-content ul,
.detail-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.detail-content li {
    margin-bottom: 10px;
}

.detail-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    text-align: center;
}