
/* GILE 2026 Yellow Pages - Main Stylesheet */
:root {
    --primary: #1a365d;
    --secondary: #c53030;
    --accent: #d69e2e;
    --light: #f7fafc;
    --dark: #2d3748;
    --text: #4a5568;
    --border: #e2e8f0;
    --success: #38a169;
    --gradient: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
}

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

body {
    font-family: 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: #f5f7fa;
}

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

/* Header */
.header {
    background: var(--gradient);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

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

.logo { display: flex; align-items: center; gap: 15px; }

.logo-icon {
    width: 50px; height: 50px; background: var(--accent);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 24px; font-weight: bold; color: white;
}

.logo-text h1 { font-size: 1.3rem; font-weight: 700; margin-bottom: 2px; }

.logo-text p { font-size: 0.8rem; opacity: 0.9; }

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

.nav a {
    color: white; text-decoration: none; padding: 8px 16px; border-radius: 6px;
    font-size: 0.9rem; transition: all 0.3s; font-weight: 500;
}

.nav a:hover, .nav a.active { background: rgba(255,255,255,0.15); }

/* Hero Section */
.hero {
    background: var(--gradient);
    color: white; padding: 60px 0; text-align: center;
    position: relative; overflow: hidden;
}

.hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    background-size: 100px 100px; opacity: 0.5;
}

.hero-content { position: relative; z-index: 1; }

.hero h2 { font-size: 2.5rem; margin-bottom: 15px; font-weight: 700; }

.hero p { font-size: 1.1rem; opacity: 0.9; max-width: 700px; margin: 0 auto 30px; }

.hero-stats {
    display: flex; justify-content: center; gap: 40px; margin-top: 30px;
    flex-wrap: wrap;
}

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

.stat-number { font-size: 2.5rem; font-weight: 700; color: var(--accent); display: block; }

.stat-label { font-size: 0.9rem; opacity: 0.8; }

/* Search Bar */
.search-section { background: white; padding: 30px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }

.search-box {
    display: flex; gap: 10px; max-width: 800px; margin: 0 auto;
    background: var(--light); padding: 10px; border-radius: 50px;
    border: 2px solid var(--border);
}

.search-box input {
    flex: 1; border: none; background: transparent; padding: 12px 20px;
    font-size: 1rem; outline: none;
}

.search-box select {
    border: none; background: white; padding: 12px 15px;
    border-radius: 25px; font-size: 0.9rem; cursor: pointer; outline: none;
}

.search-box button {
    background: var(--secondary); color: white; border: none;
    padding: 12px 30px; border-radius: 25px; cursor: pointer;
    font-size: 1rem; font-weight: 600; transition: all 0.3s;
}

.search-box button:hover { background: #9b2c2c; transform: translateY(-2px); }

/* Breadcrumb */
.breadcrumb {
    background: white; padding: 15px 0; border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.breadcrumb a { color: var(--primary); text-decoration: none; }

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb span { color: var(--text); margin: 0 8px; }

/* Content Sections */
.section { padding: 50px 0; }

.section-title {
    text-align: center; margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2rem; color: var(--primary); margin-bottom: 10px;
    position: relative; display: inline-block;
}

.section-title h2::after {
    content: ''; position: absolute; bottom: -8px; left: 50%;
    transform: translateX(-50%); width: 60px; height: 3px;
    background: var(--accent); border-radius: 2px;
}

.section-title p { color: var(--text); font-size: 1rem; max-width: 600px; margin: 15px auto 0; }

/* Category Cards */
.category-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px; margin-top: 30px;
}

.category-card {
    background: white; border-radius: 12px; padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: all 0.3s;
    border: 1px solid var(--border); text-decoration: none; color: var(--text);
    display: block;
}

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

.category-icon {
    width: 60px; height: 60px; background: var(--light);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin-bottom: 15px;
}

.category-card h3 { font-size: 1.2rem; color: var(--primary); margin-bottom: 8px; }

.category-card p { font-size: 0.9rem; color: var(--text); margin-bottom: 15px; }

.category-count {
    display: inline-block; background: var(--light); color: var(--primary);
    padding: 4px 12px; border-radius: 20px; font-size: 0.85rem; font-weight: 600;
}

/* Exhibitor Cards */
.exhibitor-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px; margin-top: 30px;
}

.exhibitor-card {
    background: white; border-radius: 12px; overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: all 0.3s;
    border: 1px solid var(--border);
}

.exhibitor-card:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }

