/* ============================================
   SADEM YANGIN - Ana Stil Dosyasi
   Renk Paleti: Kirmizi #D32F2F, Koyu #1a1a2e, Beyaz
============================================ */

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

:root {
  --primary: #D32F2F;
  --primary-dark: #B71C1C;
  --primary-light: #FF5252;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --gray: #6c757d;
  --light-gray: #f8f9fa;
  --white: #ffffff;
  --orange: #FF6F00;
  --yellow: #FFC107;
  --shadow: 0 10px 40px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

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

/* ============================================
   TOPBAR
============================================ */
.topbar {
  background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #2d0a14 100%);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Hareketli kırmızı/turuncu blob'lar - yatay süzülen */
.topbar::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 300px;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(230,57,70,0.45), transparent 60%);
  filter: blur(40px);
  animation: topbarBlobFloat1 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.topbar::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 280px;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255,111,0,0.35), transparent 60%);
  filter: blur(45px);
  animation: topbarBlobFloat2 15s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes topbarBlobFloat1 {
  0%, 100% { transform: translateX(0) scale(1); opacity: 0.7; }
  50% { transform: translateX(40vw) scale(1.2); opacity: 1; }
}

@keyframes topbarBlobFloat2 {
  0%, 100% { transform: translateX(0) scale(1); opacity: 0.6; }
  50% { transform: translateX(-40vw) scale(1.15); opacity: 0.9; }
}

/* Alttan yükselen alev parçacıkları - 8 adet kıvılcım */
.topbar .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Alev kıvılcımları için sprite katmanı */
.topbar .topbar-flames {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.topbar .topbar-flames::before,
.topbar .topbar-flames::after,
.topbar .topbar-flames span {
  content: '';
  position: absolute;
  bottom: -10px;
  width: 6px;
  height: 10px;
  background: linear-gradient(to top,
    #ffeb3b 0%,
    #ff9800 40%,
    #ff3838 75%,
    transparent 100%);
  border-radius: 50% 50% 20% 20%;
  filter: blur(1px);
  opacity: 0;
  animation: topbarEmber 4s ease-in-out infinite;
}

.topbar .topbar-flames::before { left: 12%; animation-delay: 0s; }
.topbar .topbar-flames::after { left: 38%; animation-delay: 1.2s; width: 5px; height: 9px; }
.topbar .topbar-flames span:nth-child(1) { left: 62%; animation-delay: 2.1s; width: 7px; height: 11px; }
.topbar .topbar-flames span:nth-child(2) { left: 82%; animation-delay: 0.7s; width: 5px; height: 8px; }
.topbar .topbar-flames span:nth-child(3) { left: 22%; animation-delay: 2.8s; width: 4px; height: 7px; }
.topbar .topbar-flames span:nth-child(4) { left: 50%; animation-delay: 1.6s; width: 6px; height: 10px; }
.topbar .topbar-flames span:nth-child(5) { left: 72%; animation-delay: 3.2s; width: 4px; height: 7px; }
.topbar .topbar-flames span:nth-child(6) { left: 92%; animation-delay: 0.4s; width: 5px; height: 9px; }

@keyframes topbarEmber {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }
  10% {
    opacity: 1;
    transform: translateY(-5px) scale(1);
  }
  90% {
    opacity: 0.6;
    transform: translateY(-30px) scale(0.7);
  }
  100% {
    opacity: 0;
    transform: translateY(-45px) scale(0.3);
  }
}

/* Alt kenarda kırmızı ışıma çizgisi */
.topbar > .container::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230,57,70,0.6), rgba(255,111,0,0.6), rgba(230,57,70,0.6), transparent);
  background-size: 200% 100%;
  animation: topbarUnderGlow 6s linear infinite;
  z-index: 3;
}

