/* ================================================
   MEKON ENERJİ — Kurumsal Ana Sayfa
   Premium Corporate + Sıradışı Etkileşimler
   ================================================ */

/* ---------- VARIABLES ---------- */
:root {
  --primary: #0052cc;
  --primary-dark: #003d99;
  --primary-light: #e8f0fe;
  --accent: #f5a623;
  --accent-light: #fff4e0;
  --dark: #0f1923;
  --dark-2: #1a2736;
  --text: #2c3e50;
  --text-light: #6b7c93;
  --bg: #f7f9fc;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(15, 25, 35, 0.06);
  --shadow-md: 0 8px 30px rgba(15, 25, 35, 0.10);
  --shadow-lg: 0 20px 60px rgba(15, 25, 35, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ---------- RESET ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}


a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  width: min(1240px, 92%);
  margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 2px solid var(--primary);
  position: relative;
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 8px 25px rgba(0, 82, 204, 0.35);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: var(--transition);
  position: relative;
  backdrop-filter: blur(6px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 6px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  transition: var(--transition);
}

.btn-sm:hover {
  background: var(--primary-dark);
}

/* Magnetic button transition handled by JS */
.magnetic-btn {
  transition: transform 0.2s ease;
}

/* ---------- HEADER ---------- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease, padding 0.4s ease;
}

/* Transparent state on hero */
#header:not(.scrolled) {
  background: transparent;
  backdrop-filter: none;
}

/* Header transparent state: logo stays normal */
#header:not(.scrolled) #mainNav a {
  color: rgba(255, 255, 255, 0.85);
}

#header:not(.scrolled) #mainNav a:hover {
  color: #fff;
}

#header:not(.scrolled) #mainNav a.nav-active {
  color: #fff;
}

#header:not(.scrolled) .btn-header-phone {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

#header:not(.scrolled) .btn-header-solid {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

#header:not(.scrolled) .hamburger span {
  background: #fff;
}

/* Scrolled state */
#header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.header-inner {
  width: min(1320px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
  transition: height 0.4s ease;
}

#header.scrolled .header-inner {
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  transition: opacity 0.3s, transform 0.3s;
}

.logo:hover {
  opacity: 0.85;
  transform: scale(1.02);
}

.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s;
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

#mainNav {
  display: flex;
  gap: 6px;
}

#mainNav a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  position: relative;
  transition: color 0.3s;
  padding: 8px 14px;
  border-radius: 8px;
}

/* Animated underline with glow */
#mainNav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 2px;
}

#mainNav a:hover {
  color: var(--primary);
}

#mainNav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Active nav indicator */
#mainNav a.nav-active {
  color: var(--primary);
  font-weight: 700;
}

#mainNav a.nav-active::after {
  transform: scaleX(1);
  background: var(--primary);
  box-shadow: 0 0 8px rgba(0, 82, 204, 0.4);
}

/* --- Dropdown Styles --- */
.nav-item-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-trigger i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-trigger i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: 12px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1000;
  border: 1px solid var(--border);
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex !important;
  align-items: center;
  padding: 10px 16px !important;
  font-size: 0.88rem !important;
  color: var(--text) !important;
  border-radius: 8px !important;
  transition: background 0.2s ease, color 0.2s ease !important;
}

.dropdown-menu a::after {
  display: none !important;
}

.dropdown-menu a:hover {
  background: var(--primary-light) !important;
  color: var(--primary) !important;
}

#header:not(.scrolled) .dropdown-menu {
  background: rgba(15, 25, 35, 0.95);
  backdrop-filter: blur(10px);
  border-color: rgba(255, 255, 255, 0.1);
}

#header:not(.scrolled) .dropdown-menu a {
  color: rgba(255, 255, 255, 0.8) !important;
}

#header:not(.scrolled) .dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--dark);
  border: 1px solid var(--border);
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-header-phone i {
  font-size: 0.8rem;
  animation: phoneRing 2s ease infinite;
}

.btn-header-phone:hover {
  border-color: var(--primary);
  color: var(--primary);
}

@keyframes phoneRing {

  0%,
  100% {
    transform: rotate(0);
  }

  10% {
    transform: rotate(14deg);
  }

  20% {
    transform: rotate(-10deg);
  }

  30% {
    transform: rotate(8deg);
  }

  40% {
    transform: rotate(-4deg);
  }

  50% {
    transform: rotate(0);
  }
}

.btn-header-solid {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  background: var(--primary);
  color: #fff;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-header-solid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.5s;
}

