/* ================================================================
   ZETA ARISE — MASTER STYLESHEET
   Ultra Premium Dark Luxury · Bootstrap 5 + Custom
   ================================================================ */

/* ---- GOOGLE FONTS + ROOT VARS ---- */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600&family=Fira+Code:wght@400;500&display=swap');

:root {
  /* Colors */
  --za-ink:      #030306;
  --za-ink2:     #060610;
  --za-surface:  #0a0a16;
  --za-surface2: #0f0f1e;
  --za-glass:    rgba(255,255,255,0.04);
  --za-glass2:   rgba(255,255,255,0.07);
  --za-glass3:   rgba(255,255,255,0.11);
  --za-border:   rgba(255,255,255,0.07);
  --za-border2:  rgba(255,255,255,0.13);
  --za-border3:  rgba(255,255,255,0.22);
  --gold:        #c9a84c;
  --gold2:       #f0d080;
  --gold3:       #e8c96a;
  --gold-glow:   rgba(201,168,76,0.25);
  --gold-bg:     rgba(201,168,76,0.08);
  --gold-border: rgba(201,168,76,0.25);
  --cyan:        #00d4ff;
  --cyan2:       #7df9ff;
  --cyan-bg:     rgba(0,212,255,0.08);
  --cyan-border: rgba(0,212,255,0.25);
  --violet:      #8b5cf6;
  --violet2:     #a78bfa;
  --violet-bg:   rgba(139,92,246,0.1);
  --emerald:     #10b981;
  --danger:      #ef4444;
  --text:        #eeeef8;
  --text2:       #9898b8;
  --text3:       #606080;
  --font-head:   'Syne', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --font-code:   'Fira Code', monospace;
  --r:           12px;
  --r2:          18px;
  --r3:          28px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--za-ink);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--gold-glow); color: var(--gold2); }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--za-ink); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold), var(--violet)); border-radius: 3px; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }

/* ================================================================
   LOADER
   ================================================================ */
#za-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--za-ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#za-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.za-loader-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.za-loader-logo {
  font-family: var(--font-head); font-size: 2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: -0.03em;
}
.za-loader-bar { width: 160px; height: 2px; background: var(--za-glass2); border-radius: 2px; overflow: hidden; }
.za-loader-fill {
  height: 100%; background: linear-gradient(90deg, var(--gold), var(--cyan), var(--violet));
  border-radius: 2px; animation: loaderFill 1.8s cubic-bezier(0.4,0,0.2,1) forwards;
}
.za-loader-text { font-size: 0.72rem; color: var(--text2); letter-spacing: 0.12em; text-transform: uppercase; }
@keyframes loaderFill { from { width: 0 } to { width: 100% } }

/* ================================================================
   TOP BAR
   ================================================================ */
.za-topbar {
  background: var(--za-ink2);
  border-bottom: 1px solid var(--za-border);
  padding: 7px 0; font-size: 0.78rem; color: var(--text2);
}
.za-topbar a { color: var(--text2); transition: color 0.2s; }
.za-topbar a:hover { color: var(--gold); }
.za-topbar .wa-link { color: var(--emerald) !important; font-weight: 600; }
.text-gold { color: var(--gold) !important; }

/* ================================================================
   NAVBAR
   ================================================================ */
.za-nav {
  position: sticky; top: 0; z-index: 990;
  background: rgba(3,3,6,0.6);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border-bottom: 1px solid var(--za-border);
  padding: 0; height: 70px; display: flex; align-items: center;
  transition: all 0.3s ease;
}
.za-nav.scrolled { background: rgba(3,3,6,0.95); height: 62px; }
.za-nav-logo { font-family: var(--font-head); font-size: 1.35rem; font-weight: 800; text-decoration: none; }
.logo-za { background: linear-gradient(135deg, var(--gold), var(--gold2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo-arise { color: var(--text); }
.za-nav-links { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; }
.za-nav-links li { position: relative; }
.za-nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--text2);
  text-decoration: none; padding: 4px 0;
  transition: color 0.2s; position: relative;
}
.za-nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s;
}
.za-nav-links a:hover, .za-nav-links a.active { color: var(--text); }
.za-nav-links a:hover::after, .za-nav-links a.active::after { width: 100%; }
.za-nav-links .bi-chevron-down { font-size: 0.65rem; margin-left: 3px; }

