/* ============================================
   成都品茶网 - 黑金风格全站样式
   cdpc886.cn
   ============================================ */

/* === 全局变量 === */
:root {
    --gold: #D4AF37;
    --gold-light: #F5E6A3;
    --gold-dark: #B8960C;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F5E6A3 50%, #B8960C 100%);
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-tertiary: #1e1e1e;
    --bg-card: #1a1a1a;
    --text-primary: #f5f5f5;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --border-color: #2a2a2a;
    --border-gold: rgba(212, 175, 55, 0.3);
}

/* === 重置与基础 === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
}

/* === 滚动条美化 === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* === 顶部导航 === */
.top-bar {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid var(--border-gold);
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-muted);
    backdrop-filter: blur(10px);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: var(--gold);
    margin-left: 15px;
    font-size: 13px;
}

.top-bar a:hover {
    color: var(--gold-light);
}

header {
    background: linear-gradient(180deg, rgba(10,10,10,0.98) 0%, rgba(20,20,20,0.95) 100%);
    border-bottom: 2px solid var(--gold-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo img {
    height: 55px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    gap: 5px;
}

nav ul li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

nav ul li a:hover::after {
    width: 60%;
}

nav ul li a.active {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.15);
}

nav ul li a.active::after {
    width: 60%;
}

/* === 容器 === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === Banner区域 === */
.banner {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.banner h1 {
    font-size: 48px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: none;
    letter-spacing: 4px;
}

.banner p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.8;
}

.banner-btn {
    display: inline-block;
    padding: 15px 45px;
    background: var(--gold-gradient);
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(212, 175, 55, 0.3);
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.5);
    color: #0a0a0a;
}

/* === 装饰线 === */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0;
}

/* === 区块标题 === */
.section-title {
    text-align: center;
    padding: 60px 0 40px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 14px;
    letter-spacing: 2px;
}

