/* 河北永舟科技有限公司官网样式 - 精美高档配色 */

/* 
 * 配色方案：尊贵奢华风格
 * - 主色：深邃蓝 #0f172a（沉稳、深邃）
 * - 深色背景：深蓝灰 #1e293b
 * - 强调色：香槟金 #f0c674（高贵、精致）
 * - 次强调：玫瑰金 #c9a0dc（柔美、典雅）
 * - 辅助色：科技蓝 #3b82f6
 * - 背景：珍珠白 #f8fafc
 * - 文字：深灰 #334155
 */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    color: #334155;
    background: #f8fafc;
}

img {
    max-width: 100%;
    display: block;
}

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

/* ========== 导航栏 - 高端质感 ========== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #f0c674 0%, #c9a0dc 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(240, 198, 116, 0.3);
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 2px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.toggle-line {
    width: 24px;
    height: 2px;
    background: #0f172a;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #475569;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f0c674, #c9a0dc);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #0f172a;
}

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

.nav-btn {
    padding: 12px 28px;
    background: linear-gradient(135deg, #f0c674 0%, #c9a0dc 100%);
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(240, 198, 116, 0.25);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 198, 116, 0.35);
}

.nav-decoration {
    height: 3px;
    background: linear-gradient(90deg, transparent, #f0c674, #c9a0dc, #3b82f6, #c9a0dc, #f0c674, transparent);
}

/* ========== Hero区域 - 精美大气 ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 30%, #0f172a 60%, #1e293b 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(240, 198, 116, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(201, 160, 220, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.06) 0%, transparent 40%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.glow-1 {
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(240, 198, 116, 0.15) 0%, rgba(201, 160, 220, 0.08) 30%, transparent 60%);
    animation: glowFloat 8s ease-in-out infinite;
}

.glow-2 {
    bottom: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(240, 198, 116, 0.06) 30%, transparent 60%);
    animation: glowFloat 10s ease-in-out infinite reverse;
}

@keyframes glowFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.8; }
    50% { transform: translateY(-20px) scale(1.05); opacity: 1; }
}

.hero-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(240, 198, 116, 0.1), transparent);
    height: 1px;
}

.line-1 { top: 20%; left: 0; width: 100%; }
.line-2 { top: 50%; left: 0; width: 60%; }
.line-3 { top: 80%; right: 0; width: 70%; }

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    color: #fff;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(240, 198, 116, 0.15);
    border: 1px solid rgba(240, 198, 116, 0.3);
    border-radius: 30px;
    font-size: 14px;
    color: #f0c674;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.hero-title {
    margin-bottom: 28px;
}

.title-line {
    display: block;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.title-gradient {
    display: block;
    font-size: 24px;
    font-weight: 600;
    background: linear-gradient(90deg, #f0c674 0%, #c9a0dc 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
}

.hero-desc {
    font-size: 16px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 48px;
    max-width: 500px;
    letter-spacing: 0.5px;
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
}

.stat-card {
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(240, 198, 116, 0.15);
    text-align: center;
    min-width: 120px;
    position: relative;
}

.stat-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f0c674, #c9a0dc, #3b82f6);
    border-radius: 12px 12px 0 0;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #f0c674 0%, #c9a0dc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 16px 36px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.btn-primary {
    background: linear-gradient(135deg, #f0c674 0%, #c9a0dc 100%);
    color: #0f172a;
    box-shadow: 0 8px 30px rgba(240, 198, 116, 0.3);
    overflow: hidden;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(240, 198, 116, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(240, 198, 116, 0.4);
    color: #f0c674;
}

.btn-outline:hover {
    background: rgba(240, 198, 116, 0.1);
    border-color: #f0c674;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual {
    position: relative;
    width: 400px;
    height: 400px;
}

.visual-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: ringRotate 20s linear infinite;
}

.ring-1 {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-color: rgba(240, 198, 116, 0.2);
}

.ring-2 {
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    border-color: rgba(201, 160, 220, 0.15);
    animation-duration: 15s;
    animation-direction: reverse;
}

.ring-3 {
    top: 30%;
    left: 30%;
    width: 40%;
    height: 40%;
    border-color: rgba(59, 130, 246, 0.1);
    animation-duration: 10s;
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.visual-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-icon {
    width: 80px;
    height: 80px;
    color: #f0c674;
    opacity: 0.8;
}

.icon-svg {
    width: 100%;
    height: 100%;
}

.center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: 700;
    color: #f0c674;
    letter-spacing: 2px;
}

.visual-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #f0c674;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.dot-1 { top: 0; left: 50%; animation-delay: 0s; }
.dot-2 { top: 25%; right: 7%; animation-delay: 0.3s; background: #c9a0dc; }
.dot-3 { bottom: 25%; right: 7%; animation-delay: 0.6s; }
.dot-4 { bottom: 0; left: 50%; animation-delay: 0.9s; background: #c9a0dc; }
.dot-5 { bottom: 25%; left: 7%; animation-delay: 1.2s; }
.dot-6 { top: 25%; left: 7%; animation-delay: 1.5s; background: #c9a0dc; }

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.5); opacity: 1; }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    letter-spacing: 1px;
    animation: scrollBounce 2s ease-in-out infinite;
    z-index: 2;
}

.scroll-icon {
    font-size: 18px;
}

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

/* ========== 通用标题 ========== */
.section-title {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #f0c674 0%, #c9a0dc 50%, #f0c674 100%);
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-desc {
    text-align: center;
    color: #64748b;
    margin-bottom: 70px;
    font-size: 16px;
    letter-spacing: 0.5px;
}

/* ========== 业务服务 ========== */
.services {
    padding: 120px 0;
    background: #f8fafc;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(15, 23, 42, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(240, 198, 116, 0.08);
    position: relative;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f0c674, #c9a0dc);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

.service-img {
    height: 220px;
    overflow: hidden;
}

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

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

.service-info {
    padding: 32px;
}

.service-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.service-info p {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.service-tags span {
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(240, 198, 116, 0.15) 0%, rgba(201, 160, 220, 0.1) 100%);
    color: #334155;
    font-size: 13px;
    border-radius: 8px;
    font-weight: 500;
    border: 1px solid rgba(240, 198, 116, 0.2);
}

/* ========== 核心优势 ========== */
.advantages {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: #fff;
    position: relative;
}

.advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 198, 116, 0.4), transparent);
}