@keyframes topbarUnderGlow {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.topbar-left a,
.topbar-right a {
  color: rgba(255,255,255,0.8);
  margin-right: 20px;
  font-size: 13px;
}

.topbar-left a:hover,
.topbar-right a:hover {
  color: var(--yellow);
}

.topbar-left i,
.topbar-right i {
  margin-right: 5px;
  color: var(--primary-light);
}

.topbar-right {
  display: flex;
  gap: 15px;
}

.topbar-right a {
  margin-right: 0;
  font-size: 16px;
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 4px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 95px;
}

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

.logo-icon {
  width: 55px;
  height: 55px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-icon i {
  color: var(--white);
  font-size: 28px;
}

.logo-text h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.logo-text span {
  font-size: 10px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* ============ MODERN ALARMAX-STYLE NAVBAR ============ */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.nav-menu li a {
  padding: 12px 18px;
  font-weight: 700;
  font-size: 13px;
  color: var(--dark, #1d3557);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
  background: transparent !important;
  border-radius: 0 !important;
}

/* Hover/active için ince animated underline */
.nav-menu li a:not(.nav-cta)::before {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 4px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary, #e63946), #ff6f00);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

/* Aktif item için küçük üst nokta */
.nav-menu li a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) scale(0);
  width: 6px;
  height: 6px;
  background: var(--primary, #e63946);
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 12px rgba(230,57,70,0.6);
}

.nav-menu li a:not(.nav-cta):hover {
  color: var(--primary, #e63946);
  background: transparent !important;
}

.nav-menu li a:not(.nav-cta):hover::before {
  transform: scaleX(1);
}

.nav-menu li a:not(.nav-cta).active {
  color: var(--primary, #e63946);
  background: transparent !important;
}

.nav-menu li a:not(.nav-cta).active::before {
  transform: scaleX(1);
}

.nav-menu li a:not(.nav-cta).active::after {
  transform: translateX(-50%) translateY(-50%) scale(1);
}

/* MODERN PREMIUM CTA - Beyaz + kırmızı text, hover'da dolu gradient */
.nav-cta {
  background: #fff !important;
  color: var(--primary, #e63946) !important;
  padding: 13px 26px !important;
  border-radius: 50px !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  margin-left: 12px;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--primary, #e63946);
  box-shadow:
    0 8px 24px -10px rgba(230,57,70,0.35),
    0 1px 0 rgba(255,255,255,0.8) inset;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover'da gradient dolacak arka plan - soldan sağa açılır */
.nav-cta::before {
  content: '' !important;
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary, #e63946) 0%, #ff3838 50%, #ff6f00 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.nav-cta::after { display: none !important; }

.nav-cta i,
.nav-cta {
  position: relative;
  z-index: 2;
}

.nav-cta:hover {
  color: #fff !important;
  border-color: transparent;
  transform: translateY(-3px) !important;
  box-shadow:
    0 14px 32px -8px rgba(230,57,70,0.55) !important;
}

.nav-cta:hover::before {
  transform: scaleX(1);
}

.nav-cta i {
  margin-right: 6px;
  font-size: 12px;
  position: relative;
  z-index: 2;
  animation: ctaPhoneRing 3s ease-in-out infinite;
}

@keyframes ctaPhoneRing {
  0%, 88%, 100% { transform: rotate(0); }
  90% { transform: rotate(-12deg); }
  92% { transform: rotate(12deg); }
  94% { transform: rotate(-10deg); }
  96% { transform: rotate(8deg); }
  98% { transform: rotate(-3deg); }
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(211,47,47,0.1)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>') no-repeat bottom;
  background-size: cover;
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-particles .particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.hero-particles .particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.hero-particles .particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; }
.hero-particles .particle:nth-child(3) { top: 40%; left: 50%; animation-delay: 2s; }
.hero-particles .particle:nth-child(4) { top: 80%; left: 30%; animation-delay: 3s; }
.hero-particles .particle:nth-child(5) { top: 10%; left: 70%; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-20px) scale(1.5); opacity: 0.6; }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(211, 47, 47, 0.15);
  color: var(--primary-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 25px;
  border: 1px solid rgba(211, 47, 47, 0.3);
}

.hero-badge i {
  font-size: 10px;
  animation: pulse 2s infinite;
}

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

.hero h1 {
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--primary-light);
  position: relative;
}

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 35px;
  max-width: 500px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 5px 25px rgba(211, 47, 47, 0.4);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(211, 47, 47, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  position: relative;
  width: 420px;
  height: 420px;
}

.hero-card-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--orange));
  border-radius: 30px;
  transform: rotate(5deg);
  opacity: 0.3;
}

.hero-card-main {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.9), rgba(255, 111, 0, 0.9));
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.hero-card-main i {
  font-size: 80px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-card-main h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.hero-card-main p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}

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

.hero-stat h3 {
  font-size: 36px;
  color: var(--primary-light);
  font-weight: 900;
}

.hero-stat p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0;
}

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

/* ============ MODERN SECTION HEADER ============ */
.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Arkada büyük dekoratif gradient blob */
.section-header::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background:
    radial-gradient(ellipse at center, rgba(230,57,70,0.12), transparent 60%),
    radial-gradient(ellipse at 30% 50%, rgba(255,111,0,0.08), transparent 60%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
  animation: sectionHeaderGlow 5s ease-in-out infinite;
}

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

/* BADGE - Animated gradient border + glow */
.section-header .badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--primary, #e63946), #ff6f00, var(--primary, #e63946)) border-box;
  background-size: auto, 200% 200%;
  color: var(--primary, #e63946);
  padding: 10px 24px;
  border: 2px solid transparent;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  box-shadow:
    0 8px 25px -8px rgba(230,57,70,0.4),
    0 0 0 1px rgba(230,57,70,0.05);
  animation: badgeGradientShift 4s ease-in-out infinite;
  transition: transform 0.3s ease;
}

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

.section-header .badge:hover {
  transform: translateY(-2px) scale(1.03);
}

.section-header .badge i {
  background: linear-gradient(135deg, var(--primary, #e63946), #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 14px;
  animation: badgeIconPulse 2s ease-in-out infinite;
}

@keyframes badgeIconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* H2 - Modern büyük başlık */
.section-header h2 {
  font-size: 48px;
  color: var(--dark, #1d3557);
  margin: 0 0 20px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
}

/* Başlığın altında çekilen animasyonlu çizgi */
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary, #e63946), #ff6f00, var(--primary, #e63946), transparent);
  background-size: 200% 100%;
  border-radius: 2px;
  animation: underlineShimmer 3s linear infinite;
}

@keyframes underlineShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* "Çözümlerimiz" span - gradient + shimmer */
.section-header h2 span {
  background: linear-gradient(135deg,
    var(--primary, #e63946) 0%,
    #ff3838 25%,
    #ff6f00 50%,
    #ff3838 75%,
    var(--primary, #e63946) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  animation: gradientShine 4s ease-in-out infinite;
}

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

.section-header p {
  font-size: 17px;
  color: #666;
  max-width: 640px;
  margin: 30px auto 0;
  line-height: 1.75;
  font-weight: 400;
}

.bg-light {
  background: var(--light-gray);
}

.bg-dark {
  background: var(--dark);
}

/* ============================================
   SERVICES / HIZMETLER
============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  perspective: 1500px;
}

/* ============ MODERN 3D SERVICE CARD ============ */
.service-card {
  background: linear-gradient(145deg, #ffffff, #f8f9fc);
  border-radius: 24px;
  padding: 45px 32px 38px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  box-shadow:
    0 2px 8px rgba(0,0,0,0.04),
    0 12px 24px -10px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.8);
  isolation: isolate;
  cursor: pointer;
}

/* Üst gradient çizgi */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary, #e63946), #ff6f00, var(--primary, #e63946));
  border-radius: 0 0 8px 8px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 5;
  box-shadow: 0 0 25px rgba(230,57,70,0.6);
}

/* Arka plan ışıma efekti */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%),
              rgba(230,57,70,0.15) 0%,
              rgba(255,111,0,0.08) 30%,
              transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-12px) rotateX(4deg) rotateY(-2deg);
  box-shadow:
    0 30px 60px -20px rgba(230,57,70,0.4),
    0 18px 36px -12px rgba(255,111,0,0.25),
    0 0 0 1px rgba(230,57,70,0.1),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

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

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

/* İkon container - 3D depth */
.service-icon {
  width: 90px;
  height: 90px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(230,57,70,0.08), rgba(255,111,0,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  transform: translateZ(20px);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.6),
    0 8px 20px -8px rgba(230,57,70,0.2);
}

/* İkon parıltı halkası */
.service-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--primary, #e63946), #ff6f00);
  opacity: 0;
  z-index: -1;
  filter: blur(15px);
  transition: opacity 0.5s ease;
}

.service-icon i {
  font-size: 38px;
  background: linear-gradient(135deg, var(--primary, #e63946), #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 8px rgba(230,57,70,0.3));
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary, #e63946) 0%, #ff3838 50%, #ff6f00 100%);
  transform: translateZ(40px) scale(1.08) rotate(-5deg);
  box-shadow:
    0 25px 50px -10px rgba(230,57,70,0.55),
    inset 0 2px 0 rgba(255,255,255,0.3);
}

.service-card:hover .service-icon::before { opacity: 0.7; }

.service-card:hover .service-icon i {
  color: #fff;
  -webkit-text-fill-color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  transform: rotateY(360deg) scale(1.05);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

/* ALEVLER - hover'da ikonun üstünde yükselen */
.service-icon .flame-particles {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 40px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.service-card:hover .flame-particles { opacity: 1; }

.service-icon .flame-particles span {
  position: absolute;
  bottom: 0;
  width: 14px;
  height: 22px;
  background: linear-gradient(to top,
    #ffeb3b 0%,
    #ff9800 35%,
    #ff3838 70%,
    transparent 100%);
  border-radius: 50% 50% 20% 20% / 60% 60% 40% 40%;
  filter: blur(1px);
  animation: serviceFlame 1.4s ease-in-out infinite;
}

.service-icon .flame-particles span:nth-child(1) {
  left: 6px;
  animation-delay: 0s;
  width: 10px;
  height: 16px;
}
.service-icon .flame-particles span:nth-child(2) {
  left: 22px;
  animation-delay: 0.3s;
}
.service-icon .flame-particles span:nth-child(3) {
  left: 38px;
  animation-delay: 0.6s;
  width: 10px;
  height: 16px;
}

@keyframes serviceFlame {
  0% { opacity: 0; transform: translateY(6px) scale(0.5); }
  40% { opacity: 1; transform: translateY(-2px) scale(1); }
  100% { opacity: 0; transform: translateY(-30px) scale(0.4); }
}

.service-card h3 {
  font-size: 21px;
  color: var(--dark, #1d3557);
  margin-bottom: 14px;
  font-weight: 800;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.service-card:hover h3 {
  transform: translateZ(15px);
}

.service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.service-card:hover p {
  transform: translateZ(10px);
}

/* ============================================
   ABOUT / HAKKIMIZDA
============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  padding: 30px 30px 50px 30px;
}

/* Dekoratif gradient blob arka planda */
.about-image::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--primary), var(--orange, #ff6f00));
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.28;
  z-index: 0;
  animation: blobFloat 6s ease-in-out infinite;
  pointer-events: none;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: 30px;
  right: 10px;
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, #ff6f00, var(--primary));
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  z-index: 0;
  animation: blobFloat 7s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(15px, -15px) scale(1.1); }
}

.about-image-main {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 25px 60px -15px rgba(211, 47, 47, 0.35),
    0 0 0 1px rgba(255,255,255,0.08);
  transform: rotate(-1.5deg);
  transform-origin: center center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  background: #1a1a1a;
}

.about-image-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(211, 47, 47, 0.15) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Parlama efekti */
.about-image-main::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  z-index: 3;
  transition: left 0.8s ease;
  pointer-events: none;
}

.about-image:hover .about-image-main {
  transform: rotate(0deg) translateY(-8px);
  box-shadow:
    0 35px 80px -10px rgba(211, 47, 47, 0.5),
    0 0 0 1px rgba(255,255,255,0.12);
}

.about-image:hover .about-image-main::after {
  left: 150%;
}

.about-image-main img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.6s ease;
}

.about-image:hover .about-image-main img {
  transform: scale(1.05);
}

/* Dekoratif kırmızı çerçeve */
.about-image-main {
  border: 3px solid rgba(255,255,255,0.9);
}

.about-experience {
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary), #ff3838);
  color: var(--white);
  padding: 28px 38px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(211, 47, 47, 0.55);
  z-index: 5;
  border: 4px solid #fff;
  transform: rotate(3deg);
  transition: all 0.4s ease;
}

.about-experience:hover {
  transform: rotate(0deg) scale(1.05);
}

.about-experience::before {
  content: '\f091';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: -12px;
  left: -12px;
  width: 36px;
  height: 36px;
  background: #fff;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.about-experience h3 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}

.about-experience p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.about-content h2 {
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 20px;
}

.about-content h2 span {
  color: var(--primary);
}

.about-content > p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature i {
  width: 40px;
  height: 40px;
  background: rgba(211, 47, 47, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

.about-feature span {
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
}

/* ============================================
   WHY US / NEDEN BIZ
============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  text-align: center;
  padding: 40px 25px;
  border-radius: 20px;
  background: var(--white);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.why-card .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-card .icon i {
  color: var(--white);
  font-size: 28px;
}

.why-card h4 {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================
   STATS
============================================ */
.stats-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-item i {
  font-size: 35px;
  margin-bottom: 15px;
  opacity: 0.8;
}

.stat-item h3 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 14px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 35px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* ============================================
   CONTACT / ILETISIM
============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

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

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow);
}

.contact-info-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card .icon i {
  color: var(--white);
  font-size: 24px;
}

.contact-info-card h4 {
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 5px;
}

.contact-info-card p {
  font-size: 14px;
  color: var(--gray);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  transition: var(--transition);
  background: var(--light-gray);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.1);
}

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

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

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-submit:hover {
  background: var(--primary-dark);
  box-shadow: 0 5px 25px rgba(211, 47, 47, 0.4);
  transform: translateY(-2px);
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-about .logo-text h2 {
  color: var(--white);
}

.footer-about p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.8;
  margin-top: 15px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer h4 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links li a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
  font-size: 12px;
}

.footer-links li a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 3px;
}

.footer-bottom {
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   PAGE HEADER (ic sayfalar)
============================================ */
.page-header {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(211, 47, 47, 0.1), transparent);
}

.page-header h1 {
  font-size: 42px;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: var(--primary-light);
}

.breadcrumb span {
  color: rgba(255,255,255,0.4);
}

/* ============================================
   ABOUT PAGE EXTRAS
============================================ */
.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
  opacity: 0.2;
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: 45%;
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.timeline-content h4 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--gray);
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.2);
  z-index: 2;
}

