        /* --- CSS VARIABLES & RESET --- */
        :root {
            --primary-gold: #D4AF50 ;   /* #D4AF37; */
            --secondary-gold: #F4C430;
            --bg-black: #0a0a0a;
            --bg-dark-gray: #141414;
            --text-white: #f0f0f0;
            --text-gray: #bbbbbb;
            --glass: rgba(20, 20, 20, 0.95);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

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

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

        ul {
            list-style: none;
        }

        h1, h2, h3, h4 {
            color: var(--primary-gold);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        p {
            margin-bottom: 1rem;
            color: var(--text-gray);
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
            color: var(--bg-black);
            font-weight: bold;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 1rem;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary-gold);
            color: var(--primary-gold);
        }

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

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

        /* --- HEADER --- */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.95);
            border-bottom: 1px solid #333;
            height: 70px;
            display: flex;
            align-items: center;
        }

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

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

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

        .nav-links a {
            color: var(--text-white);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

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

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

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

        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: var(--primary-gold);
            transition: var(--transition);
        }

        /* --- PAGES STRUCTURE --- */
        .page {
            display: none;
            padding-top: 70px; /* Height of header */
            min-height: 100vh;
            animation: fadeIn 0.5s ease;
        }

        .page.active {
            display: block;
        }

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

        /* --- HOME PAGE --- */
        .hero {
            height: calc(100vh - 70px);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            background: radial-gradient(circle at center, #1a1a1a, #000);
        }

        .hero-content {
            z-index: 2;
            max-width: 800px;
            padding: 20px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--text-white);
        }

        .badge {
            background: rgba(212, 175, 55, 0.1);
            color: var(--primary-gold);
            padding: 5px 15px;
            border-radius: 20px;
            border: 1px solid var(--primary-gold);
            display: inline-block;
            margin-bottom: 20px;
            font-size: 0.9rem;
            font-weight: bold;
        }

        /* Features Section on Home */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: -50px;
            position: relative;
            z-index: 3;
            padding: 0 20px;
        }

        .feature-card {
            background: var(--bg-dark-gray);
            padding: 30px;
            border-radius: 8px;
            border-top: 3px solid var(--primary-gold);
            transition: var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        /* --- SERVICES PAGE --- */
        .services-header {
            text-align: center;
            padding: 60px 20px;
            background: linear-gradient(to bottom, #111, #000);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 60px 20px;
        }

        .service-item {
            background: var(--bg-dark-gray);
            padding: 40px;
            border-radius: 5px;
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .service-item:hover {
            border-color: var(--primary-gold);
        }

        .service-icon {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--primary-gold);
        }

        /* --- ABOUT PAGE --- */
        .about-section {
            padding: 80px 20px;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-img-placeholder {
            background: linear-gradient(135deg, #111, #222);
            height: 400px;
            border-radius: 8px;
            border-right: 5px solid var(--primary-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-gold);
            font-size: 3rem;
            font-weight: bold;
        }

        /* --- BLOG PAGE --- */
        .blog-list {
            padding: 80px 20px;
            max-width: 900px;
            margin: 0 auto;
        }

        .blog-post {
            background: var(--bg-dark-gray);
            margin-bottom: 30px;
            padding: 30px;
            border-radius: 6px;
            border-left: 4px solid var(--primary-gold);
            cursor: pointer;
            transition: var(--transition);
        }

        .blog-post:hover {
            background: #1a1a1a;
        }

        .post-meta {
            font-size: 0.85rem;
            color: var(--primary-gold);
            margin-bottom: 10px;
        }

        /* --- CONTACT PAGE --- */
        .contact-section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            background: var(--bg-dark-gray);
            border: 1px solid #333;
            color: var(--text-white);
            border-radius: 4px;
            transition: var(--transition);
        }

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

        .info-box {
            background: var(--bg-dark-gray);
            padding: 30px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .faq-item {
            margin-bottom: 15px;
            border-bottom: 1px solid #333;
            padding-bottom: 15px;
        }

        .faq-question {
            color: var(--text-white);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            margin-top: 10px;
            display: none;
            color: var(--text-gray);
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        /* --- LIVE CHAT WIDGET --- */
        .chat-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--primary-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            z-index: 999;
            transition: var(--transition);
        }

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

        .chat-window {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 300px;
            height: 400px;
            background: var(--bg-dark-gray);
            border: 1px solid var(--primary-gold);
            border-radius: 10px;
            display: none;
            flex-direction: column;
            z-index: 998;
            overflow: hidden;
        }

        .chat-header {
            background: var(--primary-gold);
            color: #000;
            padding: 15px;
            font-weight: bold;
        }

        .chat-body {
            flex: 1;
            padding: 15px;
            overflow-y: auto;
        }

        .chat-input-area {
            padding: 10px;
            border-top: 1px solid #333;
        }

        .chat-input-area input {
            width: 100%;
            padding: 10px;
            background: #222;
            border: none;
            color: white;
            border-radius: 4px;
        }

        /* --- FOOTER --- */
        footer {
            background: #050505;
            padding: 40px 20px;
            text-align: center;
            border-top: 1px solid #222;
            margin-top: 40px;
        }

        .footer-links a {
            color: var(--text-gray);
            margin: 0 10px;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: var(--bg-black);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: var(--transition);
            }

            .nav-links.nav-active {
                right: 0;
            }

            .burger {
                display: flex;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .about-grid, .contact-container {
                grid-template-columns: 1fr;
            }
        }