/* DROPDOWN */
.za-dropdown {
  position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%);
  background: var(--za-surface2);
  border: 1px solid var(--za-border2);
  border-radius: var(--r2);
  padding: 12px; min-width: 280px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px; opacity: 0; visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all 0.25s ease;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.has-dropdown:hover .za-dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.za-dropdown::before {
  content: ''; position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%); border-left: 6px solid transparent;
  border-right: 6px solid transparent; border-bottom: 6px solid var(--za-border2);
}
.za-dropdown a {
  padding: 9px 12px; border-radius: 8px;
  font-size: 0.8rem; color: var(--text2); display: flex;
  align-items: center; gap: 8px; transition: all 0.2s;
  white-space: nowrap;
}
.za-dropdown a:hover { background: var(--za-glass2); color: var(--text); }
.drop-icon { font-size: 1rem; flex-shrink: 0; }
.za-nav-wa {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #25d366; font-size: 1.1rem; transition: all 0.2s;
}
.za-nav-wa:hover { background: rgba(37,211,102,0.2); transform: scale(1.05); }

/* HAMBURGER */
.za-hamburger {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.za-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* MOBILE SIDEBAR */
.za-mob-overlay {
  position: fixed; inset: 0; z-index: 1099;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  display: none;
}
.za-mob-overlay.show { display: block; }
.za-sidebar {
  position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
  background: var(--za-surface); z-index: 1100;
  display: flex; flex-direction: column;
  border-left: 1px solid var(--za-border2);
  transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.za-sidebar.open { right: 0; }
.za-sidebar-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--za-border); }
.za-sidebar-logo { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; background: linear-gradient(135deg,var(--gold),var(--gold2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.za-sidebar-close { background: none; border: none; color: var(--text2); font-size: 1.2rem; cursor: pointer; }
.za-sidebar-nav { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 4px; }
.za-sidebar-nav a { padding: 12px 16px; border-radius: 10px; color: var(--text2); font-weight: 500; display: flex; align-items: center; gap: 12px; transition: all 0.2s; }
.za-sidebar-nav a:hover, .za-sidebar-nav a.active { background: var(--za-glass2); color: var(--text); }
.za-sidebar-nav a i { width: 18px; color: var(--gold); }
.za-sidebar-footer { padding: 20px; border-top: 1px solid var(--za-border); display: flex; flex-direction: column; gap: 12px; }
.za-sidebar-contact { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.za-sidebar-contact a { font-size: 0.82rem; color: var(--text2); display: flex; align-items: center; gap: 8px; }
.za-sidebar-contact a i { color: var(--gold); }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-gold {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 26px;
  background: linear-gradient(135deg, var(--gold), var(--gold3));
  color: var(--za-ink); font-family: var(--font-head);
  font-size: 0.875rem; font-weight: 700; border: none;
  border-radius: var(--r); cursor: pointer; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  letter-spacing: 0.02em; white-space: nowrap;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 36px var(--gold-glow); color: var(--za-ink); }
.btn-gold.lg { padding: 15px 36px; font-size: 1rem; border-radius: 12px; }
.btn-gold.sm { padding: 8px 18px; font-size: 0.8rem; }
.btn-gold-sm { display: inline-flex; align-items: center; gap: 5px; padding: 9px 18px; background: linear-gradient(135deg,var(--gold),var(--gold3)); color: var(--za-ink); font-size: 0.82rem; font-weight: 700; border: none; border-radius: 8px; cursor: pointer; transition: transform 0.2s; }
.btn-gold-sm:hover { transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 26px; background: transparent;
  border: 1px solid var(--za-border2); color: var(--text);
  font-size: 0.875rem; font-weight: 500; border-radius: var(--r);
  cursor: pointer; text-decoration: none;
  backdrop-filter: blur(12px);
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--za-glass2); border-color: var(--za-border3); transform: translateY(-2px); color: var(--text); }
.btn-outline.lg { padding: 14px 32px; font-size: 0.95rem; }
.btn-wa { display: inline-flex; align-items: center; gap: 6px; padding: 11px 22px; background: #25d366; color: #fff; font-size: 0.875rem; font-weight: 600; border-radius: var(--r); border: none; cursor: pointer; text-decoration: none; transition: all 0.2s; }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,0.3); color: #fff; }

/* ================================================================
   SECTION UTILITIES
   ================================================================ */
.za-section { padding: 100px 0; }
.za-section-alt { background: var(--za-ink2); }
.za-section-sm { padding: 70px 0; }
.za-container { max-width: 1240px; margin: 0 auto; padding: 0 5%; }

.sec-label {
  font-size: 0.72rem; font-weight: 700; color: var(--gold);
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.sec-label::before { content: ''; width: 22px; height: 1px; background: var(--gold); flex-shrink: 0; }
.sec-label.center { justify-content: center; }
.sec-label.center::before { display: none; }
.sec-label.center::after { content: ''; width: 22px; height: 1px; background: var(--gold); flex-shrink: 0; }
.sec-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -0.025em; color: var(--text);
}
.sec-title span { background: linear-gradient(135deg, var(--gold), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sec-sub { color: var(--text2); font-size: 1.05rem; max-width: 620px; line-height: 1.75; margin-top: 12px; }
.text-center .sec-sub { margin-left: auto; margin-right: auto; }

/* ================================================================
   GLASS CARD
   ================================================================ */
.za-card {
  background: var(--za-glass);
  border: 1px solid var(--za-border);
  border-radius: var(--r2);
  backdrop-filter: blur(16px);
  position: relative; overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.za-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4; transition: opacity 0.3s;
}
.za-card:hover { border-color: var(--za-border2); box-shadow: 0 24px 60px rgba(0,0,0,0.4); transform: translateY(-5px); }
.za-card:hover::before { opacity: 0.8; }
.za-card-body { padding: 28px 28px; }
.za-card-body.lg { padding: 40px; }

/* ================================================================
   CHIPS / TAGS
   ================================================================ */
.chip { padding: 5px 13px; border-radius: 100px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; }
.chip-gold { background: var(--gold-bg); border: 1px solid var(--gold-border); color: var(--gold2); }
.chip-cyan { background: var(--cyan-bg); border: 1px solid var(--cyan-border); color: var(--cyan); }
.chip-violet { background: var(--violet-bg); border: 1px solid rgba(139,92,246,0.3); color: var(--violet2); }
.chip-emerald { background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.25); color: var(--emerald); }
.chip-red { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.25); color: #fca5a5; }

/* ================================================================
   HERO SECTION (HOME)
   ================================================================ */
.za-hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 80px 0 60px;
}
.za-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% -5%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 88% 50%, rgba(0,212,255,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 55% at 12% 80%, rgba(139,92,246,0.08) 0%, transparent 50%);
}
.za-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 30%, transparent 82%);
}
.za-orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; animation: orbFloat 9s ease-in-out infinite; }
.za-orb.o1 { width: 600px; height: 600px; top: -100px; left: -80px; background: rgba(201,168,76,0.055); animation-delay: 0s; }
.za-orb.o2 { width: 450px; height: 450px; bottom: -60px; right: -60px; background: rgba(0,212,255,0.055); animation-delay: -3.5s; }
.za-orb.o3 { width: 340px; height: 340px; top: 42%; left: 56%; background: rgba(139,92,246,0.05); animation-delay: -7s; }
@keyframes orbFloat { 0%,100%{transform:translate(0,0) scale(1)} 40%{transform:translate(18px,-18px) scale(1.06)} 70%{transform:translate(-12px,14px) scale(0.94)} }