/* ============================================
   SERVICES PAGE EXTRAS
============================================ */
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.service-detail-card:nth-child(even) {
  direction: rtl;
}

.service-detail-card:nth-child(even) > * {
  direction: ltr;
}

.service-detail-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-detail-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.service-detail-content h3 {
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 15px;
}

.service-detail-content p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-detail-content ul {
  list-style: none;
  margin-bottom: 25px;
}

.service-detail-content ul li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-detail-content ul li i {
  color: var(--primary);
  font-size: 16px;
}

/* ============================================
   MAP
============================================ */
.map-section {
  height: 400px;
  width: 100%;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .hero h1 { font-size: 40px; }
  .hero .container { flex-direction: column; text-align: center; }
  .hero p { margin: 0 auto 35px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .hero-visual:has(.hero-banner-image) { display: flex; margin-top: 30px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  /* Tablet: hamburger menü (logo + Hemen Ara karışmasın) */
  .navbar .container { position: relative; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    border-top: 1px solid rgba(0,0,0,0.06);
    z-index: 1001;
  }
  .nav-menu.active { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-menu li a:not(.nav-cta) { display: block; padding: 13px 16px; }
  .nav-menu li a:not(.nav-cta)::before { display: none; }
  .nav-menu .nav-cta {
    margin-left: 0 !important;
    margin-top: 8px;
    justify-content: center;
    width: 100%;
  }
  .menu-toggle { display: flex; }
}

@media (max-width: 768px) {
  .topbar { display: none; }

  .navbar .container { height: 70px; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow);
    gap: 5px;
  }

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

  .menu-toggle { display: flex; }

  .hero {
    min-height: auto;
    padding: 50px 0 60px;
  }
  .hero h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .hero h1 br { display: none; }
  .hero p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 100%;
  }
  .hero-badge {
    font-size: 11px;
    padding: 8px 14px;
    margin-bottom: 20px;
  }
  .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 18px; justify-content: center; margin-top: 28px; }
  .hero-stat h3 { font-size: 28px; }
  .hero-stat p { font-size: 12px; }

  .section { padding: 60px 0; }
  .section-header { margin-bottom: 45px; }
  .section-header h2 { font-size: 30px; letter-spacing: -0.5px; }
  .section-header h2::after { width: 60px; height: 3px; bottom: -10px; }
  .section-header p { font-size: 15px; margin-top: 24px; }
  .section-header::before { width: 280px; height: 140px; filter: blur(30px); }
  .section-header .badge { padding: 8px 18px; font-size: 11px; letter-spacing: 1.5px; }

  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-card:nth-child(even) { direction: ltr; }

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

  .page-header { padding: 100px 0 50px; }
  .page-header h1 { font-size: 30px; }
}

@media (max-width: 480px) {
  .container { padding: 0 15px; }
  .hero { padding: 40px 0 50px; }
  .hero h1 { font-size: 26px; line-height: 1.25; }
  .hero-stat h3 { font-size: 24px; }
  .btn { padding: 13px 25px; font-size: 14px; }
  .contact-form { padding: 25px; }
  .stats-grid { grid-template-columns: 1fr; }
  .about-experience { position: relative; bottom: auto; right: auto; margin-top: 20px; }
}