.exhibitor-header {
    background: var(--gradient); color: white; padding: 20px;
    position: relative;
}

.exhibitor-header h3 { font-size: 1.1rem; margin-bottom: 5px; }

.exhibitor-header .en-name { font-size: 0.85rem; opacity: 0.8; }

.booth-badge {
    position: absolute; top: 20px; right: 20px;
    background: var(--accent); color: white; padding: 5px 12px;
    border-radius: 20px; font-size: 0.85rem; font-weight: 600;
}

.exhibitor-body { padding: 20px; }

.exhibitor-info { margin-bottom: 15px; }

.exhibitor-info p { font-size: 0.9rem; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }

.exhibitor-info .label { color: var(--dark); font-weight: 600; min-width: 70px; }

.exhibitor-info .value { color: var(--text); }

.exhibitor-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }

.tag {
    background: var(--light); color: var(--primary); padding: 3px 10px;
    border-radius: 15px; font-size: 0.8rem; border: 1px solid var(--border);
}

/* Hall Layout */
.hall-layout {
    background: white; border-radius: 12px; padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); margin-top: 30px;
}

.hall-map {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px; margin-top: 20px;
}

.hall-item {
    background: var(--light); border-radius: 10px; padding: 20px;
    text-align: center; transition: all 0.3s; cursor: pointer;
    border: 2px solid transparent;
}

.hall-item:hover { border-color: var(--primary); background: white; }

.hall-item h4 { color: var(--primary); font-size: 1.1rem; margin-bottom: 8px; }

.hall-item p { font-size: 0.85rem; color: var(--text); }

/* Table Styles */
.data-table {
    width: 100%; border-collapse: collapse; background: white;
    border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-top: 30px;
}

.data-table th {
    background: var(--gradient); color: white; padding: 15px;
    text-align: left; font-weight: 600; font-size: 0.9rem;
}

.data-table td { padding: 15px; border-bottom: 1px solid var(--border); font-size: 0.9rem; }

.data-table tr:hover { background: var(--light); }

.data-table a { color: var(--primary); text-decoration: none; font-weight: 600; }

.data-table a:hover { text-decoration: underline; }

/* Pagination */
.pagination {
    display: flex; justify-content: center; gap: 8px; margin-top: 40px;
    flex-wrap: wrap;
}

.pagination a, .pagination span {
    padding: 10px 16px; border-radius: 8px; text-decoration: none;
    font-size: 0.9rem; transition: all 0.3s;
}

.pagination a { background: white; color: var(--primary); border: 1px solid var(--border); }

.pagination a:hover { background: var(--primary); color: white; }

.pagination span { background: var(--primary); color: white; }

/* Sidebar */
.sidebar { background: white; border-radius: 12px; padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); position: sticky; top: 100px;
}

.sidebar h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: 20px;
    padding-bottom: 10px; border-bottom: 2px solid var(--accent);
}

.sidebar ul { list-style: none; }

.sidebar li { margin-bottom: 10px; }

.sidebar a {
    color: var(--text); text-decoration: none; font-size: 0.9rem;
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 12px; border-radius: 6px; transition: all 0.3s;
}

.sidebar a:hover { background: var(--light); color: var(--primary); }

.sidebar .count { background: var(--light); color: var(--primary); padding: 2px 8px;
    border-radius: 10px; font-size: 0.75rem; font-weight: 600;
}

/* Article Content */
.article-content {
    background: white; border-radius: 12px; padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); line-height: 1.9;
}

.article-content h2 { color: var(--primary); font-size: 1.8rem; margin: 30px 0 15px; }

.article-content h3 { color: var(--dark); font-size: 1.4rem; margin: 25px 0 12px; }

.article-content p { margin-bottom: 15px; font-size: 1.05rem; }

.article-content ul, .article-content ol { margin: 15px 0 15px 25px; }

.article-content li { margin-bottom: 8px; }

.article-content strong { color: var(--dark); }

.article-content img { max-width: 100%; border-radius: 8px; margin: 20px 0; }

/* SEO Content Block */
.seo-block {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-left: 4px solid var(--accent); padding: 25px 30px;
    border-radius: 0 12px 12px 0; margin: 30px 0;
}

.seo-block h4 { color: var(--primary); margin-bottom: 12px; font-size: 1.1rem; }

.seo-block p { font-size: 0.95rem; margin-bottom: 10px; }

/* Footer */
.footer {
    background: var(--dark); color: white; padding: 50px 0 20px; margin-top: 60px;
}

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

