/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* 导航栏样式 */
.navbar {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    box-shadow: 0 2px 20px rgba(30, 58, 138, 0.15);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    backdrop-filter: blur(10px);
}

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

.nav-logo a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-logo a:hover {
    color: #fbbf24;
    transform: scale(1.05);
}

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

.nav-item {
    position: relative;
}

.badge {
    background: #fbbf24;
    color: #1e3a8a;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fbbf24;
}

.badge {
    background: #fbbf24;
    color: #1e3a8a;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 12px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown li {
    margin: 0;
}

.nav-dropdown a {
    color: #333;
    text-decoration: none;
    padding: 12px 20px;
    display: block;
    transition: all 0.3s ease;
    font-size: 14px;
    border-radius: 0;
}

.nav-dropdown a:hover {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    transform: translateX(5px);
}

/* 为导航栏留出空间 */
body {
    padding-top: 70px;
}



/* 按钮样式 */
.btn-primary, .btn-secondary, .consult-btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #e53935 0%, #b71c1c 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b71c1c 0%, #c62828 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 57, 53, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #e53935 0%, #b71c1c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #b71c1c 0%, #c62828 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 57, 53, 0.4);
}

.consult-btn {
    background: linear-gradient(135deg, #e53935 0%, #b71c1c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
}

.consult-btn:hover {
    background: linear-gradient(135deg, #b71c1c 0%, #c62828 100%);
    box-shadow: 0 5px 15px rgba(229, 57, 53, 0.4);
}

/* 悬浮咨询窗 */
.float-consultation {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-item {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.float-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.float-item:hover .float-qr {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.float-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.float-icon i {
    font-size: 18px;
}

.float-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.float-title {
    font-size: 14px;
    font-weight: 500;
}

.float-qr {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: white;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    min-width: 120px;
    text-align: center;
    margin-right: 10px;
}

.float-qr img {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    margin-bottom: 5px;
}

.qr-tip {
    font-size: 12px;
    color: #333;
    margin: 0;
    font-weight: 500;
}

/* 二维码按钮样式 */
.float-item.qr-item {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    min-width: 120px;
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.float-qr-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.float-qr-code img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.float-qr-code .qr-tip {
    font-size: 15px;
    color: #fff;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    margin-top: 4px;
    letter-spacing: 2px;
    text-align: center;
}

/* 弹窗样式 */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.popup-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: popupSlideIn 0.3s ease;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.popup-header h3 {
    color: #333;
    font-size: 20px;
}

.popup-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    color: #333;
}

.qr-code {
    margin: 20px 0;
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.phone-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.phone-icon svg {
    width: 30px;
    height: 30px;
}

.phone-details {
    flex: 1;
}

.phone-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.phone-number {
    font-size: 24px;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 8px;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.phone-details p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

.popup-actions {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.copy-btn, .call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.copy-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.copy-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.call-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.call-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.copy-btn svg, .call-btn svg {
    width: 18px;
    height: 18px;
}

/* 弹窗触发按钮 */
.popup-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #f4511e 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 24px; /* 由50px改为24px，更像圆角长方形 */
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
    font-weight: 500;
    min-width: 120px;    /* 增加最小宽度，保证长方形比例 */
    height: 48px;        /* 固定高度，按钮更规整 */
    padding: 0 28px;     /* 左右内边距适当加大 */
    white-space: nowrap;
}

.popup-trigger:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

/* 首页区块 */
.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    color: white;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 10%;
    padding: 40px;
}

.hero-content h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

/* 区块通用样式 */
.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
}

/* 产品特点区块 */
.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* 适用范围区块 */
.applications-section {
    padding: 80px 0;
    background: white;
}

.applications-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.applications-text h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.applications-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.applications-text li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #666;
    font-size: 16px;
}

.applications-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
    font-size: 18px;
}

.applications-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 产品细节区块 */
.product-details-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.product-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-info h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.product-info ul {
    list-style: none;
    margin-bottom: 30px;
}

.product-info li {
    padding: 8px 0;
    color: #666;
    font-size: 16px;
}

.certification {
    background: #e8f4fd;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.certification p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

/* 应用场景区块 */
.scenarios-section {
    padding: 80px 0;
    background: white;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.scenario-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.scenario-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.scenarios-section .scenario-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px; /* 可根据实际高度调整 */
}

.scenario-content {
    padding: 30px;
}

.scenario-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.scenario-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* 相关动态区块 */
.news-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.news-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

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

.news-content {
    padding: 30px;
}

.news-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
}

.news-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1e3a8a;
}

/* 页脚 */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ecf0f1;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
}

.copyright {
    text-align: center;
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.6;
}

.copyright a {
    color: #bdc3c7;
    text-decoration: none;
}

.copyright a:hover {
    color: #ecf0f1;
}

/* 图标样式 */
.icon-phone::before {
    content: "📞";
}

.icon-wechat::before {
    content: "💬";
}

.icon-call::before {
    content: "📱";
}

/* 响应式设计 */
@media (max-width: 768px) {
    /* 移动端导航栏 */
    .nav-container {
        padding: 0 15px;
        justify-content: center;
    }

    .nav-menu {
        display: none;
    }

    .nav-logo a {
        font-size: 16px;
        text-align: center;
    }

    .hero-section {
        height: auto;
        padding: 60px 0;
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        position: static;
        width: 100%;
        height: 300px;
        margin-bottom: 30px;
    }

    .hero-content {
        margin-left: 0;
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content h2 {
        font-size: 18px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .float-consultation {
        display: none;
    }

    .applications-content,
    .product-details {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid,
    .scenarios-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

    .container {
        padding: 0 15px;
    }

    .popup-content {
        margin: 20px;
        padding: 20px;
    }

    .popup-trigger {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content h2 {
        font-size: 16px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .btn-primary, .btn-secondary, .consult-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .feature-item,
    .scenario-item,
    .news-item {
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .popup-trigger {
        border-radius: 20px; /* 小屏下也为圆角长方形 */
        min-width: 90px;
        height: 40px;
        padding: 0 18px;
    }
}

/* 名片样式 */
.business-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.card-header {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.company-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.company-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.company-info p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.card-content {
    padding: 20px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    font-family: 'Courier New', monospace;
}

.qr-code-section {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    margin-bottom: 20px;
}

.qr-code {
    margin-bottom: 10px;
}

.qr-code img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.qr-code-section p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.card-actions {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.copy-btn, .call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.copy-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.copy-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.call-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.call-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.copy-btn svg, .call-btn svg {
    width: 18px;
    height: 18px;
} 