.btn-header-solid:hover::before {
  transform: translateX(120%);
}

.btn-header-solid:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-header-solid i {
  font-size: 0.75rem;
  transition: transform 0.3s;
}

.btn-header-solid:hover i {
  transform: translateX(3px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* ---------- HERO SLIDER (Curtain + Vertical Nav) ---------- */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 660px;
  max-height: 960px;
  overflow: hidden;
  background: #f0f2f5;
}

#heroParticles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

/* Slide backgrounds */
.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  visibility: hidden;
}

.hero-slide.active {
  visibility: visible;
  z-index: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

/* Curtain reveal: clip-path based */
.hero-slide {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.hero-slide.active {
  clip-path: inset(0 0 0 0);
}

.hero-slide.leaving {
  visibility: visible;
  clip-path: inset(0 0 0 0);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 18, 36, 0.7) 0%, rgba(10, 18, 36, 0.38) 50%, rgba(10, 18, 36, 0.12) 100%);
}

/* Content panels */
.hero-contents {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.hero-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.hero-panel.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1320px, 94%);
  margin: 0 auto;
  padding-top: 80px;
  max-width: 720px;
  margin-left: calc(max(calc((100% - 1320px) / 2), 3%) + 110px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 10px 22px;
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  font-size: 0.82rem;
  width: fit-content;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s 0.3s ease, transform 0.7s 0.3s ease;
}

.hero-panel.active .hero-badge {
  opacity: 1;
  transform: translateY(0);
}

.hero-badge i {
  font-size: 0.85rem;
  color: var(--accent);
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(2.6rem, 5.2vw, 4.5rem);
  line-height: 1.15;
  margin-top: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-content h1 span {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

/* Highlight underline on span */
.hero-content h1 span::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: clamp(3px, 0.5vw, 6px);
  background: var(--accent);
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.6;
}

.hero-panel.active .hero-content h1 span::after {
  transform: scaleX(1);
}

/* Split text animation */
.hero-content h1 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotateX(-40deg);
  animation: charDrop 0.6s ease forwards;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  max-width: 540px;
  margin-top: 24px;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s 0.7s ease, transform 0.7s 0.7s ease;
  text-wrap: balance;
}

.hero-panel.active .hero-desc {
  opacity: 1;
  transform: translateY(0);
}

.hero-btns {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s 0.9s ease, transform 0.7s 0.9s ease;
}

.hero-panel.active .hero-btns {
  opacity: 1;
  transform: translateY(0);
}

/* Right side info card */
.hero-side-card {
  position: absolute;
  right: max(calc((100% - 1320px) / 2), 3%);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 220px;
  opacity: 0;
  transform: translateY(-50%) translateX(30px);
  animation: heroCardIn 0.8s 1s ease forwards;
}

@keyframes heroCardIn {
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

.hero-side-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}

.hero-side-item i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.hero-side-item strong {
  display: block;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-side-item span {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 2px;
}

.hero-side-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 4px 0;
}

/* Vertical numbered navigation (left side) */
.hero-vertical-nav {
  position: absolute;
  left: max(calc((100% - 1320px) / 2), 3%);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-vnav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 0;
  position: relative;
}

.hero-vnav-num {
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
  min-width: 24px;
  text-align: left;
  transition: all 0.4s;
}

.hero-vnav-line {
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.hero-vnav-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.hero-vnav-item.active .hero-vnav-num {
  color: #fff;
  transform: scale(1.1);
}

.hero-vnav-item.active .hero-vnav-line {
  width: 44px;
}

.hero-vnav-item.active .hero-vnav-line::after {
  transform: scaleX(1);
}

.hero-vnav-item:hover .hero-vnav-num {
  color: rgba(255, 255, 255, 0.8);
}

/* Bottom bar */
.hero-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.hero-progress {
  position: relative;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 8px rgba(0, 82, 204, 0.3);
}

.hero-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px 0 22px;
}

.hero-prev,
.hero-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.hero-prev::before,
.hero-next::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--primary);
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.hero-prev:hover::before,
.hero-next:hover::before {
  transform: scale(1);
}

.hero-prev:hover,
.hero-next:hover {
  border-color: var(--primary);
  transform: scale(1.08);
}

/* Slide counter */
.hero-slide-counter {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-counter-current {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  min-width: 28px;
  text-align: right;
  transition: opacity 0.3s, transform 0.3s;
}

.hero-counter-current.changing {
  opacity: 0;
  transform: translateY(-10px);
}

.hero-counter-sep {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
  margin: 0 2px;
}

.hero-counter-total {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 90px;
  right: max(calc((100% - 1320px) / 2 + 20px), 4%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 11px;
  position: relative;
}

.scroll-wheel {
  width: 3px;
  height: 7px;
  background: var(--accent);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease infinite;
}

/* ---------- STATS BAR (SVG Ring) ---------- */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-sm);
}

