/* ====================================================
   HARMIT SUTHAR — PORTFOLIO
   Global Stylesheet
==================================================== */

/* ─── 0. Root Variables ─── */
:root {
  --brand-50: #f0f4ff;
  --brand-100: #e0eaff;
  --brand-200: #c7d7fd;
  --brand-400: #8097f6;
  --brand-500: #6272f0;
  --brand-600: #4f55e4;
  --brand-700: #4244c9;
  --brand-900: #323580;
  --brand-950: #1e1f4d;

  --accent-400: #34d399;
  --accent-500: #10b981;

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
  --shadow: 0 4px 16px rgba(0, 0, 0, .08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .12);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, .14);
  --shadow-brand: 0 8px 30px rgba(98, 114, 240, .25);

  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
  --transition-fast: all .15s cubic-bezier(.4, 0, .2, 1);
  --transition-slow: all .6s cubic-bezier(.4, 0, .2, 1);

  --header-h: 72px;
  --section-py: 100px;
}

/* ─── 1. Base Reset & Typography ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Ubuntu', sans-serif;
  color: var(--gray-900);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
button {
  font-family: inherit;
}

::selection {
  background: var(--brand-200);
  color: var(--brand-900);
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--brand-400);
  border-radius: 9px;
}

/* ─── Utility ─── */
.gradient-text {
  background: linear-gradient(135deg, var(--brand-500), var(--accent-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-base {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.section-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: .35;
}

/* ─── Section Header ─── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-600);
  background: var(--brand-50);
  border: 1px solid var(--brand-200);
  padding: 4px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.section-divider span {
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-500), var(--accent-500));
  border-radius: 9px;
}

.section-sub {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Shared Buttons ─── */
.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  color: #fff;
  box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(98, 114, 240, .4);
}

.btn-secondary {
  background: transparent;
  color: var(--brand-600);
  border: 2px solid var(--brand-500);
}

.btn-secondary:hover {
  background: var(--brand-600);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--gray-100);
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
}

.btn-ghost:hover {
  background: var(--gray-200);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   CURSOR
═══════════════════════════════════════════════ */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--brand-500);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 2px solid var(--brand-400);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, border-color .3s;
  opacity: .6;
}

body.hovering .cursor-dot {
  width: 12px;
  height: 12px;
  background: var(--accent-500);
}

body.hovering .cursor-ring {
  width: 52px;
  height: 52px;
  border-color: var(--accent-500);
}

@media (pointer: coarse) {

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* ═══════════════════════════════════════════════
   PAGE LOADER
═══════════════════════════════════════════════ */
.loader-overlay {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.8s ease, visibility 0.8s;
  overflow: hidden;
}

/* Animated Background Graphics */
.loader-bg-graphics {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.loader-grid {
  position: absolute;
  inset: -50%;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(600px) rotateX(60deg) translateY(-100px) translateZ(-200px);
  animation: loaderGridMove 10s linear infinite;
}

@keyframes loaderGridMove {
  0% { transform: perspective(600px) rotateX(60deg) translateY(0) translateZ(-200px); }
  100% { transform: perspective(600px) rotateX(60deg) translateY(60px) translateZ(-200px); }
}

.loader-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: floatLoaderBlob 8s ease-in-out infinite alternate;
}

.blob-a {
  width: 400px;
  height: 400px;
  background: #5A7BD8;
  top: -10%;
  left: -10%;
}

.blob-b {
  width: 300px;
  height: 300px;
  background: #4FA3C8;
  bottom: -10%;
  right: -10%;
  animation-delay: -2s;
}

.blob-c {
  width: 350px;
  height: 350px;
  background: #2DBA8C;
  top: 40%;
  left: 60%;
  animation-delay: -4s;
}

@keyframes floatLoaderBlob {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 30px) scale(1.1); }
}

.loader-overlay.loaded {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
}

.loader-inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 10;
  animation: loaderIntro 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.4s ease;
}

.loader-overlay.loaded .loader-inner {
  transform: translateY(-50px) scale(0.9);
  opacity: 0;
}

