
/* Google Fonts Imported in HTML */
:root {
    --primary: #D4AF37;
    --primary-dark: #b5952f;
    --bg-dark: #080808;
    --bg-darker: #050505;
    --text-light: #ffffff;
    --text-muted: #aaaaaa;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(212, 175, 55, 0.15);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.text-gold { color: var(--primary) !important; }
.bg-dark { background-color: var(--bg-dark); }
.bg-darker { background-color: var(--bg-darker); }
.text-center { text-align: center; }
.w-100 { width: 100%; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mt-6 { margin-top: 5rem; }
.p-5 { padding: 3rem; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; }
h1 { font-size: 4rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
p { color: var(--text-muted); font-size: 1rem; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 100px 0; }
.page-header { padding: 150px 0 50px; background: linear-gradient(to bottom, var(--bg-darker), var(--bg-dark)); border-bottom: 1px solid var(--glass-border); }

/* Glassmorphism Utilities */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    font-family: var(--font-body);
}
.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
    border: 1px solid var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--bg-dark);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-dark);
}
.btn-sm { padding: 8px 20px; font-size: 0.9rem; }
.btn-lg { padding: 15px 40px; font-size: 1.1rem; }
.link-gold { color: var(--primary); font-weight: 500; font-family: var(--font-body); display: inline-flex; align-items: center; gap: 8px; }
.link-gold:hover { color: var(--text-light); gap: 12px; }

/* Navbar */
header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}
header.scrolled {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--text-light); }
.logo-img { width: 48px; height: 48px; }
.desktop-nav ul { display: flex; gap: 30px; }
.nav-link { font-size: 0.95rem; font-weight: 400; color: var(--text-muted); position: relative; }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0%; height: 1px; background: var(--primary); transition: var(--transition); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.hamburger { display: none; background: none; border: none; cursor: pointer; }
.hamburger .bar { display: block; width: 25px; height: 2px; background: var(--text-light); margin: 5px auto; transition: var(--transition); }
.mobile-nav {
    position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
    background: var(--bg-darker); border-left: 1px solid var(--glass-border);
    padding: 80px 40px; transition: right 0.4s ease; z-index: 999;
}
.mobile-nav.open { right: 0; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 20px; }

/* Hero Section */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
#particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.hero-container { position: relative; z-index: 2; text-align: center; }
.hero-title { font-size: 5rem; margin-bottom: 20px; }
.hero-subtitle { font-size: 1.2rem; max-width: 600px; margin: 0 auto 40px; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card { padding: 40px 20px; text-align: center; }
.stat-card h2 { font-size: 3rem; color: var(--primary); display: inline-block; font-family: var(--font-body); }
.stat-card span { font-size: 3rem; color: var(--primary); font-family: var(--font-body); font-weight: 600;}

/* Services Grid */
.services-grid, .services-list-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card, .service-box { padding: 40px 30px; transition: transform 0.3s; }
.service-card h3, .service-box h3 { margin-bottom: 15px; }
.service-card:hover, .service-box:hover { transform: translateY(-5px); border-color: rgba(212, 175, 55, 0.5); }
.divider { height: 1px; background: var(--glass-border); margin: 60px 0; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.subtitle { color: var(--primary); text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; font-weight: 500; margin-bottom: 10px; display: block;}
.subtitle-large { font-size: 1.2rem; color: var(--text-muted); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px;}
.value-card { padding: 40px 30px; text-align: center; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; align-items: center; }
.pricing-card { padding: 40px 30px; text-align: center; position: relative; }
.pricing-card.popular { transform: scale(1.05); border-color: var(--primary); }
.popular-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary); color: var(--bg-dark); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }
.pricing-card .price { font-size: 3rem; font-family: var(--font-heading); margin: 20px 0; font-weight: 700; }
.pricing-features { text-align: left; margin-bottom: 30px; }
.pricing-features li { margin-bottom: 10px; font-size: 0.95rem; }
.pricing-features i { margin-right: 10px; }

