/* ═══════════════════════════════════════════
   ROHITH PORTFOLIO — style.css
   Premium Dark Portfolio · Violet Neon Identity
   ═══════════════════════════════════════════ */

/* ─────────────────── RESET & TOKENS ─────────────────── */
:root {
  --neon:        #D946EF;
  --violet:      #A855F7;
  --violet-mid:  #8B5CF6;
  --violet-dim:  rgba(168, 85, 247, 0.15);
  --neon-dim:    rgba(217, 70, 239, 0.12);
  --bg:          #0B0B0F;
  --bg2:         #0F0F1A;
  --bg3:         #13132A;
  --white:       #F5F5F5;
  --gray:        #8888A8;
  --gray-light:  #B0B0C8;
  --glass:       rgba(255, 255, 255, 0.035);
  --glass-b:     rgba(255, 255, 255, 0.07);
  --glass-hover: rgba(255, 255, 255, 0.06);
  --font-h:      'Syne', sans-serif;
  --font-b:      'Figtree', sans-serif;
  --r:           16px;
  --r-lg:        24px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --t:           0.35s;
}

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

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-b);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 10px; }

/* ─────────────────── CURSOR ─────────────────── */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--neon);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .15s, height .15s, background .15s;
  will-change: left, top;
}
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1.5px solid rgba(168, 85, 247, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, border-color .2s;
  will-change: left, top;
}
.cursor.hover  { width: 5px; height: 5px; }
.cursor-ring.hover { width: 46px; height: 46px; border-color: var(--neon); }

/* ─────────────────── LAYOUT HELPERS ─────────────────── */
.container { max-width: 1140px; margin: 0 auto; }

section { padding: 6rem 2rem; }
.dark-section { background: var(--bg2); }

.section-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--neon);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.section-sub {
  color: var(--gray);
  max-width: 520px;
  margin-top: 0.75rem;
  font-size: 0.98rem;
  font-weight: 300;
}
.gradient-text {
  background: linear-gradient(130deg, var(--neon) 0%, var(--violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─────────────────── BUTTONS ─────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--neon), var(--violet));
  color: #fff;
  padding: 0.78rem 1.9rem;
  border-radius: 50px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: none;
  box-shadow: 0 4px 28px rgba(217, 70, 239, 0.3);
  transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
}
.btn-primary:hover {
  box-shadow: 0 6px 42px rgba(217, 70, 239, 0.52);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--white);
  padding: 0.78rem 1.9rem;
  border-radius: 50px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.92rem;
  border: 1.5px solid rgba(168, 85, 247, 0.35);
  cursor: none;
  transition: border-color var(--t), background var(--t), transform var(--t);
}
.btn-outline:hover {
  border-color: var(--violet);
  background: var(--violet-dim);
  transform: translateY(-2px);
}

/* ─────────────────── GLASS CARD ─────────────────── */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: var(--r);
  backdrop-filter: blur(18px);
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.glass-card:hover {
  border-color: rgba(168, 85, 247, 0.28);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.1);
  transform: translateY(-4px);
}

