/* =============================================================
   ElitTemizlik — Ana Stil Dosyası
   Tasarım: Koyu Lacivert + Cyan + Altın | Glassmorphism
   Font: Outfit + Inter (Google Fonts)
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── CSS Custom Properties ─── */
:root {
  /* Renkler */
  --c-bg:           #060d1e;
  --c-bg-2:         #0a1628;
  --c-bg-3:         #0d1f3c;
  --c-card:         rgba(255, 255, 255, 0.05);
  --c-card-hover:   rgba(255, 255, 255, 0.09);
  --c-border:       rgba(255, 255, 255, 0.1);
  --c-border-glow:  rgba(0, 212, 255, 0.3);

  --c-cyan:         #00d4ff;
  --c-cyan-dark:    #0099cc;
  --c-cyan-glow:    rgba(0, 212, 255, 0.2);
  --c-gold:         #f5c518;
  --c-gold-dark:    #d4aa15;
  --c-gold-glow:    rgba(245, 197, 24, 0.2);

  --c-text:         #e8eaf6;
  --c-text-muted:   rgba(232, 234, 246, 0.6);
  --c-text-faint:   rgba(232, 234, 246, 0.35);
  --c-white:        #ffffff;

  --c-success:      #00e676;
  --c-warning:      #ffc107;
  --c-danger:       #ff4757;
  --c-info:         #00d4ff;

  /* Gradyanlar */
  --grad-hero:      linear-gradient(135deg, #060d1e 0%, #0a1628 50%, #0d2047 100%);
  --grad-cyan:      linear-gradient(135deg, #00d4ff, #0099cc);
  --grad-gold:      linear-gradient(135deg, #f5c518, #d4aa15);
  --grad-card:      linear-gradient(135deg, rgba(0,212,255,0.08) 0%, rgba(245,197,24,0.05) 100%);
  --grad-section:   linear-gradient(180deg, transparent 0%, rgba(0,212,255,0.03) 50%, transparent 100%);

  /* Tipografi */
  --font-heading:   'Outfit', sans-serif;
  --font-body:      'Inter', sans-serif;

  /* Boyutlar */
  --max-width:      1280px;
  --nav-height:     80px;
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      40px;
  --radius-full:    9999px;

  /* Gölgeler */
  --shadow-card:    0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255,255,255,0.05);
  --shadow-cyan:    0 0 20px rgba(0, 212, 255, 0.3), 0 0 60px rgba(0, 212, 255, 0.1);
  --shadow-gold:    0 0 20px rgba(245, 197, 24, 0.3), 0 0 60px rgba(245, 197, 24, 0.1);
  --shadow-hover:   0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0,212,255,0.15);

  /* Geçişler */
  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Tüm elementlerde varsayılan fareyi gizle (Özel imleç için) */
*, *::before, *::after {
  cursor: none !important;
}

/* Seçim rengi */
::selection { background: var(--c-cyan); color: var(--c-bg); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-bg-2); }
::-webkit-scrollbar-thumb { background: var(--c-cyan); border-radius: 3px; }

/* ─── Custom Cursor ─── */
#cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--c-cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: screen;
}
#cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(0, 212, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(2px);
}
body.cursor-hover #cursor-dot { width: 12px; height: 12px; background: var(--c-gold); }
body.cursor-hover #cursor-ring { width: 56px; height: 56px; border-color: rgba(245,197,24,0.5); }

/* ─── Particles Canvas ─── */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ─── Genel Layout ─── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-gap { padding: 100px 0; }
.section-gap-sm { padding: 60px 0; }

/* ─── Section Header ─── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  color: var(--c-cyan);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.section-badge i { font-size: 10px; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-title span { color: var(--c-cyan); }
.section-title .gold { color: var(--c-gold); }

.section-desc {
  font-size: 18px;
  color: var(--c-text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Tipografi ─── */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
a { color: var(--c-cyan); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--c-white); }
img { max-width: 100%; height: auto; display: block; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition-bounce);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.btn:hover::before { width: 300px; height: 300px; }

.btn-cyan {
  background: var(--grad-cyan);
  color: var(--c-bg);
  box-shadow: var(--shadow-cyan);
}
.btn-cyan:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 30px rgba(0,212,255,0.5), 0 0 80px rgba(0,212,255,0.2);
  color: var(--c-bg);
}

.btn-gold {
  background: var(--grad-gold);
  color: var(--c-bg);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 30px rgba(245,197,24,0.5), 0 0 80px rgba(245,197,24,0.2);
  color: var(--c-bg);
}

