
/* ==========================================================================
   CSS RESET & VARIABLES
   ========================================================================== */
:root {
    --bg-main: #0a0a0f;
    --bg-darker: #050508;
    --bg-light: #15151f;
    --text-primary: #f8f9fa;
    --text-muted: #a0aec0;
    --accent: #d4af37; /* Luxury Gold/Bronze */
    --accent-hover: #f1c453;
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(20, 20, 30, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease-in-out;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 4rem; letter-spacing: 1px; }
h2 { font-size: 2.5rem; letter-spacing: 0.5px; }
h3 { font-size: 1.5rem; }

a { color: var(--accent); text-decoration: none; transition: var(--transition-base); }
a:hover { color: var(--accent-hover); }

.container { width: 90%; max-width: 1280px; margin: 0 auto; padding: 0 15px; }
.section-padding { padding: 6rem 0; }
.py-3 { padding: 3rem 0; }
.py-5 { padding: 5rem 0; }
.mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; } .mb-5 { margin-bottom: 3rem; }
.pl-4 { padding-left: 2rem; }

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent); }
.text-dark { color: var(--bg-darker); }
.lead { font-size: 1.25rem; font-weight: 300; margin-bottom: 1.5rem; color: #e2e8f0; }
.text-sm { font-size: 0.875rem; letter-spacing: 2px; }
.max-w-800 { max-width: 800px; }
.mx-auto { margin-left: auto; margin-right: auto; }

.bg-dark { background-color: var(--bg-main); }
.bg-darker { background-color: var(--bg-darker); }
.bg-accent { background-color: var(--accent); }
.bg-gradient-accent { background: linear-gradient(135deg, var(--accent), #e6c86a); }

/* Grid Layouts */
.grid-2-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.grid-3-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.align-center { align-items: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-col { flex-direction: column; }

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn {
    display: inline-flex; justify-content: center; align-items: center;
    padding: 0.875rem 2rem; font-family: var(--font-body); font-weight: 500;
    text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.875rem;
    border-radius: 0; cursor: pointer; transition: var(--transition-base);
    border: 1px solid transparent;
}

.btn-primary { background-color: var(--accent); color: var(--bg-darker); border-color: var(--accent); }
.btn-primary:hover { background-color: transparent; color: var(--accent); }

.btn-outline { background-color: transparent; border-color: var(--text-primary); color: var(--text-primary); }
.btn-outline:hover { background-color: var(--text-primary); color: var(--bg-darker); }

.btn-dark { background-color: var(--bg-darker); color: var(--accent); border-color: var(--bg-darker); }
.btn-dark:hover { background-color: transparent; border-color: var(--bg-darker); color: var(--bg-darker); }

.btn-lg { padding: 1.25rem 3rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.75rem; }
.btn-text { background: none; border: none; color: var(--text-muted); text-decoration: underline; cursor: pointer; }

.section-badge {
    display: inline-block; padding: 0.35rem 1rem; border: 1px solid var(--accent);
    color: var(--accent); text-transform: uppercase; font-size: 0.75rem;
    letter-spacing: 2px; margin-bottom: 1rem; border-radius: 50px;
}

/* ==========================================================================
   UI COMPONENTS (GLASSMORPHISM)
   ========================================================================== */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 4px;
}

.hover-lift { transition: transform var(--transition-base), box-shadow var(--transition-base); }
.hover-lift:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.5); border-color: var(--accent); }

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 1.5rem 0; transition: var(--transition-base);
    background: transparent;
}
.site-header.scrolled { background: rgba(5, 5, 8, 0.95); backdrop-filter: blur(10px); padding: 1rem 0; border-bottom: 1px solid var(--border-color); }

.header-inner { display: flex; justify-content: space-between; align-items: center; }
.brand-logo { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 600; color: #fff; letter-spacing: 2px; }
.accent-dot { color: var(--accent); }

.desktop-nav .nav-menu { display: flex; gap: 2.5rem; list-style: none; }
.desktop-nav a { color: var(--text-primary); font-size: 0.875rem; font-weight: 400; text-transform: uppercase; letter-spacing: 1px; }
.desktop-nav a:hover { color: var(--accent); }

.mobile-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; z-index: 1001; }
.mobile-toggle span { display: block; width: 30px; height: 2px; background: #fff; transition: var(--transition-base); }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative; height: 100vh; min-height: 700px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; padding-top: 80px;
}
.hero-background {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
    background: radial-gradient(circle at center, rgba(20, 20, 30, 1) 0%, var(--bg-main) 100%);
}
/* Subtle grid overlay */
.hero-background::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(var(--border-color) 1px, transparent 1px), linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 50px 50px; opacity: 0.1;
    transform: perspective(1000px) rotateX(60deg) scale(2) translateY(-100px);
    animation: grid-scroll 20s linear infinite;
}

@keyframes grid-scroll { 0% { transform: perspective(1000px) rotateX(60deg) scale(2) translateY(0); } 100% { transform: perspective(1000px) rotateX(60deg) scale(2) translateY(50px); } }