@keyframes loaderIntro {
  0% { opacity: 0; transform: translateY(40px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.loader-name-wrapper {
  margin-bottom: 10px;
  perspective: 1000px;
}

.loader-name-text {
  font-family: 'Ubuntu', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(90deg, #5A7BD8, #4FA3C8, #2DBA8C, #5A7BD8);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shineGradient 3s linear infinite;
  position: relative;
  letter-spacing: 2px;
  white-space: nowrap;
  margin: 0;
  filter: drop-shadow(0 10px 20px rgba(90, 123, 216, 0.15));
}

@keyframes shineGradient {
  to { background-position: 200% center; }
}

.loader-text-wrap {
  overflow: hidden;
  margin-top: 10px;
}

.loader-text-animated {
  display: inline-block;
  font-family: 'Ubuntu', monospace;
  font-size: 0.85rem;
  color: var(--brand-700);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  animation: textReveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) infinite alternate;
}

@keyframes textReveal {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 1;
  }
}

.loader-progress-track {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.loader-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, transparent, var(--accent-500), var(--brand-500));
  box-shadow: 0 0 10px var(--brand-500);
  border-radius: 4px;
  animation: loaderProgressFill 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes loaderProgressFill {
  0% {
    width: 0%;
    transform: translateX(-100%);
  }

  50% {
    width: 70%;
    transform: translateX(0%);
  }

  100% {
    width: 100%;
    transform: translateX(0%);
  }
}

/* ═══════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06), 0 4px 20px rgba(0, 0, 0, .06);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-badge {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-500));
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 800;
  font-size: .9rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(79, 85, 228, .35);
}

.logo-text {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--gray-900);
}

.logo-dot {
  color: var(--brand-500);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-500);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--brand-500);
  border-radius: 9px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-600);
}

.nav-link:hover::after,
.nav-link.active::after {
  left: 14px;
  right: 14px;
}

/* Hire btn */
.hire-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  color: #fff;
  border-radius: 100px;
  font-size: .875rem;
  font-weight: 600;
  box-shadow: var(--shadow-brand);
  transition: var(--transition);
  flex-shrink: 0;
}

.hire-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(98, 114, 240, .4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  border-radius: 8px;
  transition: var(--transition);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 9px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gray-700);
}

.mobile-nav-links {
  text-align: center;
}

.mobile-nav-link {
  display: block;
  font-family: 'Ubuntu', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  padding: 10px 0;
  transition: var(--transition);
}

.mobile-nav-link:hover {
  color: var(--brand-600);
  transform: scale(1.04);
}

.mobile-social {
  display: flex;
  gap: 20px;
  margin-top: 32px;
  font-size: 1.4rem;
  color: var(--gray-400);
}

.mobile-social a {
  transition: var(--transition);
}

.mobile-social a:hover {
  color: var(--brand-500);
  transform: translateY(-3px);
}

@media (max-width: 900px) {

  .nav-links,
  .hire-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(165deg, #fff 0%, var(--brand-50) 50%, #fff 100%);
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 2;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(98, 114, 240, .18), transparent 70%);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(52, 211, 153, .15), transparent 70%);
  bottom: 0;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(167, 139, 250, .12), transparent 70%);
  top: 40%;
  left: 35%;
  animation: float 12s ease-in-out infinite 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.04);
  }
}

/* Grid */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(98, 114, 240, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 114, 240, .04) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* Layout */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - var(--header-h));
  padding: 80px 0 60px;
  position: relative;
  z-index: 10;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(98, 114, 240, .06);
  border: 1px solid rgba(98, 114, 240, .2);
  color: var(--brand-600);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 20px;
  width: fit-content;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-500);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