.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: var(--primary-light);
}

.stat-ring {
  width: 56px;
  height: 56px;
  position: relative;
  flex-shrink: 0;
}

.stat-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: var(--border);
  stroke-width: 6;
}

.ring-fill {
  fill: none;
  stroke: var(--primary);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 264;
  stroke-dashoffset: 264;
  transition: stroke-dashoffset 2s ease;
}

.ring-fill.animate {
  stroke-dashoffset: 0;
}

.stat-ring-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary);
}

.stat-item strong {
  font-size: 1.5rem;
  color: var(--dark);
  display: block;
  line-height: 1.2;
}

.stat-item p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
}

/* Stat progress bar */
.stat-progress {
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}

.stat-progress-fill {
  height: 100%;
  width: 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-progress-fill.animate {
  opacity: 1;
}

/* ---------- SECTION HEADER ---------- */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.section-header h2 span {
  color: var(--primary);
}

.section-sub {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-top: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- SERVICES (Expanding Accordion Panels) ---------- */
/* Sadece anasayfada görünsün */
.home-page .services {
  padding: 100px 0 0;
  background: var(--white);
}

/* --- Accordion Container --- */
.home-page .svc-accordion {
  display: flex;
  height: 520px;
  gap: 6px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* --- Single Panel --- */
.home-page .svc-panel {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-page .svc-panel.active {
  flex: 4;
}

/* Background image */
.home-page .svc-panel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s ease;
}

.home-page .svc-panel.active .svc-panel-img {
  transform: scale(1.05);
}

.home-page .svc-panel:not(.active) .svc-panel-img {
  filter: brightness(0.45) saturate(0.6);
}

/* Overlay gradient */
.home-page .svc-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 30%,
      rgba(15, 25, 35, 0.3) 60%,
      rgba(15, 25, 35, 0.8) 100%);
  z-index: 1;
  transition: background 0.5s ease;
}

.home-page .svc-panel.active .svc-panel-overlay {
  background: linear-gradient(180deg,
      transparent 20%,
      rgba(15, 25, 35, 0.15) 50%,
      rgba(15, 25, 35, 0.75) 100%);
}

/* --- Collapsed state (vertical text) --- */
.home-page .svc-panel-collapsed {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.home-page .svc-panel.active .svc-panel-collapsed {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.home-page .svc-panel-num {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.home-page .svc-panel-collapsed h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.35;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  letter-spacing: 0.03em;
}

/* --- Expanded state (full content) --- */
.home-page .svc-panel-expanded {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 40px 44px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s 0.2s ease, transform 0.5s 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.home-page .svc-panel.active .svc-panel-expanded {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.home-page .svc-panel-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.home-page .svc-panel-expanded h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.25;
}

.home-page .svc-panel-expanded p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 440px;
}

.home-page .svc-panel-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
}

.home-page .svc-panel-btn:hover {
  background: #fff;
  color: var(--dark);
  transform: translateX(4px);
}

/* Active panel - top accent line */
.home-page .svc-panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 5;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s 0.1s ease;
}

.home-page .svc-panel.active::after {
  transform: scaleX(1);
}

/* ---------- ABOUT (Split Layout + Stacked Images + Parallax) ---------- */
.about {
  padding: 100px 0;
  background: var(--bg);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 560px;
}

/* --- Image Stack Layout --- */
.about-img-stack {
  position: relative;
  width: 100%;
  height: 560px;
}

/* Ana görsel */
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-img-stack.revealed .about-img-main {
  opacity: 1;
  transform: translateX(0);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.about-img-main:hover img {
  transform: scale(1.08);
}

/* İkinci görsel (üst üste binen) */
.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
  z-index: 3;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s 0.3s ease, transform 0.8s 0.3s ease;
}

.about-img-stack.revealed .about-img-secondary {
  opacity: 1;
  transform: translateY(0);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.about-img-secondary:hover img {
  transform: scale(1.08);
}

/* Deneyim badge */
.about-experience-badge {
  position: absolute;
  top: 60%;
  left: 62%;
  transform: translate(-50%, -50%);
  z-index: 5;
  background: var(--primary);
  color: #fff;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 82, 204, 0.35), 0 0 0 6px rgba(0, 82, 204, 0.15);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  transition: opacity 0.6s 0.6s ease, transform 0.6s 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-img-stack.revealed .about-experience-badge {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.about-exp-number {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
}

.about-exp-number span {
  font-size: 2.6rem;
  font-weight: 800;
}

.about-exp-number small {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 4px;
}

.about-experience-badge p {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
  line-height: 1.3;
  opacity: 0.9;
}

/* Dekoratif nokta grid */
.about-dot-grid {
  position: absolute;
  top: -20px;
  right: 20px;
  width: 100px;
  height: 100px;
  z-index: 1;
  background-image: radial-gradient(circle, var(--primary) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.15;
}

/* Floating geometric shapes */
.floating-shapes {
  position: absolute;
  inset: -40px;
  pointer-events: none;
  z-index: 0;
}

.float-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  will-change: transform;
  transition: transform 0.5s ease;
}

.shape-1 {
  width: 120px;
  height: 120px;
  background: var(--primary);
  top: -20px;
  right: -30px;
}

.shape-2 {
  width: 80px;
  height: 80px;
  background: var(--accent);
  bottom: 40px;
  left: -20px;
}

.shape-3 {
  width: 50px;
  height: 50px;
  background: var(--primary-dark);
  top: 50%;
  right: 20%;
  border-radius: 8px;
}

/* --- About text side --- */
.about-text .section-tag {
  margin-bottom: 14px;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 18px;
}

.about-text h2 span {
  color: var(--primary);
}

/* Accent divider line */
.about-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin-bottom: 20px;
}

.about-lead {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-lead strong {
  color: var(--primary);
}

.about-text>p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

/* Mini stats row */
.about-mini-stats {
  display: flex;
  gap: 24px;
  margin: 28px 0;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-mini-stat {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-mini-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.about-mini-stat:hover .about-mini-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

.about-mini-stat strong {
  font-size: 1.5rem;
  color: var(--dark);
  display: block;
  line-height: 1.1;
}

.about-mini-stat p {
  font-size: 0.78rem;
  color: var(--text-light);
  margin: 0;
}

/* Value boxes */
.about-values {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.value-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.value-box:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.value-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #0070f3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.value-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.value-box p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.about-cta {
  margin-top: 0;
}

/* ---------- PROCESS (SVG Line Draw + Pulse Ripple) ---------- */
.process {
  padding: 100px 0;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}

.process .section-tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.process .section-header h2 {
  color: #fff;
}

.process .section-header h2 span {
  color: var(--accent);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 20px;
}

.process-svg {
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  width: 100%;
  height: 6px;
  z-index: 0;
}

.process-line-bg {
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 3;
}

.process-line-draw {
  stroke: var(--accent);
  stroke-width: 3;
  stroke-dasharray: 880;
  stroke-dashoffset: 880;
  transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-line-draw.animate {
  stroke-dashoffset: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 16px;
}

.step-node {
  position: relative;
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
}

.step-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--dark-2);
  border: 3px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

/* Pulse ripple */
.node-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
  z-index: 1;
}

.node-pulse.active {
  animation: pulseRipple 2s ease-out infinite;
}

.process-step:hover .step-num {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0, 82, 204, 0.4);
}

.process-step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}

/* Process travelling energy dot */
.process-energy-dot {
  position: absolute;
  top: 30px;
  left: 60px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent), 0 0 32px rgba(245, 166, 35, 0.4);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s;
}

