/* Global Variables */
:root {
    --bg-black: #0a0a0a;
    --bg-dark: #121212;
    --bg-card: #1a1a1a;
    --gold-primary: #d4af37;
    --gold-secondary: #c5a028;
    --gold-light: #e4cc7a;
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-dim: rgba(255, 255, 255, 0.3);
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    --container-width: 1280px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

button, select, input, textarea {
    font-family: inherit;
}

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

.section-padding {
    padding: 100px 0;
}

.bg-black { background-color: var(--bg-black); }
.bg-dark { background-color: var(--bg-dark); }
.gold-text { color: var(--gold-primary); }
.text-center { text-align: center; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mt-16 { margin-top: 64px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.hidden { display: none !important; }
.relative { position: relative; }
.z-10 { z-index: 10; }

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

@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: 1fr 1fr; }
    .grid-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .grid-5 { grid-template-columns: 1fr 1fr; }
}

/* Buttons */
.btn-gold {
    display: inline-block;
    background-color: var(--gold-primary);
    color: #000;
    padding: 15px 40px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-gold:hover {
    background-color: var(--gold-light);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-gold-sm {
    background-color: var(--gold-primary);
    color: #000;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.btn-outline {
    display: inline-block;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 15px 40px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: transparent;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline:hover {
    background-color: var(--gold-primary);
    color: #000;
}

.btn-text {
    background: none;
    border: none;
    color: var(--gold-primary);
    font-weight: bold;
    cursor: pointer;
    padding: 0;
}

.btn-black {
    background-color: #000;
    color: var(--gold-primary);
    padding: 15px 40px;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.btn-outline-black {
    border: 2px solid #000;
    padding: 15px 40px;
    font-weight: bold;
    cursor: pointer;
    background: transparent;
}

.w-full { width: 100%; }

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.logo-icon svg { width: 24px; }

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

.brand {
    font-weight: bold;
    font-size: 20px;
    color: var(--gold-primary);
    letter-spacing: -1px;
}

.sub-brand {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

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

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

.mobile-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: #000;
    padding: 20px;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .mobile-menu-toggle { display: block; }
    .mobile-nav.active { display: flex; }
}

/* Sections */
.page-section {
    display: none;
}

.page-section.active {
    display: block;
    animation: fadeIn 0.8s ease-out;
}

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

/* Hero */
.hero {
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #000, rgba(0,0,0,0.6), transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.subtitle {
    display: block;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 80px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-family: var(--font-display);
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

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

.hero-stats {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--gold-primary);
    color: #000;
    padding: 40px 60px;
    display: flex;
    gap: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 40px;
    font-weight: bold;
}

.stat-label {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 50px; }
    .hero-stats { position: relative; width: 100%; padding: 30px; justify-content: space-around; }
}

/* Common Elements */
.section-tag {
    display: block;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
}

.section-title {
    font-size: 48px;
    font-family: var(--font-display);
    margin-bottom: 20px;
}

/* Intro Section */
.intro-img {
    position: relative;
}

.intro-img img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.img-frame {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(212, 175, 55, 0.2);
    z-index: -1;
}

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

.icon-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 14px;
}

/* Cards */
.card {
    background: var(--bg-card);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.5s;
}

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

.card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* News Items */
.news-card {
    background: var(--bg-card);
    padding: 30px;
    border-left: 2px solid transparent;
    transition: 0.3s;
}

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

.news-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.news-tag {
    font-size: 10px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    padding: 2px 8px;
    text-transform: uppercase;
}

.news-date {
    font-size: 12px;
    color: var(--text-dim);
}

.news-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.news-card p {
    font-size: 14px;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Membership Banner */
.membership-banner {
    background: var(--gold-primary);
    color: #000;
    padding: 100px 0;
}

.banner-title {
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 30px;
}

.banner-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Corporate Updates */
.updates-list {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.updates-list::-webkit-scrollbar { width: 4px; }
.updates-list::-webkit-scrollbar-thumb { background: var(--gold-primary); }

.update-item {
    background: var(--bg-card);
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.update-info h4 {
    margin-bottom: 5px;
}

.update-info p {
    font-size: 12px;
    color: var(--text-muted);
}

.update-date {
    font-size: 12px;
    color: var(--gold-primary);
    font-family: monospace;
}

/* Product Section Styles */
.filter-bar {
    background: var(--bg-card);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.search-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.search-box { flex: 3; }
.sort-box { flex: 1; display: flex; align-items: center; gap: 10px; }

.search-box input, .sort-box select, .filter-item select {
    width: 100%;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px;
    outline: none;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.filter-item label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 5px;
}

.tags-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text-muted);
}

.tags-row button {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    padding: 4px 12px;
    cursor: pointer;
}

.tags-row button:hover {
    background: var(--gold-primary);
    color: #000;
}

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

.page-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.page-btn.active {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

/* About Section Styles */
.about-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(212, 175, 55, 0.2);
}

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

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

.timeline-item .time {
    color: var(--gold-primary);
    font-weight: bold;
    margin-bottom: 5px;
}

.vision-card {
    background: var(--bg-card);
    padding: 40px;
}

.vision-card .icon {
    font-size: 40px;
    margin-bottom: 20px;
}

/* Contact Section Styles */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.map-box {
    position: relative;
    height: 300px;
}

.map-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) opacity(0.4);
}

.map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    background: var(--bg-card);
    padding: 40px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 10px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 15px;
    outline: none;
}

.form-success {
    text-align: center;
    padding: 60px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
}

/* Footer */
footer {
    background: #050505;
    padding: 100px 0 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 20px 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.social-links a:hover {
    background: var(--gold-primary);
    color: #000;
}

footer h4 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 30px;
}

footer ul li {
    margin-bottom: 15px;
}

footer ul li a {
    color: var(--text-muted);
    font-size: 14px;
}

footer ul li a:hover {
    color: var(--gold-primary);
}

footer p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* Floating Support */
.floating-support {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999;
}

.support-btn {
    width: 60px;
    height: 60px;
    background: var(--gold-primary);
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.support-btn:hover {
    transform: scale(1.1);
}

.support-btn svg { width: 28px; }
