:root {
    --primary: #1a3d2e;
    --gold: #c9a962;
    --black: #0d0d0d;
    --white: #ffffff;
    --gray: #f5f5f5;
    --text: #333;
    --text-light: #666;
}

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

body {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.lang-switch {
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.lang-switch a {
    color: #888;
    transition: color 0.3s;
}

.lang-switch a.active,
.lang-switch a:hover {
    color: var(--gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hero */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 50%, var(--primary) 100%);
    display: flex;
    align-items: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a962' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #f4d03f;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.btn-secondary {
    display: inline-block;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
}

.hero-visual {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    animation: fadeIn 1.5s ease 0.5s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cue-ball {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 30% 30%, #fff, #ddd, #999);
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    position: relative;
}

.cue-ball::after {
    content: 'AXIS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--black);
    letter-spacing: 2px;
}

/* Features */
.features {
    padding: 5rem 0;
    background: var(--gray);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.feature-card p {
    color: var(--text-light);
}

/* Products Preview */
.products-preview {
    padding: 5rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.product-img {
    height: 250px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    position: relative;
    overflow: hidden;
}

.product-img.premium {
    background: linear-gradient(135deg, #2c1810, #4a3728);
}

.product-img.sport {
    background: linear-gradient(135deg, #1a3d2e, #2d5a45);
}

.product-img.entry {
    background: linear-gradient(135deg, #3d3d3d, #5a5a5a);
}

.product-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
}

.product-card p {
    padding: 0 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.product-card .price {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.see-more {
    text-align: center;
    margin-top: 3rem;
}

/* CTA */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, #0f2419 100%);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta p {
    color: #aaa;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--black) 0%, var(--primary) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    color: #aaa;
    font-size: 1.2rem;
}

/* Products Page */
.products-page {
    padding: 4rem 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab {
    padding: 0.8rem 1.5rem;
    border: none;
    background: var(--gray);
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s;
    font-family: inherit;
}

.tab.active,
.tab:hover {
    background: var(--primary);
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 2rem;
}

.product-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    position: relative;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--black);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-image.premium-1 { background: linear-gradient(135deg, #2c1810, #5a3d2e); }
.product-image.premium-2 { background: linear-gradient(135deg, #1a2c1a, #2d4a2d); }
.product-image.sport-1 { background: linear-gradient(135deg, #1a3d2e, #2d5a45); }
.product-image.sport-2 { background: linear-gradient(135deg, #2d2d4a, #4a4a6a); }
.product-image.entry-1 { background: linear-gradient(135deg, #3d3d3d, #5a5a5a); }
.product-image.entry-2 { background: linear-gradient(135deg, #4a3d3d, #6a5a5a); }
.product-image.acc-1 { background: linear-gradient(135deg, #1a1a3d, #2d2d5a); }
.product-image.acc-2 { background: linear-gradient(135deg, #3d3d1a, #5a5a2d); }

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.product-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.product-info .price {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 1rem;
}

.btn-inquire {
    width: 100%;
    padding: 0.7rem;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-family: inherit;
}

.btn-inquire:hover {
    background: var(--primary);
    color: var(--white);
}

/* About Page */
.about-story {
    padding: 5rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.story-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary), #2d5a45);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

/* Craftsmanship */
.craftsmanship {
    padding: 5rem 0;
    background: var(--gray);
}

.craft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.craft-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s;
}

.craft-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.craft-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.craft-item h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.craft-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Stats */
.stats {
    padding: 5rem 0;
    background: var(--primary);
}

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

.stat-item {
    color: var(--white);
}

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

.stat-label {
    font-size: 1rem;
    color: #aaa;
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-pool-table {
    background: #1a3d2e;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    color: var(--white);
}

.contact-pool-table h2 {
    margin-bottom: 0.5rem;
}

.contact-pool-table > p {
    color: #aaa;
    margin-bottom: 2rem;
}

.pool-table {
    width: 100%;
    height: 280px;
    background: #0d2818;
    border-radius: 100px;
    position: relative;
    margin: 0 auto;
    max-width: 280px;
    border: 4px solid #c9a962;
}

.ball {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--black);
}

.ball:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.ball-8 {
    background: radial-gradient(circle at 30% 30%, #333, #000);
    color: var(--white);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.ball-8:hover {
    transform: translate(-50%, -50%) scale(1.2);
}

.ball-yellow { background: radial-gradient(circle at 30% 30%, #ffd700, #b8860b); left: 20%; top: 30%; }
.ball-blue { background: radial-gradient(circle at 30% 30%, #4169e1, #1e40af); left: 70%; top: 25%; }
.ball-red { background: radial-gradient(circle at 30% 30%, #dc143c, #8b0000); left: 75%; top: 65%; }
.ball-purple { background: radial-gradient(circle at 30% 30%, #9370db, #4b0082); left: 25%; top: 70%; }
.ball-orange { background: radial-gradient(circle at 30% 30%, #ffa500, #ff8c00); left: 55%; top: 15%; }
.ball-green { background: radial-gradient(circle at 30% 30%, #32cd32, #228b22); left: 15%; top: 50%; }
.ball-brown { background: radial-gradient(circle at 30% 30%, #8b4513, #5d2906); left: 60%; top: 75%; }

.ball-cue {
    width: 80px;
    height: 12px;
    background: linear-gradient(90deg, #8b4513, #d2691e);
    position: absolute;
    right: 10%;
    top: 45%;
    border-radius: 3px;
    transform: rotate(-30deg);
}

.ball-legend {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: #aaa;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.dot.yellow { background: #ffd700; }
.dot.blue { background: #4169e1; }
.dot.red { background: #dc143c; }
.dot.purple { background: #9370db; }

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.qr-placeholder {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 10px;
}

.qr-code {
    width: 100px;
    height: 100px;
    background: var(--white);
    margin: 0 auto 0.5rem;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #999;
}

.whatsapp-btn,
.email-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.whatsapp-btn {
    background: #25d366;
    color: var(--white);
}

.whatsapp-btn:hover {
    background: #20b857;
}

.email-btn {
    background: var(--primary);
    color: var(--white);
}

.email-btn:hover {
    background: var(--gold);
}

/* Contact Modal */
.contact-modal,
.wechat-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-modal,
.close-ball-modal,
.close-wechat-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    background: none;
    border: none;
}

.close-ball-modal {
    position: absolute;
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.modal-contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.modal-contact-btn.wechat-btn {
    background: #07c160;
    color: var(--white);
}

.modal-contact-btn.whatsapp-btn {
    background: #25d366;
    color: var(--white);
}

.wechat-qr {
    padding: 1rem;
    margin-bottom: 1rem;
}

.qr-large {
    width: 200px;
    height: 200px;
    background: #f5f5f5;
    margin: 0 auto;
    border: 3px solid #ddd;
}

/* Location Section */
.location-section {
    text-align: center;
}

.location-section h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.location-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.location-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.location-card p {
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

/* Inquiry Modal */
.inquiry-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-brand h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #888;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-links a {
    display: block;
    color: #888;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

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

.footer-contact p {
    color: #888;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .nav-links {
        display: none;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .pool-table {
        width: 250px;
        height: 250px;
    }
}