.za-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.za-particle { position: absolute; width: 2px; height: 2px; background: var(--gold); border-radius: 50%; opacity: 0; animation: partFloat var(--d,8s) ease-in-out var(--dl,0s) infinite; }
@keyframes partFloat { 0%{opacity:0;transform:translateY(100vh) rotate(0deg)} 10%{opacity:0.5} 90%{opacity:0.2} 100%{opacity:0;transform:translateY(-80px) rotate(360deg)} }

.za-hero-content { position: relative; z-index: 2; }
.za-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 100px;
  background: var(--za-glass); border: 1px solid var(--za-border2);
  font-size: 0.75rem; font-weight: 600; color: var(--gold2);
  letter-spacing: 0.08em; text-transform: uppercase;
  backdrop-filter: blur(12px);
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulseDot 2s ease-in-out infinite; }
@keyframes pulseDot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.6)} }

.za-hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800; line-height: 1.02;
  letter-spacing: -0.035em;
}
.za-hero-title .l1 { display: block; color: var(--text); }
.za-hero-title .l2 {
  display: block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--cyan) 45%, var(--violet2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; background-size: 200% auto;
  animation: gradShift 3.5s linear infinite;
}
@keyframes gradShift { 0%{background-position:0% center} 100%{background-position:200% center} }

