/* ══════════════════════════════════════════════
   AWAIS TAHIR PORTFOLIO — BLACK & GOLD THEME
   ══════════════════════════════════════════════ */

/* ─── Reset & Variables ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Black surfaces ── */
  --navy:       #080808;
  --navy-2:     #0f0f0f;
  --navy-3:     #141414;
  --navy-4:     #1a1a1a;

  /* ── Gold accents ── */
  --blue:       #c9a84c;
  --blue-light: #e8c56b;
  --emerald:    #b8932a;
  --emerald-l:  #f0d080;
  --gold:       #e8c56b;
  --purple:     #d4a843;
  --purple-l:   #f0d080;
  --white:      #ffffff;

  /* ── Text ── */
  --text-1:     #f5f0e8;
  --text-2:     #a89880;
  --text-3:     #6b5c48;

  /* ── Borders & glass ── */
  --border:     rgba(201,168,76,0.15);
  --glass-bg:   rgba(201,168,76,0.04);
  --glass-bg2:  rgba(201,168,76,0.07);

  --radius:     16px;
  --radius-lg:  24px;
  --shadow-glow: 0 0 40px rgba(201,168,76,0.2);
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;
  --font-ui:      'Space Grotesk', sans-serif;
}


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

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text-1);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--blue); color: #000; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-2); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ─── Utils ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; overflow: hidden; }
.section-dark { background: var(--navy-2); }
.gradient-text {
  background: linear-gradient(135deg, #f0d080, #e8c56b, #c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.d-none { display: none; }

/* ─── Section Headers ─── */
.section-label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-1);
}
.section-desc {
  font-size: 17px;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.7;
}
.section-header { margin-bottom: 64px; }

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #c9a84c, #a07828);
  color: #080808;
  text-decoration: none;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .5px;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f0d080, #e8c56b);
  opacity: 0;
  transition: opacity .3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,.4); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; }
.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: transparent;
  color: var(--text-1);
  text-decoration: none;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 15px;
  border: 1px solid rgba(201,168,76,0.3);
  cursor: pointer;
  transition: all .3s ease;
}
.btn-ghost:hover { border-color: var(--blue-light); color: var(--blue-light); background: rgba(201,168,76,.06); }

/* ─── Glass / elevated cards ─── */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
  border-radius: var(--radius);
}

/* ═══════════════════════ NAVBAR ═══════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all .4s ease;
}
#navbar.scrolled {
  background: rgba(8,8,8,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,.2);
  box-shadow: 0 2px 30px rgba(0,0,0,.5);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-at {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #c9a84c, #a07828);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: #080808;
}
.logo-name {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-1);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all .2s;
}
.nav-links a:hover { color: var(--blue-light); background: rgba(201,168,76,.07); }
.nav-cta {
  background: linear-gradient(135deg, #c9a84c, #a07828) !important;
  color: #080808 !important;
  font-weight: 700 !important;
  padding: 9px 22px !important;
}
.nav-cta:hover { box-shadow: 0 6px 24px rgba(201,168,76,.35); transform: translateY(-1px); color: #080808 !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-1); border-radius: 2px; transition: all .3s; }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8,8,8,.98);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin: 16px 0; }
.mobile-menu a { font-family: var(--font-display); font-size: 32px; font-weight: 600; color: var(--text-1); text-decoration: none; transition: color .2s; }
.mobile-menu a:hover { color: var(--blue-light); }

/* ═══════════════════════ HERO ═══════════════════════ */

.hero-photo {
  width: 260px;
  height: 340px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
}

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: radial-gradient(ellipse at 20% 50%, #0f0c00 0%, #080808 60%);
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .35;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(201,168,76,.18) 0%, transparent 70%); top: -100px; right: 0; }
.hero-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(160,120,40,.12) 0%, transparent 70%); bottom: 0; left: -100px; }
.hero-orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(232,197,107,.1) 0%, transparent 70%); top: 30%; left: 40%; }