.process-energy-dot.active {
  opacity: 1;
  animation: travelDot 4s ease-in-out infinite;
}

/* Step tooltip on hover */
.step-tooltip {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  background: var(--white);
  color: var(--dark);
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  line-height: 1.6;
  width: 220px;
  text-align: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 20;
}

.step-tooltip::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-radius: 2px;
  transform: translateX(-50%) rotate(45deg);
}

.process-step:hover .step-tooltip {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(calc(100% + 6px));
}

/* Process step hover glow */
.process-step:hover .step-num {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: scale(1.15);
  box-shadow: 0 0 30px rgba(0, 82, 204, 0.5), 0 0 60px rgba(0, 82, 204, 0.2);
}

/* ---------- BRANDS ORBIT ---------- */
.brands {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

.brands-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.brands-text .section-tag {
  margin-bottom: 14px;
}

.brands-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 18px;
}

.brands-text h2 span {
  color: var(--primary);
}

.brands-text>p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 28px;
}

.brands-orbit {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 520px;
  margin: 0 auto;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.orbit-core {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #0070f3);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 12px rgba(0, 82, 204, 0.12), 0 0 0 24px rgba(0, 82, 204, 0.06);
  animation: coreGlow 3s ease-in-out infinite;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1.5px dashed rgba(0, 82, 204, 0.18);
  border-radius: 50%;
}

.ring-1 {
  width: 300px;
  height: 300px;
  margin: -150px 0 0 -150px;
  animation: orbitSpin 40s linear infinite;
}

.ring-2 {
  width: 440px;
  height: 440px;
  margin: -220px 0 0 -220px;
  animation: orbitSpin 55s linear infinite reverse;
}

.orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 56px;
  margin: -28px 0 0 -45px;
}