/* ─────────────────── SCROLL REVEAL ─────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal[style*="--delay"] { transition-delay: var(--delay, 0s); }

/* ─────────────────── NAVBAR ─────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 11, 15, 0.5);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: padding var(--t), border-color var(--t), background var(--t);
}
nav.scrolled {
  padding: 0.8rem 2.5rem;
  background: rgba(11, 11, 15, 0.88);
  border-bottom-color: var(--glass-b);
}
.nav-logo {
  font-family: var(--font-h);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  cursor: none;
}
.logo-dot { color: var(--neon); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--gray);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: none;
  position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--neon), var(--violet));
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { cursor: none; }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
}

/* ─────────────────── MOBILE MENU ─────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(11, 11, 15, 0.97);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-h);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  cursor: none;
  transition: color .3s;
}
.mobile-menu a:hover { color: var(--violet); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--gray);
  cursor: none;
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: 10px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─────────────────── HERO ─────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 5rem;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 75% 65% at 50% 35%, rgba(168, 85, 247, 0.16) 0%, transparent 70%),
    radial-gradient(ellipse 45% 45% at 8% 92%, rgba(217, 70, 239, 0.09) 0%, transparent 65%),
    radial-gradient(ellipse 45% 45% at 92% 8%,  rgba(168, 85, 247, 0.11) 0%, transparent 65%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(168, 85, 247, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 30%, transparent 100%);
}
#heroCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.45;
}
.float-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.fs-1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(168,85,247,0.12), transparent 70%);
  top: -80px; right: -80px;
  animation: floatDrift 12s ease-in-out infinite;
}
.fs-2 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(217,70,239,0.1), transparent 70%);
  bottom: -40px; left: -60px;
  animation: floatDrift 16s ease-in-out infinite reverse;
}
.fs-3 {
  width: 18px; height: 18px;
  background: var(--neon);
  filter: blur(0px);
  top: 22%; left: 14%;
  animation: floatPulse 5s ease-in-out infinite;
  box-shadow: 0 0 20px var(--neon);
  opacity: 0.7;
}

@keyframes floatDrift {
  0%,100% { transform: translate(0,0); }
  33%      { transform: translate(30px, -20px); }
  66%      { transform: translate(-15px, 15px); }
}
@keyframes floatPulse {
  0%,100% { transform: translateY(0) scale(1); opacity: 0.7; }
  50%      { transform: translateY(-14px) scale(1.15); opacity: 1; }
}

.hero-content { position: relative; max-width: 900px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.25);
  color: var(--violet);
  border-radius: 50px;
  padding: 0.36rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  animation: fadeDown 0.8s var(--ease) both;
}
.badge-pulse {
  width: 7px; height: 7px;
  background: var(--neon);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{ opacity:1 } 50%{ opacity:0.3 } }

.hero-h1 {
  font-family: var(--font-h);
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  animation: fadeUp 0.9s 0.15s var(--ease) both;
}
.hero-sub {
  color: var(--gray-light);
  font-size: 1.1rem;
  font-weight: 300;
  margin: 1.4rem auto 2.4rem;
  max-width: 540px;
  animation: fadeUp 0.9s 0.3s var(--ease) both;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.45s var(--ease) both;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 4.5rem;
  animation: fadeUp 0.9s 0.6s var(--ease) both;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(130deg, var(--neon), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  color: var(--gray);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}
.stat-divider {
  width: 1px; height: 42px;
  background: var(--glass-b);
}

/* scroll indicator */
.scroll-down {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: fadeUp 1s 1.2s var(--ease) both;
}
.scroll-line {
  width: 1.5px; height: 50px;
  background: linear-gradient(to bottom, var(--violet), transparent);
  border-radius: 2px;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1; transform: scaleY(0.7); }
}

@keyframes fadeDown { from { opacity:0; transform:translateY(-18px) } to { opacity:1; transform:none } }
@keyframes fadeUp   { from { opacity:0; transform:translateY(22px)  } to { opacity:1; transform:none } }

/* ─────────────────── ABOUT ─────────────────── */
#about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 5rem;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-card {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 460px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(168,85,247,0.12), rgba(217,70,239,0.08));
  border: 1px solid var(--glass-b);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-inner { width: 80%; height: auto; }
.avatar-svg { width: 100%; height: auto; }
.about-status-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(11, 11, 15, 0.88);
  border: 1px solid var(--glass-b);
  border-radius: 50px;
  padding: 0.45rem 1.2rem;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.live-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: blink 2s infinite;
}

/* floating mini-cards */
.about-float-card {
  position: absolute;
  background: rgba(11, 11, 15, 0.92);
  border: 1px solid var(--glass-b);
  border-radius: 14px;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  backdrop-filter: blur(16px);
  animation: floatY 5s ease-in-out infinite;
}
.afc-1 { top: 2rem; right: -2rem; animation-delay: 0s; }
.afc-2 { bottom: 4rem; right: -2rem; animation-delay: 2.5s; }
@keyframes floatY { 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(-10px) } }
.afc-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--violet-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--violet);
}
.afc-num { font-family: var(--font-h); font-weight: 800; font-size: 1.05rem; color: var(--neon); }
.afc-label { font-size: 0.7rem; color: var(--gray); margin-top: 0.1rem; }

.about-para {
  color: var(--gray-light);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-top: 1rem;
}
.about-para strong { color: var(--white); font-weight: 600; }
.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--violet-dim);
  border: 1px solid rgba(168, 85, 247, 0.2);
  color: var(--violet);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: background .3s, border-color .3s;
  cursor: default;
}
.chip:hover { background: rgba(168,85,247,0.25); border-color: rgba(168,85,247,0.4); }