/* ============================================
   ANIMATIONS
============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(211, 47, 47, 0.4);
  transition: var(--transition);
  z-index: 999;
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.scroll-top.show {
  display: flex;
}

/* ============ FOOTER DEVELOPER CREDIT ============ */
.dev-credit-footer {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.dev-credit-footer i { color: var(--primary, #e63946); }
.dev-credit-footer strong {
  background: linear-gradient(135deg, var(--primary, #e63946), #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}
.dev-credit-footer:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(230,57,70,0.4);
  transform: translateY(-2px);
}

/* ============ BENİ ARA BUTONU + MODAL ============ */
.callme-btn {
  position: fixed;
  bottom: 84px;
  left: 24px;
  height: 44px;
  padding: 0 18px 0 14px;
  background: linear-gradient(135deg, #1d3557, #2c4a73);
  border: none;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(29,53,87,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
  z-index: 999;
  font-family: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.callme-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(29,53,87,0.6); }
.callme-btn i { font-size: 16px; animation: callmeRing 2.5s ease-in-out infinite; }
.callme-btn-label { font-size: 14px; font-weight: 800; letter-spacing: 0.3px; }
@keyframes callmeRing {
  0%,85%,100% { transform: rotate(0); }
  88% { transform: rotate(-14deg); } 91% { transform: rotate(14deg); }
  94% { transform: rotate(-10deg); } 97% { transform: rotate(6deg); }
}

/* Modal */
.callme-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,15,30,0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}
.callme-overlay.active { opacity: 1; visibility: visible; }

.callme-modal {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 40px 90px -20px rgba(0,0,0,0.5);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.callme-overlay.active .callme-modal { transform: translateY(0) scale(1); }

.callme-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  color: #aaa;
  cursor: pointer;
  transition: color 0.2s;
}
.callme-close:hover { color: var(--primary, #e63946); }

.callme-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--primary, #e63946), #ff6f00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 14px 30px -8px rgba(230,57,70,0.55);
  animation: callmeRing 2.5s ease-in-out infinite;
}

.callme-modal h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark, #1d3557);
  margin-bottom: 8px;
}
.callme-modal > p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
}

.callme-modal input[type="text"],
.callme-modal input[type="tel"] {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 12px;
  border: 2px solid #eef0f4;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
}
.callme-modal input:focus {
  outline: none;
  border-color: var(--primary, #e63946);
}

.callme-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--primary, #e63946), #ff6f00);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 10px 25px -8px rgba(230,57,70,0.5);
}
.callme-submit:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(230,57,70,0.6); }
.callme-submit:disabled { opacity: 0.7; cursor: not-allowed; }

.callme-result {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  min-height: 20px;
}
.callme-result.ok { color: #10b981; }
.callme-result.err { color: var(--primary, #e63946); }

@media (max-width: 768px) {
  .callme-btn { bottom: 74px; left: 20px; height: 40px; padding: 0 14px 0 11px; }
  .callme-btn-label { font-size: 13px; }
  .callme-modal { padding: 34px 22px 26px; }
}

/* ============ WHATSAPP YANGIN BUTONU - İkon + yazı + uç alev ============ */
.fire-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  height: 44px;
  padding: 0 18px 0 14px;
  background: linear-gradient(135deg, #e63946 0%, #ff3838 50%, #ff6f00 100%);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  box-shadow:
    0 6px 22px rgba(230,57,70,0.5),
    0 0 0 3px rgba(255,255,255,0.12),
    inset 0 1px 0 rgba(255,255,255,0.3);
  z-index: 999;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  text-decoration: none;
  overflow: visible;
}

/* Yangın söndürme tüpü ikonu */
.fire-btn-extinguisher {
  position: relative;
  z-index: 3;
  font-size: 16px;
  color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.35));
  animation: extinguisherShake 4s ease-in-out infinite;
}

@keyframes extinguisherShake {
  0%, 88%, 100% { transform: rotate(0); }
  90% { transform: rotate(-12deg); }
  92% { transform: rotate(12deg); }
  94% { transform: rotate(-10deg); }
  96% { transform: rotate(8deg); }
  98% { transform: rotate(-3deg); }
}

.fire-btn-label {
  position: relative;
  z-index: 3;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.4px;
  white-space: nowrap;
  text-shadow: 0 2px 4px rgba(0,0,0,0.25);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* SAĞ UÇTAN ALEV FIŞKIRIYOR */
.fire-btn-tip-flames {
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 60px;
  pointer-events: none;
  z-index: 4;
}

.tip-flame {
  position: absolute;
  background: linear-gradient(to top,
    #ffeb3b 0%,
    #ffc107 25%,
    #ff9800 50%,
    #ff3838 80%,
    transparent 100%);
  border-radius: 50% 50% 20% 20% / 60% 60% 40% 40%;
  filter: blur(0.8px);
  opacity: 0;
  bottom: 50%;
  animation: tipFlameRise 1.4s ease-in-out infinite;
  transform-origin: center bottom;
}

/* Alev 1 - merkez büyük */
.tip-flame:nth-child(1) {
  left: 7px;
  width: 12px;
  height: 22px;
  animation-delay: 0s;
}

/* Alev 2 - sol küçük */
.tip-flame:nth-child(2) {
  left: 2px;
  width: 7px;
  height: 13px;
  animation-delay: 0.3s;
}

/* Alev 3 - sağ küçük */
.tip-flame:nth-child(3) {
  left: 17px;
  width: 7px;
  height: 15px;
  animation-delay: 0.5s;
}

/* Alev 4 - üst orta - çok küçük kıvılcım */
.tip-flame:nth-child(4) {
  left: 10px;
  width: 5px;
  height: 10px;
  animation-delay: 0.8s;
  filter: blur(0.4px);
}

@keyframes tipFlameRise {
  0% {
    opacity: 0;
    transform: translateY(4px) scale(0.5) rotate(-3deg);
  }
  30% {
    opacity: 1;
    transform: translateY(-8px) scale(1.05) rotate(2deg);
  }
  60% {
    opacity: 0.9;
    transform: translateY(-22px) scale(0.95) rotate(-3deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px) scale(0.4) rotate(5deg);
  }
}

/* Sağ tarafa kırmızı/turuncu glow */
.fire-btn::after {
  content: '';
  position: absolute;
  right: -14px;
  top: 50%;
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, rgba(255,140,0,0.7), transparent 70%);
  filter: blur(8px);
  transform: translateY(-50%);
  animation: tipGlow 1.4s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes tipGlow {
  0%, 100% { opacity: 0.5; transform: translateY(-50%) scale(1); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.3); }
}

@keyframes fireBtnShake {
  0%, 88%, 100% { transform: rotate(0); }
  90% { transform: rotate(-15deg); }
  92% { transform: rotate(15deg); }
  94% { transform: rotate(-15deg); }
  96% { transform: rotate(10deg); }
  98% { transform: rotate(-5deg); }
}

.fire-btn:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow:
    0 14px 40px rgba(230,57,70,0.7),
    0 0 0 4px rgba(255,255,255,0.25),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

/* Pulse halkası */
.fire-btn-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(230,57,70,0.5);
  z-index: 1;
  animation: firePulse 2s infinite;
  pointer-events: none;
}

@keyframes firePulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Üstten yükselen alev parçacıkları - tüpün üstünde */
.fire-btn-flames {
  position: absolute;
  top: -8px;
  left: 24px;
  width: 40px;
  height: 30px;
  pointer-events: none;
  z-index: 2;
}

.flame {
  position: absolute;
  bottom: 0;
  width: 10px;
  height: 18px;
  background: linear-gradient(to top,
    #ffeb3b 0%,
    #ff9800 40%,
    #ff3838 80%,
    transparent 100%);
  border-radius: 50% 50% 20% 20% / 60% 60% 40% 40%;
  filter: blur(1px);
  opacity: 0;
  animation: flameRise 1.6s ease-in-out infinite;
}

.flame:nth-child(1) {
  left: 4px;
  animation-delay: 0s;
  width: 8px;
  height: 14px;
}

.flame:nth-child(2) {
  left: 16px;
  animation-delay: 0.4s;
  width: 12px;
  height: 22px;
}

.flame:nth-child(3) {
  left: 28px;
  animation-delay: 0.8s;
  width: 8px;
  height: 14px;
}

@keyframes flameRise {
  0% { opacity: 0; transform: translateY(4px) scale(0.6); }
  40% { opacity: 0.95; transform: translateY(-4px) scale(1); }
  100% { opacity: 0; transform: translateY(-22px) scale(0.5); }
}

@media (max-width: 768px) {
  .fire-btn {
    bottom: 20px;
    left: 20px;
    height: 48px;
    padding: 0 18px 0 14px;
    gap: 8px;
  }
  .fire-btn-extinguisher { font-size: 18px; }
  .fire-btn-label { font-size: 15px; }
  .fire-btn-tip-flames { width: 32px; height: 60px; right: -8px; }
  .tip-flame:nth-child(1) { width: 13px; height: 24px; }
  .tip-flame:nth-child(2) { width: 8px; height: 14px; }
  .tip-flame:nth-child(3) { width: 8px; height: 16px; }
  .tip-flame:nth-child(4) { width: 6px; height: 11px; }
}

/* ============ HİZMETLER YENİ TASARIM ============ */
/* HERO BANNER - Düz gradient + animasyon */
.hizmet-hero {
  position: relative;
  min-height: 55vh;
  background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #2d0a14 100%);
  display: flex;
  align-items: center;
  padding: 100px 0 90px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

/* Hareketli kırmızı blob arka planda */
.hizmet-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

.hizmet-hero-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(211,47,47,0.55), transparent 65%);
  top: -150px;
  right: -100px;
  animation: heroBlobFloat 8s ease-in-out infinite;
}

.hizmet-hero-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,111,0,0.4), transparent 65%);
  bottom: -150px;
  left: -100px;
  animation: heroBlobFloat 10s ease-in-out infinite reverse;
}