.hero-content { position: relative; z-index: 2; max-width: 900px; }
.eyebrow-text { display: block; font-size: 0.875rem; color: var(--accent); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.25rem; color: var(--text-muted); max-width: 700px; margin: 1.5rem auto 0; font-weight: 300; }

.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; opacity: 0.6;
}
.scroll-indicator span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.scroll-indicator .line { width: 1px; height: 40px; background: var(--accent); animation: pulse-line 2s infinite; }
@keyframes pulse-line { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 50.1% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ==========================================================================
   SECTIONS: LOGOS, ABOUT, SERVICES, STATS
   ========================================================================== */
.logo-grid { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; opacity: 0.5; gap: 2rem; }
.logo-placeholder { font-family: var(--font-heading); font-size: 1.25rem; font-weight: bold; letter-spacing: 1px; color: #fff; }

.image-wrapper { position: relative; height: 500px; background: var(--bg-light); border: 1px solid var(--border-color); }
.abstract-visual { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1)); }
.floating-stat-card { position: absolute; bottom: -30px; right: -30px; width: 220px; text-align: center; }
.floating-stat-card .stat-number { display: block; font-family: var(--font-heading); font-size: 3rem; color: var(--accent); line-height: 1; margin-bottom: 0.5rem; }
.floating-stat-card .stat-text { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 1px; }

.feature-list { list-style: none; }
.feature-list li { margin-bottom: 1rem; position: relative; padding-left: 2rem; color: #e2e8f0; }
.feature-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-family: var(--font-body); }

.icon-wrapper { font-family: var(--font-heading); font-size: 2.5rem; color: var(--accent); margin-bottom: 1.5rem; }
.service-link { display: inline-block; margin-top: 1.5rem; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 1px; border-bottom: 1px solid transparent; }
.service-link:hover { border-bottom-color: var(--accent); }

.stats-section { background-image: linear-gradient(rgba(5, 5, 8, 0.9), rgba(5, 5, 8, 0.9)), url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="%230a0a0f"/><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.1"/></svg>'); background-attachment: fixed; }
.stat-item .stat-number { display: block; font-family: var(--font-heading); font-size: 4rem; line-height: 1; margin-bottom: 0.5rem; }
.stat-item .stat-label { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); }

.stars { color: var(--accent); font-size: 1.25rem; margin-bottom: 1rem; letter-spacing: 2px; }
.quote { font-style: italic; font-size: 1.125rem; margin-bottom: 1.5rem; color: #e2e8f0; }
.author-info strong { display: block; font-family: var(--font-heading); font-size: 1.125rem; }
.author-info span { font-size: 0.875rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--bg-darker); padding: 5rem 0 0; border-top: 1px solid var(--border-color); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand h2 { margin-bottom: 0.5rem; }
.footer-brand .tagline { font-family: var(--font-heading); color: var(--accent); margin-bottom: 1rem; }
.footer-brand .mission-text { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.social-icons a { display: inline-block; width: 40px; height: 40px; border: 1px solid var(--border-color); text-align: center; line-height: 38px; border-radius: 50%; margin-right: 10px; font-size: 0.875rem; transition: var(--transition-base); }
.social-icons a:hover { border-color: var(--accent); color: var(--accent); }

.footer-links h4, .footer-contact h4 { font-family: var(--font-body); text-transform: uppercase; letter-spacing: 2px; font-size: 0.875rem; margin-bottom: 1.5rem; color: #fff; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a, .footer-contact p { color: var(--text-muted); font-size: 0.875rem; }
.footer-links a:hover { color: var(--accent); }

.footer-bottom { padding: 1.5rem 0; border-top: 1px solid var(--border-color); background: #000; font-size: 0.75rem; color: #666; letter-spacing: 1px; }

/* ==========================================================================
   GDPR BANNER
   ========================================================================== */
.gdpr-banner {
    position: fixed; bottom: -100%; left: 0; width: 100%;
    background: var(--glass-bg); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid var(--border-color); z-index: 9999;
    padding: 1.5rem 0; transition: bottom 0.5s ease;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
}
.gdpr-banner.show { bottom: 0; }
.gdpr-container { display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.gdpr-text h4 { margin-bottom: 0.25rem; font-family: var(--font-body); font-size: 1rem; }
.gdpr-text p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }
.gdpr-actions { display: flex; gap: 1rem; align-items: center; white-space: nowrap; }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.fade-in-up { animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; transform: translateY(30px); }
.slide-in-left { animation: slideInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; transform: translateX(-50px); }
.slide-in-right { animation: slideInRight 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; transform: translateX(50px); }

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

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    .grid-4-col { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .grid-2-col, .grid-3-col { grid-template-columns: 1fr; gap: 3rem; }
    
    .desktop-nav, .header-cta { display: none; }
    .mobile-toggle { display: flex; }
    
    .floating-stat-card { position: relative; bottom: 0; right: 0; margin: -50px auto 0; z-index: 10; }
    .pl-4 { padding-left: 0; }
    
    .gdpr-container { flex-direction: column; text-align: center; }
    .gdpr-actions { flex-wrap: wrap; justify-content: center; }
}
