/* 科技感增强样式 - Tech Enhancements */

/* 全局深色主题优化 */
body {
    background-color: #0a0e27;
    color: #e0e0e0;
}

.site-wrapper-reveal {
    background: linear-gradient(180deg, #0a0e27 0%, #121938 50%, #0a0e27 100%);
}

/* 导航栏发光效果 */
.header-sticky.tech-nav {
    background: rgba(10, 14, 39, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.3);
    box-shadow: 0 2px 20px rgba(0, 240, 255, 0.1);
}

.header-sticky.tech-nav.is-sticky {
    background: rgba(10, 14, 39, 0.98) !important;
    box-shadow: 0 4px 30px rgba(0, 240, 255, 0.2);
}

/* Logo发光效果 */
.header__logo img {
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
    transition: all 0.3s ease;
}

.header__logo img:hover {
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.8));
    transform: scale(1.05);
}

/* 链接悬停效果 */
.navigation-menu a,
.offcanvas-navigation a {
    color: #e0e0e0;
    transition: all 0.3s ease;
}

.navigation-menu a:hover,
.offcanvas-navigation a:hover {
    color: #00f0ff;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
}

/* 搜索图标发光 */
.search-icon a {
    transition: all 0.3s ease;
}

.search-icon a:hover {
    color: #00f0ff;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
}

/* 汉堡菜单图标优化 */
.mobile-navigation-icon i,
.page-open-off-sidebar i {
    background: linear-gradient(135deg, #00f0ff 0%, #7b2cbf 100%);
}

/* 轮播图标题发光 */
.rs-layer {
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

/* 服务卡片增强 */
.digital-agency-assistance__box.tech-card {
    background: linear-gradient(135deg, rgba(18, 25, 56, 0.9) 0%, rgba(10, 14, 39, 0.95) 100%);
    border: 1px solid rgba(0, 240, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.digital-agency-assistance__box.tech-card:hover {
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.2) 0%, rgba(0, 240, 255, 0.1) 100%);
    border-color: #00f0ff;
    box-shadow: 
        0 10px 40px rgba(0, 240, 255, 0.3),
        0 0 30px rgba(0, 240, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-10px) scale(1.02);
}

.digital-agency-assistance__box.tech-card h5 {
    color: #00f0ff;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    font-weight: 600;
    letter-spacing: 1px;
}

.digital-agency-assistance__content p {
    color: #b0b0b0;
}

/* 图片滑块增强 */
.single-flexible-slider.tech-card {
    background: rgba(18, 25, 56, 0.8);
    border: 1px solid rgba(0, 240, 255, 0.15);
    overflow: hidden;
    position: relative;
}

.single-flexible-slider.tech-card img {
    transition: all 0.5s ease;
    filter: brightness(0.9);
}

.single-flexible-slider.tech-card:hover img {
    filter: brightness(1.1) contrast(1.1);
    transform: scale(1.05);
}

/* 按钮增强 */
.tech-btn,
.ht-btn {
    background: linear-gradient(135deg, #00f0ff 0%, #7b2cbf 100%) !important;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-btn:hover,
.ht-btn:hover {
    background: linear-gradient(135deg, #7b2cbf 0%, #ff00ff 100%) !important;
    box-shadow: 
        0 6px 25px rgba(123, 44, 191, 0.5),
        0 0 30px rgba(255, 0, 255, 0.3);
    transform: translateY(-3px);
}

.tech-btn::before,
.ht-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.tech-btn:active::before,
.ht-btn:active::before {
    width: 300px;
    height: 300px;
}

/* 链接样式增强 */
.hover-style-link {
    color: #00f0ff !important;
    transition: all 0.3s ease;
    position: relative;
}

.hover-style-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00f0ff, #7b2cbf);
    transition: width 0.3s ease;
}

.hover-style-link:hover::after {
    width: 100%;
}

.hover-style-link:hover {
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
}

/* 页脚增强 */
.tech-footer {
    background: linear-gradient(180deg, #121938 0%, #0a0e27 100%);
    border-top: 2px solid rgba(0, 240, 255, 0.3);
    position: relative;
}

.tech-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00f0ff, #7b2cbf, #ff00ff, transparent);
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.footer-widget__title {
    color: #00f0ff !important;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-widget__list li,
.footer-widget__list a {
    color: #b0b0b0;
    transition: all 0.3s ease;
}

.footer-widget__list a:hover {
    color: #00f0ff;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
    padding-left: 10px;
}

/* 滚动到顶部按钮增强 */
.scroll-top {
    background: linear-gradient(135deg, #00f0ff 0%, #7b2cbf 100%);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    transition: all 0.3s ease;
}

.scroll-top:hover {
    background: linear-gradient(135deg, #7b2cbf 0%, #ff00ff 100%);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.6);
    transform: scale(1.1);
}

.scroll-top.show {
    animation: pulse 2s infinite;
}

/* Demo option toolbar优化 */
.demo-option-container {
    background: linear-gradient(180deg, #121938 0%, #0a0e27 100%) !important;
    border-left: 2px solid rgba(0, 240, 255, 0.3);
}

.demo-panel-header h6 {
    color: #00f0ff;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

/* 移动端菜单优化 */
.mobile-menu-overlay,
.page-oppen-off-sidebar {
    background: linear-gradient(180deg, #121938 0%, #0a0e27 100%);
}

.mobile-menu-overlay__header,
.page-oppen-off-sidebar__header {
    background: rgba(0, 240, 255, 0.1);
    border-bottom: 1px solid rgba(0, 240, 255, 0.3);
}

/* 搜索框优化 */
.search-overlay {
    background: rgba(10, 14, 39, 0.98);
}

.search-overlay__form input {
    background: rgba(18, 25, 56, 0.8);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: #e0e0e0;
}

.search-overlay__form input::placeholder {
    color: #808080;
}

.search-overlay__form input:focus {
    border-color: #00f0ff;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

/* 响应式优化 */
@media (max-width: 768px) {
    .tech-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .digital-agency-assistance__box.tech-card {
        margin-bottom: 20px;
    }
    
    .single-flexible-slider.tech-card {
        margin-bottom: 15px;
    }
}

/* 加载动画优化 */
.preloader-activate {
    background: #0a0e27;
}

.preloader-activate::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 240, 255, 0.3);
    border-top-color: #00f0ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* 社交链接增强 */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 50%;
    color: #00f0ff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #00f0ff 0%, #7b2cbf 100%);
    color: white;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    transform: translateY(-3px) scale(1.1);
}