/* Hero floating cards */
.float-card {
  position: absolute;
  background: rgba(20,16,4,.90);
  border: 1px solid rgba(201,168,76,.25);
  backdrop-filter: blur(20px);
  border-radius: 14px;
  padding: 16px 20px;
  min-width: 160px;
  z-index: 5;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.float-card-1 { bottom: 28%; right: 8%; animation: floatAnim 4s ease-in-out infinite; }
.float-card-2 { top: 22%; right: 4%; animation: floatAnim 5s ease-in-out infinite .5s; }
.float-card-3 { top: 55%; right: 18%; animation: floatAnim 3.5s ease-in-out infinite 1s; }
.fc-label { font-size: 10px; color: var(--text-3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; font-family: var(--font-ui); }
.fc-value { font-family: var(--font-ui); font-size: 24px; font-weight: 700; color: var(--blue-light); }
.fc-bar { height: 4px; background: rgba(201,168,76,.12); border-radius: 2px; margin-top: 8px; }
.fc-fill { height: 100%; background: linear-gradient(90deg, #c9a84c, #f0d080); border-radius: 2px; }
.fc-icon { font-size: 22px; margin-top: 4px; }
.fc-ring { width: 36px; height: 36px; border-radius: 50%; border: 3px solid transparent; border-top-color: #f0d080; border-right-color: #c9a84c; animation: spin 2s linear infinite; margin-top: 6px; }

@keyframes floatAnim { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* Hero layout */
#hero .container { position: relative; z-index: 2; display: flex; align-items: center; gap: 60px; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hero-content { flex: 1; max-width: 620px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-1);
}
.hero-title-accent {
  background: linear-gradient(135deg, #f0d080 0%, #c9a84c 50%, #a07828 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-3); font-family: var(--font-ui); }
.trust-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-light); display: inline-block; box-shadow: 0 0 8px rgba(232,197,107,.5); }
.trust-dot.emerald { background: #d4a843; box-shadow: 0 0 8px rgba(212,168,67,.5); }
.trust-dot.gold { background: #f0d080; box-shadow: 0 0 8px rgba(240,208,128,.5); }
.trust-sep { color: var(--text-3); }

/* Hero visual */
.hero-visual { position: relative; flex: 0 0 360px; display: flex; justify-content: center; }
.hero-img-wrap { position: relative; width: 300px; }
.hero-img-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.2);
  animation: heroRingRotate 12s linear infinite;
}
.ring-2 {
  inset: -40px;
  border-color: rgba(232,197,107,.1);
  animation-duration: 20s;
  animation-direction: reverse;
}
@keyframes heroRingRotate { to { transform: rotate(360deg); } }
.hero-img-placeholder {
  background: linear-gradient(160deg, #1a1400, #141414);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 40px rgba(0,0,0,.5), 0 0 60px rgba(201,168,76,.07);
}
.hero-img-placeholder svg { width: 180px; }
.img-label { font-family: var(--font-ui); font-weight: 700; font-size: 17px; margin-top: 12px; color: var(--text-1); }
.img-sublabel { font-size: 12px; color: var(--text-3); margin-top: 4px; letter-spacing: 1px; }
.hero-mini-chart {
  position: absolute;
  bottom: -16px; left: -20px;
  background: rgba(14,10,0,.95);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 12px;
  padding: 12px;
  width: 150px;
  z-index: 3;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.hero-mini-chart svg { width: 100%; }
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-ui);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--blue-light));
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0;transform:scaleY(0)} 50%{opacity:1;transform:scaleY(1)} }

/* ─── Reveal Animations ─── */
.reveal-up { opacity: 0; transform: translateY(30px); animation: revealUp .8s ease forwards; }
.reveal-float { opacity: 0; animation: revealFade .6s ease forwards; }
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }
@keyframes revealFade { to { opacity: 1; } }

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════ ABOUT ═══════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual-col { position: relative; }
.about-img-frame { position: relative; }
.about-img-inner {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(201,168,76,.08);
}
.about-illustration { width: 100%; display: block; }
.about-badge-1, .about-badge-2 {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(14,10,0,.92);
  border: 1px solid rgba(201,168,76,.25);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  backdrop-filter: blur(16px);
}
.about-badge-1 { bottom: -20px; left: -20px; }
.about-badge-2 { top: -20px; right: -20px; }
.about-badge-icon { font-size: 24px; }
.ab-title { font-family: var(--font-ui); font-weight: 700; font-size: 15px; color: var(--text-1); }
.ab-sub { font-size: 11px; color: var(--text-3); }

.about-intro { font-size: 19px; line-height: 1.7; color: var(--text-1); margin-bottom: 16px; }
.about-intro strong { color: var(--blue-light); }
.about-body { font-size: 16px; color: var(--text-2); line-height: 1.8; margin-bottom: 16px; }

.about-pillars { display: flex; flex-direction: column; gap: 16px; margin: 32px 0 36px; }
.pillar { display: flex; align-items: center; gap: 16px; }
.pillar-icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; font-size: 22px; flex-shrink: 0; }
.pillar-title { font-family: var(--font-ui); font-weight: 600; font-size: 15px; color: var(--text-1); }
.pillar-sub { font-size: 12px; color: var(--text-3); margin-top: 2px; }