.advantages .section-title {
    color: #fff;
}

.advantages .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

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

.advantage-item {
    text-align: center;
    padding: 48px 36px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(240, 198, 116, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #f0c674, #c9a0dc);
    opacity: 0.6;
}

.advantage-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(240, 198, 116, 0.25);
    transform: translateY(-6px);
}

.advantage-item:hover::before {
    width: 80px;
    opacity: 1;
}

.advantage-icon {
    font-size: 44px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #f0c674 0%, #c9a0dc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantage-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.advantage-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* ========== 联系我们 ========== */
.contact {
    padding: 120px 0;
    background: #f8fafc;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    background: #fff;
    padding: 36px;
    border-radius: 16px;
    display: flex;
    gap: 28px;
    box-shadow: 0 8px 40px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(240, 198, 116, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.contact-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f0c674, #c9a0dc);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(15, 23, 42, 0.1);
}

.contact-icon {
    font-size: 24px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #f0c674;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 17px;
    color: #0f172a;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-item p {
    font-size: 15px;
    color: #64748b;
}

/* ========== 底部 ========== */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    padding: 80px 0 50px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f0c674, #c9a0dc, #3b82f6, #c9a0dc, #f0c674, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 70px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 24px;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #f0c674 0%, #c9a0dc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    font-size: 15px;
    opacity: 0.7;
    line-height: 1.9;
}

.footer-links {
    display: flex;
    gap: 60px;
    justify-content: flex-end;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #f0c674 0%, #c9a0dc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #f0c674;
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 50px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.4;
}

/* ========== 响应式设计 ========== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-desc {
        max-width: 100%;
    }
    
    .hero-right {
        order: -1;
    }
    
    .hero-visual {
        width: 300px;
        height: 300px;
    }
    
    .service-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .title-line {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 28px;
        flex-direction: column;
        gap: 24px;
        box-shadow: 0 8px 40px rgba(15, 23, 42, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-btn {
        text-align: center;
    }
    
    .hero {
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero-container {
        padding: 100px 20px 60px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-card {
        min-width: 100px;
        padding: 20px 24px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        justify-content: center;
    }
    
    .hero-visual {
        width: 250px;
        height: 250px;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .title-line {
        font-size: 32px;
    }
    
    .title-gradient {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .service-list,
    .advantage-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .title-line {
        font-size: 26px;
        letter-spacing: 2px;
    }
    
    .title-gradient {
        font-size: 16px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 20px;
    }
    
    .hero-desc {
        font-size: 14px;
    }
    
    .stat-card {
        min-width: 90px;
        padding: 16px 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .hero-visual {
        width: 200px;
        height: 200px;
    }
    
    .service-info {
        padding: 24px;
    }
    
    .advantage-item {
        padding: 30px 20px;
    }
    
    .contact-item {
        padding: 24px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        width: 56px;
        height: 56px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 36px;
    }
}