/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold-primary: #d4af37;
    --gold-light: #f1e5ac;
    --black-deep: #0a0a0a;
    --black-light: #1a1a1a;
    --gray-text: #9ca3af;
    --white-text: #e5e7eb;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black-deep);
    color: var(--white-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

.section {
    padding: 80px 0;
}

.bg-dark-light {
    background-color: var(--black-light);
}

.gold-text {
    background: linear-gradient(135deg, #d4af37 0%, #f1e5ac 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-50 { margin-bottom: 50px; }
.mt-20 { margin-top: 20px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-600 { max-w: 600px; }
.gap-20 { gap: 20px; }
.gap-50 { gap: 50px; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: flex-end; }
.items-center { align-items: center; }
.w-full { width: 100%; }
.hidden { display: none; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .section { padding: 50px 0; }
}

/* --- Buttons --- */
.btn-gold {
    background: linear-gradient(135deg, #d4af37 0%, #f1e5ac 100%);
    color: var(--black-deep);
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.btn-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.btn-gold-lg {
    background: linear-gradient(135deg, #d4af37 0%, #f1e5ac 100%);
    color: var(--black-deep);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-gold-full {
    width: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #f1e5ac 100%);
    color: var(--black-deep);
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline-lg {
    background: transparent;
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline-lg:hover {
    background: rgba(212, 175, 55, 0.1);
}

.btn-black {
    background: var(--black-deep);
    color: var(--gold-primary);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
}

.btn-outline-dark {
    background: transparent;
    color: var(--black-deep);
    border: 1px solid var(--black-deep);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
}

.btn-gold-sm {
    background: var(--gold-primary);
    color: var(--black-deep);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* --- Navigation --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4af37 0%, #f1e5ac 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--black-deep);
    font-weight: bold;
    font-size: 1.2rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand {
    color: var(--gold-primary);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

.sub {
    color: var(--gray-text);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-item {
    color: var(--gray-text);
    font-weight: 500;
    transition: var(--transition);
}

.nav-item:hover, .nav-item.active {
    color: var(--gold-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-menu-btn {
    display: none;
    color: var(--gold-primary);
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
}

#mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--black-light);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 20px;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

/* --- Pages --- */
.page {
    display: none;
    min-height: 100vh;
}

.page.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

/* --- Hero --- */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--black-deep), transparent);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--gray-text);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1.1rem; }
    .hero-btns { flex-direction: column; }
}

/* --- Section Elements --- */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.subtitle {
    color: var(--gray-text);
    font-size: 1rem;
}

.card-dark {
    background: var(--black-light);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 30px;
    border-radius: 20px;
    transition: var(--transition);
}

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

.link-gold {
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
}

.link-gold:hover { text-decoration: underline; }

/* --- Stats --- */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.stat-card {
    background: var(--black-light);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--gold-primary);
}

.stat-num {
    font-size: 2rem;
    font-weight: bold;
    color: var(--gold-primary);
}

.stat-label {
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* --- Product Cards --- */
.product-card {
    background: var(--black-light);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.product-card:hover {
    border-color: var(--gold-primary);
}

.product-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(10, 10, 10, 0.8);
    color: var(--gold-primary);
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 3px;
}

.product-info {
    padding: 20px;
}

.product-type {
    color: var(--gold-primary);
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.product-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 5px 0;
}

.product-tags {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.tag {
    font-size: 0.6rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    padding: 2px 8px;
    border-radius: 4px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    color: var(--gold-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* --- News Cards --- */
.news-card {
    background: var(--black-light);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.news-card:hover { transform: translateY(-5px); }

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

.news-info { padding: 20px; }
.news-date { color: var(--gold-primary); font-size: 0.8rem; font-family: monospace; }
.news-title { font-size: 1.1rem; font-weight: bold; margin: 10px 0; }
.news-summary { color: var(--gray-text); font-size: 0.9rem; line-height: 1.4; }

/* --- Horizontal Scroll --- */
.horizontal-scroll {
    display: flex;
    gap: 20px;
    padding: 20px;
    overflow-x: auto;
    scrollbar-width: none;
}

.horizontal-scroll::-webkit-scrollbar { display: none; }

.scroll-item {
    min-width: 300px;
    background: var(--black-light);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.scroll-item img { height: 150px; width: 100%; object-fit: cover; border-radius: 10px; margin-bottom: 15px; }

/* --- Promo Banner --- */
.promo-banner {
    background: linear-gradient(135deg, #d4af37 0%, #f1e5ac 100%);
    border-radius: 40px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--black-deep);
}

.promo-content h2 { font-size: 3rem; margin-bottom: 20px; }
.promo-content p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.8; }

.promo-stats { display: flex; gap: 40px; }
.promo-stat-item { text-align: center; }
.promo-stat-item .num { font-size: 2rem; font-weight: bold; }
.promo-stat-item .label { font-size: 0.8rem; text-transform: uppercase; opacity: 0.6; }

@media (max-width: 768px) {
    .promo-banner { flex-direction: column; padding: 40px; text-align: center; }
    .promo-content h2 { font-size: 2rem; }
    .promo-stats { margin-top: 40px; }
}

/* --- Dynamics --- */
.dynamic-item {
    background: var(--black-light);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    gap: 10px;
}

.dot-gold { width: 8px; height: 8px; background: var(--gold-primary); border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.dynamic-item p { font-size: 0.85rem; color: var(--white-text); margin-bottom: 5px; }
.dynamic-item span { font-size: 0.7rem; color: var(--gray-text); font-family: monospace; }

/* --- Product Page Specific --- */
.page-header { padding: 120px 0 40px; }
.page-title { font-size: 3.5rem; margin-bottom: 10px; }

.filter-bar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.search-box {
    flex: 1;
    position: relative;
}

.search-box i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--gray-text); }
.search-box input {
    width: 100%;
    background: var(--black-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 15px 12px 45px;
    border-radius: 25px;
    color: var(--white-text);
    outline: none;
}

.sort-box select {
    background: var(--black-light);
    color: var(--white-text);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 20px;
    border-radius: 25px;
    outline: none;
}

.filter-groups { display: flex; flex-direction: column; gap: 15px; }
.filter-group { display: flex; align-items: center; gap: 15px; }
.filter-label { font-weight: bold; color: var(--gold-primary); min-width: 50px; }
.filter-options { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-opt {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gray-text);
    padding: 5px 15px;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-opt.active {
    background: var(--gold-primary);
    color: var(--black-deep);
    border-color: var(--gold-primary);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-num {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
}

.page-num.active {
    background: var(--gold-primary);
    color: var(--black-deep);
    border-color: var(--gold-primary);
}

/* --- About Page Specific --- */
.timeline {
    position: relative;
    padding-left: 30px;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item .dot {
    position: absolute;
    left: -38px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-primary);
}

.team-item { text-align: center; }
.team-img { width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 2px solid var(--gold-primary); }
.team-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: var(--transition); }
.team-item:hover img { filter: grayscale(0); }

/* --- Contact Page Specific --- */
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8rem; color: var(--gray-text); margin-bottom: 5px; text-transform: uppercase; }
.form-group input, .form-group textarea {
    width: 100%;
    background: var(--black-deep);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 12px;
    border-radius: 10px;
    color: var(--white-text);
    outline: none;
}

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

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.info-item h4 { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.info-item .highlight { font-size: 1.5rem; font-weight: bold; }
.info-item .sub { font-size: 0.8rem; color: var(--gray-text); }

.social-icons { display: flex; gap: 10px; margin-top: 10px; }
.social-icon {
    width: 50px;
    height: 50px;
    background: var(--black-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
}

.map-embed {
    width: 100%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
}

.map-embed img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Footer --- */
footer {
    background: var(--black-deep);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 80px 0 20px;
}

.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; margin-bottom: 50px; }
.footer-desc { color: var(--gray-text); font-size: 0.9rem; margin-bottom: 20px; }
.footer-social { display: flex; gap: 15px; }
.footer-social a {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gray-text);
    transition: var(--transition);
}

.footer-social a:hover { border-color: var(--gold-primary); color: var(--gold-primary); }

.footer-col h4 { color: var(--gold-primary); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; font-size: 0.9rem; color: var(--gray-text); }
.footer-col ul li a:hover { color: var(--gold-primary); }

.contact-list li { display: flex; align-items: center; gap: 10px; }
.contact-list li i { color: var(--gold-primary); width: 16px; }

.footer-bottom { border-top: 1px solid rgba(212, 175, 55, 0.05); padding-top: 20px; text-align: center; color: var(--gray-text); font-size: 0.7rem; }

/* --- Floating Chat --- */
.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37 0%, #f1e5ac 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--black-deep);
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    position: relative;
}

.tooltip {
    position: absolute;
    right: 70px;
    background: var(--black-light);
    color: var(--gold-primary);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    border: 1px solid var(--gold-primary);
}

.chat-btn:hover .tooltip { opacity: 1; }

/* --- Animations --- */
.fade-in { opacity: 0; transform: translateY(20px); animation: fadeInUp 0.8s forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

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