/* ===================================
   MILOMIR LUKIC — style.css
   Laravel Dark Theme
   =================================== */

:root {
  --bg: #0d0d0f;
  --bg2: #111114;
  --bg3: #161619;
  --surface: #1a1a1e;
  --surface2: #212126;
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);
  --red: #FF2D20;
  --red2: #FF5A50;
  --orange: #FF6B35;
  --gold: #F59E0B;
  --text: #f0f0f2;
  --text2: #a0a0b0;
  --text3: #6b6b80;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

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

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

/* ===================================
   CUSTOM CURSOR
   =================================== */

.cursor {
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: screen;
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255,45,32,0.4);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease-out, width 0.3s, height 0.3s, opacity 0.3s;
}

.cursor.active {
  width: 16px;
  height: 16px;
}

.cursor-follower.active {
  width: 52px;
  height: 52px;
  border-color: rgba(255,45,32,0.2);
}

/* ===================================
   PARTICLES CANVAS
   =================================== */

.particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
}

.gradient-text {
  background: linear-gradient(120deg, var(--red), var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--red);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text2);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ===================================
   LAYOUT
   =================================== */

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

/* ===================================
   NAVBAR
   =================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(13,13,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

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

.logo-bracket {
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--text2);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width var(--transition);
}

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

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

.nav-cta {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 20px;
  border: 1.5px solid var(--red);
  border-radius: 8px;
  color: var(--red);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--red);
  color: white;
}

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

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

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu ul li {
  margin: 20px 0;
}

.mobile-menu .mob-link {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text2);
  transition: color var(--transition);
}

.mobile-menu .mob-link:hover {
  color: var(--red);
}

/* ===================================
   HERO
   =================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

.hero-grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(255,45,32,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,45,32,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,45,32,0.12), transparent 70%);
  top: -100px;
  left: -100px;
}

.glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,107,53,0.08), transparent 70%);
  bottom: 0;
  right: 200px;
}

.glow-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245,158,11,0.06), transparent 70%);
  top: 40%;
  right: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  color: #22c55e;
  margin-bottom: 28px;
  font-family: 'JetBrains Mono', monospace;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(34,197,94,0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(34,197,94,0);
  }
}

.hero-title {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
}

.title-line {
  display: block;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 40px;
  min-height: 54px;
}

.typewriter {
  color: var(--red);
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
}

.typewriter::after {
  content: '|';
  animation: blink 1s infinite;
  color: var(--red);
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--red);
  color: white;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.12));
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,45,32,0.4);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  border: 1.5px solid var(--border2);
  color: var(--text2);
  border-radius: var(--radius);
  font-weight: 400;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-ghost:hover {
  border-color: var(--red);
  color: var(--text);
}

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

.stat {
  text-align: left;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
}

.stat p {
  font-size: 0.8rem;
  color: var(--text3);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border2);
}

/* ===================================
   CODE WINDOW (Hero)
   =================================== */

.hero-code {
  position: relative;
  z-index: 2;
  flex: 0 0 460px;
}

.code-window {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,45,32,0.06), 0 32px 80px rgba(0,0,0,0.5), 0 0 80px rgba(255,45,32,0.06);
}

.code-titlebar {
  background: var(--surface2);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red {
  background: #FF5F57;
}

.dot.yellow {
  background: #FEBC2E;
}

.dot.green {
  background: #28C840;
}

.code-filename {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--text3);
  margin-left: 8px;
}

.code-body {
  padding: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  line-height: 1.8;
  overflow-x: auto;
}

.kw {
  color: #c792ea;
}

.cls {
  color: #82AAFF;
}

.var {
  color: #f78c6c;
}

.fn {
  color: #82AAFF;
}

.str {
  color: #c3e88d;
}

.bool {
  color: #FF5572;
}

.comment {
  color: var(--text3);
  font-style: italic;
}