.btn-outline {
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.btn-outline:hover {
  background: var(--c-card);
  border-color: var(--c-cyan);
  color: var(--c-cyan);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--c-text);
  border: 1px solid var(--c-border);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  background: rgba(0,212,255,0.1);
  border-color: var(--c-cyan);
  color: var(--c-cyan);
  transform: translateY(-2px);
}

/* ─── Glassmorphism Card ─── */
.glass-card {
  background: var(--c-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.glass-card:hover {
  background: var(--c-card-hover);
  border-color: var(--c-border-glow);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition);
}
.navbar.scrolled,
.navbar.subpage-nav {
  background: rgba(6, 13, 30, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: var(--grad-cyan);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-cyan);
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -0.03em;
}
.nav-logo-text span { color: var(--c-cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: var(--c-text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  text-decoration: none;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--c-white);
  background: rgba(0,212,255,0.08);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 10px; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: var(--transition);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--c-text-muted);
  font-size: 13px;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
}
.dropdown-menu a:hover {
  background: rgba(0,212,255,0.08);
  color: var(--c-cyan);
}
.dropdown-menu a i { width: 18px; color: var(--c-cyan); font-size: 13px; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--c-text-muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--c-border);
  transition: var(--transition);
}
.nav-phone:hover { color: var(--c-gold); border-color: var(--c-gold-glow); background: rgba(245,197,24,0.05); }
.nav-phone i { color: var(--c-gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  background: var(--c-card);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(6, 13, 30, 0.98);
  backdrop-filter: blur(30px);
  border-bottom: 1px solid var(--c-border);
  padding: 20px 24px;
  z-index: 999;
  max-height: calc(100vh - var(--nav-height));
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: var(--c-text-muted);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-border);
  text-decoration: none;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--c-cyan); padding-left: 8px; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--grad-hero);
}

/* Animated background orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
  top: -200px; left: -200px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #f5c518 0%, transparent 70%);
  bottom: -100px; right: -100px;
  animation-delay: 4s;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #7c4dff 0%, transparent 70%);
  top: 40%; left: 40%;
  animation-delay: 2s;
}
@keyframes orbFloat {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.1) translate(20px, -20px); }
}

/* Grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.25);
  color: var(--c-cyan);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 32px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--c-cyan);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0;} }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(42px, 7vw, 84px);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-title .highlight {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .highlight-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-typing {
  white-space: nowrap;
  display: inline-block;
  min-width: 250px; /* Sabit genişlik zıplamayı önler */
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--c-text-muted);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 48px;
  border-top: 1px solid var(--c-border);
}
.hero-stat {
  text-align: center;
}
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  color: var(--c-white);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-number span { color: var(--c-cyan); }
.hero-stat-label {
  font-size: 13px;
  color: var(--c-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Floating Objects (Parallax) */
.floating-obj {
  position: absolute;
  pointer-events: none;
  z-index: 5;
  transition: transform 0.1s linear;
  will-change: transform;
}
.floating-obj .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  border: 1px solid var(--c-border);
  font-size: 28px;
  animation: floatBob 6s ease-in-out infinite;
}
.fobj-1 { top: 15%; left: 5%; }
.fobj-1 .icon-wrap { width:70px;height:70px; background:rgba(0,212,255,0.12); color:var(--c-cyan); box-shadow: 0 0 20px rgba(0,212,255,0.2); animation-delay:0s; }
.fobj-2 { top: 20%; right: 6%; }
.fobj-2 .icon-wrap { width:60px;height:60px; background:rgba(245,197,24,0.12); color:var(--c-gold); box-shadow: 0 0 20px rgba(245,197,24,0.2); animation-delay:1.5s; }
.fobj-3 { bottom: 30%; left: 4%; }
.fobj-3 .icon-wrap { width:55px;height:55px; background:rgba(0,212,255,0.1); color:var(--c-cyan); animation-delay:3s; }
.fobj-4 { bottom: 20%; right: 5%; }
.fobj-4 .icon-wrap { width:65px;height:65px; background:rgba(124,77,255,0.12); color:#7c4dff; animation-delay:4.5s; }
.fobj-5 { top: 50%; left: 2%; }
.fobj-5 .icon-wrap { width:48px;height:48px; background:rgba(0,230,118,0.1); color:#00e676; animation-delay:2s; }
.fobj-6 { top: 35%; right: 3%; }
.fobj-6 .icon-wrap { width:52px;height:52px; background:rgba(245,197,24,0.1); color:var(--c-gold); animation-delay:3.5s; }

@keyframes floatBob {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(3deg); }
  66% { transform: translateY(-6px) rotate(-2deg); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--c-text-faint);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 10;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 1.5px solid var(--c-border);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-mouse::before {
  content: '';
  width: 4px; height: 8px;
  background: var(--c-cyan);
  border-radius: 2px;
  animation: scrollDot 2s ease infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ─── SERVICES SECTION ─── */
.services-section { background: var(--grad-section); }

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

.service-card {
  background: var(--c-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-decoration: none;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-cyan);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: var(--c-border-glow);
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
  background: var(--c-card-hover);
}

.service-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: rgba(0,212,255,0.1);
  color: var(--c-cyan);
  border: 1px solid rgba(0,212,255,0.2);
  transition: var(--transition-bounce);
}
.service-card:hover .service-icon {
  background: var(--c-cyan);
  color: var(--c-bg);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: var(--shadow-cyan);
}

.service-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-cyan);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.6;
  flex: 1;
}

.service-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-cyan);
  margin-top: 8px;
}
.service-link i { transition: var(--transition); }
.service-card:hover .service-link i { transform: translateX(4px); }