@keyframes heroBlobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

/* Subtle grid pattern */
.hizmet-hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

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

.hizmet-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.hizmet-hero-badge .pulse {
  width: 9px;
  height: 9px;
  background: #ff3838;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,56,56,0.8);
  animation: pulseDot 2s infinite;
}

.hizmet-hero h1 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hizmet-hero h1 span {
  background: linear-gradient(135deg, #ff6f00, #ff3838);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hizmet-hero p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 650px;
  margin-bottom: 35px;
}

.hizmet-hero-stats {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.hh-stat {
  display: flex;
  flex-direction: column;
}

.hh-stat strong {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, #ff6f00, #ff3838);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hh-stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hh-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.2);
}

/* BENTO GRID */
.bento-section { padding: 100px 0; }

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

.bento-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -15px rgba(211,47,47,0.25);
}

/* Büyük featured kart - 2 sütun 2 satır */
.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  background-size: cover;
  background-position: center;
  color: #fff;
  min-height: 580px;
}

/* Geniş kart - 2 sütun 1 satır */
.bento-wide {
  grid-column: span 2;
  background-size: cover;
  background-position: center;
  color: #fff;
}

/* Icon card - 1 sütun 1 satır */
.bento-icon {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.bento-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), #ff6f00);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  margin-bottom: 20px;
  box-shadow: 0 12px 30px rgba(211,47,47,0.35);
  transition: transform 0.3s;
}

.bento-icon:hover .bento-icon-wrap {
  transform: rotate(-10deg) scale(1.1);
}

.bento-icon h3 {
  font-size: 20px;
  color: var(--dark, #1d3557);
  margin-bottom: 10px;
  font-weight: 800;
}

.bento-icon p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.bento-list {
  list-style: none;
  padding: 0;
  margin-top: auto;
}

.bento-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 13px;
  color: #555;
  border-top: 1px dashed rgba(0,0,0,0.08);
}

.bento-list li:first-child { border-top: 0; }

.bento-list li i {
  color: var(--primary);
  font-size: 11px;
  background: rgba(211,47,47,0.1);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Featured kart içerik */
.bento-large .bento-content,
.bento-wide .bento-content {
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.bento-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  color: #fff;
}

.bento-tag-gold {
  background: linear-gradient(135deg, rgba(255,215,0,0.4), rgba(255,140,0,0.3));
  border-color: rgba(255,215,0,0.5);
}

.bento-large h3,
.bento-wide h3 {
  font-size: 32px;
  margin-bottom: 12px;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
}

.bento-large h3 i,
.bento-wide h3 i {
  margin-right: 10px;
  opacity: 0.9;
}

.bento-large p,
.bento-wide p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 22px;
  max-width: 500px;
}

.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #fff;
  color: var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s;
}

.bento-link:hover {
  background: var(--primary);
  color: #fff;
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(211,47,47,0.4);
}

/* CTA Card - son satırı tam dolduran 2 sütun */
.bento-cta {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--primary), #ff6f00);
  color: #fff;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 30px;
  padding: 40px;
  flex-wrap: wrap;
}

.bento-cta .bento-cta-icon {
  margin: 0;
  flex-shrink: 0;
}

.bento-cta > div:not(.bento-cta-icon),
.bento-cta h3,
.bento-cta p,
.bento-cta-btn {
  text-align: left;
}

.bento-cta-content {
  flex: 1;
  min-width: 200px;
}

.bento-cta-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  margin: 0 auto 18px;
  border: 1px solid rgba(255,255,255,0.3);
}

.bento-cta h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 800;
}