.code-terminal {
  background: rgba(0,0,0,0.4);
  padding: 12px 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  border-top: 1px solid var(--border);
  color: var(--text3);
}

.term-prompt {
  color: var(--red);
  margin-right: 8px;
}

.term-output {
  color: #22c55e;
}

.term-url {
  color: #38bdf8;
  text-decoration: underline;
}

/* ===================================
   SERVICES
   =================================== */

.services {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

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

.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  cursor: none;
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,45,32,0.04), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: rgba(255,45,32,0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,45,32,0.1);
}

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

.card-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255,45,32,0.15), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.featured-card {
  background: linear-gradient(145deg, var(--surface), rgba(255,45,32,0.05));
  border-color: rgba(255,45,32,0.2);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--red);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
}

.card-icon {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--border2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  transition: var(--transition);
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

.service-card:hover .card-icon {
  background: rgba(255,45,32,0.1);
  border-color: rgba(255,45,32,0.4);
}

.card-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--text3);
  letter-spacing: 0.1em;
}

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.65;
  flex: 1;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.card-tags span {
  font-size: 0.72rem;
  font-family: 'JetBrains Mono', monospace;
  padding: 3px 8px;
  border: 1px solid var(--border2);
  border-radius: 4px;
  color: var(--text3);
  transition: var(--transition);
}

.service-card:hover .card-tags span {
  border-color: rgba(255,45,32,0.2);
  color: var(--text2);
}

.card-arrow {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text3);
  margin-top: 8px;
  align-self: flex-start;
  transition: var(--transition);
}

.service-card:hover .card-arrow {
  background: var(--red);
  border-color: var(--red);
  color: white;
  transform: translateX(4px);
}

/* ===================================
   TECH MARQUEE
   =================================== */

.tech-section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.tech-marquee-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  margin-top: 48px;
}

.tech-marquee {
  overflow: hidden;
}

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

.tech-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: var(--transition);
  cursor: none;
}

.tech-item:hover {
  border-color: rgba(255,45,32,0.3);
  background: var(--surface2);
  transform: translateY(-3px);
}

.tech-icon {
  font-size: 1.1rem;
}

/* ===================================
   ABOUT
   =================================== */

.about-section {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

.about-inner {
  display: flex;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  flex: 0 0 auto;
}

.about-image-wrap {
  position: relative;
}

.about-img-placeholder {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--surface2), var(--surface));
  border: 2px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 80px rgba(255,45,32,0.1);
}

.initials {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--red);
  z-index: 2;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbit-spin linear infinite;
}

.orbit-1 {
  width: 120%;
  height: 120%;
  border-color: rgba(255,45,32,0.15);
  animation-duration: 15s;
}

.orbit-2 {
  width: 140%;
  height: 140%;
  border-color: rgba(255,107,53,0.1);
  animation-duration: 25s;
  animation-direction: reverse;
}

.orbit-3 {
  width: 160%;
  height: 160%;
  border-color: rgba(245,158,11,0.08);
  animation-duration: 35s;
}

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

.orbit-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
}

.dot-1 {
  background: var(--red);
  margin-top: -60px;
  margin-left: -6px;
  animation: orbit-spin 15s linear infinite;
  transform-origin: 6px 60px;
}

.dot-2 {
  background: var(--orange);
  width: 8px;
  height: 8px;
  margin-top: -70px;
  margin-left: -4px;
  animation: orbit-spin 25s linear infinite reverse;
  transform-origin: 4px 70px;
}

.dot-3 {
  background: var(--gold);
  width: 6px;
  height: 6px;
  margin-top: -80px;
  margin-left: -3px;
  animation: orbit-spin 35s linear infinite;
  transform-origin: 3px 80px;
}

.exp-badge {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.exp-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.exp-text {
  font-size: 0.8rem;
  color: var(--text2);
  line-height: 1.4;
}

.about-content {
  flex: 1;
}

.about-text {
  color: var(--text2);
  line-height: 1.75;
  font-size: 1rem;
  margin-bottom: 16px;
}

.about-skills {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.skill-bar-item {
}

.skill-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text2);
  margin-bottom: 8px;
}