/* Service categories tabs */
.service-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.service-cat-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--c-border);
  background: var(--c-card);
  color: var(--c-text-muted);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(12px);
}
.service-cat-btn:hover,
.service-cat-btn.active {
  background: rgba(0,212,255,0.1);
  border-color: var(--c-cyan);
  color: var(--c-cyan);
}

/* ─── WHY US SECTION ─── */
.why-us { background: var(--c-bg-2); }

/* ── Animated background layer ── */
.why-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Floating glowing orbs */
.why-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: whyOrbFloat 12s ease-in-out infinite;
}
.why-orb-1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #00d4ff, transparent 70%);
  top: -120px; left: -100px;
  animation-delay: 0s;
}
.why-orb-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, #f5c518, transparent 70%);
  bottom: -80px; right: -80px;
  animation-delay: 4s;
  animation-direction: reverse;
}
.why-orb-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, #7c4dff, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 8s;
  opacity: 0.12;
}
@keyframes whyOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 30px) scale(0.97); }
}
.why-orb-3 { animation-name: whyOrbFloat3; }
@keyframes whyOrbFloat3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-48%, -53%) scale(1.1); }
}

/* Decorative grid lines */
.why-grid-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.why-vline {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0,212,255,0.08) 30%, rgba(0,212,255,0.08) 70%, transparent);
  animation: whyLineSlide 6s ease-in-out infinite;
}
.why-vline:nth-child(1) { left: 25%; animation-delay: 0s; }
.why-vline:nth-child(2) { left: 50%; animation-delay: 1.5s; }
.why-vline:nth-child(3) { left: 75%; animation-delay: 3s; }
.why-hline {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,197,24,0.06) 30%, rgba(245,197,24,0.06) 70%, transparent);
  animation: whyLineSlide 8s ease-in-out infinite;
}
.why-hline:nth-child(4) { top: 35%; animation-delay: 2s; }
.why-hline:nth-child(5) { top: 65%; animation-delay: 5s; }
@keyframes whyLineSlide {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 1; }
}

/* Sparkle dots */
.why-sparkle {
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--c-cyan);
  box-shadow: 0 0 8px var(--c-cyan), 0 0 16px var(--c-cyan);
  animation: whySparkle 3s ease-in-out infinite;
}
.why-sparkle:nth-child(odd) { background: var(--c-gold); box-shadow: 0 0 8px var(--c-gold), 0 0 16px var(--c-gold); }
@keyframes whySparkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.8); }
}