/* ═══════════════════════ SERVICES ═══════════════════════ */
.services-bg-orb {
  position: absolute;
  width: 600px; height: 600px;
  top: -150px; right: -150px;
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
  pointer-events: none;
}
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all .35s ease;
  cursor: default;
  box-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .35s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,.4); box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 30px rgba(201,168,76,.08); }
.service-card:hover::before { opacity: 1; }
/* Keep accent-rgb for the hover gradient — override to gold shades */
.service-card[style*="--accent:#1a5cd4"] { --accent-rgb: 201,168,76; }
.service-card[style*="--accent:#059669"] { --accent-rgb: 201,168,76; }
.service-card[style*="--accent:#7c3aed"] { --accent-rgb: 201,168,76; }
.service-card[style*="--accent:#f59e0b"] { --accent-rgb: 201,168,76; }
.service-card[style*="--accent:#0891b2"] { --accent-rgb: 201,168,76; }
.service-card[style*="--accent:#10b981"] { --accent-rgb: 201,168,76; }
.service-card[style*="--accent:#8b5cf6"] { --accent-rgb: 201,168,76; }
.service-card[style*="--accent:#f97316"] { --accent-rgb: 201,168,76; }

.sc-glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
  opacity: 0;
  transition: opacity .35s;
}
.service-card:hover .sc-glow { opacity: 1; }
.sc-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.sc-title { font-family: var(--font-ui); font-weight: 600; font-size: 16px; margin-bottom: 10px; color: var(--text-1); }
.sc-desc { font-size: 13.5px; color: var(--text-2); line-height: 1.7; margin-bottom: 16px; }
.sc-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.sc-tags span {
  font-size: 10px;
  font-family: var(--font-ui);
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid rgba(201,168,76,.2);
  color: var(--text-3);
  background: rgba(201,168,76,.04);
  letter-spacing: .5px;
}
.sc-arrow { font-size: 18px; color: var(--blue-light); opacity: 0; transform: translateX(-8px); transition: all .3s; }
.service-card:hover .sc-arrow { opacity: 1; transform: translateX(0); }

