/* =============================================
   RED DAWN MEDYA — style.css
   ============================================= */

/* --- PRELOADER --- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg, #0d0d12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.preloader-sun {
  width: 120px;
  animation: preloader-rise 1s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.preloader-sun svg {
  width: 100%;
}

@keyframes preloader-rise {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
  }

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

.preloader-rays {
  animation: preloader-pulse 1.5s ease-in-out infinite;
  transform-origin: 40px 40px;
}

@keyframes preloader-pulse {

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

  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

.preloader-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: fade-up 0.6s 0.3s ease both;
}

.preloader-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #f0f0f5;
  letter-spacing: -0.5px;
}

.preloader-brand span {
  background: linear-gradient(135deg, #c0392b, #e67e22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.preloader-bar {
  width: 160px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #c0392b, #e67e22);
  border-radius: 3px;
  animation: preloader-load 1.4s ease forwards;
}

@keyframes preloader-load {
  0% {
    width: 0%;
  }

  60% {
    width: 80%;
  }

  100% {
    width: 100%;
  }
}

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

:root {
  --red: #c0392b;
  --red-light: #e74c3c;
  --orange: #e67e22;
  --orange-light: #f39c12;
  --bg: #0d0d12;
  --bg2: #12121a;
  --bg3: #1a1a26;
  --surface: #1e1e2e;
  --surface2: #252535;
  --border: rgba(255, 255, 255, 0.07);
  --text: #f0f0f5;
  --text-muted: #8888aa;
  --gradient: linear-gradient(135deg, var(--red), var(--orange));
  --gradient-h: linear-gradient(135deg, var(--red-light), var(--orange-light));
  --gradient-animated: linear-gradient(135deg, var(--red), var(--orange), var(--red));
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-red: 0 0 40px rgba(192, 57, 43, 0.25);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.6);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(192, 57, 43, 0.03) 0%, transparent 70%);
  animation: float-ambient 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes float-ambient {

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

  33% {
    transform: translate(30px, -30px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

h1,
h2,
h3,
h4 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

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

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

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gradient);
  background-size: 200% 100%;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(192, 57, 43, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: var(--transition);
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover::after {
  background: rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(192, 57, 43, 0.6);
  background-position: 100% 0;
}

.btn-primary:active {
  transform: translateY(-1px) scale(1);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: transparent;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-outline:hover {
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 57, 43, 0.3);
}

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

.btn-full {
  width: 100%;
  justify-content: center;
}

/* --- SECTION COMMON --- */
section {
  padding: 100px 0;
}

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

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 12px;
}

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

.section-tag {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(192, 57, 43, 0.12);
  border: 1px solid rgba(192, 57, 43, 0.3);
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#navbar.scrolled {
  background: rgba(13, 13, 18, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo img {
  height: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

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

.nav-links a.nav-cta {
  padding: 8px 22px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(192, 57, 43, 0.35);
}

.nav-links a.nav-cta:hover {
  background: var(--gradient-h);
  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);
}

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

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

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

/* =============================================
   HERO
   ============================================= */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(192, 57, 43, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(230, 126, 34, 0.06) 0%, transparent 60%);
  overflow: hidden;
}

.hero-bg::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: repeating-linear-gradient(0deg,
      transparent,
      transparent 2px,
      rgba(192, 57, 43, 0.03) 2px,
      rgba(192, 57, 43, 0.03) 4px);
  animation: grid-move 20s linear infinite;
  pointer-events: none;
}

@keyframes grid-move {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(40px);
  }
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(192, 57, 43, 0.2), rgba(230, 126, 34, 0.1) 40%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
  filter: blur(60px);
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.15);
  }
}

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

.hero-badge {
  display: inline-block;
  padding: 7px 20px;
  background: rgba(192, 57, 43, 0.1);
  border: 1px solid rgba(192, 57, 43, 0.25);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--orange-light);
  margin-bottom: 28px;
  animation: fade-up 0.6s ease both;
}

#hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  animation: fade-up 0.6s 0.1s ease both;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 36px;
  animation: fade-up 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fade-up 0.6s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  animation: fade-up 0.6s 0.4s ease both;
}

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

.stat-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

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

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-hint span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(192, 57, 43, 0.8), transparent);
  margin: 0 auto;
  border-radius: 2px;
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }

  100% {
    opacity: 0;
    transform: scaleY(1) translateY(10px);
  }
}

