/* ========================================
   Justin Jose - DevOps Architect Portfolio
   Orange Bytes - Premium Futuristic Design
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
  --primary-gradient: linear-gradient(135deg, #0a0a0a 0%, #1a0d00 50%, #0d0d0d 100%);
  --accent-orange: #ff6600;
  --accent-orange-light: #ff7722;
  --accent-orange-glow: rgba(255, 102, 0, 0.5);
  --accent-gold: #ff8533;
  --accent-amber: #e65c00;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --text-muted: #718096;
  --card-bg: rgba(20, 12, 5, 0.8);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Base Styles ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--primary-gradient);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ---------- Particles Container ---------- */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Typography ---------- */
.neon-text {
  background: linear-gradient(90deg, var(--accent-orange), #ff7722, var(--accent-orange));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
  text-shadow: none;
}

@keyframes shimmer {

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

  50% {
    background-position: 200% center;
  }
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Glassmorphism Cards ---------- */
.glass-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(255, 255, 255, 0.4) 50%, transparent 90%);
}

.glass-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-12px) rotateX(2deg);
  border-color: rgba(255, 102, 0, 0.5);
  box-shadow:
    0 35px 70px -15px rgba(255, 102, 0, 0.25),
    0 0 50px rgba(255, 102, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ---------- Glow Effects ---------- */
.glow {
  box-shadow:
    0 0 20px var(--accent-cyan-glow),
    0 0 40px rgba(255, 102, 0, 0.2);
  transition: var(--transition-smooth);
}

.glow:hover {
  box-shadow:
    0 0 30px var(--accent-cyan-glow),
    0 0 60px rgba(255, 102, 0, 0.3),
    0 0 100px rgba(255, 102, 0, 0.1);
}

/* ---------- Navigation ---------- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(10, 10, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

nav.scrolled {
  padding: 0.5rem 0;
  background: rgba(10, 10, 26, 0.95);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  height: 50px;
  width: auto;
  transition: var(--transition-smooth);
}

.nav-logo:hover {
  filter: drop-shadow(0 0 10px var(--accent-cyan-glow));
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-smooth);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: var(--transition-smooth);
}

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

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: var(--accent-orange);
  transition: var(--transition-smooth);
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 102, 0, 0.1);
  border: 1px solid var(--accent-orange);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  color: var(--accent-orange);
  margin-bottom: 1.5rem;
  animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.4);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(255, 102, 0, 0);
  }
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-title-typing {
  display: block;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--accent-orange);
  height: 2.5rem;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent-orange);
  color: #0a0a1a;
}

.btn-primary:hover {
  background: #ff8533;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 102, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-orange);
  border: 2px solid var(--accent-orange);
}

.btn-secondary:hover {
  background: rgba(255, 102, 0, 0.1);
  transform: translateY(-3px);
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- Section Styles ---------- */
.section {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Journey Section ---------- */
.journey-visual {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 3rem;
  background: var(--glass-bg);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  margin-bottom: 3rem;
  overflow-x: auto;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.journey-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-amber));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.journey-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--accent-orange);
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.journey-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.journey-arrow {
  color: var(--accent-orange);
  font-size: 1.5rem;
  animation: arrow-pulse 1.5s ease-in-out infinite;
}

@keyframes arrow-pulse {

  0%,
  100% {
    transform: translateX(0);
    opacity: 0.5;
  }

  50% {
    transform: translateX(5px);
    opacity: 1;
  }
}

/* ---------- Timeline Section ---------- */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-orange), var(--accent-amber), var(--accent-orange));
}

.timeline-item {
  position: relative;
  padding-bottom: 3rem;
  padding-left: 2rem;
}

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

.timeline-dot {
  position: absolute;
  left: -2rem;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--accent-orange);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 20px var(--accent-cyan-glow);
}

.timeline-dot.current {
  width: 20px;
  height: 20px;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 20px var(--accent-cyan-glow);
  }

  50% {
    box-shadow: 0 0 40px var(--accent-cyan-glow), 0 0 60px var(--accent-cyan-glow);
  }
}