.bento-cta p {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.bento-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #fff;
  color: var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  transition: all 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.bento-cta-btn:hover {
  transform: scale(1.05);
}

/* SADEM SHOWCASE BANNER */
.showcase-section {
  padding: 60px 0 100px;
  position: relative;
  overflow: hidden;
}

.showcase-banner {
  position: relative;
  border-radius: 32px;
  overflow: visible;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
}

/* Glow halkası arkada */
.showcase-glow {
  position: absolute;
  inset: -60px;
  background:
    radial-gradient(circle at 20% 50%, rgba(211,47,47,0.45), transparent 55%),
    radial-gradient(circle at 80% 50%, rgba(255,111,0,0.35), transparent 55%);
  filter: blur(70px);
  z-index: 0;
  animation: showcaseGlow 5s ease-in-out infinite;
  border-radius: 50%;
}

@keyframes showcaseGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.showcase-frame {
  position: relative;
  z-index: 2;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 50px 100px -25px rgba(211,47,47,0.5),
    0 30px 60px -20px rgba(0,0,0,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: showcaseFloat 6s ease-in-out infinite;
}

@keyframes showcaseFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.showcase-frame:hover {
  animation-play-state: paused;
  transform: translateY(-14px) scale(1.01);
  box-shadow:
    0 70px 130px -25px rgba(211,47,47,0.6),
    0 40px 80px -20px rgba(0,0,0,0.5);
}

.showcase-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* Köşe dekoratif L şekilleri */
.showcase-corner {
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 5;
  pointer-events: none;
}

.showcase-corner-tl {
  top: -10px;
  left: -10px;
  border-top: 4px solid var(--primary);
  border-left: 4px solid var(--primary);
  border-top-left-radius: 20px;
  box-shadow: -8px -8px 25px rgba(211,47,47,0.4);
}

.showcase-corner-tr {
  top: -10px;
  right: -10px;
  border-top: 4px solid #ff6f00;
  border-right: 4px solid #ff6f00;
  border-top-right-radius: 20px;
  box-shadow: 8px -8px 25px rgba(255,111,0,0.4);
}

.showcase-corner-bl {
  bottom: -10px;
  left: -10px;
  border-bottom: 4px solid #ff6f00;
  border-left: 4px solid #ff6f00;
  border-bottom-left-radius: 20px;
  box-shadow: -8px 8px 25px rgba(255,111,0,0.4);
}

.showcase-corner-br {
  bottom: -10px;
  right: -10px;
  border-bottom: 4px solid var(--primary);
  border-right: 4px solid var(--primary);
  border-bottom-right-radius: 20px;
  box-shadow: 8px 8px 25px rgba(211,47,47,0.4);
}

@media (max-width: 768px) {
  .showcase-section { padding: 40px 0 60px; }
  .showcase-corner { width: 30px; height: 30px; }
  .showcase-glow { inset: -30px; filter: blur(40px); }
}

/* PROCESS TIMELINE */
.process-section { padding: 100px 0; }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #ff6f00, var(--primary));
  border-radius: 2px;
  z-index: 0;
}

.process-step {
  background: #fff;
  padding: 30px 22px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s;
  z-index: 1;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -15px rgba(211,47,47,0.25);
}

.process-num {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  opacity: 0.2;
}

.process-icon {
  width: 50px;
  height: 50px;
  margin: -20px auto 14px;
  background: linear-gradient(135deg, var(--primary), #ff6f00);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 10px 25px rgba(211,47,47,0.35);
  position: relative;
  z-index: 2;
}

.process-step h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark, #1d3557);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 968px) {
  .hizmet-hero { background-attachment: scroll; min-height: 50vh; padding: 60px 0; }
  .hizmet-hero h1 { font-size: 38px; }
  .hizmet-hero p { font-size: 16px; }
  .hh-stat strong { font-size: 28px; }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
  .bento-large { grid-column: span 2; grid-row: span 1; min-height: 360px; }
  .bento-wide { grid-column: span 2; min-height: 280px; }
  .bento-large h3, .bento-wide h3 { font-size: 24px; }

  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .process-timeline::before { display: none; }
}

@media (max-width: 640px) {
  .hizmet-hero h1 { font-size: 28px; }
  .hizmet-hero p { font-size: 14px; }
  .hh-stat-divider { display: none; }
  .hh-stat strong { font-size: 24px; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-large, .bento-wide, .bento-cta { grid-column: span 1; min-height: 320px; }
  .bento-card { padding: 24px; }

  .bento-cta { flex-direction: column; gap: 16px; text-align: center; }
  .bento-cta > div:not(.bento-cta-icon),
  .bento-cta-content { text-align: center; }

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

/* ============ HAKKIMIZDA - GENİŞ İÇERİK ============ */
.about-intro-section { padding: 80px 0 60px; }
.about-intro {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}
.about-intro h2 {
  font-size: 36px;
  color: var(--dark, #1d3557);
  line-height: 1.3;
  margin: 20px 0 24px;
}
.about-intro h2 span { color: var(--primary); }
.about-intro p {
  font-size: 16px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 16px;
  text-align: left;
}
.about-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 30px;
  text-align: left;
}
.about-features-grid .about-feature {
  background: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

/* ============ BROŞÜRLER - MİNİ KOMPAKT ============ */
.brochures-section { padding: 60px 0; }

.brochures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 360px));
  gap: 16px;
  margin-top: 30px;
  justify-content: center;
}

/* Mini broşür kartı - yatay kompakt */
.brochure-mini {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.brochure-mini::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), #ff6f00);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}

.brochure-mini:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(211,47,47,0.25);
  border-color: transparent;
}

.brochure-mini:hover::before { opacity: 1; }

.brochure-mini > * {
  position: relative;
  z-index: 1;
}

.brochure-mini-cover {
  width: 70px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #f5f5f5, #e9ecef);
  position: relative;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
  transform: rotate(-2deg);
  transition: transform 0.3s;
}

.brochure-mini:hover .brochure-mini-cover {
  transform: rotate(0) scale(1.05);
}

.brochure-mini-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brochure-mini-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: rgba(211,47,47,0.4);
}

.brochure-mini-badge {
  position: absolute;
  bottom: 4px;
  left: 4px;
  right: 4px;
  background: var(--primary);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 2px 0;
  text-align: center;
  border-radius: 3px;
}

.brochure-mini-info {
  flex: 1;
  min-width: 0;
}

.brochure-mini-info h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark, #1d3557);
  line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}

.brochure-mini:hover .brochure-mini-info h3 { color: #fff; }

.brochure-mini-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.brochure-mini:hover .brochure-mini-action { color: #fff; }

.brochure-mini-action i {
  width: 22px;
  height: 22px;
  background: rgba(211,47,47,0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  transition: all 0.3s;
}

.brochure-mini:hover .brochure-mini-action i {
  background: rgba(255,255,255,0.3);
  color: #fff;
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .brochures-grid { grid-template-columns: 1fr; max-width: 400px; margin: 30px auto 0; }
  .about-intro h2 { font-size: 26px; }
}

/* ============ PROFESYONEL EKİP BÖLÜMÜ ============ */
.team-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 55%, #2d0a14 100%);
  overflow: hidden;
  isolation: isolate;
}

.team-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  z-index: 0;
  pointer-events: none;
}

.team-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
}
.team-blob-1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(230,57,70,0.45), transparent 65%);
  top: -120px; left: -80px;
  animation: teamBlobFloat 9s ease-in-out infinite;
}
.team-blob-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,111,0,0.35), transparent 65%);
  bottom: -120px; right: -60px;
  animation: teamBlobFloat 11s ease-in-out infinite reverse;
}
@keyframes teamBlobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px,-30px) scale(1.12); }
}

.team-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

/* Görsel taraf */
.team-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 560px;
}

/* Arka büyük gradient daire */
.team-deco-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(230,57,70,0.35), transparent 60%),
    linear-gradient(135deg, rgba(230,57,70,0.18), rgba(255,111,0,0.12));
  z-index: 0;
  box-shadow: inset 0 0 80px rgba(230,57,70,0.2);
}

/* Dönen kesikli halkalar */
.team-deco-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.team-deco-ring-1 {
  width: 480px;
  height: 480px;
  margin: -240px 0 0 -240px;
  border: 2px dashed rgba(255,111,0,0.3);
  animation: teamRingSpin 28s linear infinite;
}
.team-deco-ring-2 {
  width: 540px;
  height: 540px;
  margin: -270px 0 0 -270px;
  border: 1px solid rgba(255,255,255,0.08);
  animation: teamRingSpin 40s linear infinite reverse;
}
@keyframes teamRingSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Nokta deseni */
.team-deco-dots {
  position: absolute;
  top: 8%;
  right: 6%;
  width: 110px;
  height: 110px;
  background-image: radial-gradient(rgba(255,111,0,0.5) 2px, transparent 2px);
  background-size: 18px 18px;
  z-index: 0;
  opacity: 0.6;
  animation: teamDotsFloat 6s ease-in-out infinite;
}
@keyframes teamDotsFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.team-image-glow {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse at center bottom, rgba(230,57,70,0.5), rgba(255,111,0,0.25) 40%, transparent 70%);
  filter: blur(45px);
  z-index: 0;
  animation: teamGlowPulse 4s ease-in-out infinite;
}
@keyframes teamGlowPulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}