.ring-1 .orbit-item {
  transform: rotate(calc(var(--i) * 60deg)) translateX(150px) rotate(calc(var(--i) * -60deg));
}

.ring-1 .orbit-item .orbit-logo {
  animation: orbitCounterSpin 40s linear infinite;
}

.ring-2 .orbit-item {
  transform: rotate(calc(var(--i) * 51.43deg)) translateX(220px) rotate(calc(var(--i) * -51.43deg));
}

.ring-2 .orbit-item .orbit-logo {
  animation: orbitCounterSpin 55s linear infinite reverse;
}

/* Dikdörtgen logo container */
.orbit-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 56px;
  border-radius: 14px;
  background: var(--white);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  padding: 8px;
  overflow: hidden;
}

.orbit-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.orbit-logo:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 82, 204, 0.15);
  transform: scale(1.12);
}

.orbit-logo:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.08);
}

.brands-orbit:hover .ring-1,
.brands-orbit:hover .ring-2 {
  animation-play-state: paused;
}

.brands-orbit:hover .orbit-logo {
  animation-play-state: paused;
}

/* ---------- PROJECTS SLIDER (Parallax Depth) ---------- */
.projects {
  padding: 100px 0;
  background: var(--bg);
}

.project-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  perspective: 1200px;
}

.project-slides {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.15s ease;
}

.project-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(0.95) translateZ(-60px);
}

.project-slide.active {
  opacity: 1;
  position: relative;
  z-index: 1;
  transform: scale(1) translateZ(0);
}

.project-slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.project-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 25, 35, 0.85) 0%, rgba(15, 25, 35, 0.2) 55%, transparent 100%);
}

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 40px;
  color: #fff;
}

.project-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 6px;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.project-info h3 {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
}

.project-info p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  font-size: 0.95rem;
  line-height: 1.65;
}

.project-controls {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 14px;
}

.proj-prev,
.proj-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.proj-prev:hover,
.proj-next:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

.proj-counter {
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.proj-counter .proj-current {
  font-size: 1.4rem;
  color: var(--accent);
}

.proj-dots {
  display: flex;
  gap: 6px;
}

.proj-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.proj-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--accent);
}

/* Vertical progress indicator */
.proj-vertical-progress {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
  align-items: center;
  height: 160px;
}

.proj-vp-track {
  width: 3px;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.proj-vp-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 33.33%;
  background: var(--accent);
  border-radius: 2px;
  transition: top 0.6s cubic-bezier(0.4, 0, 0.2, 1), height 0.3s;
}

.proj-vp-labels {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.proj-vp-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
}

.proj-vp-label.active {
  color: var(--accent);
  transform: scale(1.2);
}

/* Drag hint */
.proj-drag-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.5s;
}

.proj-drag-hint i {
  font-size: 1.4rem;
  animation: dragPulse 2s ease-in-out infinite;
}

.proj-drag-hint.hidden {
  opacity: 0;
}

/* Project slider dragging */
.project-slider.dragging {
  cursor: grabbing !important;
}

.project-slider {
  cursor: grab;
}

/* ---------- PRICE LISTS (Holographic Shimmer) ---------- */
.pricelists {
  padding: 100px 0;
  background: var(--white);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

/* Shimmer sweep effect */
.shimmer-effect {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      transparent 40%,
      rgba(0, 82, 204, 0.06) 45%,
      rgba(0, 82, 204, 0.12) 50%,
      rgba(0, 82, 204, 0.06) 55%,
      transparent 60%);
  background-size: 250% 100%;
  background-position: 200% 0;
  pointer-events: none;
  z-index: 0;
}

.price-card:hover .shimmer-effect {
  animation: shimmerSweep 0.8s ease forwards;
}

.price-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.price-card-top i {
  font-size: 2rem;
  color: #e74c3c;
}