.timeline-content {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: var(--transition-smooth);
}

.timeline-content:hover {
  border-color: var(--accent-orange);
  box-shadow: 0 10px 40px rgba(255, 102, 0, 0.1);
}

.timeline-date {
  font-size: 0.85rem;
  color: var(--accent-orange);
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.timeline-company {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.timeline-highlights {
  list-style: none;
  padding: 0;
}

.timeline-highlights li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.timeline-highlights li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-orange);
}

/* ---------- Skills Section ---------- */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  perspective: 1000px;
}

.skill-category {
  background: linear-gradient(145deg, rgba(30, 25, 20, 0.85) 0%, rgba(15, 12, 8, 0.9) 100%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.skill-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(255, 102, 0, 0.3) 50%, transparent 90%);
}

.skill-category:hover {
  border-color: rgba(255, 102, 0, 0.4);
  transform: translateY(-10px) rotateX(3deg) scale(1.02);
  box-shadow:
    0 30px 60px rgba(255, 102, 0, 0.15),
    0 0 40px rgba(255, 102, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.skill-category-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-orange);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
}

.skill-category-title::before {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-amber));
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.skill-tag {
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.15) 0%, rgba(255, 102, 0, 0.08) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 102, 0, 0.25);
  border-radius: 12px;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.skill-tag:hover {
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.3) 0%, rgba(255, 102, 0, 0.15) 100%);
  border-color: var(--accent-orange);
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 10px 30px rgba(255, 102, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 20px rgba(255, 102, 0, 0.2);
}

.skill-tag.highlight {
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.25), rgba(230, 92, 0, 0.15));
  border-color: var(--accent-orange);
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.3);
}

/* ---------- Services Section ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  perspective: 1000px;
}

.service-card {
  background: linear-gradient(145deg, rgba(30, 25, 20, 0.9) 0%, rgba(15, 12, 8, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-amber), var(--accent-orange));
  background-size: 200% auto;
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 102, 0, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-15px) rotateX(5deg) rotateY(-2deg) scale(1.02);
  border-color: rgba(255, 102, 0, 0.4);
  box-shadow:
    0 40px 80px rgba(255, 102, 0, 0.2),
    0 0 60px rgba(255, 102, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
  animation: gradient-slide 2s linear infinite;
}

.service-card:hover::after {
  opacity: 1;
}

@keyframes gradient-slide {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.25), rgba(230, 92, 0, 0.15));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 102, 0, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  box-shadow:
    0 8px 24px rgba(255, 102, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  transform: translateZ(20px) rotateY(-5deg);
  box-shadow:
    0 15px 40px rgba(255, 102, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- Certifications Section ---------- */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.cert-card {
  background: var(--card-bg);
  border: 2px solid var(--accent-orange);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.cert-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent 40%,
      rgba(255, 102, 0, 0.1) 50%,
      transparent 60%);
  animation: cert-shine 3s ease-in-out infinite;
}

@keyframes cert-shine {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

.cert-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px var(--accent-cyan-glow);
}

.cert-badge {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-amber));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.cert-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.cert-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

/* ---------- Contact Section ---------- */
.contact-section {
  background: rgba(0, 0, 0, 0.3);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.contact-item:hover {
  border-color: var(--accent-orange);
  transform: translateX(5px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.2), rgba(123, 44, 191, 0.2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info a {
  color: var(--accent-orange);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.contact-info a:hover {
  color: #ff8533;
}

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

/* ---------- Footer ---------- */
footer {
  position: relative;
  z-index: 1;
  padding: 2rem;
  text-align: center;
  border-top: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.3);
}

footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---------- Responsive Design ---------- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 10, 26, 0.98);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding: 5rem 1.5rem 3rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .journey-visual {
    padding: 1.5rem;
  }

  .journey-arrow {
    display: none;
  }

  .timeline {
    padding-left: 1.5rem;
  }

  .timeline-item {
    padding-left: 1.5rem;
  }

  .timeline-dot {
    left: -1.5rem;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stat-number {
    font-size: 2.25rem;
  }

  .skill-category {
    padding: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }
}