/* Name */
.hero-name {
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.hero-name-highlight {
  background: linear-gradient(135deg, var(--brand-500) 0%, var(--brand-700) 50%, var(--accent-500) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Typed Role */
.hero-role {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-bottom: 24px;
  min-height: 36px;
}

.role-prefix {
  color: var(--gray-500);
}

.role-typed {
  color: var(--brand-600);
  font-weight: 700;
  font-family: 'Ubuntu', sans-serif;
}

.role-cursor {
  color: var(--brand-500);
  font-weight: 300;
  animation: blink 1s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

/* Bio */
.hero-bio {
  color: var(--gray-500);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
}

/* CTA */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Ubuntu', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand-500), var(--accent-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: .75rem;
  color: var(--gray-400);
  margin-top: 4px;
  line-height: 1.4;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

/* ── Avatar ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-wrapper {
  position: relative;
  width: 280px;
  height: 280px;
  flex-shrink: 0;
}

.avatar-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  animation: spin 20s linear infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring-outer {
  width: 100%;
  height: 100%;
  border-color: rgba(98, 114, 240, .2);
  border-style: dashed;
}

.ring-inner {
  width: 84%;
  height: 84%;
  border-color: rgba(52, 211, 153, .2);
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 14s;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.avatar-frame {
  position: absolute;
  width: 70%;
  height: 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-100), var(--brand-50));
  border: 3px solid var(--brand-200);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(98, 114, 240, .2);
}

.avatar-initials {
  font-family: 'Ubuntu', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.avatar-img {
  width: 95%;
  height: 95%;
  object-fit: cover;
}

/* Orbit dots */
.orbit-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(98, 114, 240, .2);
}

.orbit-dot-1 {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-500);
}

.orbit-dot-2 {
  bottom: 8%;
  right: 8%;
  background: var(--accent-500);
}

.orbit-dot-3 {
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  background: #a78bfa;
}

/* Tech pills */
.tech-pill {
  position: absolute;
  padding: 6px 14px;
  background: #fff;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--brand-700);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
  border: 1px solid var(--brand-100);
  animation: float 5s ease-in-out infinite;
  white-space: nowrap;
  letter-spacing: .04em;
}

.pill-php {
  top: 8%;
  left: -10%;
  animation-delay: 0s;
}

.pill-mysql {
  bottom: 12%;
  left: -8%;
  animation-delay: .8s;
}

.pill-js {
  top: 30%;
  right: -12%;
  animation-delay: 1.5s;
}

.pill-ux {
  bottom: 20%;
  right: -10%;
  animation-delay: .4s;
}

.pill-html {
  top: 68%;
  left: 5%;
  animation-delay: 1.1s;
}

/* Mini cards */
.hero-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
  border: 1px solid var(--gray-100);
  max-width: 200px;
}

.card-1 {
  top: 0;
  right: -30px;
  animation: float 6s ease-in-out infinite;
}

.card-2 {
  bottom: 20px;
  right: -20px;
  animation: float 8s ease-in-out infinite 1s;
}

.mini-card-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .95rem;
  flex-shrink: 0;
}

.mini-card-title {
  font-size: .8rem;
  font-weight: 700;
  color: var(--gray-900);
}

.mini-card-sub {
  font-size: .68rem;
  color: var(--gray-400);
  margin-top: 2px;
}

/* Scroll indicator */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gray-400);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--gray-300);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--brand-500);
  border-radius: 9px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(14px);
  }
}

/* Hero responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
    padding: 60px 0 40px;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 0;
  }

  .hero-badge,
  .hero-bio,
  .hero-role {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta,
  .hero-stats {
    justify-content: center;
  }

  .hero-name-highlight {
    display: block;
  }

  .card-1,
  .card-2 {
    display: none;
  }

  .pill-php,
  .pill-mysql,
  .pill-html {
    left: 0;
  }

  .avatar-wrapper {
    width: 220px;
    height: 220px;
  }
}

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
.about-blob-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(98, 114, 240, .10), transparent 70%);
  top: -80px;
  right: -60px;
}

.about-blob-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(52, 211, 153, .08), transparent 70%);
  bottom: -60px;
  left: -80px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 10;
}

/* Visual */
.about-visual {
  position: relative;
}

.about-img-wrapper {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.about-img-frame {
  width: 280px;
  height: 320px;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--brand-100), var(--brand-50));
  border: 3px solid var(--brand-200);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-initials {
  font-family: 'Ubuntu', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.img-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--brand-500);
  border-style: solid;
}