.skill-bar {
  height: 4px;
  background: var(--surface2);
  border-radius: 2px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  background: linear-gradient(to right, var(--red), var(--orange));
  border-radius: 2px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   TESTIMONIALS
   =================================== */

.testimonials-section {
  padding: 80px 0 120px;
  position: relative;
  z-index: 2;
}

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

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(255,45,32,0.2);
  transform: translateY(-4px);
}

.quote-icon {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  opacity: 0.3;
  margin-bottom: 8px;
}

.testimonial-card p {
  color: var(--text2);
  font-size: 0.95rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: white;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text3);
}

/* ===================================
   CONTACT
   =================================== */

.contact-section {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

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

.contact-desc {
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 40px;
}

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

.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: none;
}

.contact-link:hover {
  border-color: rgba(255,45,32,0.3);
  transform: translateX(6px);
}

.cl-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}

.cl-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text3);
  margin-bottom: 2px;
}

.cl-value {
  font-size: 0.9rem;
  font-weight: 500;
}

.availability-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(34,197,94,0.05);
  border: 1px solid rgba(34,197,94,0.15);
  border-radius: var(--radius);
}

.avail-indicator {
  width: 12px;
  height: 12px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.2);
  animation: pulse-avail 2s infinite;
}

@keyframes pulse-avail {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(34,197,94,0.2);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(34,197,94,0);
  }
}

.availability-card strong {
  display: block;
  font-size: 0.9rem;
  color: #22c55e;
}

.availability-card p {
  font-size: 0.8rem;
  color: var(--text3);
  margin-top: 2px;
}

/* FORM */

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

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

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

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

.form-group label {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text2);
}

.req {
  color: var(--red);
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--text3);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: rgba(255,45,32,0.5);
  background: var(--bg3);
}

.form-group input.invalid, .form-group textarea.invalid, .form-group select.invalid {
  border-color: var(--red);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: none;
  color: var(--text);
}

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

.form-group select option:disabled {
  color: var(--text3);
}

.form-group optgroup {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  color: var(--text3);
  background: var(--bg);
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  padding-right: 40px;
}

.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text3);
}

.field-error {
  font-size: 0.75rem;
  color: var(--red);
  display: none;
}

.field-error.visible {
  display: block;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--red);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: none;
  transition: var(--transition);
  margin-top: 4px;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.1));
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,45,32,0.4);
}

.btn-submit:hover::before {
  opacity: 1;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: default;
  transform: none;
}

.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius);
  color: #22c55e;
  font-size: 0.9rem;
}

.form-success[hidden] {
  display: none;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
  position: relative;
  z-index: 2;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text3);
  margin-top: 8px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text3);
  transition: color var(--transition);
}

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

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

.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text3);
  transition: var(--transition);
}

.footer-socials a:hover {
  border-color: var(--red);
  color: var(--red);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text3);
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 8px;
}

/* ===================================
   BACK TO TOP
   =================================== */

.back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  cursor: none;
  z-index: 100;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.back-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

/* ===================================
   SCROLL ANIMATIONS
   =================================== */

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

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-card {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1100px) {
  .hero {
    flex-direction: column;
    padding-top: 100px;
  }
}

@media (max-width: 1100px) {
  .hero-code {
    flex: none;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 1100px) {
  .about-inner {
    flex-direction: column;
  }
}

@media (max-width: 1100px) {
  .about-img-placeholder {
    width: 260px;
    height: 260px;
  }
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

@media (max-width: 900px) {
  .nav-links, .nav-cta {
    display: none;
  }
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }
}

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

@media (max-width: 600px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .stat-divider {
    display: none;
  }
}

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

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .about-img-placeholder {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 600px) {
  .hero-code {
    display: none;
  }
}

