/* ===========================
   PORTFOLIO — style.css
   =========================== */

/* ── Variables ─────────────────────────────────── */
:root {
  --bg:      #0a0a0f;
  --bg2:     #0f0f1a;
  --surface: #13131f;
  --border:  rgba(255,255,255,0.07);
  --primary: #7c6aff;
  --p2:      #a78bfa;
  --accent:  #06b6d4;
  --text:    #e2e8f0;
  --muted:   #94a3b8;
  --heading: #f8fafc;
  --r:       14px;
  --r-sm:    8px;
  --ease:    0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html  { scroll-behavior: smooth; font-size: 17px; }
body  { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; font-size: 1rem; line-height: 1.75; }
::selection { background: var(--primary); color: #fff; }
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ── Scroll progress ───────────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 9999; transition: width 0.1s linear;
}

/* ── Back to top ───────────────────────────────── */
#to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary); color: #fff; border: none;
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(124,106,255,0.45);
  opacity: 0; transform: translateY(20px); transition: var(--ease);
  z-index: 999; cursor: pointer;
}
#to-top.show { opacity: 1; transform: none; }
#to-top:hover { background: var(--p2); transform: translateY(-3px); }

/* ── Section utilities ─────────────────────────── */
.py-section  { padding: 100px 0; }
.bg-surface  { background: var(--bg2); }

.section-tag   { font-family: 'Fira Code', monospace; font-size: 0.85rem; color: var(--primary); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-size: clamp(2.2rem,4vw,3rem); font-weight: 800; color: var(--heading); line-height: 1.15; }
.section-title span { color: var(--primary); }
.text-muted-custom{ color: var(--muted); line-height: 1.85; font-size: 1.05rem; }

/* ── Navbar ────────────────────────────────────── */
#mainNav { padding: 18px 0; transition: var(--ease); }
#mainNav.scrolled {
  background: rgba(10,10,15,0.92) !important;
  backdrop-filter: blur(18px); padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav-logo      { font-size: 1.5rem; font-weight: 800; color: var(--heading) !important; }
.nav-logo span { color: var(--primary); }

#mainNav .nav-link {
  color: var(--muted); font-size: 0.95rem; font-weight: 500;
  padding: 6px 8px; position: relative; transition: var(--ease);
}
#mainNav .nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 8px;
  width: 0; height: 2px; background: var(--primary);
  border-radius: 1px; transition: var(--ease);
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active { color: var(--heading); }
#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after { width: calc(100% - 16px); }

.btn-nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff !important; border-radius: 50px;
  padding: 7px 20px !important; font-weight: 600;
}
.btn-nav-cta::after { display: none !important; }
.btn-nav-cta:hover  { opacity: 0.88; transform: translateY(-1px); }

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28226,232,240,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Buttons ───────────────────────────────────── */
.btn-custom-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; border: none; border-radius: 50px;
  padding: 13px 32px; font-weight: 600; font-size: 0.95rem;
  box-shadow: 0 4px 24px rgba(124,106,255,0.35); transition: var(--ease);
}
.btn-custom-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,106,255,0.55); }

.btn-custom-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary); border-radius: 50px;
  padding: 11px 32px; font-weight: 600; font-size: 0.95rem; transition: var(--ease);
}
.btn-custom-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

/* ── Social links ──────────────────────────────── */
.social-link {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--muted); font-size: 1rem;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; transition: var(--ease);
}
.social-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-3px); }

/* ── Hero ──────────────────────────────────────── */
.hero-section { min-height: 100vh; padding: 120px 0 80px; position: relative; overflow: hidden; }