.price-card-top span {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  background: var(--accent-light);
  color: #b87a00;
  padding: 3px 10px;
  border-radius: 4px;
}

.price-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.price-card>p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 18px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.price-card-action {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.price-card:hover .price-card-action i {
  transform: translateX(4px);
}

.price-card-action i {
  transition: transform 0.3s;
}

/* 3D Tilt card */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 800px;
  transition: transform 0.15s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Moving glow border that follows mouse */
.tilt-glow {
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: radial-gradient(300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(0, 82, 204, 0.25),
      transparent 60%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.tilt-card:hover .tilt-glow {
  opacity: 1;
}

/* ---------- CTA BANNER (Next-Gen Interactive) ---------- */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(160deg, #0a1628 0%, #0d2137 40%, #0a1628 100%);
  position: relative;
  overflow: hidden;
}

#ctaCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cta-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 123, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 123, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
}

/* Floating geometric shapes */
.cta-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.08;
}

.cta-shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  top: -120px;
  right: -80px;
  animation: ctaFloat1 8s ease-in-out infinite;
}

.cta-shape-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  bottom: -80px;
  left: -60px;
  animation: ctaFloat2 10s ease-in-out infinite;
}

.cta-shape-3 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #6366f1, transparent 70%);
  top: 50%;
  left: 40%;
  animation: ctaFloat3 12s ease-in-out infinite;
}

@keyframes ctaFloat1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-30px, 20px) scale(1.1);
  }
}

@keyframes ctaFloat2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(20px, -25px) scale(1.05);
  }
}

@keyframes ctaFloat3 {

  0%,
  100% {
    transform: translate(0, 0) scale(0.9);
    opacity: 0.06;
  }

  50% {
    transform: translate(-20px, -15px) scale(1);
    opacity: 0.12;
  }
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* --- Left Content --- */
.cta-content {
  color: #fff;
}

.cta-badge-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 123, 255, 0.12);
  border: 1px solid rgba(0, 123, 255, 0.2);
  border-radius: 50px;
  padding: 8px 20px 8px 12px;
  margin-bottom: 24px;
}

.cta-pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  position: relative;
  animation: ctaPulse 2s ease-in-out infinite;
}

.cta-pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #10b981;
  animation: ctaPulseRing 2s ease-in-out infinite;
}

@keyframes ctaPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes ctaPulseRing {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.cta-badge-text {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.cta-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 18px;
  color: #fff;
}

.cta-gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #60a5fa 50%, var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ctaGradientShift 4s ease-in-out infinite;
}

@keyframes ctaGradientShift {

  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }
}

.cta-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

/* Trust row */
.cta-trust-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  transition: var(--transition);
}

.cta-trust-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 123, 255, 0.3);
  transform: translateX(8px);
}

.cta-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.2), rgba(0, 123, 255, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cta-trust-item strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

.cta-trust-item span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
}

/* --- Right Card --- */
.cta-card {
  position: relative;
  perspective: 1000px;
}

.cta-card-glow {
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--primary), var(--accent), #6366f1, var(--primary));
  background-size: 300% 300%;
  animation: ctaCardGlow 6s ease-in-out infinite;
  opacity: 0.6;
  filter: blur(8px);
  z-index: 0;
}

@keyframes ctaCardGlow {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.cta-card-inner {
  position: relative;
  z-index: 1;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px;
  transition: transform 0.4s ease;
}

.cta-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

.cta-card-header h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}

.cta-card-header p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  margin-top: 2px;
}

