
/* Header - exact match index.html */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    display: flex;
    align-items: center;
}
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--bg-primary);
    border-radius: 12px;
}
.logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}
.nav { display: flex; gap: 40px; }
.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.lang-switch select {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}
/* Blog Page Styles - matching main site design */
:root {
    --accent-gold: #c9a227;
    --accent-gold-light: #e6bc3a;
    --accent-gold-glow: rgba(201, 162, 39, 0.3);
    --text-primary: #f5f5f5;
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --bg-card-hover: #1a1a1a;
    --accent: #c9a227;
    --accent-light: #e6bc3a;
    --accent-glow: rgba(201, 162, 39, 0.3);
    --text: #f5f5f5;
    --text-muted: #888888;
    --border: rgba(255, 255, 255, 0.08);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Space Grotesk', 'JetBrains Mono', monospace;
    --font-display: 'Space Grotesk', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    padding-top: 80px;
}

/* Page Hero */
.page-hero {
    padding: 80px 40px 60px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.hero-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-mono);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Blog Section */
.blog-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(201, 162, 39, 0.15);
}

.blog-card-img {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-date {
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-card-title {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.blog-card-tag {
    display: inline-block;
    background: rgba(201, 162, 39, 0.12);
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-right: 8px;
    margin-bottom: 8px;
}

/* Blog Article Page */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px 80px;
}

.blog-post-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.blog-post-date {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.blog-post-header h1 {
    color: var(--text-primary);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: var(--font-mono);
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-tag {
    background: rgba(201, 162, 39, 0.12);
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
}

.read-time {
    color: var(--text-muted);
    font-size: 12px;
}

.blog-post-content {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.blog-post-content .lead {
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 400;
}

.blog-post-content h2 {
    color: var(--text-primary);
    font-size: 22px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-mono);
}

.blog-post-content h3 {
    color: var(--accent);
    font-size: 17px;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 12px;
}

.blog-post-content p {
    margin-bottom: 18px;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

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

.blog-post-content strong {
    color: var(--text-primary);
}

.blog-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
}

.blog-post-content table tr {
    border-bottom: 1px solid var(--border);
}

.blog-post-content table th {
    text-align: left;
    padding: 12px;
    color: var(--text-primary);
    font-weight: 600;
}

.blog-post-content table td {
    padding: 12px;
    color: var(--text-muted);
}

/* Inquiry CTA Box */
.inquiry-cta {
    background: linear-gradient(135deg, #1a2a3a 0%, #1a1a2e 100%);
    border: 1px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-top: 50px;
    text-align: center;
}

.inquiry-cta h3 {
    color: var(--text-primary);
    font-size: 20px;
    margin-bottom: 10px;
    font-family: var(--font-mono);
}

.inquiry-cta p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--bg-primary);
    padding: 12px 30px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}

.cta-btn:hover {
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 24px 40px;
    background: var(--bg-secondary);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    text-align: left;
}

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

.footer-contact a {
    color: var(--accent);
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

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

.footer-text {
    color: var(--text-muted);
    font-size: 12px;
}
    font-size: 13px;
}

@media (max-width: 768px) {
    .blog-section {
        padding: 40px 20px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-post {
        padding: 40px 20px 60px;
    }
}

/* Chat Widget */
#chat-widget { position: fixed; bottom: 20px; right: 20px; z-index: 9999; font-family: var(--font-sans); }
#chat-toggle { width: 60px; height: 60px; border-radius: 50%; background: #2563eb; border: none; cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,0.3); font-size: 28px; display: flex; align-items: center; justify-content: center; }
#chat-toggle:hover { background: #1d4ed8; }
#chat-window { display: none; width: 380px; height: 520px; background: #fff; border-radius: 16px; box-shadow: 0 8px 32px rgba(0,0,0,0.2); flex-direction: column; overflow: hidden; position: absolute; bottom: 70px; right: 0; }
#chat-window.open { display: flex; }
#chat-header { background: #2563eb; color: #fff; padding: 16px; font-weight: bold; display: flex; justify-content: space-between; align-items: center; }
#chat-close { background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }
#chat-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.chat-msg { max-width: 85%; padding: 10px 14px; border-radius: 12px; font-size: 14px; line-height: 1.5; word-break: break-word; }
.chat-msg.user { align-self: flex-end; background: #2563eb; color: #fff; border-bottom-right-radius: 4px; }
.chat-msg.ai { align-self: flex-start; background: #f1f5f9; color: #1e293b; border-bottom-left-radius: 4px; }
.chat-msg.loading { color: #64748b; font-style: normal; font-size: 13px; }
#chat-input-area { padding: 12px; border-top: 1px solid #e2e8f0; display: flex; gap: 8px; }
#chat-input { flex: 1; padding: 10px 14px; border: 1px solid #e2e8f0; border-radius: 8px; font-size: 14px; font-family: var(--font-sans); }
#chat-send { padding: 10px 18px; background: #2563eb; color: #fff; border: none; border-radius: 8px; cursor: pointer; font-size: 14px; font-weight: 600; }
#chat-send:hover { background: #1d4ed8; }

/* WhatsApp Float */
#wa-float { position: fixed; bottom: 90px; right: 20px; z-index: 9998; width: 60px; height: 60px; border-radius: 50%; background: #25D366; border: none; cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center; text-decoration: none; }
#wa-float:hover { background: #20bd5a; }

/* ===== Simple Footer CSS ===== */
.footer {
    padding: 32px 0 24px;
    border-top: 1px solid var(--border);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-text {
    font-size: 14px;
    color: #888888;
}
.footer-contact {
    font-size: 13px;
    color: #888888;
    margin-bottom: 16px;
}
.footer-links {
    display: flex;
    gap: 32px;
}
.footer-link {
    font-size: 14px;
    color: #a0a0a0;
    text-decoration: none;
}
.footer-link:hover {
    color: #c9a227;
}
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 5px;
    text-align: center;
    color: #555555;
    font-size: 13px;
}

/* Simple Footer */
.footer-simple {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 10px;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.footer-badges {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    padding-top: 4px;
}
.footer-badge {
    font-size: 12px;
    font-family: var(--font-mono);
    color: var(--accent-gold);
    background: rgba(201, 162, 39, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.2);
    padding: 5px 12px;
    border-radius: 4px;
    white-space: nowrap;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
}
.footer-logo .logo-text {
    color: var(--text-primary);
    font-size: 16px;
}
.footer-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #888888;
}
.footer-social {
    display: flex;
    gap: 6px;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: #888888;
    transition: var(--transition);
}
.social-link:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--bg-primary);
}
.footer-bottom p {
    font-size: 12px;
    color: #555555;
    margin: 0;
    line-height: 1.0;
}
/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding: 20px 0;
}

.page-number,
.page-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #333;
    border-radius: 8px;
    background: #0a0a0a;
    color: #a0a0a0;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.page-number:hover,
.page-nav:hover {
    border-color: #c9a227;
    color: #c9a227;
}

.page-number.active {
    background: #c9a227;
    border-color: #c9a227;
    color: #050505;
    font-weight: 600;
}

.page-nav {
    gap: 6px;
}

.page-nav.disabled {
    opacity: 0.3;
    pointer-events: none;
}

@media (max-width: 768px) {
    .pagination {
        gap: 6px;
    }
    
    .page-number,
    .page-nav {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
}