/* =============================================
   HİZMETLER
   ============================================= */
#hizmetler {
  background: var(--bg2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(192, 57, 43, 0.1), transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  border-radius: 50%;
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(192, 57, 43, 0.4);
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(192, 57, 43, 0.3);
  background: linear-gradient(135deg, var(--surface), rgba(30, 30, 46, 0.8));
}

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

.service-card:hover::after {
  width: 300px;
  height: 300px;
}

.service-icon {
  width: 52px;
  height: 52px;
  color: var(--orange);
  margin-bottom: 20px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 0 8px rgba(230, 126, 34, 0.3));
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotateY(180deg);
  color: var(--orange-light);
  filter: drop-shadow(0 0 16px rgba(230, 126, 34, 0.6));
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--red-light);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
}

.service-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.service-link:hover {
  color: var(--orange);
  gap: 10px;
  transform: translateX(4px);
}

.service-link:hover::after {
  width: calc(100% - 20px);
}

.service-card-cta {
  background: linear-gradient(135deg, rgba(192, 57, 43, 0.12), rgba(230, 126, 34, 0.08));
  border-color: rgba(192, 57, 43, 0.2);
}

/* =============================================
   NEDEN BİZ
   ============================================= */
#neden-biz {
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(192, 57, 43, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.feature-item:hover {
  border-color: rgba(192, 57, 43, 0.3);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(192, 57, 43, 0.2);
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-item:hover .feature-icon {
  transform: scale(1.2) rotateZ(5deg);
  filter: drop-shadow(0 0 12px rgba(230, 126, 34, 0.6));
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
}

.feature-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* =============================================
   SÜREÇ
   ============================================= */
#nasil-calisiyoruz {
  background: var(--bg2);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

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

  .process-connector {
    display: none;
  }
}

.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(192, 57, 43, 0.1), transparent);
  transition: left 0.6s ease;
}

.process-step:hover {
  border-color: rgba(192, 57, 43, 0.4);
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4), 0 0 40px rgba(192, 57, 43, 0.25);
}

.process-step:hover::after {
  left: 100%;
}

.process-step:hover .step-number {
  transform: scale(1.15);
  filter: drop-shadow(0 0 20px rgba(192, 57, 43, 0.6));
}

.step-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
}

.step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.process-connector {
  width: 40px;
  height: 2px;
  background: var(--gradient);
  opacity: 0.4;
  margin: 0 4px;
}

/* =============================================
   PORTFÖY
   ============================================= */
#portfoy {
  background: var(--bg);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.portfolio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
  pointer-events: none;
}

.portfolio-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-xl), 0 0 80px rgba(192, 57, 43, 0.4);
  border-color: rgba(192, 57, 43, 0.5);
}

.portfolio-card:hover::before {
  opacity: 0.05;
}

.portfolio-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.5s ease;
}

.portfolio-card:hover .portfolio-img img {
  transform: scale(1.1) rotate(1deg);
  filter: brightness(1.1) contrast(1.05);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192, 57, 43, 0.85), rgba(230, 126, 34, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(8px);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
  backdrop-filter: blur(12px);
}

.portfolio-overlay .btn-primary {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}