.corner-tl {
  top: -8px;
  left: -8px;
  border-width: 3px 0 0 3px;
  border-radius: 6px 0 0 0;
}

.corner-br {
  bottom: -8px;
  right: -8px;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 6px 6px;
}

.about-exp-card,
.about-design-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.about-exp-card {
  bottom: -24px;
  left: -24px;
}

.about-design-card {
  top: -24px;
  right: -24px;
}

.exp-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.exp-number {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--brand-600);
}

.exp-label {
  font-size: .75rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* Content */
.about-content {
  position: relative;
  z-index: 10;
}

.about-role-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-600);
  margin-bottom: 20px;
}

.separator-dot {
  margin: 0 8px;
  color: var(--gray-300);
}

.about-para {
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.info-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--brand-700);
  transition: var(--transition);
}

.info-chip i {
  color: var(--brand-500);
  font-size: .9rem;
  flex-shrink: 0;
}

.info-chip:hover {
  background: var(--brand-100);
  transform: translateY(-2px);
}

.about-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-visual {
    order: -1;
  }

  .about-img-wrapper {
    width: auto;
  }

  .about-img-frame {
    width: 220px;
    height: 260px;
    margin: auto;
  }

  .about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about-exp-card {
    bottom: -10px;
    left: 0;
  }

  .about-design-card {
    top: -10px;
    right: 0;
  }
}

/* ═══════════════════════════════════════════════
   SKILLS
═══════════════════════════════════════════════ */
.skills-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--gray-200) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .5;
  pointer-events: none;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 10;
  margin-bottom: 60px;
}

/* Skill Card */
.skill-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.skill-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-200);
}

.skill-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.skill-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.skill-icon-brand {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  color: #fff;
}

.skill-icon-emerald {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
}

.skill-icon-violet {
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  color: #fff;
}

.skill-icon-amber {
  background: linear-gradient(135deg, #fbbf24, #d97706);
  color: #fff;
}

.skill-icon-sky {
  background: linear-gradient(135deg, #38bdf8, #0284c7);
  color: #fff;
}

.skill-cat-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
}

/* Progress bars */
.skill-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.skill-bar-item {}

.skill-bar-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.skill-name {
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-700);
}

.skill-level {
  font-size: .8rem;
  font-weight: 700;
  color: var(--brand-600);
  font-family: 'Ubuntu', monospace;
}

.skill-track {
  height: 8px;
  background: var(--gray-100);
  border-radius: 9px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  border-radius: 9px;
  width: 0;
  transition: width 1.4s cubic-bezier(.4, 0, .2, 1);
}

.skill-fill-brand {
  background: linear-gradient(90deg, var(--brand-500), var(--brand-700));
}

.skill-fill-emerald {
  background: linear-gradient(90deg, #10b981, #059669);
}

.skill-fill-violet {
  background: linear-gradient(90deg, #a78bfa, #7c3aed);
}

.skill-fill-amber {
  background: linear-gradient(90deg, #fbbf24, #d97706);
}

.skill-fill-sky {
  background: linear-gradient(90deg, #38bdf8, #0284c7);
}

/* Marquee */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.marquee-track {
  width: 100%;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.marquee-tag {
  display: inline-block;
  padding: 8px 20px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-600);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.marquee-tag:hover {
  background: var(--brand-50);
  border-color: var(--brand-300);
  color: var(--brand-600);
}

/* ═══════════════════════════════════════════════
   PROJECTS
═══════════════════════════════════════════════ */
.proj-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(98, 114, 240, .08), transparent 70%);
  top: 0;
  right: -100px;
}

.project-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  padding: 48px;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-500), var(--accent-500));
  opacity: 0;
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-200);
}

.project-card:hover::before {
  opacity: 1;
}

