/* =========================================
   AMZEE GROUP – Global Stylesheet
   Theme: Luxury Dark | Corporate Precision
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&family=Space+Mono:wght@400;700&display=swap');

:root {
  --bg-primary:     #131d3d;
  --bg-secondary:   #090f1e;
  --bg-card:        #0d1526;
  --bg-card-hover:  #111d35;
  --gold:           #c8a96e;
  --gold-light:     #e5c98a;
  --gold-dim:       #7a5f36;
  --blue-accent:    #1e4aff;
  --blue-bright:    #4d7cff;
  --text-primary:   #f0ece4;
  --text-secondary: #9ba3b5;
  --text-muted:     #5a6278;
  --border:         rgba(200,169,110,0.15);
  --border-subtle:  rgba(255,255,255,0.06);
  --shadow-gold:    0 0 60px rgba(200,169,110,0.08);
  --shadow-card:    0 20px 60px rgba(0,0,0,0.5);
  --radius:         4px;
  --radius-lg:      12px;
  --ff-display:     'Cormorant Garamond', serif;
  --ff-body:        'DM Sans', sans-serif;
  --ff-mono:        'Space Mono', monospace;
  --transition:     cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height:     80px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

/* ── Noise texture overlay ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* ────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(5,10,20,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s var(--transition);
}
.nav.scrolled {
  background: rgba(5,10,20,0.97);
  border-bottom-color: var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-mono); font-size: 11px; font-weight: 700;
  color: var(--bg-primary); letter-spacing: -0.5px;
}
.nav-logo-text {
  font-family: var(--ff-display); font-size: 1.4rem; font-weight: 600;
  color: var(--text-primary); letter-spacing: 0.5px;
}
.nav-logo-text span { color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
}
.nav-links a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  color: var(--text-secondary);
  position: relative; padding-bottom: 2px;
  transition: color 0.25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  padding: 9px 22px; border: 1px solid var(--gold);
  color: var(--gold) !important; border-radius: var(--radius);
  font-weight: 500 !important;
  transition: background 0.25s, color 0.25s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--bg-primary) !important; }
.nav-cta::after { display: none !important; }

/* hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: all 0.3s;
}
.nav-mobile {
  display: none; position: fixed; top: var(--nav-height); left: 0; right: 0;
  background: rgba(5,10,20,0.97); backdrop-filter: blur(20px);
  padding: 2rem 5%; border-bottom: 1px solid var(--border);
  flex-direction: column; gap: 1.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  text-decoration: none; color: var(--text-secondary);
  font-size: 1rem; font-weight: 500;
  padding: 0.5rem 0; border-bottom: 1px solid var(--border-subtle);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold); }

/* ────────────────────────────────────────
   COMMON SECTIONS
───────────────────────────────────────── */
section { position: relative; }

.container {
  max-width: 1200px; margin: 0 auto; padding: 0 5%;
}

.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

/* ── Section Label ── */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-mono); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
}
.section-label::before {
  content: ''; width: 28px; height: 1px; background: var(--gold);
}

/* ── Headings ── */
.heading-xl {
  font-family: var(--ff-display); font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300; line-height: 1.1; letter-spacing: -0.01em;
  color: var(--text-primary);
}
.heading-xl em { font-style: italic; color: var(--gold); }

.heading-lg {
  font-family: var(--ff-display); font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 400; line-height: 1.15; color: var(--text-primary);
}
.heading-lg em { font-style: italic; color: var(--gold); }

.heading-md {
  font-family: var(--ff-display); font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 400; line-height: 1.2; color: var(--text-primary);
}

/* ── Body Text ── */
.body-lg { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.8; }
.body-md { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.75; }

/* ── Divider ── */
.divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: var(--radius);
  font-family: var(--ff-body); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: all 0.3s var(--transition);
  border: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
  color: var(--bg-primary);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200,169,110,0.3);
}
.btn-outline {
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold); color: var(--bg-primary);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent; border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn svg { transition: transform 0.3s; }
.btn:hover svg { transform: translateX(4px); }

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all 0.35s var(--transition);
}
.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(200,169,110,0.15), rgba(200,169,110,0.05));
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold); font-size: 1.4rem;
}

/* ── Grid layouts ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Gold accent line ── */
.accent-bar {
  display: inline-block; width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--gold), transparent);
}

/* ── Number / Stat ── */
.stat-number {
  font-family: var(--ff-display); font-size: 3.5rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-muted); margin-top: 0.5rem;
}

/* ── Tag / Badge ── */
.tag {
  display: inline-block; padding: 4px 12px;
  background: rgba(200,169,110,0.1); border: 1px solid var(--border);
  border-radius: 100px; font-size: 0.75rem; font-weight: 500;
  color: var(--gold); letter-spacing: 0.06em;
}

/* ── Footer ── */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); margin-top: 1rem; max-width: 280px; }
.footer-col h4 {
  font-family: var(--ff-mono); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a {
  text-decoration: none; color: var(--text-muted); font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--text-primary); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.8rem;
}
.footer-contact-item span { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid var(--border-subtle);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); text-decoration: none; font-size: 0.85rem;
  transition: all 0.25s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,169,110,0.3); }
  50%       { box-shadow: 0 0 0 12px rgba(200,169,110,0); }
}

.animate-up {
  opacity: 0; animation: fadeUp 0.7s var(--transition) forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .section-pad { padding: 70px 0; }
}