/* Floating decorative icons */
.why-float-icon {
  position: absolute;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(0,212,255,0.15);
  background: rgba(0,212,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(0,212,255,0.3);
  backdrop-filter: blur(4px);
  animation: whyFloatIcon 5s ease-in-out infinite;
}
.why-float-icon:nth-child(odd) {
  color: rgba(245,197,24,0.3);
  border-color: rgba(245,197,24,0.15);
  background: rgba(245,197,24,0.04);
  animation-name: whyFloatIcon2;
  animation-duration: 6s;
}
@keyframes whyFloatIcon {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(8deg); }
}
@keyframes whyFloatIcon2 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%      { transform: translateY(12px) rotate(-6deg); }
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition-bounce);
  backdrop-filter: blur(20px);
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-border-glow);
  box-shadow: var(--shadow-hover);
}
.why-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: var(--transition-bounce);
}
.why-card:nth-child(1) .why-icon { background: rgba(0,212,255,0.1); color: var(--c-cyan); border: 1px solid rgba(0,212,255,0.2); }
.why-card:nth-child(2) .why-icon { background: rgba(245,197,24,0.1); color: var(--c-gold); border: 1px solid rgba(245,197,24,0.2); }
.why-card:nth-child(3) .why-icon { background: rgba(0,230,118,0.1); color: #00e676; border: 1px solid rgba(0,230,118,0.2); }
.why-card:nth-child(4) .why-icon { background: rgba(124,77,255,0.1); color: #7c4dff; border: 1px solid rgba(124,77,255,0.2); }
.why-card:nth-child(5) .why-icon { background: rgba(255,71,87,0.1); color: #ff4757; border: 1px solid rgba(255,71,87,0.2); }
.why-card:nth-child(6) .why-icon { background: rgba(0,212,255,0.1); color: var(--c-cyan); border: 1px solid rgba(0,212,255,0.2); }
.why-card:hover .why-icon { transform: scale(1.15) rotate(5deg); }

.why-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 12px;
}
.why-desc { font-size: 14px; color: var(--c-text-muted); line-height: 1.6; }

/* ─── PROCESS SECTION ─── */
.process-section { background: var(--c-bg); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-cyan), transparent);
}
.process-step { text-align: center; padding: 0 20px; position: relative; }
.process-number {
  width: 88px; height: 88px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--c-bg-2);
  border: 2px solid var(--c-border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--c-cyan);
  position: relative;
  z-index: 1;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-cyan);
}
.process-step:hover .process-number {
  background: var(--c-cyan);
  color: var(--c-bg);
  transform: scale(1.1);
}
.process-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 10px;
}
.process-desc { font-size: 13px; color: var(--c-text-muted); line-height: 1.6; }

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--c-bg-2); }
.testimonials-slider { overflow: hidden; position: relative; }
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  flex-shrink: 0;
  width: 360px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(20px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 24px;
  font-family: var(--font-heading);
  font-size: 120px;
  color: rgba(0,212,255,0.06);
  line-height: 1;
}
.testimonial-card:hover {
  border-color: var(--c-border-glow);
  box-shadow: var(--shadow-hover);
}
.test-stars {
  color: var(--c-gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.test-comment {
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.test-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-bg);
  flex-shrink: 0;
}
.test-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-white);
}
.test-service { font-size: 12px; color: var(--c-text-faint); }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.slider-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  background: var(--c-card);
  color: var(--c-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bounce);
  backdrop-filter: blur(12px);
}
.slider-btn:hover {
  background: rgba(0,212,255,0.1);
  border-color: var(--c-cyan);
  color: var(--c-cyan);
  transform: scale(1.1);
}

/* ─── WRITE REVIEW ─── */
.write-review {
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}
.write-review::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-cyan), var(--c-gold));
}

/* ─── BLOG ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: var(--transition-bounce);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
}
.blog-card:hover {
  border-color: var(--c-border-glow);
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}
.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--c-bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--c-text-faint);
}
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-cyan);
  margin-bottom: 10px;
}
.blog-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 12px;
  line-height: 1.4;
  flex: 1;
}
.blog-excerpt { font-size: 14px; color: var(--c-text-muted); line-height: 1.6; margin-bottom: 20px; }
.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--c-text-faint);
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
}

/* ─── TEAM ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: var(--transition-bounce);
}
.team-card:hover {
  border-color: var(--c-border-glow);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  object-fit: cover;
  border: 2px solid var(--c-border-glow);
  background: var(--c-bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--c-cyan);
}
.team-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 4px;
}
.team-role { font-size: 13px; color: var(--c-cyan); }

/* ─── FAQ ─── */
.faq-section { background: var(--c-bg-2); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item:hover {
  border-color: rgba(0,212,255,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}
.faq-item.open {
  border-color: rgba(0,212,255,0.5);
  background: rgba(0,212,255,0.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  color: var(--c-white);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  transition: var(--transition);
  gap: 16px;
}
.faq-question:hover { color: var(--c-cyan); }
.faq-question i {
  color: var(--c-cyan);
  font-size: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s ease, color 0.4s ease;
  flex-shrink: 0;
  background: rgba(0,212,255,0.1);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item.open .faq-question i { 
  transform: rotate(180deg); 
  background: var(--c-cyan); 
  color: var(--c-bg); 
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.4s ease;
  opacity: 0;
}
.faq-item.open .faq-answer { opacity: 1; }
.faq-answer p {
  color: var(--c-text-muted);
  font-size: 15px;
  line-height: 1.7;
  padding: 0 24px 24px 24px;
  margin: 0;
}

/* ─── PRICING ─── */
.pricing-section { background: var(--c-bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}
.pricing-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  backdrop-filter: blur(20px);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  background: linear-gradient(135deg, rgba(0,212,255,0.12), rgba(0,153,204,0.08));
  border-color: var(--c-cyan);
  box-shadow: var(--shadow-cyan);
  transform: scale(1.04);
}
.pricing-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--grad-gold);
  color: var(--c-bg);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pricing-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 8px;
}
.pricing-price {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--c-cyan);
  line-height: 1;
  margin: 20px 0 8px;
}
.pricing-price span { font-size: 20px; font-weight: 500; color: var(--c-text-muted); }
.pricing-desc { font-size: 13px; color: var(--c-text-muted); margin-bottom: 28px; }
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--c-text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--c-border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--c-success); font-size: 12px; flex-shrink: 0; }
.pricing-features li.disabled { opacity: 0.4; }
.pricing-features li.disabled i { color: var(--c-text-faint); }