/* ═══════════════════════ SKILLS ═══════════════════════ */
.skills-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
.skills-circles { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.skill-circle { position: relative; display: flex; flex-direction: column; align-items: center; }
.skill-circle svg { width: 120px; transform: rotate(-90deg); }
.skill-arc { transition: stroke-dashoffset 1.5s ease; }
.sc-inner { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; }
.sc-pct { font-family: var(--font-ui); font-weight: 700; font-size: 20px; display: block; color: var(--blue-light); }
.sc-name { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

.skill-circle svg circle:first-child { stroke: #2a2218; }

.skills-bars {}
.skill-bar-item { margin-bottom: 22px; }
.sb-header { display: flex; justify-content: space-between; font-family: var(--font-ui); font-size: 14px; margin-bottom: 8px; color: var(--text-2); }
.sb-track { height: 6px; background: #1e1a12; border-radius: 3px; overflow: hidden; }
.sb-fill { height: 100%; border-radius: 3px; width: 0; transition: width 1.4s ease; }

.tech-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.tech-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-2);
  transition: all .2s;
}
.tech-badge:hover { border-color: var(--blue-light); color: var(--blue-light); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(201,168,76,.15); }

/* ═══════════════════════ PORTFOLIO ═══════════════════════ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.port-card-wide { grid-column: span 2; }
.port-card {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .35s ease;
  cursor: default;
  box-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.port-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,.35); box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 30px rgba(201,168,76,.06); }
.port-img { height: 200px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.port-card-wide .port-img { height: 220px; }
.port-chart-mock { width: 90%; opacity: .9; }
.port-chart-mock svg { width: 100%; }
.port-icon-large { font-size: 56px; filter: drop-shadow(0 0 20px rgba(201,168,76,.3)); }
.port-info { padding: 22px 24px; background: var(--navy-3); }
.port-cat { font-size: 11px; font-family: var(--font-ui); color: var(--blue-light); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.port-title { font-family: var(--font-ui); font-weight: 700; font-size: 17px; margin-bottom: 8px; color: var(--text-1); }
.port-desc { font-size: 13.5px; color: var(--text-2); line-height: 1.65; margin-bottom: 14px; }
.port-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.port-tags span {
  font-size: 10px;
  padding: 3px 9px;
  border-radius: 6px;
  background: rgba(201,168,76,.08);
  color: var(--blue-light);
  font-family: var(--font-ui);
  border: 1px solid rgba(201,168,76,.2);
}

/* ═══════════════════════ STATS ═══════════════════════ */
.stats-section { padding: 80px 0; overflow: hidden; }
.stats-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0800 0%, #0f0f0f 50%, #0a0800 100%);
}
.stats-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,.10) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(160,120,40,.07) 0%, transparent 60%);
}
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; }
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  color: var(--text-1);
  line-height: 1;
  display: inline;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  background: linear-gradient(135deg, #f0d080, #c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}
.stat-label { font-family: var(--font-ui); font-size: 14px; color: var(--text-3); margin-top: 8px; letter-spacing: .5px; }

/* ═══════════════════════ TESTIMONIALS ═══════════════════════ */
.testimonials-wrap { max-width: 700px; margin: 0 auto; }
.testi-slider { position: relative; min-height: 280px; }
.testi-card {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  opacity: 0;
  position: absolute;
  inset: 0;
  transition: opacity .5s ease, transform .5s ease;
  transform: translateX(40px);
  pointer-events: none;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
}
.testi-card.active { opacity: 1; transform: translateX(0); pointer-events: all; }
.testi-stars { color: var(--gold); font-size: 18px; margin-bottom: 20px; letter-spacing: 2px; }
.testi-quote { font-family: var(--font-display); font-size: 20px; font-weight: 400; line-height: 1.65; color: var(--text-1); margin-bottom: 28px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 14px; color: #080808; flex-shrink: 0; background: linear-gradient(135deg, #c9a84c, #a07828); }
.testi-name { font-family: var(--font-ui); font-weight: 600; font-size: 15px; color: var(--text-1); }
.testi-role { font-size: 13px; color: var(--text-3); margin-top: 2px; }
.testi-nav { display: flex; justify-content: center; gap: 10px; margin-top: 24px; }
.testi-dot { width: 10px; height: 10px; border-radius: 50%; background: #2a2218; border: none; cursor: pointer; transition: all .2s; padding: 0; }
.testi-dot.active { background: var(--blue-light); transform: scale(1.3); box-shadow: 0 0 8px rgba(232,197,107,.4); }

/* ═══════════════════════ BLOG ═══════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .35s ease;
  box-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 20px rgba(201,168,76,.05); border-color: rgba(201,168,76,.3); }
.blog-img { height: 180px; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.blog-cat-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(8,8,0,.85);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  padding: 5px 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue-light);
  backdrop-filter: blur(8px);
}
.blog-img-icon { font-size: 48px; filter: drop-shadow(0 0 16px rgba(201,168,76,.25)); }
.blog-body { padding: 24px; }
.blog-meta { display: flex; gap: 8px; font-size: 11px; color: var(--text-3); font-family: var(--font-ui); margin-bottom: 10px; }
.blog-title { font-family: var(--font-ui); font-weight: 700; font-size: 16px; line-height: 1.4; margin-bottom: 10px; color: var(--text-1); }
.blog-excerpt { font-size: 13.5px; color: var(--text-2); line-height: 1.65; margin-bottom: 16px; }
.blog-link { font-family: var(--font-ui); font-size: 13px; font-weight: 600; color: var(--blue-light); text-decoration: none; transition: gap .2s; display: inline-flex; align-items: center; gap: 4px; }
.blog-link:hover { gap: 8px; }

/* ═══════════════════════ CONTACT ═══════════════════════ */
.contact-orb {
  position: absolute;
  width: 500px; height: 500px;
  left: -150px; bottom: -100px;
  background: radial-gradient(circle, rgba(201,168,76,.07) 0%, transparent 70%);
  pointer-events: none;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-desc { font-size: 17px; color: var(--text-2); line-height: 1.75; margin: 20px 0 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.ci-icon { width: 44px; height: 44px; background: var(--navy-3); border: 1px solid var(--border); border-radius: 12px; display: grid; place-items: center; font-size: 20px; flex-shrink: 0; }
.ci-label { font-size: 11px; color: var(--text-3); font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.ci-value { font-size: 15px; color: var(--text-1); text-decoration: none; transition: color .2s; }
.ci-value:hover { color: var(--blue-light); }
.social-row { display: flex; gap: 14px; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all .25s;
}
.social-btn svg { width: 18px; height: 18px; }
.linkedin { background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.25); color: var(--blue-light); }
.linkedin:hover { background: rgba(201,168,76,.15); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(201,168,76,.2); }
.whatsapp { background: rgba(201,168,76,.06); border: 1px solid rgba(201,168,76,.2); color: var(--blue-light); }
.whatsapp:hover { background: rgba(201,168,76,.13); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(201,168,76,.18); }

/* Contact Form */
.contact-form-wrap {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-ui); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-3); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(201,168,76,.03);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  resize: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
  background: rgba(201,168,76,.05);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy-3); color: var(--text-1); }
.btn-arrow { transition: transform .2s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 12px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--blue-light);
  text-align: center;
}
.form-success.show { display: block; }

/* ═══════════════════════ FOOTER ═══════════════════════ */
.footer {
  background: var(--navy-2);
  border-top: 1px solid rgba(201,168,76,.12);
  padding: 60px 0 0;
}
.footer-inner { display: flex; justify-content: space-between; gap: 60px; margin-bottom: 48px; }
.footer-tagline { font-size: 14px; color: var(--text-3); margin: 12px 0 6px; }
.footer-copy { font-size: 12px; color: var(--text-3); }
.footer-links { display: flex; gap: 60px; }
.fl-col { display: flex; flex-direction: column; gap: 12px; }
.fl-title { font-family: var(--font-ui); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--text-3); margin-bottom: 4px; }
.fl-col a { font-size: 14px; color: var(--text-3); text-decoration: none; transition: color .2s; }
.fl-col a:hover { color: var(--blue-light); }
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--font-ui);
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 32px; height: 32px;
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-2);
  text-decoration: none;
  text-transform: uppercase;
  transition: all .2s;
}
.footer-socials a:hover { border-color: var(--blue-light); color: var(--blue-light); background: rgba(201,168,76,.07); }

/* Scroll Top */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #c9a84c, #a07828);
  color: #080808;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: all .3s;
  z-index: 999;
  display: grid;
  place-items: center;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { box-shadow: 0 8px 24px rgba(201,168,76,.4); transform: translateY(-2px); }

/* ═══════════════════════ RESPONSIVE ═══════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 960px) {
  .about-grid    { grid-template-columns: 1fr; gap: 48px; }
  .skills-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 48px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .port-card-wide { grid-column: span 2; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-links { flex-wrap: wrap; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  #hero .container { flex-direction: column; text-align: center; gap: 40px; }
  .hero-visual { display: none; }
  .float-card  { display: none; }
  .hero-actions { justify-content: center; }
  .hero-trust   { justify-content: center; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .port-card-wide { grid-column: span 1; }
  .blog-grid  { grid-template-columns: 1fr; }
  .form-row   { grid-template-columns: 1fr; }
  .about-badge-1, .about-badge-2 { position: static; margin-top: 12px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .d-md-block { display: none; }
}

@media (max-width: 520px) {
  .services-grid  { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: 1fr 1fr; }
  .skills-circles { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .section-title  { font-size: 32px; }
  .hero-title     { font-size: 36px; }
}