.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.blob { position: absolute; border-radius: 50%; filter: blur(110px); opacity: 0.14; animation: blobFloat 9s ease-in-out infinite alternate; }
.blob-1 { width: 650px; height: 650px; background: var(--primary); top: -180px; left: -120px; }
.blob-2 { width: 520px; height: 520px; background: var(--accent);   bottom: -130px; right: -120px; animation-delay: -4s; }
.blob-3 { width: 360px; height: 360px; background: #f093fb;         top: 35%; left: 38%; opacity: 0.07; animation-delay: -2s; }
@keyframes blobFloat { from{transform:translate(0,0) scale(1)} to{transform:translate(40px,30px) scale(1.06)} }

.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-section .container { position: relative; z-index: 1; }

/* Hero badge */
.hero-badge {
  background: rgba(124,106,255,0.1); border: 1px solid rgba(124,106,255,0.25);
  border-radius: 50px; padding: 6px 16px;
  font-size: 0.82rem; font-weight: 500; color: var(--p2);
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 0 2px rgba(74,222,128,0.3); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 2px rgba(74,222,128,0.3)} 50%{box-shadow:0 0 0 6px rgba(74,222,128,0.08)} }

.hero-greeting { font-family: 'Fira Code', monospace; color: var(--primary); font-size: 1.05rem; margin-bottom: 8px; }
.hero-name     { font-size: clamp(2.2rem,4.5vw,3.6rem); font-weight: 800; color: var(--heading); line-height: 1.1; margin-bottom: 14px; white-space: nowrap; }
.hero-name span{ color: var(--primary); }
.hero-roles    { font-size: clamp(1.15rem,2.5vw,1.45rem); font-weight: 600; color: var(--muted); min-height: 2em; }
.cursor        { color: var(--primary); animation: blink 1s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.hero-bio { color: var(--muted); font-size: 1.08rem; max-width: 500px; margin-bottom: 28px; line-height: 1.8; }

/* ── Hero right side ───────────────────────────── */
/* Avatar ring */
.hero-image-wrap {
  position: relative;
  width: 300px; height: 300px;
  display: flex; align-items: center; justify-content: center;
}
.hero-image-ring {
  width: 300px; height: 300px; border-radius: 50%;
  background: conic-gradient(from 0deg, var(--primary), var(--accent), #f093fb, var(--primary));
  padding: 4px; animation: spin 8s linear infinite; position: relative;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-avatar {
  position: absolute; inset: 6px; border-radius: 50%;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; font-weight: 800; color: var(--primary); overflow: hidden;
  /* counter-rotate so the photo stays upright while the ring spins */
  animation: counter-spin 8s linear infinite;
}
@keyframes counter-spin { to { transform: rotate(-360deg); } }
.hero-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

/* Floating info badges */
.float-badge {
  position: absolute; background: var(--surface); border: 1px solid var(--border);
  border-radius: 50px; padding: 8px 16px;
  font-size: 0.8rem; font-weight: 600; color: var(--text);
  white-space: nowrap; box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.float-badge--tl { top: -20px;  left: -30px;  animation: floatY 3s ease-in-out infinite alternate; }
.float-badge--br { bottom: -20px; right: -30px; animation: floatY 3s ease-in-out infinite alternate-reverse; }
@keyframes floatY { from{transform:translateY(0)} to{transform:translateY(-10px)} }

/* Scroll indicator */
.scroll-down  { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); text-decoration: none; z-index: 1; }
.scroll-mouse { width: 26px; height: 40px; border: 2px solid var(--border); border-radius: 13px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-wheel { width: 4px; height: 8px; background: var(--primary); border-radius: 2px; animation: scrollDown 1.6s ease-in-out infinite; }
@keyframes scrollDown { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(12px);opacity:0} }

/* ── About ─────────────────────────────────────── */
.about-stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat h3 { font-size: 2.2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat p  { font-size: 0.9rem; color: var(--muted); margin: 5px 0 0; }

/* Quick info strip */
.quick-info-grid { display: flex; flex-direction: column; gap: 12px; }
.quick-info-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 14px 18px;
  transition: var(--ease);
}
.quick-info-card:hover { border-color: rgba(124,106,255,0.4); transform: translateX(4px); }
.quick-icon { font-size: 1.15rem; color: var(--primary); flex-shrink: 0; width: 20px; }
.qi-label { display: block; font-size: 0.72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.qi-value { font-size: 0.95rem; color: var(--text); font-weight: 500; text-decoration: none; transition: var(--ease); }
a.qi-value:hover { color: var(--primary); }

/* Timeline cards */
.timeline-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px; height: 100%;
}
.timeline-card-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px; padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.timeline-header-icon {
  width: 46px; height: 46px; border-radius: var(--r-sm);
  background: linear-gradient(135deg, rgba(124,106,255,0.2), rgba(6,182,212,0.1));
  border: 1px solid rgba(124,106,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--primary); flex-shrink: 0;
}
.timeline-header-icon.exp { background: linear-gradient(135deg, rgba(6,182,212,0.2), rgba(124,106,255,0.1)); color: var(--accent); border-color: rgba(6,182,212,0.25); }
.timeline-card-header h3 { font-size: 1.2rem; font-weight: 700; color: var(--heading); margin: 0; }

/* Timeline */
.timeline { position: relative; padding-left: 24px; }
.timeline::before {
  content: ''; position: absolute; left: 6px; top: 6px; bottom: 0;
  width: 2px; background: var(--border);
}
.timeline-item { position: relative; }
.timeline-dot {
  position: absolute; left: -22px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg2);
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-dot.exp-dot { background: var(--accent); box-shadow: 0 0 0 2px var(--accent); }

.timeline-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.timeline-badge {
  font-size: 0.78rem; font-weight: 600; color: var(--muted);
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 50px; padding: 3px 12px;
}
.active-status {
  font-size: 0.72rem; font-weight: 700; color: #4ade80;
  background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.25);
  border-radius: 50px; padding: 3px 10px;
  display: flex; align-items: center; gap: 5px;
}
.active-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #4ade80; animation: pulse 2s infinite; }

.timeline-title { font-size: 1.05rem; font-weight: 700; color: var(--heading); margin-bottom: 5px; }
.timeline-place { font-size: 0.88rem; color: var(--primary); margin-bottom: 10px; }
.timeline-desc  { font-size: 0.92rem; color: var(--muted); line-height: 1.75; margin-bottom: 12px; }

.timeline-list { list-style: none; padding: 0; margin: 0 0 14px; display: flex; flex-direction: column; gap: 6px; }
.timeline-list li { font-size: 0.9rem; color: var(--muted); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.timeline-list li::before { content: '▹'; color: var(--primary); flex-shrink: 0; margin-top: 1px; }

.timeline-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.timeline-tags span {
  font-size: 0.78rem; font-weight: 500;
  background: rgba(124,106,255,0.1); color: var(--p2);
  border: 1px solid rgba(124,106,255,0.2); border-radius: 4px;
  padding: 3px 10px; font-family: 'Fira Code', monospace;
}

/* ── Services ──────────────────────────────────── */
.service-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r);
  padding: 32px; display: flex; flex-direction: column; gap: 12px; transition: var(--ease);
}
.service-card:hover { border-color: rgba(124,106,255,0.4); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
.service-icon { width: 56px; height: 56px; border-radius: var(--r-sm); background: linear-gradient(135deg,rgba(124,106,255,0.15),rgba(6,182,212,0.1)); border: 1px solid rgba(124,106,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--primary); }
.service-card h3  { font-size: 1.05rem; font-weight: 700; color: var(--heading); margin: 0; }
.service-card > p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; flex: 1; margin: 0; }
.service-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.service-list li { font-size: 0.84rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.service-list li::before { content: '▹'; color: var(--primary); }
.service-link { font-size: 0.84rem; font-weight: 600; color: var(--primary); text-decoration: none; transition: var(--ease); margin-top: auto; }
.service-link:hover { color: var(--p2); }

/* ── Skills ────────────────────────────────────── */
.skill-category { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 32px; }
.skill-category h3 { font-size: 0.82rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.skill-label { font-size: 0.87rem; font-weight: 500; color: var(--text); }
.skill-pct   { font-size: 0.84rem; font-weight: 600; color: var(--primary); font-family: 'Fira Code', monospace; }
.bar-track { height: 6px; background: rgba(255,255,255,0.07); border-radius: 3px; overflow: hidden; }
.bar-fill  { height: 100%; width: 0; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 3px; transition: width 1.2s cubic-bezier(0.4,0,0.2,1); }
.skill-tag { background: rgba(124,106,255,0.1); color: var(--p2); border: 1px solid rgba(124,106,255,0.2); border-radius: 50px; padding: 6px 14px; font-size: 0.8rem; font-weight: 500; transition: var(--ease); display: inline-block; cursor: default; }
.skill-tag:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); }

/* ── Projects ──────────────────────────────────── */
.filter-btn { padding: 7px 22px; border-radius: 50px; border: 1px solid var(--border); background: transparent; color: var(--muted); font-size: 0.86rem; font-weight: 500; transition: var(--ease); }
.filter-btn.active, .filter-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Card */
.project-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden; transition: var(--ease);
}
.project-card:hover {
  border-color: rgba(124,106,255,0.45);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}