/* ─────────────────── SERVICES ─────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(278px, 1fr));
  gap: 1.2rem;
  margin-top: 3rem;
}
.service-card {
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  cursor: none;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 25% 20%, var(--neon-dim), transparent 58%);
  opacity: 0;
  transition: opacity .4s;
}
.service-card:hover::before { opacity: 1; }
.svc-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: var(--violet-dim);
  border: 1px solid rgba(168,85,247,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--violet);
  margin-bottom: 1.1rem;
  transition: background .3s, border-color .3s;
}
.service-card:hover .svc-icon { background: rgba(168,85,247,0.25); border-color: rgba(168,85,247,0.4); }
.svc-title {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.svc-desc { color: var(--gray); font-size: 0.86rem; line-height: 1.65; font-weight: 300; }

/* ─────────────────── WHY ─────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.why-card {
  padding: 2rem 1.8rem;
  text-align: center;
  cursor: none;
}
.why-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--violet-dim);
  border: 1px solid rgba(168,85,247,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--neon);
  margin: 0 auto 1.2rem;
  transition: background .3s, box-shadow .3s;
}
.why-card:hover .why-icon { background: rgba(168,85,247,0.22); box-shadow: 0 0 20px rgba(217,70,239,0.2); }
.why-title { font-family: var(--font-h); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.why-desc { color: var(--gray); font-size: 0.85rem; line-height: 1.6; }

.counters-row {
  display: flex;
  border: 1px solid var(--glass-b);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 4rem;
}
.counter-item {
  flex: 1;
  padding: 2.2rem 1rem;
  text-align: center;
  border-right: 1px solid var(--glass-b);
  background: var(--glass);
  transition: background .3s;
}
.counter-item:last-child { border-right: none; }
.counter-item:hover { background: var(--glass-hover); }
.counter-num {
  font-family: var(--font-h);
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(130deg, var(--neon), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.counter-label {
  color: var(--gray);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

/* ─────────────────── SKILLS ─────────────────── */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 5rem;
  margin-top: 3rem;
}
.skill-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.55rem;
}
.skill-name { font-weight: 600; font-size: 0.93rem; }
.skill-pct { color: var(--neon); font-weight: 700; font-size: 0.88rem; }
.skill-bar {
  height: 5px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  overflow: hidden;
}
.skill-fill {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--neon), var(--violet));
  width: 0;
  transition: width 1.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(217, 70, 239, 0.45);
}

/* ─────────────────── PORTFOLIO ─────────────────── */
#portfolio { background: var(--bg); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.portfolio-card { overflow: hidden; cursor: none; }
.portfolio-thumb {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform .4s;
}
.portfolio-card:hover .portfolio-thumb { transform: scale(1.04); }
.pt-icon { color: rgba(255,255,255,0.35); }
.pt-seo    { background: linear-gradient(135deg, #1a1040, #2a1a60); }
.pt-social { background: linear-gradient(135deg, #1a0e3a, #3a1a55); }
.pt-ads    { background: linear-gradient(135deg, #0e1a3a, #1a2a5a); }
.pt-brand  { background: linear-gradient(135deg, #2a0e3a, #4a1a60); }
.pt-content{ background: linear-gradient(135deg, #1a2a0e, #2a4a1a); }
.pt-ecom   { background: linear-gradient(135deg, #2a1a0e, #5a3a1a); }
.portfolio-body { padding: 1.3rem 1.5rem 1.5rem; }
.portfolio-tag {
  display: inline-block;
  background: var(--violet-dim);
  color: var(--violet);
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.portfolio-title {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  margin: 0.5rem 0 0.8rem;
  letter-spacing: -0.01em;
}
.portfolio-metrics { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.metric-pill {
  background: rgba(217, 70, 239, 0.1);
  border: 1px solid rgba(217, 70, 239, 0.2);
  color: var(--neon);
  padding: 0.18rem 0.65rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* ─────────────────── TESTIMONIALS ─────────────────── */
.testimonials-wrap { margin-top: 3rem; }
.testimonials-track {
  display: flex;
  gap: 1.2rem;
  transition: transform 0.55s var(--ease);
  overflow: hidden;
}
.testimonial-card {
  min-width: 340px;
  flex-shrink: 0;
  padding: 2rem;
}
.stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.testi-text {
  color: var(--gray-light);
  font-size: 0.91rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.4rem;
  font-weight: 300;
}
.testi-author { display: flex; align-items: center; gap: 0.85rem; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon), var(--violet));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 0.9rem; }
.testi-role { color: var(--gray); font-size: 0.76rem; margin-top: 0.1rem; }
.slider-controls { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; }
.slider-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--glass-b);
  background: var(--glass);
  color: var(--white);
  cursor: none;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s, background .3s, transform .2s;
}
.slider-btn:hover { border-color: var(--violet); background: var(--violet-dim); transform: scale(1.08); }
.slider-dots { display: flex; gap: 6px; }
.slider-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--glass-b);
  cursor: none;
  transition: background .3s, transform .3s;
}
.slider-dot.active { background: var(--neon); transform: scale(1.3); }

/* ─────────────────── FAQ ─────────────────── */
#faq { background: var(--bg); }
.faq-list {
  margin: 3rem auto 0;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.faq-item {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--glass-b);
  background: var(--glass);
  transition: border-color .3s;
}
.faq-item.open { border-color: rgba(168,85,247,0.3); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 1.5rem;
  cursor: none;
  font-weight: 600;
  font-size: 0.95rem;
  width: 100%;
  text-align: left;
  color: var(--white);
  transition: color .3s;
}
.faq-q:hover { color: var(--violet); }
.faq-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--glass-b);
  background: var(--glass);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  flex-shrink: 0;
  transition: transform .35s var(--ease), background .3s, border-color .3s, color .3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--violet-dim);
  border-color: var(--violet);
  color: var(--violet);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  color: var(--gray-light);
  font-size: 0.9rem;
  line-height: 1.75;
  font-weight: 300;
  transition: max-height .45s var(--ease), padding .35s var(--ease);
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.5rem 1.4rem; }

/* ─────────────────── BLOG ─────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.blog-card { overflow: hidden; cursor: none; }
.blog-thumb {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3);
  transition: transform .4s;
}
.blog-card:hover .blog-thumb { transform: scale(1.04); }
.bt-seo    { background: linear-gradient(135deg, #1a1040, #2a1a60); }
.bt-social { background: linear-gradient(135deg, #1a0e3a, #3a1a55); }
.bt-ads    { background: linear-gradient(135deg, #0e1a3a, #1a2a5a); }
.blog-body { padding: 1.4rem 1.5rem 1.6rem; }
.blog-meta-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.6rem; }
.blog-cat {
  color: var(--neon);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.blog-date { color: var(--gray); font-size: 0.74rem; }
.blog-title {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.blog-read {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--violet);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: none;
  transition: gap .3s, color .3s;
}
.blog-read:hover { gap: 0.7rem; color: var(--neon); }

/* ─────────────────── CONTACT ─────────────────── */
#contact { background: var(--bg2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
}
.c-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--violet-dim);
  border: 1px solid rgba(168,85,247,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--violet);
  flex-shrink: 0;
}
.c-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 0.15rem;
}
.c-value { font-weight: 600; font-size: 0.92rem; }
.social-row { display: flex; gap: 0.7rem; }
.social-btn {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--glass);
  border: 1px solid var(--glass-b);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-light);
  cursor: none;
  transition: background .3s, border-color .3s, color .3s, transform .2s;
}
.social-btn:hover {
  background: var(--violet-dim);
  border-color: rgba(168,85,247,0.4);
  color: var(--white);
  transform: translateY(-2px);
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: none;
  box-shadow: 0 4px 22px rgba(37, 211, 102, 0.28);
  transition: box-shadow .3s, transform .2s;
}
.whatsapp-btn:hover { box-shadow: 0 6px 32px rgba(37, 211, 102, 0.42); transform: translateY(-2px); }