/* Fotoğraf kartı - kenarlardan içe doğru gölge + vignette */
.team-photo-card {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  background: linear-gradient(160deg, #f4f7fb 0%, #e8edf5 100%);
  padding: 12px;
  box-shadow:
    0 30px 60px -15px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.12);
  overflow: hidden;
  animation: teamFloat 5s ease-in-out infinite;
}
@keyframes teamFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.team-photo-card img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 520px;
  border-radius: 16px;
}

/* İçe doğru gölge + köşe vignette */
.team-card-vignette {
  position: absolute;
  inset: 12px;
  border-radius: 16px;
  pointer-events: none;
  z-index: 3;
  box-shadow:
    inset 0 0 45px rgba(230,57,70,0.22),
    inset 0 0 100px rgba(255,111,0,0.14);
  background:
    radial-gradient(ellipse at center, transparent 52%, rgba(230,57,70,0.16) 100%);
}

/* Taban platform - figürün zemine basma hissi */
.team-platform {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 50px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.55), transparent 70%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(8px);
  animation: teamPlatformPulse 5s ease-in-out infinite;
}
@keyframes teamPlatformPulse {
  0%, 100% { width: 320px; opacity: 0.6; }
  50% { width: 300px; opacity: 0.8; }
}

/* İstatistik rozeti */
.team-stat-badge {
  position: absolute;
  top: 8%;
  right: 4%;
  z-index: 3;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary, #e63946), #ff6f00);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  box-shadow:
    0 18px 40px -10px rgba(230,57,70,0.6),
    inset 0 2px 0 rgba(255,255,255,0.3);
  border: 3px solid rgba(255,255,255,0.2);
  animation: teamStatFloat 4.5s ease-in-out infinite;
}
@keyframes teamStatFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-12px) rotate(-4deg); }
}
.team-stat-badge strong {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}
.team-stat-badge strong span { font-size: 20px; }
.team-stat-badge em {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 4px;
  line-height: 1.2;
  text-transform: uppercase;
  opacity: 0.95;
}

/* Yüzen rozetler */
.team-badge-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: 0 15px 40px -10px rgba(0,0,0,0.4);
  animation: teamBadgeFloat 4s ease-in-out infinite;
}

.team-badge-float i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary, #e63946), #ff6f00);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

.team-badge-float strong {
  display: block;
  font-size: 14px;
  color: var(--dark, #1d3557);
  line-height: 1.2;
}
.team-badge-float span {
  font-size: 11px;
  color: #888;
}

.team-badge-1 { top: 18%; left: -10px; animation-delay: 0s; }
.team-badge-2 { bottom: 16%; right: -10px; animation-delay: 1.5s; }

@keyframes teamBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* İçerik taraf */
.team-content .team-badge-light {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  width: auto !important;
  background: rgba(255,255,255,0.08) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 18px !important;
  border-radius: 50px !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0;
  backdrop-filter: blur(10px);
}

.team-content .team-badge-light i {
  background: linear-gradient(135deg, var(--primary, #e63946), #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 14px;
}

.team-content h2 {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin: 18px 0 18px;
  letter-spacing: -0.5px;
}
.team-content h2 span {
  background: linear-gradient(135deg, var(--primary, #e63946), #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-content > p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 30px;
  max-width: 540px;
}

.team-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 34px;
}

.team-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.tf-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary, #e63946), #ff6f00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  box-shadow: 0 8px 18px -6px rgba(230,57,70,0.6);
}

.team-feature h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 3px;
  font-weight: 700;
}
.team-feature p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.team-cta {
  display: inline-flex;
}

@media (max-width: 968px) {
  .team-section { padding: 70px 0; }
  .team-grid { grid-template-columns: 1fr; gap: 50px; }
  .team-image { order: 2; min-height: 480px; }
  .team-content { order: 1; text-align: center; }
  .team-content > p { margin-left: auto; margin-right: auto; }
  .team-content h2 { font-size: 30px; }
  .team-features { text-align: left; max-width: 460px; margin-left: auto; margin-right: auto; }
  .team-image img { max-height: 460px; }
  .team-deco-circle { width: 360px; height: 360px; }
  .team-deco-ring-1 { width: 400px; height: 400px; margin: -200px 0 0 -200px; }
  .team-deco-ring-2 { width: 450px; height: 450px; margin: -225px 0 0 -225px; }
}

@media (max-width: 640px) {
  .team-content h2 { font-size: 25px; }
  .team-badge-float { padding: 9px 13px; }
  .team-badge-float i { width: 34px; height: 34px; font-size: 15px; }
  .team-badge-float strong { font-size: 12px; }
  .team-badge-float span { font-size: 10px; }
  .team-badge-1 { left: -5px; }
  .team-badge-2 { right: -5px; }
  .team-image { min-height: 400px; }
  .team-image img { max-height: 380px; }
  .team-deco-circle { width: 300px; height: 300px; }
  .team-deco-ring-1 { width: 330px; height: 330px; margin: -165px 0 0 -165px; }
  .team-deco-ring-2 { width: 370px; height: 370px; margin: -185px 0 0 -185px; }
  .team-stat-badge { width: 84px; height: 84px; top: 4%; }
  .team-stat-badge strong { font-size: 26px; }
  .team-stat-badge em { font-size: 9px; }
  .team-deco-dots { width: 70px; height: 70px; }
}

/* ============ REFERANSLAR ============ */
.ref-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 45px;
}

.ref-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border: 2px solid rgba(0,0,0,0.08);
  background: #fff;
  color: #555;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
}

.ref-filter i { font-size: 13px; }