/* Portfolio */
.portfolio-filters { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.filter-btn { background: transparent; border: 1px solid var(--glass-border); color: var(--text-light); padding: 8px 20px; border-radius: 30px; cursor: pointer; transition: var(--transition); }
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: var(--bg-dark); border-color: var(--primary); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.portfolio-item { overflow: hidden; }
.portfolio-img { width: 100%; height: 250px; overflow: hidden; }
.img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.5rem; letter-spacing: 2px; color: var(--glass-border); transition: transform 0.5s;}
.portfolio-item:hover .img-placeholder { transform: scale(1.05); color: var(--primary); }
.portfolio-content { padding: 25px; }
.portfolio-tag { font-size: 0.8rem; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; display: block; }
.portfolio-content h3 { margin-bottom: 10px; font-size: 1.3rem;}

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; }
.faq-question { width: 100%; background: transparent; border: none; color: var(--text-light); padding: 20px; text-align: left; font-size: 1.1rem; font-family: var(--font-heading); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding-bottom: 20px; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; }
.contact-card { display: flex; align-items: center; gap: 20px; padding: 20px; margin-bottom: 20px; }
.contact-card h4 { margin-bottom: 5px; font-size: 1.1rem; }
.contact-form-wrapper { padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.9rem; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: rgba(0,0,0,0.5); border: 1px solid var(--glass-border); color: var(--text-light); padding: 12px 15px; border-radius: 4px; font-family: var(--font-body); transition: border-color 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }

/* Footer */
.footer { background: var(--bg-darker); padding: 80px 0 30px; border-top: 1px solid var(--glass-border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 50px; }
.footer-tagline { margin: 20px 0; max-width: 300px; }
.social-links a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--glass-bg); border: 1px solid var(--glass-border); margin-right: 10px; transition: var(--transition); }
.social-links a:hover { background: var(--primary); color: var(--bg-dark); }
.footer-links h3, .footer-contact h3 { margin-bottom: 20px; font-size: 1.2rem; }
.footer-links ul li, .footer-contact ul li { margin-bottom: 12px; }
.footer-links ul li a:hover { color: var(--primary); padding-left: 5px; }
.footer-contact i { color: var(--primary); width: 20px; margin-right: 10px; }
.footer-bottom { text-align: center; border-top: 1px solid var(--glass-border); padding-top: 30px; color: #777; font-size: 0.9rem; }

/* Logos */
.logo-ticker { overflow: hidden; padding: 20px 0; background: var(--glass-bg); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.logo-track { display: flex; width: 200%; animation: scroll 20s linear infinite; align-items: center;}
.client-logo { width: 150px; opacity: 0.5; transition: opacity 0.3s; margin: 0 40px; filter: grayscale(100%) brightness(200%); }
.client-logo:hover { opacity: 1; filter: none; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Floating Elements */
.floating-wa { position: fixed; bottom: 30px; left: 30px; width: 60px; height: 60px; background: #25D366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; z-index: 100; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); transition: transform 0.3s; }
.floating-wa:hover { transform: scale(1.1); color: white;}
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--primary); color: var(--bg-dark); border: none; border-radius: 50%; font-size: 1.2rem; cursor: pointer; z-index: 100; opacity: 0; visibility: hidden; transition: var(--transition); box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-5px); }

/* Loader */
#loader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--bg-dark); z-index: 9999; display: flex; align-items: center; justify-content: center; transition: opacity 0.5s ease; }
.loader-content { text-align: center; }
.loader-logo { width: 80px; margin-bottom: 20px; animation: pulse 2s infinite; }
.loader-line { width: 150px; height: 2px; background: var(--glass-border); margin: 0 auto; position: relative; overflow: hidden; }
.loader-line::after { content: ''; position: absolute; left: -50%; top: 0; height: 100%; width: 50%; background: var(--primary); animation: slide 1.5s infinite ease-in-out; }
@keyframes pulse { 0% { transform: scale(0.9); opacity: 0.8; } 50% { transform: scale(1); opacity: 1; } 100% { transform: scale(0.9); opacity: 0.8; } }
@keyframes slide { 0% { left: -50%; } 100% { left: 100%; } }