.footer-col h4 { font-size: 1.1rem; margin-bottom: 20px; color: var(--accent); }

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

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

.footer-col a { color: #a0aec0; text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }

.footer-col a:hover { color: white; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px;
    text-align: center; font-size: 0.85rem; color: #a0aec0;
}

/* Responsive */
@media (max-width: 768px) {
    .header-inner { flex-direction: column; gap: 15px; }
    .nav { flex-wrap: wrap; justify-content: center; }
    .hero h2 { font-size: 1.8rem; }
    .hero-stats { gap: 20px; }
    .stat-number { font-size: 2rem; }
    .search-box { flex-direction: column; border-radius: 20px; }
    .exhibitor-grid { grid-template-columns: 1fr; }
    .category-grid { grid-template-columns: 1fr; }
    .article-content { padding: 20px; }
}

/* Loading Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeIn 0.5s ease-out; }

/* Scroll to top */
.scroll-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 50px; height: 50px; background: var(--primary);
    color: white; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); opacity: 0;
    transition: all 0.3s; z-index: 999; font-size: 20px;
}

.scroll-top.visible { opacity: 1; }

.scroll-top:hover { background: var(--secondary); transform: translateY(-3px); }

/* Keyword highlight */
.keyword-highlight { background: rgba(214, 158, 46, 0.2); padding: 2px 4px; border-radius: 3px; }

/* Breadcrumb Schema */
.breadcrumb-schema { display: none; }

/* FAQ Section */
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }

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

.faq-question { font-weight: 600; color: var(--primary); font-size: 1.1rem; cursor: pointer; }

.faq-answer { margin-top: 10px; color: var(--text); font-size: 0.95rem; padding-left: 20px; }

/* Map Section */
.map-container {
    background: white; border-radius: 12px; overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); margin-top: 30px;
}

.map-info { padding: 25px; }

.map-info h3 { color: var(--primary); margin-bottom: 15px; }

.map-info p { margin-bottom: 10px; font-size: 0.95rem; }

.map-info .transport { background: var(--light); padding: 15px; border-radius: 8px; margin-top: 15px; }

.map-info .transport h4 { color: var(--dark); margin-bottom: 10px; font-size: 1rem; }

/* Related Links */
.related-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-top: 20px; }

.related-link {
    background: white; padding: 15px 20px; border-radius: 8px;
    border: 1px solid var(--border); text-decoration: none;
    color: var(--primary); font-weight: 600; font-size: 0.9rem;
    transition: all 0.3s; display: flex; align-items: center; gap: 10px;
}

.related-link:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* Quick Stats Bar */
.quick-stats {
    background: white; padding: 30px 0; border-bottom: 1px solid var(--border);
}

.quick-stats-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px; text-align: center;
}

.quick-stat h4 { font-size: 1.8rem; color: var(--primary); margin-bottom: 5px; }

.quick-stat p { font-size: 0.85rem; color: var(--text); }

/* Filter Bar */
.filter-bar {
    background: white; padding: 20px; border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); margin-bottom: 30px;
    display: flex; gap: 15px; flex-wrap: wrap; align-items: center;
}

.filter-bar label { font-weight: 600; color: var(--dark); font-size: 0.9rem; }

.filter-bar select, .filter-bar input {
    padding: 8px 15px; border: 1px solid var(--border); border-radius: 6px;
    font-size: 0.9rem; outline: none;
}

.filter-bar select:focus, .filter-bar input:focus { border-color: var(--primary); }

/* Two Column Layout */
.two-col { display: grid; grid-template-columns: 1fr 300px; gap: 30px; }

@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }

/* Schema markup helper */
.schema-markup { display: none; }

/* Print styles */
@media print {
    .header, .footer, .search-section, .scroll-top, .nav { display: none; }
    .article-content { box-shadow: none; }
}

/* ===== CONTACT BAR ===== */
.contact-bar {
    background: linear-gradient(135deg, #c53030 0%, #9b2c2c 100%);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 80px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.contact-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.contact-bar-title {
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-bar-items {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.9rem;
}
.contact-bar-items a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}
.contact-bar-items a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ===== CONTACT FLOATING BUTTON ===== */
.contact-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(197, 48, 48, 0.4);
    z-index: 998;
    font-size: 24px;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}
.contact-float:hover {
    transform: scale(1.1);
    background: #9b2c2c;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(197, 48, 48, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(197, 48, 48, 0.6); }
}