.contact-form-wrap { padding: 2.2rem; }
.form-heading {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8rem; color: var(--gray); font-weight: 500; letter-spacing: 0.02em; }
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-b);
  border-radius: 10px;
  padding: 0.82rem 1rem;
  color: var(--white);
  font-family: var(--font-b);
  font-size: 0.9rem;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.13);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(136,136,168,0.45); }
.form-group select option { background: #13132A; }
.form-group textarea { height: 118px; }
.btn-submit { width: 100%; justify-content: center; padding: 0.95rem; font-size: 0.95rem; border-radius: 12px; }

/* ─────────────────── FOOTER ─────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--glass-b);
  padding: 3.5rem 2rem 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--glass-b);
}
.footer-brand p { color: var(--gray); font-size: 0.87rem; margin-top: 0.7rem; max-width: 240px; line-height: 1.7; font-weight: 300; }
.footer-logo { font-size: 1.8rem; }
.footer-col h4 { font-family: var(--font-h); font-size: 0.88rem; font-weight: 700; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { color: var(--gray); font-size: 0.86rem; cursor: none; transition: color .3s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { color: var(--gray); font-size: 0.8rem; }
.footer-credit { color: rgba(136,136,168,0.45) !important; }

/* ─────────────────── TOAST ─────────────────── */
.toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: linear-gradient(135deg, var(--neon), var(--violet));
  color: #fff;
  padding: 0.9rem 1.4rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.88rem;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transform: translateY(80px);
  opacity: 0;
  transition: transform .4s var(--ease), opacity .4s;
  pointer-events: none;
}
.toast.show { transform: none; opacity: 1; }

/* ─────────────────── RESPONSIVE ─────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1.2fr; gap: 3rem; }
  .afc-1, .afc-2 { right: -1rem; }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-card { max-height: 300px; aspect-ratio: 3/2; }
  .afc-1, .afc-2 { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .skills-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; max-width: 480px; }
}
@media (max-width: 700px) {
  section { padding: 4.5rem 1.2rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 1.2rem; }
  .stat-divider { display: none; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .counters-row { flex-direction: column; }
  .counter-item { border-right: none; border-bottom: 1px solid var(--glass-b); }
  .counter-item:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .testimonial-card { min-width: calc(100vw - 3rem); }
  .services-grid { grid-template-columns: 1fr; }
}