/* Number */
.project-num {
  position: absolute;
  top: 30px;
  right: 50px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 8rem;
  font-weight: 900;
  color: #494ed1;
  opacity: 0.4;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.project-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.project-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.project-icon-brand {
  background: linear-gradient(135deg, var(--brand-50), var(--brand-100));
  color: var(--brand-600);
}

.project-icon-emerald {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  color: #059669;
}

.project-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.project-period {
  font-size: .8rem;
  color: var(--gray-400);
  font-family: 'Ubuntu', monospace;
}

.project-badge {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 100px;
}

.project-badge-brand {
  background: var(--brand-50);
  color: var(--brand-600);
}

.project-badge-emerald {
  background: #ecfdf5;
  color: #059669;
}

.project-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.project-subtitle {
  font-size: 1rem;
  color: var(--brand-600);
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.project-role {
  font-size: .875rem;
  color: var(--gray-400);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.project-desc {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

/* Highlights */
.project-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.project-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.project-highlights li i {
  color: var(--accent-500);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Tags */
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.proj-tag {
  padding: 4px 14px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
}

.proj-tag-brand {
  background: var(--brand-50);
  color: var(--brand-700);
  border: 1px solid var(--brand-100);
}

.proj-tag-emerald {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

/* Links */
.project-links {
  display: flex;
  gap: 14px;
}

.proj-link-live {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 600;
  transition: var(--transition);
}

.proj-link-brand {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  color: #fff;
  box-shadow: var(--shadow-brand);
}

.proj-link-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(98, 114, 240, .4);
}

.proj-link-emerald {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
}

.proj-link-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(16, 185, 129, .4);
}

@media (max-width: 768px) {
  .project-card {
    padding: 28px 24px;
  }
}

/* ═══════════════════════════════════════════════
   EDUCATION
═══════════════════════════════════════════════ */
.edu-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 10;
}

.edu-col-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.edu-col-title i {
  color: var(--brand-500);
}

/* Timeline */
.edu-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  position: relative;
  padding-left: 48px;
  padding-bottom: 32px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .9rem;
  z-index: 2;
  flex-shrink: 0;
}

.timeline-dot-brand {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
}

.timeline-dot-emerald {
  background: linear-gradient(135deg, #10b981, #059669);
}

.timeline-dot-violet {
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
}

.timeline-connector {
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: var(--gray-100);
}

.timeline-item:last-child .timeline-connector {
  display: none;
}

.timeline-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.timeline-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-200);
}

.timeline-status {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.status-brand {
  background: var(--brand-50);
  color: var(--brand-600);
}

.status-emerald {
  background: #ecfdf5;
  color: #059669;
}

.status-violet {
  background: #ede9fe;
  color: #7c3aed;
}

.timeline-degree {
  font-weight: 700;
  color: var(--gray-900);
  font-size: .95rem;
  margin-bottom: 6px;
}

.timeline-school {
  font-size: .83rem;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.timeline-period {
  font-size: .8rem;
  color: var(--gray-400);
  font-family: 'Ubuntu', monospace;
}

/* Certs */
.cert-col {}

.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cert-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
  display: flex;
  gap: 14px;
  transition: var(--transition);
}

.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-200);
}

.cert-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 900;
  font-size: .75rem;
  color: #fff;
  flex-shrink: 0;
}

.cert-logo-amber {
  background: linear-gradient(135deg, #fbbf24, #d97706);
}

.cert-logo-sky {
  background: linear-gradient(135deg, #38bdf8, #0284c7);
}

.cert-logo-brand {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
}

.cert-logo-emerald {
  background: linear-gradient(135deg, #10b981, #059669);
}

.cert-logo-violet {
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
}

.cert-body {
  flex: 1;
  min-width: 0;
}

.cert-icon {
  display: none;
}

.cert-title {
  font-size: .82rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
  line-height: 1.4;
}

.cert-issuer {
  font-size: .75rem;
  color: var(--brand-600);
  font-weight: 500;
  margin-bottom: 8px;
}

.cert-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cert-date,
.cert-id {
  font-size: .7rem;
  color: var(--gray-400);
}

@media (max-width: 1024px) {
  .edu-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cert-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact-blob-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(98, 114, 240, .12), transparent 70%);
  top: -80px;
  left: -80px;
}

.contact-blob-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(52, 211, 153, .08), transparent 70%);
  bottom: -60px;
  right: -60px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 10;
}

/* Availability */
.availability-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid #a7f3d0;
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 32px;
}

