/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --coral: #ff6b95;
  --purple: #7c3aed;
  --purple-light: #a855f7;
  --gold: #f59e0b;
  --dark: #0a0a0f;
  --dark-2: #12121a;
  --dark-3: #1a1a28;
  --dark-card: #16162080;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text: #e8e8f0;
  --text-muted: #9090b0;
  --gradient: linear-gradient(135deg, var(--coral), var(--purple));
  --gradient-2: linear-gradient(135deg, var(--purple), var(--purple-light));
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-w: 1200px;
  --radius: 18px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral);
  background: rgba(255, 107, 149, 0.12);
  border: 1px solid rgba(255, 107, 149, 0.25);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10, 10, 15, 0.7);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(10, 10, 15, 0.95);
  padding: 12px 0;
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
}

.nav-logo span {
  color: var(--coral);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links .cta-btn {
  background: var(--gradient);
  color: white !important;
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 600;
}

.nav-links .cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
}

.hero-bg-anim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(124, 58, 237, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(255, 107, 149, 0.12) 0%, transparent 60%);
  animation: bgPulse 8s ease-in-out infinite alternate;
}

@keyframes bgPulse {
  from {
    opacity: 0.7;
  }

  to {
    opacity: 1;
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease;
}

.hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 12px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-role {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 20px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 32px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-desc strong {
  color: var(--text);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.5s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 8px 30px rgba(255, 107, 149, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 107, 149, 0.45);
}

.btn-ghost {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--glass-border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* Hero Image */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.3), transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from {
    transform: scale(0.9);
    opacity: 0.7;
  }

  to {
    transform: scale(1.1);
    opacity: 1;
  }
}

.hero-img {
  width: 380px;
  height: 480px;
  border-radius: 32px;
  position: relative;
  z-index: 1;
  object-fit: cover;
  object-position: top center;
  filter: drop-shadow(0 20px 60px rgba(124, 58, 237, 0.35));
  border: 2px solid rgba(255, 107, 149, 0.2);
}

@media (max-width: 768px) {
  .hero-img {
    width: 240px;
    height: 300px;
  }
}

.floating-badge {
  position: absolute;
  background: rgba(20, 20, 35, 0.85);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  z-index: 2;
  animation: float 5s ease-in-out infinite;
}

.badge-1 {
  top: 12%;
  right: -5%;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 25%;
  left: -10%;
  animation-delay: 1.5s;
}

.badge-3 {
  top: 55%;
  right: -12%;
  animation-delay: 3s;
}

@keyframes float {

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

  50% {
    transform: translateY(-8px);
  }
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: var(--text-muted);
  animation: bounce 2s infinite;
  letter-spacing: 1px;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ===== ABOUT ===== */
.about {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 24px;
  align-items: start;
}

.about-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}

.about-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
  border-color: rgba(255, 107, 149, 0.2);
}

.about-card.about-main {
  background: rgba(124, 58, 237, 0.06);
  border-color: rgba(124, 58, 237, 0.2);
}

.about-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.about-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.about-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.about-summary {
  margin-bottom: 14px;
}

.about-summary strong {
  color: var(--text);
}

.about-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.about-tools span {
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.25);
  color: var(--purple-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ===== SKILLS ===== */
.skills {
  background: var(--dark);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.skill-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.skill-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.skill-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
  border-color: rgba(255, 107, 149, 0.15);
}

.skill-card:hover::before {
  transform: scaleX(1);
}

.skill-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
}

.skill-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.skill-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.skill-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  width: var(--pct);
  background: var(--gradient);
  border-radius: 4px;
  animation: fillBar 1.5s ease-in-out;
}

@keyframes fillBar {
  from {
    width: 0;
  }

  to {
    width: var(--pct);
  }
}

/* ===== EXPERIENCE ===== */
.experience {
  background: var(--dark-2);
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 40px;
}

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

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

.timeline-dot {
  position: absolute;
  left: -40px;
  top: 20px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--dark);
  border: 3px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.timeline-item.active .timeline-dot {
  border-color: var(--coral);
  background: var(--coral);
  box-shadow: 0 0 20px rgba(255, 107, 149, 0.5);
}