/* ─── GALLERY ─── */
.gallery-section { background: var(--c-bg-2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,13,30,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 32px; color: var(--c-cyan); }

/* ─── CONTACT ─── */
.contact-section { background: var(--c-bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info-items { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}
.contact-info-item:hover {
  border-color: var(--c-border-glow);
  box-shadow: var(--shadow-hover);
}
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(0,212,255,0.1);
  color: var(--c-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-text strong { display: block; color: var(--c-white); font-weight: 600; margin-bottom: 4px; }
.contact-info-text span { font-size: 14px; color: var(--c-text-muted); }

/* ─── FORMS ─── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition);
  outline: none;
  backdrop-filter: blur(8px);
}
.form-control::placeholder { color: var(--c-text-faint); }
.form-control:focus {
  border-color: var(--c-cyan);
  background: rgba(0,212,255,0.05);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300d4ff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
select.form-control option { background: var(--c-bg-2); color: var(--c-text); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* Star rating input */
.star-rating { display: flex; gap: 6px; flex-direction: row-reverse; justify-content: flex-end; }
.star-rating input { display: none; }
.star-rating label {
  font-size: 28px;
  color: var(--c-text-faint);
  cursor: pointer;
  transition: var(--transition);
}
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label { color: var(--c-gold); }

/* Alert */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.alert-success { background: rgba(0,230,118,0.1); border: 1px solid rgba(0,230,118,0.3); color: #00e676; }
.alert-error { background: rgba(255,71,87,0.1); border: 1px solid rgba(255,71,87,0.3); color: #ff4757; }
.alert-info { background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.3); color: var(--c-cyan); }

/* ─── GOOGLE MAPS ─── */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  height: 320px;
  background: var(--c-bg-3);
}
.map-container iframe { width: 100%; height: 100%; border: none; filter: invert(90%) hue-rotate(180deg); }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, rgba(0,212,255,0.12) 0%, rgba(245,197,24,0.08) 100%);
  border: 1px solid var(--c-border-glow);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-cyan), var(--c-gold));
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.cta-banner p { font-size: 18px; color: var(--c-text-muted); margin-bottom: 36px; }

/* ─── FOOTER ─── */
footer {
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-border);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-about p { font-size: 14px; color: var(--c-text-muted); line-height: 1.7; margin: 16px 0 24px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--c-border);
  background: var(--c-card);
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition-bounce);
}
.social-btn:hover {
  background: rgba(0,212,255,0.1);
  border-color: var(--c-cyan);
  color: var(--c-cyan);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--c-text-muted);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--c-cyan); padding-left: 4px; }
.footer-links a i { font-size: 11px; color: var(--c-cyan); }