.avail-indicator {
  position: relative;
}

.avail-dot {
  display: block;
  width: 12px;
  height: 12px;
  background: var(--accent-500);
  border-radius: 50%;
  position: relative;
}

.avail-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  background: rgba(16, 185, 129, .2);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.avail-title {
  font-weight: 700;
  color: #065f46;
  font-size: .95rem;
}

.avail-sub {
  font-size: .78rem;
  color: #6ee7b7;
}

/* Contact link items */
.contact-links-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-link-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-lg);
}

.contact-link-brand:hover {
  border-color: var(--brand-300);
}

.contact-link-dark:hover {
  border-color: var(--gray-300);
}

.contact-link-linkedin:hover {
  border-color: #93c5fd;
}

.contact-link-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-icon-brand {
  background: var(--brand-50);
  color: var(--brand-600);
}

.contact-icon-dark {
  background: var(--gray-100);
  color: var(--gray-700);
}

.contact-icon-linkedin {
  background: #eff6ff;
  color: #1d4ed8;
}

.contact-link-body {
  flex: 1;
}

.contact-link-label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-400);
  margin-bottom: 2px;
}

.contact-link-value {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-800);
}

.contact-link-arrow {
  color: var(--gray-300);
  transition: var(--transition);
}

.contact-link-item:hover .contact-link-arrow {
  color: var(--brand-500);
  transform: translateX(4px);
}

/* Quote */
.contact-quote {
  padding: 16px 20px;
  border-left: 3px solid var(--brand-400);
  background: var(--brand-50);
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: var(--brand-700);
  font-size: .9rem;
}

/* Form */
.contact-form-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-card-header {
  margin-bottom: 28px;
}

.form-card-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.form-card-sub {
  font-size: .875rem;
  color: var(--gray-400);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.req {
  color: var(--brand-500);
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: .9rem;
  pointer-events: none;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: .9rem;
  color: var(--gray-900);
  background: #fff;
  transition: var(--transition);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-500);
}

.form-textarea {
  padding-left: 16px;
  resize: vertical;
  min-height: 120px;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--brand-400);
  box-shadow: 0 0 0 3px rgba(98, 114, 240, .12);
}

.form-input.error,
.form-textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .1);
}

.field-error {
  display: block;
  font-size: .78rem;
  color: #ef4444;
  margin-top: 4px;
  min-height: 18px;
}

.form-submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-brand);
  position: relative;
  overflow: hidden;
}

.form-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
  transition: left .5s;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(98, 114, 240, .4);
}

.form-submit-btn:hover::before {
  left: 100%;
}

.form-submit-btn:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}

.form-response {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.form-response.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-response.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.hidden {
  display: none !important;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 24px;
  }
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.site-footer {
  background: var(--gray-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.footer-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 100px 0 48px;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo .logo-text {
  color: #fff;
}

.footer-tagline {
  font-size: .9rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 240px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: .95rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--brand-600);
  border-color: var(--brand-500);
  color: #fff;
  transform: translateY(-3px);
}

.footer-heading {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group ul li a {
  font-size: .9rem;
  color: var(--gray-400);
  transition: var(--transition);
}

.footer-links-group ul li a:hover {
  color: var(--brand-400);
  padding-left: 6px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--gray-400);
}

.footer-contact-list li i {
  color: var(--brand-400);
  flex-shrink: 0;
}

.footer-contact-list li a:hover {
  color: var(--brand-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-copy {
  font-size: .875rem;
  color: var(--gray-400);
}

.footer-sub {
  font-size: .8rem;
  color: var(--gray-500);
}

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 80px 0 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════
   SCROLL-TO-TOP
═══════════════════════════════════════════════ */
.scroll-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-brand);
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}

.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(98, 114, 240, .45);
}

/* ═══════════════════════════════════════════════
   AOS CUSTOM OVERRIDES
═══════════════════════════════════════════════ */
[data-aos] {
  transition-duration: 700ms !important;
}

[data-aos="zoom-in"] {
  transition-timing-function: cubic-bezier(.175, .885, .32, 1.275) !important;
}