/* ===== CONTACT MODAL ===== */
.contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}
.contact-modal-overlay.active {
    display: flex;
}
.contact-modal {
    background: white;
    border-radius: 16px;
    padding: 0;
    max-width: 480px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease-out;
}
@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
.contact-modal-header {
    background: var(--gradient);
    color: white;
    padding: 25px 30px;
    border-radius: 16px 16px 0 0;
    position: relative;
}
.contact-modal-header h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}
.contact-modal-header p {
    opacity: 0.9;
    font-size: 0.9rem;
}
.contact-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}
.contact-modal-close:hover {
    background: rgba(255,255,255,0.2);
}
.contact-modal-body {
    padding: 25px 30px;
}
.contact-modal-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}
.contact-modal-item:last-child {
    border-bottom: none;
}
.contact-modal-icon {
    width: 40px;
    height: 40px;
    background: var(--light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.contact-modal-info h4 {
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 4px;
    font-weight: 500;
}
.contact-modal-info p, .contact-modal-info a {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
}
.contact-modal-info a:hover {
    color: var(--primary);
}
.contact-modal-qr {
    text-align: center;
    padding: 20px;
    background: var(--light);
    border-radius: 12px;
    margin-top: 15px;
}
.contact-modal-qr img {
    width: 150px;
    height: 150px;
    border-radius: 8px;
}
.contact-modal-qr p {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--text);
}

/* ===== HEADER LOGO ===== */
.logo-img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

/* ===== FOOTER LINKS ===== */
.footer-links-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-link-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a0aec0;
    font-size: 0.9rem;
}
.footer-link-item a {
    color: #d69e2e;
    text-decoration: none;
    font-weight: 600;
}
.footer-link-item a:hover {
    text-decoration: underline;
}

/* ===== OVERSEAS EXHIBITIONS ===== */
.overseas-exhibitions {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.overseas-exhibitions h4 {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 15px;
}
.overseas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}
.overseas-grid a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.overseas-grid a:hover {
    color: white;
}
.overseas-grid a::before {
    content: '→';
    color: var(--accent);
}

/* ===== PAGINATION ===== */
.pagination a.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* ===== HALL DETAIL PAGES ===== */
.hall-exhibitors-section {
    margin-top: 30px;
}

/* ===== RESPONSIVE CONTACT BAR ===== */
@media (max-width: 768px) {
    .contact-bar-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-bar-items {
        gap: 10px;
        font-size: 0.8rem;
    }
    .contact-float {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 80px;
        right: 15px;
    }
}

/* Contact Banner */
.contact-banner {
    background: linear-gradient(135deg, #c53030 0%, #9b2c2c 100%);
    color: white;
    padding: 25px 0;
    position: relative;
    overflow: hidden;
}

.contact-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.contact-banner-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-banner-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-banner-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
}

.contact-banner-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.contact-banner-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.contact-banner-item .icon {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.contact-banner-item .label {
    font-size: 0.75rem;
    opacity: 0.8;
    display: block;
}

.contact-banner-item .value {
    font-weight: 600;
    font-size: 1rem;
}

.contact-banner-btn {
    background: white;
    color: #c53030;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.contact-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Footer Company Info */
.footer-company {
    background: #1a202c;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-company-info h4 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-company-info p {
    color: #a0aec0;
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-company-info .highlight {
    color: white;
    font-weight: 600;
}

.footer-company-logo {
    text-align: right;
}

.footer-company-logo img {
    max-width: 150px;
    opacity: 0.8;
}

.footer-copyright {
    background: #111;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-copyright p {
    color: #718096;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

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

.footer-copyright a:hover {
    color: var(--accent);
}

/* Pagination Fix */
.pagination a.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Hall Links */
.hall-item a.hall-link {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 16px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}

.hall-item a.hall-link:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* Sticky Contact Bar */
.sticky-contact {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #1a365d 0%, #2c5282 100%);
    color: white;
    padding: 12px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.sticky-contact-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.sticky-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

.sticky-contact-item .label {
    opacity: 0.8;
}

.sticky-contact-item .value {
    font-weight: 600;
    color: var(--accent);
}

.sticky-contact-btn {
    background: var(--accent);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

body.has-sticky-contact {
    padding-bottom: 60px;
}

@media (max-width: 768px) {
    .contact-banner-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-company-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-company-logo {
        text-align: center;
    }
    .sticky-contact-inner {
        gap: 10px;
        font-size: 0.8rem;
    }
}