.za-hero-tagline { font-family: var(--font-head); font-size: 0.8rem; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; }
.za-hero-sub { font-size: clamp(1rem,2.2vw,1.18rem); color: var(--text2); line-height: 1.75; max-width: 620px; }
.za-hero-text-center .za-hero-sub { margin-left: auto; margin-right: auto; }

.za-hero-stats { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; padding-top: 48px; border-top: 1px solid var(--za-border); margin-top: 60px; }
.za-stat-n { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; background: linear-gradient(135deg,var(--gold),var(--gold2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; line-height: 1; }
.za-stat-l { font-size: 0.72rem; color: var(--text2); margin-top: 6px; letter-spacing: 0.06em; text-transform: uppercase; }
.za-stat-divider { width: 1px; height: 44px; background: var(--za-border); }

.za-hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; z-index: 2; }
.scroll-txt { font-size: 0.65rem; color: var(--text3); letter-spacing: 0.12em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 38px; background: linear-gradient(to bottom,var(--gold),transparent); animation: scrollPulse 1.8s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:0.4;transform:scaleY(0.5)} }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.za-page-hero {
  padding: 100px 0 70px;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(201,168,76,0.10) 0%, transparent 65%);
  border-bottom: 1px solid var(--za-border);
  position: relative; overflow: hidden;
}
.za-page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.018) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.018) 1px,transparent 1px); background-size: 50px 50px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%,black 30%,transparent 80%); pointer-events: none; }
.za-breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text2); margin-bottom: 16px; flex-wrap: wrap; }
.za-breadcrumb a { color: var(--text2); transition: color 0.2s; }
.za-breadcrumb a:hover { color: var(--gold); }
.za-breadcrumb .sep { color: var(--text3); }
.za-breadcrumb .current { color: var(--gold); }
.za-page-title { font-family: var(--font-head); font-size: clamp(2rem,5vw,3.8rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.025em; }
.za-page-title span { background: linear-gradient(135deg,var(--gold),var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.za-page-sub { font-size: 1.05rem; color: var(--text2); max-width: 600px; line-height: 1.75; margin-top: 14px; }

/* ================================================================
   SERVICE CARDS
   ================================================================ */
.za-srv-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--gold-bg); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 18px; transition: transform 0.3s; flex-shrink: 0; }
.za-card:hover .za-srv-icon { transform: scale(1.1); }
.za-srv-name { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.za-srv-desc { font-size: 0.83rem; color: var(--text2); line-height: 1.65; margin-bottom: 18px; }
.za-srv-link { font-size: 0.78rem; color: var(--gold); font-weight: 600; display: flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.za-card:hover .za-srv-link { gap: 9px; }

/* ================================================================
   PORTFOLIO CARDS
   ================================================================ */
.za-portfolio-card { background: var(--za-glass); border: 1px solid var(--za-border); border-radius: var(--r2); overflow: hidden; transition: all 0.35s; }
.za-portfolio-card:hover { transform: translateY(-6px); border-color: var(--za-border2); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.za-portfolio-preview { height: 210px; background: linear-gradient(135deg, var(--za-surface), var(--za-ink2)); position: relative; overflow: hidden; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 0; }
.browser-mock { width: 88%; height: 88%; background: var(--za-ink); border-radius: 8px 8px 0 0; border: 1px solid var(--za-border2); border-bottom: none; overflow: hidden; }
.browser-bar { height: 26px; background: var(--za-surface); border-bottom: 1px solid var(--za-border); display: flex; align-items: center; padding: 0 10px; gap: 5px; }
.b-dot { width: 8px; height: 8px; border-radius: 50%; }
.b-d1{background:#ff5f57} .b-d2{background:#febc2e} .b-d3{background:#28c840}
.b-url { flex: 1; height: 13px; background: var(--za-glass2); border-radius: 4px; margin-left: 8px; display: flex; align-items: center; padding: 0 7px; font-size: 0.58rem; color: var(--text2); }
.browser-content { padding: 10px; background: linear-gradient(to bottom, var(--za-ink2), var(--za-surface)); height: calc(100% - 26px); }
.b-line { height: 4px; border-radius: 2px; margin-bottom: 7px; }
.b-l1{background:rgba(201,168,76,0.4);width:55%} .b-l2{background:rgba(255,255,255,0.1);width:88%} .b-l3{background:rgba(255,255,255,0.06);width:72%}
.za-portfolio-body { padding: 24px 24px 28px; }
.za-portfolio-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--text); margin: 10px 0 8px; }
.za-portfolio-desc { font-size: 0.83rem; color: var(--text2); line-height: 1.65; margin-bottom: 18px; }
.za-portfolio-link { display: inline-flex; align-items: center; gap: 7px; font-size: 0.78rem; color: var(--gold); font-weight: 600; border: 1px solid var(--gold-border); padding: 7px 15px; border-radius: 8px; transition: all 0.2s; }
.za-portfolio-link:hover { background: var(--gold-bg); transform: translateX(4px); }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.za-testi-card { background: var(--za-glass); border: 1px solid var(--za-border); border-radius: var(--r2); padding: 32px; transition: all 0.35s; }
.za-testi-card:hover { border-color: var(--za-border2); transform: translateY(-4px); }
.za-testi-stars { display: flex; gap: 3px; color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; }
.za-testi-quote { font-size: 2rem; color: var(--gold); line-height: 1; opacity: 0.4; margin-bottom: 10px; }
.za-testi-text { font-size: 0.9rem; color: var(--text2); line-height: 1.75; font-style: italic; }
.za-testi-author { display: flex; align-items: center; gap: 14px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--za-border); }
.za-testi-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--violet)); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 700; color: var(--za-ink); flex-shrink: 0; }
.za-testi-name { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.za-testi-role { font-size: 0.75rem; color: var(--text2); margin-top: 2px; }

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.za-faq-item { background: var(--za-glass); border: 1px solid var(--za-border); border-radius: var(--r); margin-bottom: 10px; overflow: hidden; transition: border-color 0.2s; }
.za-faq-item:hover, .za-faq-item.open { border-color: var(--za-border2); }
.za-faq-q { padding: 18px 22px; font-weight: 600; font-size: 0.92rem; color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 14px; user-select: none; transition: background 0.2s; }
.za-faq-q:hover { background: var(--za-glass2); }
.za-faq-ico { width: 24px; height: 24px; border-radius: 50%; background: var(--gold-bg); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.85rem; color: var(--gold); transition: transform 0.3s; }
.za-faq-item.open .za-faq-ico { transform: rotate(45deg); }
.za-faq-ans { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 22px; }
.za-faq-item.open .za-faq-ans { max-height: 400px; padding: 0 22px 20px; }
.za-faq-ans p { font-size: 0.875rem; color: var(--text2); line-height: 1.78; }

/* ================================================================
   FORMS
   ================================================================ */
.f-group { margin-bottom: 18px; }
.f-label { display: block; font-size: 0.78rem; color: var(--text2); letter-spacing: 0.04em; margin-bottom: 7px; font-weight: 500; }
.f-input, .f-select, .f-textarea {
  width: 100%; padding: 13px 17px;
  background: var(--za-glass); border: 1px solid var(--za-border);
  border-radius: var(--r); color: var(--text);
  font-family: var(--font-body); font-size: 0.9rem;
  outline: none; transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}
.f-input:focus, .f-select:focus, .f-textarea:focus { border-color: rgba(201,168,76,0.5); background: var(--za-glass2); }
.f-input::placeholder, .f-textarea::placeholder { color: var(--text3); }
.f-textarea { resize: vertical; min-height: 110px; }
.f-select option { background: var(--za-surface2); color: var(--text); }

/* ================================================================
   CTA BAND
   ================================================================ */
.za-cta-band {
  padding: 100px 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,0.09) 0%, transparent 70%);
  border-top: 1px solid var(--za-border); border-bottom: 1px solid var(--za-border);
  text-align: center;
}
.za-cta-title { font-family: var(--font-head); font-size: clamp(2rem,5vw,3.6rem); font-weight: 800; letter-spacing: -0.025em; }
.za-cta-title span { background: linear-gradient(135deg,var(--gold),var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ================================================================
   MARQUEE
   ================================================================ */
.za-marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--za-border); border-bottom: 1px solid var(--za-border);
  padding: 20px 0;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.03), transparent);
}
.za-marquee-track { display: flex; gap: 52px; animation: marqScroll 32s linear infinite; white-space: nowrap; }
.mq-item { font-family: var(--font-head); font-size: 0.7rem; font-weight: 700; color: var(--text2); letter-spacing: 0.14em; text-transform: uppercase; display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.mq-dot { color: var(--gold); font-size: 0.55rem; }
@keyframes marqScroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ================================================================
   FOOTER
   ================================================================ */
.za-footer { background: var(--za-ink2); border-top: 1px solid var(--za-border); }
.za-footer-top { padding: 72px 0 56px; }
.za-footer-logo { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; background: linear-gradient(135deg,var(--gold),var(--gold2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.za-footer-about { font-size: 0.875rem; color: var(--text2); margin-top: 14px; max-width: 300px; line-height: 1.72; }
.za-footer-location { font-size: 0.78rem; color: var(--text2); margin-top: 14px; }
.za-footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.za-footer-socials a { width: 38px; height: 38px; border-radius: 50%; background: var(--za-glass); border: 1px solid var(--za-border); display: flex; align-items: center; justify-content: center; color: var(--text2); font-size: 1rem; transition: all 0.2s; }
.za-footer-socials a:hover { background: var(--gold-bg); border-color: var(--gold-border); color: var(--gold); transform: translateY(-2px); }
.za-footer-col h4 { font-family: var(--font-head); font-size: 0.875rem; font-weight: 700; color: var(--text); letter-spacing: 0.04em; margin-bottom: 20px; }
.za-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.za-footer-col ul li a { font-size: 0.83rem; color: var(--text2); transition: color 0.2s; }
.za-footer-col ul li a:hover { color: var(--gold); }
.za-footer-contact { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.fc-item { display: flex; gap: 12px; align-items: flex-start; }
.fc-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--gold-bg); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 0.9rem; flex-shrink: 0; }
.fc-label { font-size: 0.68rem; color: var(--text2); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 2px; }
.fc-item a { font-size: 0.85rem; color: var(--text); transition: color 0.2s; }
.fc-item a:hover { color: var(--gold); }
.za-footer-newsletter h5 { font-family: var(--font-head); font-size: 0.875rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.za-newsletter-form { display: flex; gap: 8px; }
.za-footer-bottom { background: var(--za-ink); border-top: 1px solid var(--za-border); padding: 20px 0; }
.ft-copy { font-size: 0.78rem; color: var(--text2); }
.ft-copy a { color: var(--gold); }
.ft-links a { font-size: 0.78rem; color: var(--text2); transition: color 0.2s; }
.ft-links a:hover { color: var(--gold); }
.ft-markets { font-size: 0.75rem; color: var(--text3); letter-spacing: 0.04em; }

/* ================================================================
   FLOATING WHATSAPP
   ================================================================ */
.za-whatsapp-float {
  position: fixed; bottom: 90px; right: 24px; z-index: 888;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  transition: all 0.2s; text-decoration: none;
}
.za-whatsapp-float:hover { transform: scale(1.08); color: #fff; box-shadow: 0 12px 36px rgba(37,211,102,0.5); }
.wa-tooltip { position: absolute; right: 66px; top: 50%; transform: translateY(-50%); background: var(--za-surface); border: 1px solid var(--za-border2); padding: 6px 12px; border-radius: 8px; font-size: 0.78rem; white-space: nowrap; color: var(--text); opacity: 0; pointer-events: none; transition: opacity 0.2s; }
.za-whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* SCROLL TOP */
.za-scroll-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 888;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--za-glass2); border: 1px solid var(--za-border2);
  color: var(--text2); font-size: 1rem;
  display: none; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
  backdrop-filter: blur(12px);
}
.za-scroll-top:hover { background: var(--gold-bg); border-color: var(--gold-border); color: var(--gold); }
.za-scroll-top.show { display: flex; }

/* STICKY CTA */
.za-sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 889; display: flex; gap: 0; }
.za-sticky-cta .btn-gold { flex: 1; border-radius: 0; padding: 14px; justify-content: center; font-size: 0.875rem; }
.za-sticky-cta .btn-wa { flex: 1; border-radius: 0; padding: 14px; justify-content: center; font-size: 0.875rem; }
.flex-1 { flex: 1; }

/* POPUP */
.za-popup-overlay { position: fixed; inset: 0; z-index: 1200; background: rgba(0,0,0,0.75); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 20px; }
.za-popup { background: var(--za-surface2); border: 1px solid var(--za-border2); border-radius: var(--r3); padding: 40px; max-width: 440px; width: 100%; position: relative; text-align: center; }
.za-popup::before { content:''; position:absolute; top:0; left:0; right:0; height:1px; background:linear-gradient(90deg,transparent,var(--gold),transparent); }
.za-popup-close { position: absolute; top: 14px; right: 14px; background: none; border: none; color: var(--text2); font-size: 1.1rem; cursor: pointer; transition: color 0.2s; }
.za-popup-close:hover { color: var(--text); }
.za-popup-icon { font-size: 2.5rem; margin-bottom: 16px; }
.za-popup h3 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.za-popup p { font-size: 0.875rem; color: var(--text2); margin-bottom: 24px; line-height: 1.6; }

/* FLASH */
.za-flash-wrap { position: fixed; top: 80px; right: 20px; z-index: 1050; }
.za-flash { padding: 14px 18px; border-radius: var(--r); display: flex; align-items: center; gap: 10px; font-size: 0.875rem; max-width: 360px; }
.za-flash-success { background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3); color: var(--emerald); }
.za-flash-error { background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.3); color: #fca5a5; }
.za-flash button { background: none; border: none; margin-left: auto; cursor: pointer; color: inherit; }

/* ================================================================
   REVEAL ANIMATIONS
   ================================================================ */
.rev { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.rev.visible { opacity: 1; transform: translateY(0); }
.rev.d1 { transition-delay: 0.1s; }
.rev.d2 { transition-delay: 0.2s; }
.rev.d3 { transition-delay: 0.3s; }
.rev.d4 { transition-delay: 0.4s; }

/* ================================================================
   BLOG CARDS
   ================================================================ */
.za-blog-card { background: var(--za-glass); border: 1px solid var(--za-border); border-radius: var(--r2); overflow: hidden; transition: all 0.35s; }
.za-blog-card:hover { transform: translateY(-5px); border-color: var(--za-border2); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.za-blog-img { height: 200px; overflow: hidden; position: relative; background: var(--za-surface); display: flex; align-items: center; justify-content: center; }
.za-blog-img .blog-placeholder { font-size: 3rem; }
.za-blog-body { padding: 22px; }
.za-blog-cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.za-blog-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--text); margin: 8px 0 10px; line-height: 1.35; }
.za-blog-excerpt { font-size: 0.82rem; color: var(--text2); line-height: 1.65; margin-bottom: 14px; }
.za-blog-meta { display: flex; align-items: center; gap: 14px; font-size: 0.72rem; color: var(--text2); flex-wrap: wrap; }

/* ================================================================
   ADMIN STYLES (included here for convenience)
   ================================================================ */
.admin-sidebar { width: 240px; background: var(--za-ink2); border-right: 1px solid var(--za-border); min-height: 100vh; position: fixed; top: 0; left: 0; overflow-y: auto; z-index: 100; display: flex; flex-direction: column; }
.admin-content { margin-left: 240px; min-height: 100vh; background: var(--za-ink); }
.admin-nav-link { display: flex; align-items: center; gap: 10px; padding: 10px 18px; color: var(--text2); font-size: 0.875rem; transition: all 0.2s; border-radius: 8px; margin: 2px 8px; }
.admin-nav-link:hover, .admin-nav-link.active { background: var(--za-glass2); color: var(--gold); }
.admin-nav-link i { width: 18px; color: var(--gold); }
.admin-stat-card { background: var(--za-glass); border: 1px solid var(--za-border); border-radius: var(--r2); padding: 24px; }
.admin-stat-card .stat-num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--gold); }
.za-table { width: 100%; font-size: 0.875rem; }
.za-table thead th { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text2); padding: 10px 14px; border-bottom: 1px solid var(--za-border2); }
.za-table tbody tr { border-bottom: 1px solid var(--za-border); transition: background 0.2s; }
.za-table tbody tr:hover { background: var(--za-glass); }
.za-table tbody td { padding: 12px 14px; color: var(--text); vertical-align: middle; }
.badge-new { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.25); color: var(--emerald); padding: 3px 9px; border-radius: 100px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.badge-read { background: var(--gold-bg); border: 1px solid var(--gold-border); color: var(--gold2); padding: 3px 9px; border-radius: 100px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; }
.badge-replied { background: var(--cyan-bg); border: 1px solid var(--cyan-border); color: var(--cyan); padding: 3px 9px; border-radius: 100px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; }

/* ================================================================
   UTILITIES
   ================================================================ */
.text-gold { color: var(--gold); }
.text-cyan { color: var(--cyan); }
.text-violet { color: var(--violet2); }
.text-emerald { color: var(--emerald); }
.text-muted-za { color: var(--text2); }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--za-border2), transparent); }
.glow-gold { box-shadow: 0 0 24px var(--gold-glow); }
.font-head { font-family: var(--font-head); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1200px) {
  .za-nav-links { gap: 20px; }
  .za-dropdown { min-width: 240px; }
}
@media (max-width: 991px) {
  .za-hero-stats { gap: 28px; }
  .za-stat-divider { display: none; }
  .admin-sidebar { display: none; }
  .admin-content { margin-left: 0; }
}
@media (max-width: 768px) {
  .za-section { padding: 70px 0; }
  .za-footer-top { padding: 50px 0 40px; }
  .za-hero { padding-top: 90px; }
  .za-newsletter-form { flex-direction: column; }
}
@media (max-width: 576px) {
  .za-whatsapp-float { bottom: 80px; }
}