.section-title .title-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* === 服务展示 === */
.services {
    padding: 40px 0 80px;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 0 20px rgba(212, 175, 55, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.service-card h3 {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* === 关于我们 === */
.about {
    padding: 40px 0 80px;
    background: var(--bg-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 20px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 2;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-gold);
}

.about-image img {
    width: 100%;
    display: block;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.stat-item .number {
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.stat-item .label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 5px;
}

/* === 文章列表 === */
.articles {
    padding: 40px 0 80px;
    background: var(--bg-secondary);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.article-card .card-img {
    height: 180px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--gold);
    position: relative;
    overflow: hidden;
}

.article-card .card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(26,26,26,0.8));
}

.article-card .card-body {
    padding: 20px;
}

.article-card .card-body h3 {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card .card-body h3 a {
    color: var(--text-primary);
}

.article-card .card-body h3 a:hover {
    color: var(--gold);
}

.article-card .card-body p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card .card-footer {
    padding: 12px 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
}

/* === 文章详情页 === */
.article-detail {
    padding: 40px 0 80px;
    background: var(--bg-primary);
}

.article-detail .container {
    max-width: 900px;
}

.article-detail .breadcrumb {
    padding: 15px 0;
    font-size: 14px;
    color: var(--text-muted);
}

.article-detail .breadcrumb a {
    color: var(--gold);
}

.article-detail .article-header {
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.article-detail .article-header h1 {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 15px;
    line-height: 1.5;
}

.article-detail .article-meta {
    display: flex;
    gap: 25px;
    font-size: 13px;
    color: var(--text-muted);
}

.article-detail .article-body {
    font-size: 16px;
    line-height: 2;
    color: var(--text-secondary);
}

.article-detail .article-body h2 {
    font-size: 22px;
    color: var(--gold);
    margin: 30px 0 15px;
    padding-left: 15px;
    border-left: 3px solid var(--gold);
}

.article-detail .article-body h3 {
    font-size: 18px;
    color: var(--gold-light);
    margin: 25px 0 12px;
}

.article-detail .article-body p {
    margin-bottom: 18px;
    text-indent: 2em;
}

.article-detail .article-body ul, .article-detail .article-body ol {
    margin: 15px 0;
    padding-left: 2em;
}

.article-detail .article-body li {
    margin-bottom: 8px;
    list-style: disc;
}

.article-detail .article-body ol li {
    list-style: decimal;
}

.article-detail .article-tags {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.article-detail .article-tags span {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    font-size: 13px;
    color: var(--gold);
    margin: 5px 5px 5px 0;
}

/* === 栏目列表页 === */
.category-page {
    padding: 40px 0 80px;
    background: var(--bg-primary);
}

.category-header {
    text-align: center;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.category-header h1 {
    font-size: 32px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.category-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.category-list {
    display: grid;
    gap: 25px;
}

.category-item {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-item:hover {
    border-color: var(--border-gold);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.category-item .item-img {
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: var(--gold);
}

.category-item .item-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-item .item-content h3 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.category-item .item-content h3 a {
    color: var(--text-primary);
}

.category-item .item-content h3 a:hover {
    color: var(--gold);
}

.category-item .item-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-item .item-meta {
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-muted);
}

/* === 联系我们 === */
.contact {
    padding: 40px 0 80px;
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.contact-info {
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.contact-info h3 {
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item .icon {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    border: 1px solid var(--border-gold);
}

.contact-item .text {
    flex: 1;
}

.contact-item .text .label {
    font-size: 13px;
    color: var(--text-muted);
}

.contact-item .text .value {
    font-size: 16px;
    color: var(--text-primary);
    margin-top: 3px;
}

.contact-form {
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.contact-form h3 {
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--gold-gradient);
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* === 页脚 === */
footer {
    background: var(--bg-secondary);
    border-top: 2px solid var(--gold-dark);
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h4 {
    font-size: 16px;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-col p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

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

.footer-col ul li a {
    font-size: 14px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

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

/* === 悬浮按钮 === */
.float-buttons {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    position: relative;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.float-btn:hover {
    transform: scale(1.15);
}

.float-btn.phone {
    background: linear-gradient(135deg, #D4AF37, #B8960C);
    color: #0a0a0a;
    animation: pulse-phone 2s infinite;
}

.float-btn.qq {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: var(--gold);
}

.float-btn.wechat {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: var(--gold);
}

.float-btn .tooltip {
    position: absolute;
    right: 65px;
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-gold);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.float-btn .tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--bg-card);
}

.float-btn:hover .tooltip {
    opacity: 1;
    right: 70px;
}

@keyframes pulse-phone {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* === 回到顶部 === */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold);
    color: #0a0a0a;
}

/* === Toast提示 === */
.toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(26, 26, 26, 0.95);
    color: var(--gold);
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 15px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* === 响应式设计 === */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .banner {
        height: 350px;
    }
    .banner h1 {
        font-size: 28px;
    }
    .banner p {
        font-size: 15px;
    }
    .header-inner {
        flex-direction: column;
        gap: 10px;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    nav ul li a {
        padding: 8px 12px;
        font-size: 13px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .articles-grid {
        grid-template-columns: 1fr;
    }
    .about-content {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .category-item {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .float-buttons {
        right: 10px;
        bottom: 80px;
    }
    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    .section-title h2 {
        font-size: 24px;
    }
}

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

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* === 特色优势区块 === */
.features {
    padding: 40px 0 80px;
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.feature-card {
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-5px);
}

.feature-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 17px;
    color: var(--gold);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* === 快速联系CTA === */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    text-align: center;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.cta-section h2 {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 15px;
}

.cta-section p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 16px;
}

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

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn.gold {
    background: var(--gold-gradient);
    color: #0a0a0a;
}

.cta-btn.gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: #0a0a0a;
}

.cta-btn.outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.cta-btn.outline:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}