.timeline-line {
  position: absolute;
  left: -33px;
  top: 36px;
  bottom: 0;
  width: 2px;
  background: var(--glass-border);
}

.timeline-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.timeline-item.active .timeline-card {
  border-color: rgba(255, 107, 149, 0.2);
  background: rgba(255, 107, 149, 0.04);
}

.timeline-card:hover {
  transform: translateX(6px);
  border-color: rgba(255, 107, 149, 0.2);
}

.exp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.exp-header h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.company {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.exp-date {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--coral);
  background: rgba(255, 107, 149, 0.1);
  border: 1px solid rgba(255, 107, 149, 0.2);
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
}

.exp-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.highlight {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple-light);
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.2);
  padding: 4px 12px;
  border-radius: 50px;
}

.exp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.exp-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.exp-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-size: 0.8rem;
}

/* ===== PORTFOLIO ===== */
.portfolio {
  background: var(--dark);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.portfolio-card-top {
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px;
  position: relative;
}

.portfolio-icon {
  font-size: 2.5rem;
  position: absolute;
  top: 20px;
  left: 20px;
  line-height: 1;
}

.portfolio-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 12px;
  border-radius: 50px;
}

.portfolio-card-body {
  padding: 24px;
}

.portfolio-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.portfolio-location {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.portfolio-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.portfolio-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 3px 10px;
  border-radius: 50px;
}

.portfolio-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--coral);
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.portfolio-link:hover {
  opacity: 0.8;
  gap: 8px;
}

/* ===== GOALS ===== */
.goals {
  background: var(--dark-2);
}

.goals-intro {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.goal-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 24px;
  transition: var(--transition);
}

.goal-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
  border-color: rgba(255, 107, 149, 0.15);
}

.goal-card.goal-primary {
  border-color: rgba(255, 107, 149, 0.3);
  background: rgba(255, 107, 149, 0.05);
}

.goal-card.goal-cta-card {
  border-color: rgba(245, 158, 11, 0.25);
  background: rgba(245, 158, 11, 0.04);
  grid-column: span 2;
}

.goal-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  min-width: 48px;
  padding-top: 4px;
}

.goal-content {
  flex: 1;
}

.goal-content h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.goal-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

.goal-content p strong,
.goal-content li strong {
  color: var(--text);
}

.goal-why {
  font-size: 0.82rem;
  color: var(--gold);
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  line-height: 1.5;
}

.goal-why strong {
  color: var(--gold);
}

.cert-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cert-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.cert-list li strong {
  color: var(--text);
}

.next-steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.next-steps li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}

.next-steps li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 5px;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.contact-intro strong {
  color: var(--text);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 107, 149, 0.2);
  transform: translateX(4px);
}

.contact-icon {
  font-size: 1.5rem;
  min-width: 2rem;
  text-align: center;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-val {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

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

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text);
  transition: var(--transition);
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.social-btn.primary-btn {
  background: var(--gradient);
  border-color: transparent;
  color: white;
}

.contact-form-wrap {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  width: 100%;
  appearance: none;
}

.form-group select option {
  background: var(--dark-3);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(255, 107, 149, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--glass-border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-copy {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
  margin-top: 8px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--coral);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-card:not(.about-main) {
    display: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image-wrap {
    order: -1;
  }

  .hero-img {
    max-width: 280px;
  }

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

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

  .hero-desc {
    margin: 0 auto 32px;
  }

  .floating-badge {
    display: none;
  }

  .nav-links {
    display: none;
    flex-direction: column;
  }

  .nav-links.open {
    display: flex;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    padding: 24px;
    z-index: 999;
  }

  .hamburger {
    display: flex;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .goals-grid {
    grid-template-columns: 1fr;
  }

  .goal-card.goal-cta-card {
    grid-column: span 1;
  }

  .next-steps {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    padding-left: 24px;
  }

  .timeline-dot {
    left: -24px;
  }

  .timeline-line {
    left: -18px;
  }
}