.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--c-text-faint); }
.footer-cert { display: flex; gap: 12px; align-items: center; }
.cert-badge {
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.15);
  color: var(--c-cyan);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* ─── WHATSAPP BUTTON ─── */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  filter: drop-shadow(0 8px 24px rgba(37,211,102,0.4));
  transition: var(--transition-bounce);
}
.whatsapp-btn:hover { transform: scale(1.06) translateY(-3px); }
.whatsapp-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  position: relative;
  flex-shrink: 0;
}
/* Pulse ring */
.whatsapp-icon::before,
.whatsapp-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: waPulse 2.5s ease-out infinite;
}
.whatsapp-icon::after { animation-delay: 1.2s; }
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}
.whatsapp-tooltip {
  background: rgba(10, 22, 40, 0.95);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 12px;
  padding: 10px 16px;
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  white-space: nowrap;
}
.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}
.whatsapp-tooltip strong { display: block; color: #25d366; font-size: 13px; font-weight: 700; }
.whatsapp-tooltip span { color: var(--c-text-muted); font-size: 11px; }

/* Scroll to top */
#scroll-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  color: var(--c-cyan);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  backdrop-filter: blur(20px);
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-bounce);
}
#scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#scroll-top:hover { background: rgba(0,212,255,0.1); border-color: var(--c-cyan); transform: translateY(-3px); }

/* ─── PAGE HERO (İç Sayfa Üst Başlık Bölümü) ─── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 40px) 0 45px;
  background: var(--grad-hero);
  border-bottom: 1px solid var(--c-border);
  overflow: hidden;
}
.page-hero-orb {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
  top: -120px;
  right: -80px;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.25;
  margin-bottom: 12px;
}
.page-hero p {
  color: var(--c-text-muted);
  font-size: 16px;
  max-width: 650px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .page-hero {
    padding: calc(var(--nav-height) + 25px) 0 35px;
  }
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 100px 0 32px;
  background: var(--c-bg-2);
  border-bottom: 1px solid var(--c-border);
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
}
.breadcrumb-list li { font-size: 14px; color: var(--c-text-faint); }
.breadcrumb-list li a { color: var(--c-text-muted); text-decoration: none; transition: var(--transition); }
.breadcrumb-list li a:hover { color: var(--c-cyan); }
.breadcrumb-list li.active { color: var(--c-cyan); }
.breadcrumb-sep { color: var(--c-text-faint); font-size: 12px; }

/* ─── ABOUT SECTION ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.about-stats-overlay {
  position: absolute;
  bottom: -20px; right: -20px;
  background: rgba(10,22,40,0.95);
  border: 1px solid var(--c-border-glow);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  backdrop-filter: blur(20px);
}
.about-content h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--c-white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.about-content p { font-size: 15px; color: var(--c-text-muted); line-height: 1.8; margin-bottom: 16px; }

/* Certifications */
.cert-list { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.cert-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.07);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 13px;
  color: var(--c-cyan);
  font-weight: 500;
}
.cert-item i { font-size: 12px; }

/* ─── LIGHTBOX ─── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 99990;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(20px);
}
.lightbox-overlay.open { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  color: var(--c-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: var(--transition-bounce);
}
.lightbox-close:hover { background: rgba(255,71,87,0.1); border-color: #ff4757; color: #ff4757; transform: rotate(90deg); }

/* ─── SERVICE DETAIL ─── */
.service-hero {
  padding: 120px 0 60px;
  background: var(--grad-hero);
  border-bottom: 1px solid var(--c-border);
  text-align: center;
}
.service-icon-large {
  width: 96px; height: 96px;
  border-radius: var(--radius-lg);
  background: rgba(0,212,255,0.12);
  border: 1px solid rgba(0,212,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  color: var(--c-cyan);
  margin: 0 auto 24px;
  box-shadow: var(--shadow-cyan);
}
.service-detail-content {
  background: var(--c-bg);
  padding: 80px 0;
}
.service-detail-body {
  max-width: 800px;
  margin: 0 auto;
}
.service-detail-body h2 { font-family: var(--font-heading); color: var(--c-white); font-size: 26px; margin: 40px 0 16px; }
.service-detail-body p { color: var(--c-text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
.service-detail-body ul { margin-bottom: 20px; padding-left: 0; list-style: none; }
.service-detail-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--c-text-muted);
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid var(--c-border);
}
.service-detail-body ul li::before { content: '✦'; color: var(--c-cyan); flex-shrink: 0; margin-top: 1px; }

/* ─── 404 ─── */
.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.page-404 h1 {
  font-family: var(--font-heading);
  font-size: 120px;
  font-weight: 900;
  color: var(--c-cyan);
  line-height: 1;
  text-shadow: var(--shadow-cyan);
  margin-bottom: 20px;
}
.page-404 h2 { font-size: 28px; color: var(--c-white); margin-bottom: 16px; }
.page-404 p { color: var(--c-text-muted); margin-bottom: 40px; font-size: 16px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  .write-review { padding: 32px 24px; }
  .hero-stats { gap: 24px; }
  .hero-stat-number { font-size: 32px; }
  .whatsapp-tooltip { display: none; }
}