/* Image container */
.project-image { height: 240px; position: relative; overflow: hidden; }

.project-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.project-card:hover .project-img { transform: scale(1.07); }

/* Number watermark */
.project-num {
  position: absolute; top: 12px; left: 16px;
  font-size: 2.4rem; font-weight: 800;
  color: rgba(255,255,255,0.15);
  font-family: 'Fira Code', monospace;
  pointer-events: none; line-height: 1;
}

/* Overlay — gradient slides up from bottom */
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,20,0.92) 0%, rgba(10,10,20,0.45) 55%, transparent 100%);
  display: flex; align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.project-card:hover .project-overlay { opacity: 1; transform: translateY(0); }

/* Action buttons */
.overlay-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.overlay-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600;
  text-decoration: none; transition: var(--ease);
  border: 1.5px solid transparent;
}
.overlay-btn--live { background: var(--primary); color: #fff; box-shadow: 0 4px 16px rgba(124,106,255,0.45); }
.overlay-btn--live:hover { background: var(--accent); color: #fff; }
.overlay-btn--code { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.2); backdrop-filter: blur(6px); }
.overlay-btn--code:hover { background: rgba(255,255,255,0.22); color: #fff; }

/* Card body */
.project-body { padding: 20px 22px 22px; }
.project-body-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 12px; }

.proj-links { display: flex; gap: 8px; flex-shrink: 0; }
.proj-links a {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(124,106,255,0.1); border: 1px solid rgba(124,106,255,0.2);
  color: var(--p2); font-size: 0.88rem;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: var(--ease);
}
.proj-links a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

.proj-tag      { background: rgba(124,106,255,0.1); color: var(--p2); border-radius: 4px; padding: 3px 11px; font-size: 0.8rem; font-weight: 500; font-family: 'Fira Code', monospace; }
.project-title { font-size: 1.15rem; font-weight: 700; color: var(--heading); margin-bottom: 8px; }
.project-desc  { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin: 0; }

.project-item.hidden { display: none !important; }

/* ── Testimonials ──────────────────────────────── */

/* Overall rating block */
.overall-rating {
  display: flex; align-items: center; gap: 40px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 24px 32px;
  flex-wrap: wrap;
}
.overall-score { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.score-num { font-size: 3.5rem; font-weight: 800; color: var(--primary); line-height: 1; }
.score-label { font-size: 0.8rem; color: var(--muted); }
.rating-bars { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 6px; }
.rating-row { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; color: var(--muted); }
.r-track { flex: 1; height: 6px; background: rgba(255,255,255,0.07); border-radius: 3px; overflow: hidden; }
.r-fill  { height: 100%; background: linear-gradient(90deg,var(--primary),var(--accent)); border-radius: 3px; transition: width 1s ease; }

/* Cards */
.testimonial-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: var(--ease);
}
.testimonial-card:hover { border-color: rgba(124,106,255,0.35); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.testimonial-card.featured { border-color: rgba(124,106,255,0.5); background: linear-gradient(145deg,rgba(124,106,255,0.07),rgba(6,182,212,0.04)); }

.tcard-top { display: flex; align-items: center; justify-content: space-between; }
.tcard-quote { font-size: 2.2rem; color: rgba(124,106,255,0.2); line-height: 1; }
.featured-quote { color: rgba(124,106,255,0.5); }

.stars { color: #f59e0b; font-size: 0.88rem; letter-spacing: 1px; }

.testimonial-text {
  font-size: 0.91rem; color: var(--muted); line-height: 1.8;
  font-style: italic; flex: 1;
  border-left: 2px solid rgba(124,106,255,0.25);
  padding-left: 14px;
}
.testimonial-card.featured .testimonial-text { border-left-color: var(--primary); }

.testimonial-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: auto; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); flex-shrink: 0; }
.testimonial-card.featured .author-img { border-color: var(--primary); }
.testimonial-author h5   { font-size: 0.92rem; font-weight: 700; color: var(--heading); margin: 0; }
.testimonial-author span { font-size: 0.77rem; color: var(--muted); }

.verified-badge {
  font-size: 0.72rem; font-weight: 600;
  color: #34d399; background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.2);
  border-radius: 50px; padding: 3px 10px;
  display: flex; align-items: center; gap: 4px;
  white-space: nowrap;
}

/* ── Contact ───────────────────────────────────── */
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-icon { width: 48px; height: 48px; border-radius: var(--r-sm); background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; color: var(--primary); flex-shrink: 0; }
.contact-item h4   { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.contact-item a, .contact-item span { color: var(--text); font-size: 0.9rem; text-decoration: none; transition: var(--ease); }
.contact-item a:hover { color: var(--primary); }
.contact-form  { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); }
.form-label-custom { font-size: 0.74rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; display: block; }
.form-control-custom { background: var(--bg) !important; border: 1px solid var(--border) !important; border-radius: var(--r-sm) !important; color: var(--text) !important; font-family: 'Inter', sans-serif; font-size: 0.92rem; padding: 12px 16px; transition: var(--ease); }
.form-control-custom::placeholder { color: rgba(148,163,184,0.4); }
.form-control-custom:focus { border-color: var(--primary) !important; box-shadow: 0 0 0 3px rgba(124,106,255,0.15) !important; outline: none; }
option { background: var(--surface); color: var(--text); }
.form-success { display: none; color: #4ade80; font-weight: 500; font-size: 0.9rem; }
.form-success.show { display: block; }

/* ── Footer ────────────────────────────────────── */
.footer         { background: var(--bg2); border-top: 1px solid var(--border); }
.footer-logo    { font-size: 1.4rem; font-weight: 800; color: var(--heading); }
.footer-logo span { color: var(--primary); }
.footer-heading { font-size: 0.73rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.footer-links   { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: var(--muted); font-size: 0.87rem; text-decoration: none; transition: var(--ease); }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-divider { border-color: var(--border); margin: 32px 0 20px; }

/* ── Scroll reveal ─────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ── Responsive ────────────────────────────────── */
@media (max-width: 991px) {
  #navMenu { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 16px; margin-top: 12px; }
  .py-section { padding: 72px 0; }
  .float-badge { display: none; }
}
@media (max-width: 767px) {
  .hero-section { padding-top: 100px; }
  .hero-image-ring { width: 220px; height: 220px; }
}
@media (max-width: 480px) {
  .hero-name { font-size: 2.4rem; }
  .hero-image-ring { width: 180px; height: 180px; }
}