.portfolio-card:hover .portfolio-overlay .btn-primary {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-info {
  padding: 20px 24px;
}

.portfolio-tag {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(192, 57, 43, 0.12);
  border: 1px solid rgba(192, 57, 43, 0.25);
  color: var(--orange-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 10px;
}

.portfolio-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.portfolio-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* =============================================
   REFERANSLAR
   ============================================= */
#referanslar {
  background: var(--bg2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 120px;
  font-family: Georgia, serif;
  color: rgba(192, 57, 43, 0.08);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: rgba(192, 57, 43, 0.35);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(192, 57, 43, 0.2);
  background: linear-gradient(135deg, var(--surface), rgba(30, 30, 46, 0.8));
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(192, 57, 43, 0.5);
}

.testimonial-stars {
  color: var(--orange);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-name {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-role {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =============================================
   SSS / FAQ
   ============================================= */
#sss {
  background: var(--bg);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: rgba(192, 57, 43, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--red-light);
  transition: transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 18px;
}

/* =============================================
   İLETİŞİM
   ============================================= */
#iletisim {
  background: var(--bg2);
}

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

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

.contact-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
}

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

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

.contact-item:hover {
  border-color: rgba(192, 57, 43, 0.3);
  background: var(--surface2);
}

.contact-item-icon {
  font-size: 1.4rem;
}

.contact-item-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-item-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-promise {
  padding: 16px 20px;
  background: rgba(192, 57, 43, 0.06);
  border: 1px solid rgba(192, 57, 43, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

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

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

/* --- PRICE GUIDE --- */
.price-guide {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-top: 4px;
}

.price-guide-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.price-guide-icon {
  font-size: 1.1rem;
}

.price-guide-header h4 {
  font-size: 1rem;
  font-weight: 700;
}

.price-guide-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.price-guide-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.price-guide-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  gap: 12px;
}

.price-guide-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.price-guide-range {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange-light);
  white-space: nowrap;
}

.price-guide-footer {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* --- 2-STEP FORM INDICATOR --- */
.form-steps-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
  position: relative;
}

.form-step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  z-index: 1;
}

.form-step-dot.active {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 16px rgba(192, 57, 43, 0.4);
}

.form-step-dot.done {
  background: rgba(39, 174, 96, 0.15);
  border-color: rgba(39, 174, 96, 0.4);
  color: #2ecc71;
}

.form-step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 8px;
  position: relative;
}

.form-step-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--gradient);
  transition: width 0.4s ease;
}

.form-step-line.filled::after {
  width: 100%;
}

.form-step-labels {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  pointer-events: none;
}

.form-step-panel {
  animation: fade-up 0.3s ease both;
}

#step-next-btn {
  margin-top: 20px;
}

#form-panel-2>div:last-of-type {
  margin-top: 20px;
}


/* --- SERVICE PRICE HINT --- */
.service-price-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  background: rgba(230, 126, 34, 0.08);
  border: 1px solid rgba(230, 126, 34, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--orange-light);
  margin-bottom: 4px;
  animation: fade-up 0.2s ease both;
}

.hint-icon {
  flex-shrink: 0;
}

/* --- CHECKBOX GROUP --- */
.form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 2px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.form-checkbox:hover {
  border-color: rgba(192, 57, 43, 0.3);
  color: var(--text);
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--red);
  cursor: pointer;
  flex-shrink: 0;
}

.form-checkbox:has(input:checked) {
  border-color: rgba(192, 57, 43, 0.35);
  background: rgba(192, 57, 43, 0.06);
  color: var(--text);
}