/* Form inputs */
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-input-group {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0 16px;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.cta-input-group:focus-within {
  border-color: var(--primary);
  background: rgba(0, 123, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

.cta-input-group i {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.cta-input-group:focus-within i {
  color: var(--accent);
}

.cta-input-group input,
.cta-input-group textarea {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.92rem;
  padding: 14px 0;
  outline: none;
  font-family: inherit;
  resize: none;
}

.cta-input-group input::placeholder,
.cta-input-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.textarea-group {
  align-items: flex-start;
  padding-top: 14px;
}

.textarea-group i {
  margin-top: 2px;
}

/* Submit button */
.cta-submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.2s;
  margin-top: 4px;
}

.cta-submit-btn:hover {
  box-shadow: 0 8px 32px rgba(0, 123, 255, 0.4);
}

.cta-submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s;
}

.cta-submit-btn:hover::before {
  transform: translateX(120%);
}

.cta-btn-icon {
  font-size: 0.9rem;
  transition: transform 0.3s;
}

.cta-submit-btn:hover .cta-btn-icon {
  transform: translateX(4px) rotate(-20deg);
}

.cta-btn-success {
  position: absolute;
  inset: 0;
  background: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 12px;
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-submit-btn.success .cta-btn-success {
  transform: scale(1);
}

/* Card footer */
.cta-card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-quick-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 10px;
  color: #10b981;
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
}

.cta-quick-call:hover {
  background: rgba(16, 185, 129, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2);
}

.cta-separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
}

.cta-quick-mail {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}

.cta-quick-mail:hover {
  color: var(--accent);
}

/* ---------- FOOTER (Light Theme) ---------- */
footer {
  background: #f8f9fa;
  color: var(--text);
  border-top: 1px solid var(--border);
}

/* --- Newsletter bar (Light) --- */
.footer-newsletter {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.footer-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 36px 0;
}

.footer-newsletter-text h3 {
  color: var(--dark);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-newsletter-text h3 i {
  color: var(--primary);
  font-size: 1rem;
}

.footer-newsletter-text p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-top: 4px;
}

.footer-newsletter-form {
  display: flex;
  gap: 0;
  min-width: 340px;
  max-width: 420px;
  border-radius: 50px;
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.footer-newsletter-form:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.footer-newsletter-form input {
  flex: 1;
  padding: 14px 22px;
  background: transparent;
  border: none;
  outline: none;
  color: var(--dark);
  font-size: 0.92rem;
  font-family: inherit;
}

.footer-newsletter-form input::placeholder {
  color: var(--text-light);
}

.footer-newsletter-form button {
  padding: 14px 22px;
  background: var(--primary);
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-newsletter-form button:hover {
  background: var(--primary-dark);
}

/* --- Main footer grid (Light) --- */
.footer-main {
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand>p {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 22px;
  color: var(--text-light);
}

/* Social icons (Light) */
.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.footer-social a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: var(--primary);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.footer-social a:hover {
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-social a:hover::before {
  transform: translateY(0);
}

/* Footer links (Light) */
.footer-links h4,
.footer-contact h4 {
  color: var(--dark);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 0.88rem;
  padding: 7px 0;
  color: var(--text-light);
  transition: color 0.3s, gap 0.3s, transform 0.3s;
  position: relative;
}

.footer-links a::before {
  content: '→';
  font-size: 0.8rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.3s;
  color: var(--primary);
}

.footer-links a:hover {
  color: var(--primary);
  gap: 8px;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Footer contact (Light) */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 82, 204, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.footer-contact-item>div span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.footer-contact-item>div a,
.footer-contact-item>div p {
  font-size: 0.92rem;
  color: var(--text);
  transition: color 0.3s;
  margin: 0;
}

.footer-contact-item>div a:hover {
  color: var(--primary);
}

.footer-btns {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.footer-btns .btn-sm {
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.footer-btns .btn-sm:hover {
  border-color: var(--primary);
  color: #fff;
  background: var(--primary);
}

/* --- Footer bottom (Light) --- */
.footer-bottom {
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.82rem;
  color: var(--text-light);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-light);
  font-size: 0.82rem;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- KEYFRAMES ---------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes charDrop {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 0.3;
    transform: translateX(-50%) translateY(14px);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitCounterSpin {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes coreGlow {

  0%,
  100% {
    box-shadow: 0 0 0 12px rgba(0, 82, 204, 0.12), 0 0 0 24px rgba(0, 82, 204, 0.06);
  }

  50% {
    box-shadow: 0 0 0 16px rgba(0, 82, 204, 0.2), 0 0 0 32px rgba(0, 82, 204, 0.08);
  }
}

/* floatShape now handled by JS parallax scroll */
@keyframes pulseRipple {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@keyframes shimmerSweep {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

@keyframes travelDot {
  0% {
    left: 6%;
    opacity: 1;
  }

  25% {
    left: 31%;
    opacity: 1;
    transform: scale(1.3);
  }

  50% {
    left: 56%;
    opacity: 1;
    transform: scale(1);
  }

  75% {
    left: 81%;
    opacity: 1;
    transform: scale(1.3);
  }

  100% {
    left: 94%;
    opacity: 0.3;
    transform: scale(1);
  }
}

@keyframes dragPulse {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-8px);
  }

  75% {
    transform: translateX(8px);
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {

  #mainNav,
  .header-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .home-page .svc-accordion {
    height: 450px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-media {
    min-height: 460px;
  }

  .about-img-stack {
    height: 460px;
  }

  .about-img-main {
    width: 70%;
    height: 340px;
  }

  .about-img-secondary {
    width: 55%;
    height: 240px;
  }

  .about-experience-badge {
    width: 110px;
    height: 110px;
  }

  .about-exp-number span {
    font-size: 2rem;
  }

  .about-mini-stats {
    flex-direction: column;
    gap: 16px;
  }

  .brands-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .brands-orbit {
    max-width: 420px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .footer-newsletter-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-newsletter-form {
    min-width: 0;
    width: 100%;
    max-width: 420px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-trust-row {
    max-width: 400px;
    margin: 0 auto;
  }

  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-slider {
    min-height: 580px;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-scroll-hint {
    display: none;
  }

  .hero-side-card {
    display: none;
  }

  .hero-vertical-nav {
    display: none;
  }

  .hero-content {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }

  .stats-bar .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .home-page .svc-accordion {
    flex-direction: column;
    height: auto;
  }

  .home-page .svc-panel {
    min-height: 80px;
  }

  .home-page .svc-panel.active {
    min-height: 340px;
  }

  .home-page .svc-panel-collapsed h3 {
    writing-mode: horizontal-tb;
  }

  .home-page .svc-panel-expanded {
    padding: 24px;
  }

  .home-page .svc-panel-expanded h3 {
    font-size: 1.1rem;
  }

  .process-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .process-svg {
    display: none;
  }

  .project-slide img {
    height: 380px;
  }

  .project-controls {
    bottom: 20px;
    right: 20px;
  }

  .proj-vertical-progress {
    display: none;
  }

  .proj-drag-hint {
    display: none;
  }

  .step-tooltip {
    width: 180px;
    font-size: 0.78rem;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .footer-btns {
    flex-direction: column;
  }

  .brands-orbit {
    max-width: 320px;
  }

  .ring-1 {
    width: 220px;
    height: 220px;
    margin: -110px 0 0 -110px;
  }

  .ring-1 .orbit-item {
    transform: rotate(calc(var(--i) * 60deg)) translateX(110px) rotate(calc(var(--i) * -60deg));
  }

  .ring-2 {
    width: 320px;
    height: 320px;
    margin: -160px 0 0 -160px;
  }

  .ring-2 .orbit-item {
    transform: rotate(calc(var(--i) * 51.43deg)) translateX(160px) rotate(calc(var(--i) * -51.43deg));
  }

  .cta-card-inner {
    padding: 28px;
  }

  .cta-card-footer {
    flex-direction: column;
    gap: 8px;
  }

  .orbit-logo {
    width: 68px;
    height: 42px;
    border-radius: 10px;
    padding: 6px;
  }

  .orbit-item {
    width: 68px;
    height: 42px;
    margin: -21px 0 0 -34px;
  }

  .orbit-core {
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .stats-bar .container {
    grid-template-columns: 1fr;
  }

  .hero-bottom-bar .hero-controls {
    padding: 10px 0 14px;
  }

  .hero-counter-current {
    font-size: 1.2rem;
  }

  .hero-prev,
  .hero-next {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  .process-track {
    grid-template-columns: 1fr;
  }
}

/* ---------- MOBILE NAV OVERHAUL ---------- */
#mainNav.active {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  padding: 0;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  overflow-y: auto;
  animation: mobileMenuIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.mobile-header {
  display: none;
  padding: 18px 5%;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

#mainNav.active .mobile-header {
  display: flex;
}

.menu-close {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f1f5f9;
  border: none;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-close:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

#mainNav.active a,
#mainNav.active .dropdown-trigger {
  padding: 18px 5% !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: var(--dark) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-decoration: none;
  border-radius: 0 !important;
}

#mainNav.active a::after {
  display: none !important;
}

#mainNav.active a.nav-active {
  color: var(--primary) !important;
  background: var(--primary-light);
}

/* Mobile Dropdown Fix */
#mainNav.active .nav-item-dropdown {
  display: block;
  width: 100%;
}

#mainNav.active .dropdown-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  background: #f8fafc;
  width: 100%;
  padding: 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  display: none;
  transition: all 0.3s ease;
  /* JS will toggle this later, or we show it for now */
}

/* Simple fix for mobile: show dropdown items directly or let them be clickable */
#mainNav.active .nav-item-dropdown:hover .dropdown-menu {
  display: block;
}

#mainNav.active .dropdown-menu a {
  padding: 14px 10% !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--text-light) !important;
  background: transparent !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

#mainNav.active .dropdown-trigger i {
  transition: transform 0.3s ease;
}

@keyframes mobileMenuIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hamburger active state sync */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}