.ref-filter:hover {
  border-color: rgba(230,57,70,0.3);
  color: var(--primary, #e63946);
  transform: translateY(-2px);
}

.ref-filter.active {
  background: linear-gradient(135deg, var(--primary, #e63946), #ff6f00);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 25px -8px rgba(230,57,70,0.5);
}

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

.ref-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Sol kenar renkli şerit */
.ref-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary, #e63946), #ff6f00);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.ref-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -15px rgba(230,57,70,0.25);
  border-color: rgba(230,57,70,0.15);
}

.ref-card:hover::before { transform: scaleY(1); }

.ref-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.ref-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(230,57,70,0.1), rgba(255,111,0,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary, #e63946);
  transition: all 0.4s ease;
}

.ref-card:hover .ref-icon {
  background: linear-gradient(135deg, var(--primary, #e63946), #ff6f00);
  color: #fff;
  transform: rotate(-8deg) scale(1.08);
}

.ref-year {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--dark, #1d3557), #2c3e50);
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.ref-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark, #1d3557);
  margin-bottom: 10px;
  line-height: 1.3;
}

.ref-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.ref-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px dashed rgba(0,0,0,0.08);
  flex-wrap: wrap;
}

.ref-loc {
  font-size: 13px;
  color: #888;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ref-loc i { color: var(--primary, #e63946); font-size: 12px; }

.ref-cat {
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ref-cat-yangin { background: rgba(230,57,70,0.12); color: #c92a3a; }
.ref-cat-mekanik { background: rgba(37,99,235,0.12); color: #1e40af; }
.ref-cat-karma { background: rgba(245,158,11,0.14); color: #b45309; }

.ref-empty {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}

.ref-empty i { font-size: 56px; opacity: 0.4; display: block; margin-bottom: 16px; }
.ref-empty p { font-size: 16px; }

@media (max-width: 640px) {
  .ref-grid { grid-template-columns: 1fr; }
  .ref-filter { padding: 9px 16px; font-size: 13px; }
}

/* ============ LOKASYON SAYFASI ============ */
.lokasyon-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.lokasyon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), #ff6f00);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(211,47,47,0.3);
}

.lokasyon-intro h2 {
  font-size: 36px;
  color: var(--dark, #1d3557);
  line-height: 1.3;
  margin-bottom: 18px;
}

.lokasyon-intro h2 span {
  color: var(--primary);
}

.lokasyon-lead {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

.lokasyon-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.lokasyon-feature {
  background: #fff;
  padding: 28px 22px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.lokasyon-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(211,47,47,0.2);
  border-color: rgba(211,47,47,0.2);
}

.lokasyon-feature .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary), #ff6f00);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}

.lokasyon-feature h4 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--dark, #1d3557);
}

.lokasyon-feature p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.lokasyon-content {
  max-width: 900px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

.lokasyon-content h2 {
  font-size: 30px;
  color: var(--dark, #1d3557);
  margin-bottom: 20px;
  margin-top: 30px;
}

.lokasyon-content h3 {
  font-size: 22px;
  color: var(--primary);
  margin: 30px 0 16px;
}

.lokasyon-content p {
  color: #555;
  font-size: 16px;
  margin-bottom: 16px;
}

.lokasyon-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.lokasyon-list li {
  background: #f8f9fa;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
  color: #444;
  border-left: 3px solid var(--primary);
}

/* İlçe grid */
.lokasyon-districts {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  margin-top: 40px;
}

.lokasyon-districts h3 {
  font-size: 24px;
  color: var(--dark, #1d3557);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lokasyon-districts h3 i {
  color: var(--primary);
}

.district-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

.district-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.district-card:hover {
  background: linear-gradient(135deg, var(--primary), #ff6f00);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(211,47,47,0.3);
}

.district-card i {
  color: var(--primary);
  font-size: 13px;
  transition: color 0.2s;
}

.district-card:hover i {
  color: #fff;
}

/* Footer popüler şehirler */
.footer-cities {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-cities h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-cities-list a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 12px;
  padding: 5px 11px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  transition: all 0.2s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.footer-cities-list a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

@media (max-width: 768px) {
  .lokasyon-intro h2 { font-size: 24px; }
  .lokasyon-content h2 { font-size: 22px; }
  .lokasyon-content h3 { font-size: 18px; }
  .lokasyon-districts { padding: 25px; }
}

/* ============ ADMIN'DEN YÜKLENEN LOGO ============ */
.navbar .logo {
  max-height: 90px;
  overflow: hidden;
}
.navbar .logo img.logo-img {
  height: 75px !important;
  width: auto !important;
  max-width: 240px !important;
  max-height: 75px !important;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.navbar .logo:hover img.logo-img {
  transform: scale(1.03);
}

.footer-about .footer-logo-img {
  height: 70px !important;
  width: auto !important;
  max-width: 220px !important;
  max-height: 70px !important;
  object-fit: contain;
  display: block;
  margin-bottom: 18px;
  background: rgba(255,255,255,0.95);
  padding: 8px 14px;
  border-radius: 10px;
}

/* ============ FOOTER ABOUT - YANGIN ACİL TASARIM ============ */
.footer-emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: linear-gradient(135deg, rgba(211,47,47,0.2), rgba(255,111,0,0.15));
  border: 1px solid rgba(211,47,47,0.4);
  border-radius: 50px;
  color: #ff6b6b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
}

.footer-emergency-badge .pulse-dot {
  width: 9px;
  height: 9px;
  background: #ff3838;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 0 rgba(255,56,56,0.7);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(255,56,56,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255,56,56,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,56,56,0); }
}

.footer-cta-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.footer-cta-title span {
  background: linear-gradient(135deg, var(--primary), #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.footer-cta-text {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.footer-about .footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-about .footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.footer-about .footer-social a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), #ff6f00);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.footer-about .footer-social a i {
  position: relative;
  z-index: 1;
}

.footer-about .footer-social a:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(211,47,47,0.4);
}

.footer-about .footer-social a:hover::before {
  opacity: 1;
}

/* Telefon CTA Kartı */
.footer-phone-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(211,47,47,0.15), rgba(255,111,0,0.1));
  border: 1px solid rgba(211,47,47,0.3);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.footer-phone-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), #ff6f00);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.footer-phone-card:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 15px 35px rgba(211,47,47,0.4);
}

.footer-phone-card:hover::before {
  opacity: 1;
}

.footer-phone-card > * {
  position: relative;
  z-index: 1;
}

.footer-phone-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), #ff3838);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(211,47,47,0.4);
  animation: phoneShake 3s ease-in-out infinite;
}

@keyframes phoneShake {
  0%, 90%, 100% { transform: rotate(0); }
  92% { transform: rotate(-10deg); }
  94% { transform: rotate(10deg); }
  96% { transform: rotate(-10deg); }
  98% { transform: rotate(10deg); }
}

.footer-phone-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-phone-info small {
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.footer-phone-info strong {
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .footer-cta-title { font-size: 22px; }
  .footer-phone-info strong { font-size: 16px; }
}

/* ============ HERO BANNER - Premium Frame ============ */
.hero-banner-image {
  width: 100%;
  max-width: 620px;
  position: relative;
  padding: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 35px 80px -20px rgba(0,0,0,0.55),
    0 25px 50px -15px rgba(211,47,47,0.35),
    inset 0 1px 0 rgba(255,255,255,0.15);
  animation: bannerFloat 5s ease-in-out infinite;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes bannerFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(-1deg); }
}

/* Arkada parlayan halka */
.hero-banner-image::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 30% 50%, rgba(211,47,47,0.4), transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(255,111,0,0.3), transparent 60%);
  filter: blur(50px);
  z-index: -1;
  opacity: 0.6;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

/* "SADEM YANGIN" üst köşe rozet */
.hero-banner-image::after {
  content: '🔥 SADEM YANGIN';
  position: absolute;
  top: -14px;
  right: 24px;
  background: linear-gradient(135deg, #e63946, #ff6f00);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 7px 16px;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(230,57,70,0.5);
  z-index: 10;
  border: 2px solid rgba(255,255,255,0.3);
}

.hero-banner-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-banner-image:hover {
  animation-play-state: paused;
  transform: translateY(-8px) rotate(0deg) scale(1.01);
  box-shadow:
    0 50px 100px -25px rgba(0,0,0,0.6),
    0 30px 60px -15px rgba(211,47,47,0.5);
}

/* TABLET */
@media (max-width: 968px) {
  .hero-banner-image {
    max-width: 90%;
    margin: 40px auto 0;
    padding: 10px;
  }
  .logo .logo-img { height: 48px; max-width: 180px; }
  .footer-about .footer-logo-img { height: 60px; max-width: 200px; }
}

/* MOBİL - emanet durmasın, hafif eğikliği koru */
@media (max-width: 640px) {
  .hero-banner-image {
    max-width: 94%;
    padding: 8px;
    border-radius: 20px;
    margin: 30px auto 10px;
    animation-duration: 6s;
  }
  .hero-banner-image::before {
    inset: -20px;
    filter: blur(35px);
  }
  .hero-banner-image::after {
    font-size: 9px;
    padding: 5px 11px;
    right: 16px;
    top: -10px;
  }
  .hero-banner-image img { border-radius: 14px; }

  @keyframes bannerFloat {
    0%, 100% { transform: translateY(0) rotate(-0.5deg); }
    50% { transform: translateY(-6px) rotate(-0.5deg); }
  }
}