/* --- FORM --- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

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

.form-group label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
}

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

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

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--surface);
}

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

.form-message {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  margin-top: 4px;
}

.form-success {
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.3);
  color: #2ecc71;
}

.form-error {
  background: rgba(192, 57, 43, 0.1);
  border: 1px solid rgba(192, 57, 43, 0.3);
  color: var(--red-light);
}

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

@media (max-width: 700px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-brand img {
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 240px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

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

.footer-links a,
.footer-contact a {
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--orange-light);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}

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

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: pulse-whatsapp 2s ease-in-out infinite;
}

@keyframes pulse-whatsapp {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 8px rgba(37, 211, 102, 0.2);
  }
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.15) translateY(-4px) rotate(5deg);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
  animation: none;
}

.whatsapp-float:hover svg {
  transform: scale(1.1);
}

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

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

/* --- MODERN REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

/* --- GLASSMORPHISM UTILITY --- */
.glass {
  background: rgba(30, 30, 46, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- GRADIENT BORDER ANIMATION --- */
@keyframes gradient-rotate {
  0% {
    background-position: 0% 50%;
  }

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

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

.gradient-border {
  position: relative;
  background: var(--surface);
  border: 2px solid transparent;
  background-clip: padding-box;
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--red), var(--orange), var(--red));
  background-size: 200% 200%;
  border-radius: inherit;
  z-index: -1;
  animation: gradient-rotate 3s ease infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gradient-border:hover::before {
  opacity: 1;
}

/* --- FLOATING ANIMATION --- */
@keyframes float {

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

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

.float-animation {
  animation: float 6s ease-in-out infinite;
}

/* --- SHIMMER EFFECT --- */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

.shimmer {
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.1) 50%,
      transparent 100%);
  background-size: 1000px 100%;
  animation: shimmer 3s infinite;
}

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

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

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(13, 13, 18, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px 16px;
    gap: 6px;
    border-bottom: 1px solid var(--border);
  }

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

  .nav-links a {
    width: 100%;
    padding: 13px 18px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
  }

  .hamburger {
    display: flex;
  }

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

  .process-step {
    margin-bottom: 12px;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-divider {
    height: 28px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
}

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 9999;
  width: min(680px, calc(100vw - 32px));
  background: var(--surface2);
  border: 1px solid rgba(192, 57, 43, 0.25);
  border-radius: var(--radius);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner.hide {
  transform: translateX(-50%) translateY(120px);
  opacity: 0;
  pointer-events: none;
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.cookie-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cookie-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cookie-content a {
  color: var(--orange-light);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 9px 20px !important;
  font-size: 0.88rem !important;
}

.cookie-btn-outline {
  padding: 8px 18px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.cookie-btn-outline:hover {
  border-color: var(--red);
  color: var(--red-light);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    bottom: 16px;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-btn,
  .cookie-btn-outline {
    flex: 1;
    justify-content: center;
  }
}

/* =============================================
   FORM — WHATSAPP ALT LINK (#1)
   ============================================= */
.form-whatsapp-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}

.form-whatsapp-alt>span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.form-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 50px;
  color: #25d366;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.form-whatsapp-link:hover {
  background: rgba(37, 211, 102, 0.18);
  border-color: rgba(37, 211, 102, 0.5);
  transform: translateY(-1px);
}

/* =============================================
   FORM — FIELD ERROR HIGHLIGHT (#2)
   ============================================= */
.field-error {
  border-color: var(--red-light) !important;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15) !important;
  animation: field-shake 0.35s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes field-shake {

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

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

  40% {
    transform: translateX(6px);
  }

  60% {
    transform: translateX(-4px);
  }

  80% {
    transform: translateX(4px);
  }
}

/* =============================================
   FORM — TEŞEKKÜR EKRANI (#5)
   ============================================= */
.form-thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
  animation: thank-you-appear 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.form-thank-you[hidden] {
  display: none !important;
}

@keyframes thank-you-appear {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(20px);
  }

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

.thank-you-icon {
  width: 90px;
  height: 90px;
  animation: thank-you-pop 0.7s 0.1s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  filter: drop-shadow(0 0 24px rgba(192, 57, 43, 0.35));
}

@keyframes thank-you-pop {
  from {
    opacity: 0;
    transform: scale(0.5) rotate(-15deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.thank-you-icon svg {
  width: 100%;
  height: 100%;
}

.form-thank-you h3 {
  font-size: 1.6rem;
  font-weight: 800;
  animation: fade-up 0.4s 0.3s ease both;
}

.form-thank-you p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 380px;
  line-height: 1.65;
  animation: fade-up 0.4s 0.4s ease both;
}

.form-thank-you strong {
  color: var(--orange-light);
}

.thank-you-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
  animation: fade-up 0.4s 0.5s ease both;
}

/* =============================================
   RIPPLE EFFECT FOR BUTTONS
   ============================================= */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* =============================================
   MOUSE GLOW EFFECT ON INTERACTIVE CARDS
   ============================================= */
.service-card,
.portfolio-card,
.testimonial-card,
.feature-item {
  --mouse-x: 50%;
  --mouse-y: 50%;
}

.service-card::before,
.portfolio-card::before,
.testimonial-card::before,
.feature-item::before {
  background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y),
      rgba(192, 57, 43, 0.12),
      transparent 40%);
}

/* =============================================
   GRADIENT ANIMATION
   ============================================= */
@keyframes gradient-shift {

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

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

.gradient-text {
  background-size: 200% auto;
  animation: gradient-shift 3s ease infinite;
}

/* =============================================
   LOADING SPINNER
   ============================================= */
.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

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

/* =============================================
   SCROLL PROGRESS INDICATOR
   ============================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient);
  z-index: 10000;
  transition: width 0.1s ease;
}

/* =============================================
   ACCESSIBILITY & PERFORMANCE
   ============================================= */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --border: rgba(255, 255, 255, 0.2);
    --text-muted: #b0b0c0;
  }
}

/* Focus visible for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}