/* ============================================================
   B2 Dijital – Global Stylesheet (WordPress'ten bağımsız)
   ============================================================ */

/* --- GOOGLE FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap&subset=latin-ext');

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

:root {
  --b2-font: 'Outfit', sans-serif;
  --b2-dark: #1a1d40;
  --b2-navy: #242754;
  --b2-gold: #F8AA0F;
  --b2-light: #fcfcfc;
  --b2-text: #555;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--b2-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background: #fff;
  color: var(--b2-text);
}

body, h1, h2, h3, h4, h5, h6, p, a, span, li, button, input, textarea, label, div {
  font-family: var(--b2-font);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; }

/* ============================================================
   HEADER
   ============================================================ */
.b2-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 9999;
  padding: 20px 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.b2-header.scrolled {
  background: rgba(21, 23, 48, 0.92);
  padding: 12px 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.b2-header-container {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}

.b2-nav-logo {
  font-size: 26px; font-weight: 900; text-decoration: none; letter-spacing: -1px;
  background: linear-gradient(to right, #ffffff 0%, #F8AA0F 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative; z-index: 1001; transition: 0.3s;
}

.b2-nav-menu {
  display: flex; gap: 5px; list-style: none; margin: 0; padding: 0; align-items: center;
}

.b2-nav-item { position: relative; }

.b2-nav-link {
  color: #ffffff; text-decoration: none; font-weight: 600; font-size: 0.95rem;
  position: relative; transition: 0.3s;
  padding: 10px 20px; border-radius: 50px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.b2-nav-link:hover,
.b2-nav-item:hover > .b2-nav-link {
  background: rgba(255, 255, 255, 0.1);
  color: #F8AA0F;
  text-shadow: none;
}

.has-dropdown > a::after {
  content: '▾'; font-size: 0.8rem; margin-left: 5px; opacity: 0.7;
}

.b2-dropdown {
  position: absolute; top: 100%; left: 0; width: 240px;
  background: rgba(21, 23, 48, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 15px; padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.b2-nav-item:hover .b2-dropdown {
  opacity: 1; visibility: visible; transform: translateY(15px);
}

.b2-dropdown li { list-style: none; display: block; margin-bottom: 5px; }

.b2-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 15px; color: #ccc;
  text-decoration: none; font-size: 0.9rem; transition: 0.2s;
  border-radius: 10px; text-shadow: none;
  -webkit-text-fill-color: #ccc;
}

.b2-dropdown a:hover {
  background: rgba(248, 170, 15, 0.1); color: #fff; -webkit-text-fill-color: #fff;
}

.dd-icon { color: #F8AA0F; font-size: 1.1rem; }

.b2-header-btn {
  position: relative; overflow: hidden;
  padding: 12px 30px; background: #F8AA0F; color: #242754;
  border-radius: 50px; text-decoration: none; font-weight: 800; font-size: 0.9rem;
  transition: 0.3s; box-shadow: 0 5px 20px rgba(248, 170, 15, 0.3);
  margin-left: 20px; -webkit-text-fill-color: #242754;
}

.b2-header-btn::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.5s;
}

.b2-header-btn:hover::before { left: 100%; }

.b2-header-btn:hover {
  transform: translateY(-2px); box-shadow: 0 10px 25px rgba(248, 170, 15, 0.5);
  background: #fff;
}

.b2-mobile-toggle { display: none; cursor: pointer; z-index: 1002; background: none; border: none; }

.bar {
  width: 30px; height: 2px; background: #fff; margin: 6px 0;
  transition: 0.3s; border-radius: 2px; display: block;
}

/* ============================================================
   HERO ORTAK
   ============================================================ */
.b2-circles {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  overflow: hidden; z-index: 0; margin: 0; padding: 0; pointer-events: none;
}

.b2-circles li {
  position: absolute; display: block; list-style: none;
  width: 20px; height: 20px; background: rgba(248, 170, 15, 0.22);
  animation: b2-float 8s linear infinite; bottom: -150px; border-radius: 50%;
}

.b2-circles li:nth-child(1) { left: 25%; width: 80px; height: 80px; animation-delay: 0s; animation-duration: 7s; }
.b2-circles li:nth-child(2) { left: 10%; width: 20px; height: 20px; animation-delay: 1s; animation-duration: 5s; }
.b2-circles li:nth-child(3) { left: 70%; width: 40px; height: 40px; animation-delay: 2s; animation-duration: 6s; }
.b2-circles li:nth-child(4) { left: 40%; width: 60px; height: 60px; animation-delay: 0s; animation-duration: 9s; }
.b2-circles li:nth-child(5) { left: 65%; width: 30px; height: 30px; animation-delay: 1s; }

@keyframes b2-float {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(-800px) rotate(720deg); opacity: 0; }
}

@keyframes b2-bg-pulse {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes b2-text-shine { to { background-position: 200% center; } }

/* ============================================================
   ORTAK BUTONLAR / YARDIMCI
   ============================================================ */
.b2-btn {
  padding: 15px 35px; border-radius: 8px; text-decoration: none;
  font-weight: 700; transition: 0.3s; display: inline-block;
}

.b2-btn-primary {
  background: #F8AA0F; color: #242754;
  animation: b2-pulse-gold 2s infinite;
  -webkit-text-fill-color: #242754;
}

@keyframes b2-pulse-gold {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(248, 170, 15, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(248, 170, 15, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(248, 170, 15, 0); }
}

.b2-btn-primary:hover {
  transform: translateY(-3px); background: #fff; animation: none;
}

.b2-btn-outline {
  background: rgba(255,255,255,0.05); color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.b2-btn-outline:hover {
  border-color: #F8AA0F; color: #F8AA0F;
  background: rgba(255,255,255,0.1);
}

.b2-big-btn {
  background: #242754; color: #fff; padding: 18px 50px; font-weight: 800;
  font-size: 1.1rem; border-radius: 50px; text-decoration: none;
  display: inline-block; transition: 0.3s;
  box-shadow: 0 10px 20px rgba(36, 39, 84, 0.2);
  -webkit-text-fill-color: #fff;
}

.b2-big-btn:hover { background: #F8AA0F; color: #242754; -webkit-text-fill-color: #242754; transform: translateY(-3px); }

/* ============================================================
   SECTION ORTAK BAŞLIK
   ============================================================ */
.b2-sec-header { text-align: center; margin-bottom: 60px; }
.b2-sec-title { font-size: 2.5rem; color: #242754; font-weight: 800; margin-bottom: 15px; }
.b2-sec-desc { color: #666; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ============================================================
   ANA SAYFA – HERO
   ============================================================ */
.b2-hero-section {
  position: relative;
  background: linear-gradient(135deg, #1a1d40 0%, #242754 50%, #1a1d40 100%);
  background-size: 200% 200%;
  animation: b2-bg-pulse 5s ease infinite;
  color: #ffffff;
  padding: 180px 20px 160px 20px;
  text-align: center;
  overflow: hidden;
}

@keyframes zoomInUp {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.b2-animate { opacity: 0; animation: zoomInUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; position: relative; z-index: 2; }
.b2-delay-1 { animation-delay: 0s; }
.b2-delay-2 { animation-delay: 0.1s; }
.b2-delay-3 { animation-delay: 0.2s; }

.b2-hero-container { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }

.b2-hero-subtitle {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #F8AA0F; background: rgba(248, 170, 15, 0.15);
  padding: 8px 20px; border-radius: 30px; margin-bottom: 25px;
  border: 1px solid rgba(248, 170, 15, 0.4); box-shadow: 0 0 15px rgba(248, 170, 15, 0.2);
}

.b2-hero-title {
  font-size: 3.8rem; line-height: 1.1; font-weight: 800; margin-bottom: 25px; color: #ffffff;
}

.b2-shimmer {
  background: linear-gradient(to right, #F8AA0F 20%, #ffffff 50%, #F8AA0F 80%);
  background-size: 200% auto; color: #F8AA0F;
  background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: b2-text-shine 3s linear infinite; display: inline-block;
}

.b2-hero-desc {
  font-size: 1.2rem; color: #dcdcdc; max-width: 650px; margin: 0 auto 40px auto;
}

.b2-hero-buttons {
  display: flex; justify-content: center; gap: 20px;
  position: relative; z-index: 10;
}

/* ============================================================
   REFERANS / LOGO MARQUEEs
   ============================================================ */
.b2-ref-section {
  position: relative; background-color: transparent;
  margin-top: -70px; padding-bottom: 60px; z-index: 10;
}

.b2-ref-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.b2-ref-box {
  background: #ffffff; border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15); padding: 35px 40px;
  display: flex; flex-direction: column; align-items: center;
  position: relative; overflow: hidden;
}

.b2-ref-box::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.8), transparent);
  transform: skewX(-25deg); animation: b2-shine 6s infinite; pointer-events: none;
}

@keyframes b2-shine {
  0% { left: -100%; opacity: 0; } 50% { opacity: 0.5; } 100% { left: 200%; opacity: 0; }
}

.b2-ref-title-small {
  font-size: 12px; color: #242754; font-weight: 800; text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 25px; width: 100%; text-align: center;
  border-bottom: 2px solid #F8AA0F; padding-bottom: 15px; display: inline-block;
}

.b2-logo-marquee {
  width: 100%; overflow: hidden; position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.b2-logo-track {
  display: flex; gap: 60px;
  animation: b2-marquee 25s linear infinite; width: max-content;
}

.b2-logo-marquee:hover .b2-logo-track { animation-play-state: paused; }

@keyframes b2-marquee {
  0% { transform: translateX(0); } 100% { transform: translateX(-50%); }
}

.b2-logo-item {
  flex-shrink: 0; height: 70px; padding: 0 20px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.85; transition: all 0.4s ease;
}

.b2-logo-item:hover { opacity: 1; transform: scale(1.1); }

.b2-logo-item img {
  max-height: 60px; max-width: 140px; width: auto; object-fit: contain;
}

/* ============================================================
   HİZMETLER GRID (Ana Sayfa)
   ============================================================ */
.b2-services-section {
  background-color: #fcfcfc; padding: 40px 0 150px 0; position: relative;
}

.b2-services-section::after {
  content: ""; position: absolute; bottom: -1px; left: 0; width: 100%; height: 100px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%231a1d40' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,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'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover; background-repeat: no-repeat;
  z-index: 5; pointer-events: none;
}

.b2-services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
}

.b2-srv-card {
  background: #fff; padding: 40px 30px; border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03); text-align: left;
  position: relative; overflow: hidden; transition: all 0.4s ease;
  border-bottom: 4px solid transparent; cursor: pointer;
}

.b2-srv-card:hover {
  transform: translateY(-10px); box-shadow: 0 20px 40px rgba(36, 39, 84, 0.1);
  border-bottom-color: #F8AA0F;
}

@media (min-width: 769px) {
  .b2-services-grid:hover .b2-srv-card:not(:hover) {
    opacity: 0.6; transform: scale(0.98); filter: grayscale(0.5);
  }
}

.b2-srv-icon {
  font-size: 3rem; margin-bottom: 25px; display: inline-block; transition: all 0.4s ease;
}

.b2-srv-card:hover .b2-srv-icon { transform: scale(1.2) rotate(-5deg); }

.b2-srv-card h3 { font-size: 1.4rem; color: #242754; font-weight: 700; margin-bottom: 15px; }
.b2-srv-card p { color: #777; font-size: 0.95rem; line-height: 1.6; margin-bottom: 25px; }

.b2-srv-link {
  font-weight: 700; color: #F8AA0F; text-decoration: none;
  display: flex; align-items: center; gap: 5px; transition: 0.3s;
}

.b2-srv-link:hover { gap: 10px; color: #242754; }

/* ============================================================
   PORTFOLYO GRID (Ana Sayfa)
   ============================================================ */
.b2-portfolio-section {
  padding: 80px 0 160px 0; background-color: #fcfcfc; position: relative;
}

.b2-portfolio-section::after {
  content: ""; position: absolute; bottom: -1px; left: 0; width: 100%; height: 100px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%231a1d40' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,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'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover; background-repeat: no-repeat; z-index: 5; pointer-events: none;
}

.b2-portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
}

.b2-portfolio-card {
  border-radius: 15px; overflow: hidden; background: #fff;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05); transition: 0.4s ease;
}

.b2-portfolio-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(0,0,0,0.1); }

.b2-port-img-wrapper { height: 250px; overflow: hidden; position: relative; border-bottom: 1px solid #eee; }

.b2-port-img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  transition: transform 0.6s ease;
}

.b2-portfolio-card:hover .b2-port-img { transform: scale(1.05); }

.b2-port-content { padding: 25px; text-align: center; }
.b2-port-cat { font-size: 0.8rem; text-transform: uppercase; color: #F8AA0F; letter-spacing: 1.5px; font-weight: 700; margin-bottom: 5px; display: block; }
.b2-port-title { font-size: 1.3rem; color: #242754; font-weight: 700; margin-bottom: 15px; }
.b2-port-link { color: #242754; text-decoration: none; font-weight: 600; border-bottom: 2px solid #F8AA0F; padding-bottom: 2px; transition: 0.3s; }
.b2-port-link:hover { color: #F8AA0F; border-color: transparent; }

/* ============================================================
   BENTO GRID
   ============================================================ */
.b2-bento-section {
  background-color: #1a1d40; padding: 100px 0; color: #fff;
  background-image: radial-gradient(#242754 1px, transparent 1px); background-size: 30px 30px;
}

.b2-bento-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: minmax(180px, auto) minmax(180px, auto);
  gap: 20px; max-width: 1200px; margin: 0 auto; padding: 0 20px;
}

.b2-bento-box {
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px; padding: 30px;
  display: flex; flex-direction: column; justify-content: center;
  transition: 0.3s; position: relative; overflow: hidden; backdrop-filter: blur(5px);
}

.b2-bento-box:hover {
  border-color: #F8AA0F; background: rgba(255, 255, 255, 0.06); transform: translateY(-5px);
}

.b2-box-large {
  grid-column: 1 / 2; grid-row: 1 / 3;
  background: linear-gradient(135deg, rgba(36,39,84,0.8) 0%, rgba(26,29,64,0.95) 100%);
  align-items: flex-start;
}

.b2-bento-title { font-size: 2.2rem; font-weight: 800; margin-bottom: 20px; line-height: 1.2; position: relative; z-index: 1; }
.b2-bento-desc { font-size: 1.1rem; color: #ccc; line-height: 1.6; margin-bottom: 30px; position: relative; z-index: 1; max-width: 90%; }

.b2-box-counter { text-align: center; align-items: center; position: relative; }

.b2-counter-num {
  font-size: 3.5rem; font-weight: 800; color: #F8AA0F; display: block;
  margin-bottom: 5px; text-shadow: 0 5px 15px rgba(248,170,15,0.2);
}

.b2-counter-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: #fff; opacity: 0.7; }

.b2-box-wide {
  grid-column: 2 / 4; display: flex; flex-direction: column !important;
  justify-content: center; align-items: flex-start;
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 0%, rgba(248,170,15,0.05) 100%);
}

.b2-feature-list {
  list-style: none; padding: 0; margin: 15px 0 0 0; display: flex; gap: 15px; width: 100%;
}

.b2-feature-item {
  background: rgba(255,255,255,0.1); padding: 10px 20px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600; display: flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.05); transition: 0.3s;
}

.b2-feature-item:hover { background: #F8AA0F; color: #242754; border-color: #F8AA0F; }

/* ============================================================
   SÜREÇ / PROCESS
   ============================================================ */
.b2-process-section {
  background-color: #f9f9f9; padding: 100px 0;
  color: #242754; position: relative; overflow: hidden;
}

.b2-process-grid {
  display: flex; justify-content: space-between; align-items: flex-start;
  max-width: 1200px; margin: 60px auto 0 auto; padding: 0 20px; position: relative;
}

.b2-process-line {
  position: absolute; top: 40px; left: 50px; right: 50px; height: 3px;
  background: rgba(36, 39, 84, 0.1); z-index: 0; overflow: hidden;
}

.b2-process-line::after {
  content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%;
  background: #F8AA0F; box-shadow: 0 0 15px #F8AA0F;
  animation: b2-line-fill 4s linear infinite;
}

@keyframes b2-line-fill {
  0% { width: 0%; opacity: 1; } 80% { width: 100%; opacity: 1; } 100% { width: 100%; opacity: 0; }
}

.b2-process-step { position: relative; z-index: 1; text-align: center; flex: 1; padding: 0 10px; }

.b2-step-circle {
  width: 80px; height: 80px; background: #fff; border: 2px solid #F8AA0F;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 25px auto; font-size: 2rem; color: #242754;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05); transition: 0.3s;
  animation: b2-step-active 4s linear infinite;
}

.b2-process-step:nth-child(2) .b2-step-circle { animation-delay: 0s; }
.b2-process-step:nth-child(3) .b2-step-circle { animation-delay: 0.9s; }
.b2-process-step:nth-child(4) .b2-step-circle { animation-delay: 1.9s; }
.b2-process-step:nth-child(5) .b2-step-circle { animation-delay: 2.9s; }

@keyframes b2-step-active {
  0% { transform: scale(1); border-color: #F8AA0F; background: #fff; }
  10% { transform: scale(1.15); background: #F8AA0F; color: #fff; box-shadow: 0 10px 25px rgba(248, 170, 15, 0.4); }
  30% { transform: scale(1); border-color: #F8AA0F; background: #fff; color: #242754; }
  100% { transform: scale(1); border-color: #F8AA0F; background: #fff; color: #242754; }
}

.b2-step-num {
  position: absolute; top: 0; right: 50%; transform: translateX(50px);
  background: #242754; color: #fff; width: 25px; height: 25px; border-radius: 50%;
  font-size: 0.8rem; font-weight: 800; display: flex; align-items: center; justify-content: center;
}

.b2-process-step h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: #242754; }
.b2-process-step p { font-size: 0.95rem; color: #666; line-height: 1.5; }
.b2-process-cta { text-align: center; margin-top: 60px; position: relative; z-index: 2; }

/* ============================================================
   FOOTER
   ============================================================ */
.b2-footer-wrapper {
  background-color: #151730; color: #b0b0b0; font-size: 15px; line-height: 1.6;
  padding: 80px 0 30px 0; position: relative; z-index: 99; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.b2-footer-wrapper::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 40px 40px; opacity: 0.4; pointer-events: none;
}

.b2-footer-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }

.b2-footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.6fr;
  gap: 40px; margin-bottom: 60px;
}

.b2-footer-logo {
  font-size: 26px; font-weight: 900; margin-bottom: 15px; display: inline-block;
  background: linear-gradient(to right, #ffffff 0%, #F8AA0F 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  color: transparent; letter-spacing: -1px; text-decoration: none;
}

.b2-footer-desc { font-size: 0.9rem; opacity: 0.7; margin-bottom: 20px; max-width: 300px; line-height: 1.5; }

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

.b2-social-icons a {
  width: 40px; height: 40px; background: rgba(255,255,255,0.03); color: #fff;
  display: flex; align-items: center; justify-content: center; border-radius: 12px;
  text-decoration: none; transition: 0.3s; border: 1px solid rgba(255,255,255,0.08);
}

.b2-social-icons a svg { width: 18px; height: 18px; fill: currentColor; transition: 0.3s; }

.b2-social-icons a:hover {
  background: #F8AA0F; color: #1a1d40; border-color: #F8AA0F;
  transform: translateY(-3px); box-shadow: 0 5px 15px rgba(248, 170, 15, 0.3);
}

.b2-footer-col h4 {
  color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 1px;
}

.b2-footer-links { list-style: none; padding: 0; margin: 0; }
.b2-footer-links li { margin-bottom: 10px; }

.b2-footer-links a {
  color: #b0b0b0; text-decoration: none; transition: 0.3s;
  display: flex; align-items: center; gap: 6px; font-size: 0.95rem;
}

.b2-footer-links a::before {
  content: '›'; color: #F8AA0F; font-weight: bold; opacity: 0;
  transform: translateX(-5px); transition: 0.3s;
}

.b2-footer-links a:hover { color: #fff; transform: translateX(5px); }
.b2-footer-links a:hover::before { opacity: 1; transform: translateX(0); }

/* Newsletter Box */
.b2-newsletter-box {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
  padding: 25px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2); overflow: hidden;
}

.b2-news-title { color: #fff; font-weight: 700; margin-bottom: 5px; display: block; font-size: 1.1rem; }
.b2-news-text { font-size: 0.85rem; margin-bottom: 20px; opacity: 0.7; display: block; }

.b2-news-form-inner {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(0, 0, 0, 0.3); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px; padding: 4px; position: relative; height: 48px;
  box-sizing: border-box; width: 100%;
}

.b2-news-input {
  width: 100%; background: transparent; border: none; color: #fff;
  padding: 0 15px; height: 100%; font-size: 0.9rem; outline: none;
  font-family: var(--b2-font);
}

.b2-news-input::placeholder { color: rgba(255,255,255,0.4); }

.b2-news-btn {
  width: 38px; height: 38px; background: #F8AA0F; border: none; color: #242754;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: 0.3s; flex-shrink: 0;
}

.b2-news-btn:hover { background: #fff; }
.b2-news-btn svg { width: 18px; height: 18px; stroke: #242754; fill: none; stroke-width: 2.5; }

.b2-contact-mini { margin-top: 25px; font-size: 0.9rem; position: relative; z-index: 2; }
.b2-contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; color: #ccc; }

.b2-contact-icon {
  width: 32px; height: 32px; background: rgba(248, 170, 15, 0.1); color: #F8AA0F;
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; border: 1px solid rgba(248, 170, 15, 0.2); flex-shrink: 0;
}

.b2-contact-icon svg { width: 16px; height: 16px; stroke-width: 2px; stroke: #F8AA0F; fill: none; }

.b2-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05); padding-top: 25px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; opacity: 0.6;
}

.b2-legal-links a {
  color: #b0b0b0; text-decoration: none; margin-left: 15px; transition: 0.3s;
}

.b2-legal-links a:hover { color: #F8AA0F; }

/* ============================================================
   HERO – ALT SAYFALAR (Hakkımızda, Hizmetler, vb.)
   ============================================================ */
.b2-page-hero {
  position: relative;
  background: linear-gradient(135deg, #1a1d40 0%, #242754 50%, #1a1d40 100%);
  background-size: 200% 200%;
  animation: b2-bg-pulse 5s ease infinite;
  padding: 160px 20px 100px 20px;
  text-align: center; color: #fff; overflow: hidden;
}

.b2-page-title {
  font-size: 3.2rem; font-weight: 800; margin-bottom: 20px; line-height: 1.2;
  position: relative; z-index: 2;
  background: linear-gradient(to right, #ffffff 20%, #F8AA0F 50%, #ffffff 80%);
  background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: b2-text-shine 4s linear infinite;
}

.b2-page-desc {
  font-size: 1.2rem; max-width: 800px; margin: 0 auto;
  color: #dcdcdc; font-weight: 300; position: relative; z-index: 2; line-height: 1.6;
}

/* ============================================================
   HAKKIMIZDA
   ============================================================ */
.b2-story-section { padding: 100px 0; background-color: #fff; }

.b2-story-container {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

.b2-story-img-box {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.b2-story-img { width: 100%; display: block; transition: 0.5s; }
.b2-story-img-box:hover .b2-story-img { transform: scale(1.05); }

.b2-story-content h2 {
  font-size: 2.2rem; color: #242754; font-weight: 800; margin-bottom: 20px;
  position: relative; padding-bottom: 15px;
}

.b2-story-content h2::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 4px;
  background: #F8AA0F; border-radius: 2px;
}

.b2-story-p { font-size: 1.05rem; line-height: 1.8; color: #555; margin-bottom: 20px; }

.b2-mini-stats { display: flex; gap: 30px; margin-top: 30px; }
.b2-ms-item h3 { font-size: 2rem; color: #F8AA0F; font-weight: 800; margin: 0; line-height: 1; }
.b2-ms-item span { font-size: 0.9rem; color: #242754; font-weight: 600; text-transform: uppercase; }

.b2-values-section { background-color: #f9f9f9; padding: 100px 0; }
.b2-sec-head { text-align: center; margin-bottom: 60px; }
.b2-sec-head h2 { font-size: 2.2rem; color: #242754; font-weight: 800; margin-bottom: 10px; }
.b2-sec-head p { color: #666; max-width: 600px; margin: 0 auto; }

.b2-values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
}

.b2-val-card {
  background: #fff; padding: 40px 30px; border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03); text-align: center;
  transition: 0.3s; border-bottom: 4px solid transparent;
}

.b2-val-card:hover { transform: translateY(-10px); border-color: #F8AA0F; box-shadow: 0 15px 40px rgba(36, 39, 84, 0.1); }

.b2-val-icon {
  font-size: 3rem; margin-bottom: 20px;
  width: 80px; height: 80px; background: rgba(248, 170, 15, 0.1);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; margin-left: auto; margin-right: auto;
}

.b2-val-card h3 { font-size: 1.3rem; color: #242754; font-weight: 700; margin-bottom: 15px; }
.b2-val-card p { font-size: 0.95rem; color: #666; line-height: 1.6; }

.b2-abt-cta {
  position: relative;
  background: linear-gradient(45deg, #1a1d40, #242754, #1a1d40);
  background-size: 200% 200%;
  animation: b2-bg-pulse 6s ease infinite;
  padding: 100px 20px; text-align: center; color: #fff; overflow: hidden;
}

.b2-cta-title-main {
  font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; position: relative; z-index: 2;
  background: linear-gradient(to right, #fff, #F8AA0F); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}

.b2-cta-desc-main { opacity: 0.8; margin-bottom: 30px; position: relative; z-index: 2; font-size: 1.1rem; }

.b2-abt-btn {
  display: inline-block; padding: 18px 50px; background: #F8AA0F; color: #242754;
  border-radius: 50px; font-weight: 800; text-decoration: none; position: relative; z-index: 2;
  transition: 0.3s; box-shadow: 0 10px 25px rgba(248, 170, 15, 0.3);
  -webkit-text-fill-color: #242754;
}

.b2-abt-btn:hover { background: #fff; transform: translateY(-3px); }

/* ============================================================
   HİZMETLER SAYFASI
   ============================================================ */
.b2-stats-bar {
  max-width: 1000px; margin: -50px auto 80px auto;
  background: #fff; border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  display: flex; justify-content: space-around; align-items: center;
  padding: 30px; position: relative; z-index: 5;
}

.b2-stat-item { text-align: center; }
.b2-stat-num { font-size: 2.5rem; font-weight: 800; color: #242754; display: block; line-height: 1; }
.b2-stat-label { font-size: 0.9rem; color: #777; text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }

.b2-srv-main-section { background-color: #fcfcfc; padding-bottom: 100px; }

.b2-srv-main-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px; max-width: 1200px; margin: 0 auto; padding: 0 20px;
}

.b2-srv-main-card {
  background: #fff; border-radius: 20px; padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid #eee;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: flex-start;
}

.b2-srv-main-card:hover { transform: translateY(-10px); border-color: #F8AA0F; box-shadow: 0 20px 50px rgba(36, 39, 84, 0.15); }

.b2-srv-main-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, #242754, #F8AA0F);
  transform: scaleX(0); transform-origin: left; transition: 0.4s;
}

.b2-srv-main-card:hover::before { transform: scaleX(1); }

.b2-sc-icon {
  width: 70px; height: 70px; background: rgba(36, 39, 84, 0.05);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #242754; margin-bottom: 25px; transition: 0.4s;
}

.b2-srv-main-card:hover .b2-sc-icon { background: #F8AA0F; color: #242754; transform: rotate(-10deg) scale(1.1); }

.b2-sc-title { font-size: 1.5rem; font-weight: 800; color: #242754; margin-bottom: 15px; }
.b2-sc-desc { font-size: 1rem; color: #666; line-height: 1.6; margin-bottom: 30px; flex-grow: 1; }

.b2-sc-features { list-style: none; padding: 0; margin: 0 0 25px 0; width: 100%; }

.b2-sc-features li {
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
  font-size: 0.9rem; color: #555; border-bottom: 1px dashed #eee; padding-bottom: 8px;
}

.b2-sc-check { color: #F8AA0F; font-weight: bold; }

.b2-sc-btn {
  width: 100%; padding: 15px; text-align: center; background: #242754; color: #fff;
  text-decoration: none; border-radius: 10px; font-weight: 700; transition: 0.3s; opacity: 0.9;
  -webkit-text-fill-color: #fff;
}

.b2-sc-btn:hover { background: #F8AA0F; color: #242754; -webkit-text-fill-color: #242754; opacity: 1; }

.b2-srv-cta {
  max-width: 1200px; margin: 80px auto 0 auto; position: relative;
  background: linear-gradient(45deg, #1a1d40, #242754, #1a1d40);
  background-size: 200% 200%; animation: b2-bg-pulse 6s ease infinite;
  padding: 80px 40px; border-radius: 20px; text-align: center; color: #fff;
  overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.b2-srv-cta-title {
  font-size: 2.2rem; font-weight: 800; margin-bottom: 15px; position: relative; z-index: 2;
  background: linear-gradient(to right, #ffffff, #F8AA0F, #ffffff);
  background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; animation: b2-text-shine 3s linear infinite;
}

.b2-srv-cta-desc {
  font-size: 1.1rem; color: #f0f0f0; margin-bottom: 30px;
  max-width: 700px; margin-left: auto; margin-right: auto; position: relative; z-index: 2;
}

.b2-srv-cta-btn {
  display: inline-block; padding: 18px 50px; margin-top: 10px; position: relative; z-index: 2;
  background: #F8AA0F; color: #242754; text-decoration: none;
  font-weight: 800; border-radius: 50px; transition: 0.3s;
  box-shadow: 0 10px 25px rgba(248, 170, 15, 0.3); -webkit-text-fill-color: #242754;
}

.b2-srv-cta-btn:hover { background: #fff; transform: translateY(-3px); }

/* ============================================================
   HİZMET DETAY SAYFASI
   ============================================================ */
.b2-sh-hero {
  position: relative;
  background: linear-gradient(135deg, #1a1d40 0%, #242754 100%);
  padding: 160px 20px 140px 20px; text-align: center; color: #fff; overflow: visible;
}

.b2-sh-hero::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px; opacity: 0.5; pointer-events: none;
}

.b2-sh-icon {
  font-size: 4.5rem; display: block; margin-bottom: 20px;
  animation: float-icon 4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(248,170,15,0.3));
}

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

.b2-sh-title {
  font-size: 2.8rem; font-weight: 800; margin-bottom: 15px; color: #fff;
  line-height: 1.2; text-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.b2-sh-desc {
  font-size: 1.2rem; max-width: 800px; margin: 0 auto; color: #e0e0e0;
  font-weight: 400; line-height: 1.6;
}

.b2-sh-wrapper { background-color: #f5f7fa; padding-bottom: 100px; }

.b2-sh-card-container {
  max-width: 1000px; margin: -80px auto 0 auto; padding: 60px;
  background: #ffffff; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  position: relative; z-index: 10;
}

.b2-sh-main h3 {
  color: #242754; font-size: 2rem; font-weight: 800; margin-bottom: 30px;
  text-align: center; position: relative;
}

.b2-sh-main h3::after {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%);
  bottom: -10px; width: 80px; height: 4px; background: #F8AA0F; border-radius: 2px;
}

.b2-sh-main p {
  color: #555; line-height: 1.8; margin-bottom: 20px; font-size: 1.05rem;
  text-align: center; max-width: 800px; margin-left: auto; margin-right: auto;
}

.b2-sh-divider { width: 100%; height: 1px; background: #eee; margin: 50px 0; }

.b2-sh-features-title { text-align: center; font-size: 1.5rem; font-weight: 700; color: #242754; margin-bottom: 30px; }

.b2-sh-features { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.b2-sh-feat-card {
  background: #fff; padding: 25px; border-radius: 12px; border: 1px solid #eee;
  transition: 0.3s; display: flex; align-items: flex-start; gap: 15px;
}

.b2-sh-feat-card:hover { transform: translateY(-5px); border-color: #F8AA0F; box-shadow: 0 10px 30px rgba(248, 170, 15, 0.15); }

.b2-feat-icon {
  font-size: 1.5rem; color: #F8AA0F; background: rgba(248, 170, 15, 0.1);
  padding: 10px; border-radius: 8px; flex-shrink: 0;
}

.b2-sh-feat-card h4 { color: #242754; font-weight: 700; margin: 0 0 5px 0; font-size: 1.1rem; }
.b2-sh-feat-card p { font-size: 0.95rem; color: #666; margin: 0; line-height: 1.5; }

/* FAQ */
.b2-sh-faq { margin-top: 60px; }
.b2-faq-title { text-align: center; color: #242754; font-size: 1.8rem; font-weight: 800; margin-bottom: 40px; }

.b2-faq-item { border-bottom: 1px solid #eee; }

.b2-faq-head {
  padding: 20px 0; font-weight: 700; color: #242754; cursor: pointer; font-size: 1.1rem;
  display: flex; justify-content: space-between; align-items: center; transition: 0.3s;
  background: none; border: none; width: 100%; text-align: left; font-family: var(--b2-font);
}

.b2-faq-head:hover { color: #F8AA0F; }
.b2-faq-icon { font-size: 1.5rem; color: #ccc; font-weight: 400; transition: 0.3s; }
.b2-faq-item.active .b2-faq-icon { color: #F8AA0F; }

.b2-faq-body { padding: 0 0 25px 0; color: #666; font-size: 1rem; line-height: 1.7; display: none; }
.b2-faq-item.active .b2-faq-body { display: block; }

.b2-sh-cta {
  margin-top: 80px; background-color: #242754; padding: 60px 40px;
  border-radius: 15px; text-align: center; color: #fff; position: relative; overflow: hidden;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}

.b2-cta-head { font-size: 2rem; font-weight: 800; margin-bottom: 15px; color: #fff; }
.b2-cta-sub { font-size: 1.1rem; opacity: 0.8; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }

.b2-sh-btn {
  display: inline-block; background: #F8AA0F; color: #242754; padding: 18px 50px;
  border-radius: 50px; font-weight: 800; text-decoration: none;
  font-size: 1.1rem; transition: 0.3s; box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  -webkit-text-fill-color: #242754;
}

.b2-sh-btn:hover { background: #fff; transform: translateY(-3px); }

/* ============================================================
   PORTFOLYO SAYFASI
   ============================================================ */
.b2-filter-bar {
  display: flex; justify-content: center; gap: 15px; flex-wrap: wrap;
  margin: -30px auto 60px auto; position: relative; z-index: 5;
}

.b2-filter-btn {
  background: #fff; color: #555; padding: 12px 30px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #eee;
}

.b2-filter-btn.active,
.b2-filter-btn:hover {
  background: #F8AA0F; color: #242754; border-color: #F8AA0F;
  transform: translateY(-3px); box-shadow: 0 10px 25px rgba(248, 170, 15, 0.3);
}

.b2-p-section { background-color: #fcfcfc; padding-bottom: 100px; }
.b2-p-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.b2-p-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px;
}

.b2-p-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05); transition: all 0.4s ease;
  border: 1px solid #eee; display: flex; flex-direction: column;
}

.b2-p-card.hide { display: none; }

.b2-p-card.show { animation: fadeInUp 0.5s ease forwards; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.b2-p-card:hover { transform: translateY(-10px); box-shadow: 0 25px 60px rgba(0,0,0,0.12); border-color: #F8AA0F; }

.b2-p-img-box { overflow: hidden; position: relative; border-bottom: 1px solid #f0f0f0; background: #fff; }

.b2-p-img { width: 100%; height: auto; display: block; transition: transform 0.8s ease; }

.b2-p-card:hover .b2-p-img { transform: scale(1.05); }

.b2-p-overlay {
  position: absolute; inset: 0; background: rgba(36, 39, 84, 0.9);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: 0.3s;
}

.b2-p-card:hover .b2-p-overlay { opacity: 1; }

.b2-p-view-btn {
  padding: 12px 30px; background: #F8AA0F; color: #242754; border-radius: 30px;
  font-weight: 700; text-decoration: none; transform: translateY(20px); transition: 0.4s;
  -webkit-text-fill-color: #242754;
}

.b2-p-card:hover .b2-p-view-btn { transform: translateY(0); }

.b2-p-content { padding: 30px; }
.b2-p-cat { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; color: #F8AA0F; font-weight: 700; margin-bottom: 10px; display: block; }
.b2-p-name { font-size: 1.5rem; font-weight: 800; color: #242754; margin-bottom: 15px; }
.b2-p-excerpt { font-size: 0.95rem; color: #666; line-height: 1.6; margin-bottom: 20px; }

.b2-p-link {
  color: #242754; text-decoration: none; font-weight: 700;
  border-bottom: 2px solid rgba(248, 170, 15, 0.3); transition: 0.3s; display: inline-block;
}

.b2-p-link:hover { border-color: #F8AA0F; color: #F8AA0F; }

.b2-p-cta {
  margin-top: 100px; padding: 80px 20px; text-align: center;
  background: linear-gradient(45deg, #1a1d40, #242754, #1a1d40);
  background-size: 200% 200%; animation: b2-bg-pulse 6s ease infinite;
  border-radius: 20px; color: #fff; position: relative; overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.b2-p-cta-title {
  font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; position: relative; z-index: 2;
  background: linear-gradient(to right, #fff, #F8AA0F); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}

.b2-p-cta-desc { opacity: 0.8; max-width: 600px; margin: 0 auto 30px auto; position: relative; z-index: 2; font-size: 1.1rem; }

.b2-p-cta-btn {
  display: inline-block; padding: 18px 50px; position: relative; z-index: 2;
  background: #F8AA0F; color: #242754; text-decoration: none;
  font-weight: 800; border-radius: 50px; transition: 0.3s;
  box-shadow: 0 10px 25px rgba(248, 170, 15, 0.3); -webkit-text-fill-color: #242754;
}

.b2-p-cta-btn:hover { background: #fff; transform: translateY(-5px) scale(1.05); }

/* ============================================================
   İLETİŞİM SAYFASI
   ============================================================ */
.b2-contact-section { padding: 80px 0; background-color: #fcfcfc; position: relative; }

.b2-contact-container {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px;
}

.b2-info-wrapper { display: flex; flex-direction: column; gap: 20px; }

.b2-info-card {
  background: #fff; padding: 30px; border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03); border: 1px solid #eee;
  display: flex; align-items: center; gap: 20px; transition: 0.3s;
}

.b2-info-card:hover { transform: translateX(10px); border-color: #F8AA0F; box-shadow: 0 10px 30px rgba(36, 39, 84, 0.1); }

.b2-info-icon {
  width: 60px; height: 60px; background: rgba(248, 170, 15, 0.1); color: #F8AA0F;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: 0.3s;
}

.b2-info-icon svg { width: 28px; height: 28px; stroke-width: 2px; stroke: #F8AA0F; fill: none; }

.b2-info-card:hover .b2-info-icon { background: #F8AA0F; transform: rotate(-10deg); }
.b2-info-card:hover .b2-info-icon svg { stroke: #242754; }

.b2-info-text h4 { margin: 0 0 5px 0; font-size: 1.1rem; color: #242754; font-weight: 700; }
.b2-info-text p,
.b2-info-text a { margin: 0; color: #666; font-size: 1rem; text-decoration: none; transition: 0.3s; }
.b2-info-text a:hover { color: #F8AA0F; }

.b2-form-wrapper {
  background: #fff; padding: 40px; border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08); position: relative; overflow: hidden;
}

.b2-form-wrapper::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px;
  background: linear-gradient(90deg, #242754, #F8AA0F);
}

.b2-form-title { font-size: 1.8rem; font-weight: 800; color: #242754; margin-bottom: 30px; }

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

.b2-form-label { display: block; font-size: 0.9rem; font-weight: 600; color: #242754; margin-bottom: 8px; }

.b2-form-input,
.b2-form-textarea {
  width: 100%; padding: 15px; border: 1px solid #eee; border-radius: 8px;
  background: #f9f9f9; font-size: 1rem; color: #333; outline: none; transition: 0.3s;
  font-family: var(--b2-font);
}

.b2-form-input:focus,
.b2-form-textarea:focus {
  border-color: #F8AA0F; background: #fff; box-shadow: 0 0 0 4px rgba(248, 170, 15, 0.1);
}

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

.b2-form-btn {
  width: 100%; padding: 18px; background: #242754; color: #fff;
  border: none; border-radius: 8px; font-weight: 700; font-size: 1.1rem;
  cursor: pointer; transition: 0.3s; margin-top: 10px; font-family: var(--b2-font);
}

.b2-form-btn:hover { background: #F8AA0F; color: #242754; transform: translateY(-3px); }

.b2-form-success {
  display: none; margin-top: 20px; padding: 15px; border-radius: 8px;
  background: rgba(34, 197, 94, 0.1); color: #166534; border: 1px solid rgba(34, 197, 94, 0.3);
  font-size: 0.95rem; text-align: center;
}

.b2-form-error {
  display: none; margin-top: 20px; padding: 15px; border-radius: 8px;
  background: rgba(239, 68, 68, 0.1); color: #991b1b; border: 1px solid rgba(239, 68, 68, 0.3);
  font-size: 0.95rem; text-align: center;
}

.b2-map-section { height: 450px; width: 100%; position: relative; }
.b2-map-iframe { width: 100%; height: 100%; border: 0; filter: grayscale(100%); transition: 0.5s; }
.b2-map-section:hover .b2-map-iframe { filter: grayscale(0%); }

/* ============================================================
   YASAL SAYFALAR (Gizlilik, KVKK, Şartlar)
   ============================================================ */
.b2-legal-hero {
  background: linear-gradient(135deg, #1a1d40 0%, #242754 100%);
  padding: 160px 20px 80px 20px; text-align: center; color: #fff; position: relative;
}

.b2-legal-title { font-size: 3rem; font-weight: 800; margin-bottom: 15px; }
.b2-legal-desc { font-size: 1.1rem; opacity: 0.8; max-width: 700px; margin: 0 auto; }

.b2-legal-wrapper { background-color: #fcfcfc; padding: 80px 0; }

.b2-legal-container {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 300px 1fr; gap: 60px; align-items: start;
}

.b2-legal-sidebar {
  background: #fff; padding: 30px; border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05); position: sticky; top: 120px;
  border: 1px solid #eee;
}

.b2-legal-menu { list-style: none; padding: 0; margin: 0; }
.b2-legal-menu li { margin-bottom: 15px; }

.b2-legal-menu a {
  color: #555; text-decoration: none; font-weight: 600; font-size: 0.95rem;
  display: flex; align-items: center; gap: 10px; transition: 0.3s;
}

.b2-legal-menu a:hover { color: #F8AA0F; transform: translateX(5px); }
.b2-legal-menu a::before { content: '•'; color: #ddd; font-size: 1.5rem; line-height: 0; }
.b2-legal-menu a:hover::before { color: #F8AA0F; }

.b2-legal-content {
  background: #fff; padding: 50px; border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03); border: 1px solid #eee;
}

.b2-legal-section { margin-bottom: 50px; scroll-margin-top: 140px; }

.b2-legal-head {
  font-size: 1.8rem; font-weight: 800; color: #242754; margin-bottom: 20px;
  padding-bottom: 15px; border-bottom: 2px solid #f0f0f0;
}

.b2-legal-text { font-size: 1rem; line-height: 1.8; color: #555; margin-bottom: 15px; }
.b2-legal-text strong { color: #242754; }

.b2-legal-list { list-style: disc; padding-left: 20px; margin-bottom: 20px; color: #555; }
.b2-legal-list li { margin-bottom: 10px; line-height: 1.6; }

.b2-update-date { font-size: 0.9rem; color: #999; margin-top: 40px; font-style: italic; border-top: 1px solid #eee; padding-top: 20px; }

/* ============================================================
   MOBİL RESPONSIVE
   ============================================================ */
@media (max-width: 950px) {
  .b2-header { padding: 15px 20px; background: rgba(21, 23, 48, 0.95); backdrop-filter: blur(10px); }
  .b2-mobile-toggle { display: block; }
  .b2-header-btn { display: none; }

  .b2-nav-menu {
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 300px; height: 100vh;
    background: #151730; box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    flex-direction: column; justify-content: flex-start; align-items: flex-start;
    padding: 100px 30px; transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  }

  .b2-nav-menu.active { right: 0; }
  .b2-nav-item { width: 100%; margin-bottom: 10px; }
  .b2-nav-link { font-size: 1.1rem; width: 100%; display: block; border-bottom: 1px solid rgba(255,255,255,0.05); border-radius: 5px; }

  .b2-dropdown {
    position: static; width: 100%; opacity: 1; visibility: visible; transform: none;
    background: transparent; box-shadow: none; border: none; padding-left: 20px; display: none;
  }

  .b2-nav-item:hover .b2-dropdown { display: block; }

  .b2-mobile-toggle.active .bar:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); background: #F8AA0F; }
  .b2-mobile-toggle.active .bar:nth-child(2) { opacity: 0; }
  .b2-mobile-toggle.active .bar:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); background: #F8AA0F; }
}

@media (max-width: 768px) {
  .b2-hero-title { font-size: 2.4rem; }
  .b2-hero-section { padding-top: 150px; }
  .b2-hero-buttons { flex-direction: column; align-items: center; }

  .b2-services-grid,
  .b2-portfolio-grid,
  .b2-values-grid { grid-template-columns: 1fr; }

  .b2-bento-grid { display: flex; flex-direction: column; gap: 20px; }
  .b2-bento-box { grid-column: auto !important; grid-row: auto !important; text-align: center; align-items: center !important; padding: 40px 20px; }
  .b2-feature-list { justify-content: center; flex-wrap: wrap; }

  .b2-process-grid { flex-direction: column; gap: 40px; }
  .b2-process-line { display: none; }
  .b2-step-circle { animation: none; background: #F8AA0F; color: #242754; }

  .b2-story-container { grid-template-columns: 1fr; }
  .b2-contact-container { grid-template-columns: 1fr; }

  .b2-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 20px; text-align: center; margin-bottom: 40px; }
  .b2-footer-col:nth-child(1) { grid-column: span 2; }
  .b2-footer-col:nth-child(4) { grid-column: span 2; }
  .b2-social-icons { justify-content: center; }
  .b2-footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
  .b2-legal-links a { margin: 0 8px; }

  .b2-legal-container { grid-template-columns: 1fr; }
  .b2-legal-sidebar { position: relative; top: 0; }
  .b2-legal-content { padding: 30px 20px; }
  .b2-legal-title { font-size: 2rem; }

  .b2-stats-bar { flex-direction: column; gap: 30px; margin-top: 0; border-radius: 0; width: 100%; }
  .b2-srv-main-grid { grid-template-columns: 1fr; }

  .b2-sh-card-container { margin-top: -40px; padding: 30px 20px; width: 90%; }
  .b2-sh-features { grid-template-columns: 1fr; }
  .b2-sh-title { font-size: 2rem; }

  .b2-p-grid { grid-template-columns: 1fr; }
  .b2-page-title { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .b2-hero-title { font-size: 2rem; }
  .b2-ref-box { padding: 25px 15px; }
  .b2-sh-card-container { width: 95%; padding: 25px 15px; }
}


/* Logo boyut guncellemesi */
.b2-nav-logo img {
  height: 58px !important;
  max-height: 60px !important;
}
.b2-footer-logo img {
  height: 65px !important;
}

/* ============================================================
   BLOG MODÜLÜ
   ============================================================ */
.b2-blog-section { padding: 80px 20px; background: #fafafa; }
.b2-blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px; max-width: 1200px; margin: 0 auto;
}
.b2-blog-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: transform 0.3s ease;
}
.b2-blog-card:hover { transform: translateY(-5px); }
.b2-blog-img { width: 100%; height: 220px; object-fit: cover; }
.b2-blog-content { padding: 25px; }
.b2-blog-meta { font-size: 0.9rem; color: #888; margin-bottom: 10px; display: block; }
.b2-blog-title {
  font-size: 1.4rem; color: #242754; font-weight: 800; margin-bottom: 15px;
  line-height: 1.4;
}
.b2-blog-excerpt { color: #666; font-size: 1rem; margin-bottom: 20px; line-height: 1.6; }
.b2-blog-link {
  display: inline-block; font-weight: 700; color: #F8AA0F;
  text-decoration: none; border-bottom: 2px solid transparent; transition: border 0.3s;
}
.b2-blog-link:hover { border-bottom-color: #F8AA0F; }

/* Makale Okuma Sayfası */
.b2-article-section {
  max-width: 800px; margin: 120px auto 80px auto; padding: 0 20px;
}
.b2-article-header { text-align: center; margin-bottom: 40px; }
.b2-article-category {
  display: inline-block; background: rgba(248, 170, 15, 0.1); color: #F8AA0F;
  padding: 5px 15px; border-radius: 20px; font-weight: 700; margin-bottom: 15px;
}
.b2-article-h1 {
  font-size: 2.5rem; color: #242754; font-weight: 800; line-height: 1.3; margin-bottom: 20px;
}
.b2-article-meta { color: #888; font-size: 1rem; }
.b2-article-hero-img {
  width: 100%; height: auto; max-height: 450px; object-fit: cover;
  border-radius: 12px; margin-bottom: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.b2-article-content {
  font-size: 1.15rem; color: #444; line-height: 1.8;
}
.b2-article-content h2 {
  font-size: 1.8rem; color: #242754; margin: 40px 0 20px 0; font-weight: 800;
}
.b2-article-content h3 {
  font-size: 1.4rem; color: #333; margin: 30px 0 15px 0; font-weight: 700;
}
.b2-article-content p { margin-bottom: 25px; }
.b2-article-content ul, .b2-article-content ol { margin-bottom: 25px; padding-left: 20px; }
.b2-article-content li { margin-bottom: 10px; }
.b2-article-content a { color: #F8AA0F; font-weight: bold; text-decoration: underline; }
.b2-article-content blockquote {
  border-left: 5px solid #F8AA0F; background: #f9f9f9; padding: 20px;
  font-style: italic; color: #555; margin: 30px 0; border-radius: 0 8px 8px 0;
}
