
:root {
  --primary: #EA580C;
  --primary-hover: #C2410C;
  --primary-light: #FFedd5;
  --dark: #0F172A;
  --dark-hover: #1E293B;
  --light: #F8FAFC;
  --success: #10B981;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: 'Inter', sans-serif;
  --font-title: 'Poppins', sans-serif;
  --font-logo: 'Montserrat', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

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

/* Typography Utility */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: var(--dark);
  font-weight: 700;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* Header */
header {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
  border-bottom: 3px solid var(--primary); /* Glowing neon line directly on header */
  box-shadow: 0 2px 10px rgba(234, 88, 12, 0.5), 0 4px 20px rgba(234, 88, 12, 0.25);
}

/* Hide neon light on header when mobile menu is open, it moves to the bottom of the drawer */
header.menu-open {
  border-bottom-color: transparent;
  box-shadow: none;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 96px;
  overflow: hidden;
  transition: var(--transition);
}

/* Scrolled Header Styling */
header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 2px solid var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), 0 1px 6px rgba(234, 88, 12, 0.3);
}

header.scrolled .header-container {
  height: 62px;
}

header.scrolled .site-logo {
  height: 48px;
}

header.scrolled .logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(234, 88, 12, 0.15);
}

header.scrolled .logo-icon span {
  font-size: 16px;
}

header.scrolled .logo-text {
  font-size: 20px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-logo);
  user-select: none;
  text-decoration: none;
}

/* Yeni Logo Görseli */
.site-logo {
  height: 76px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  transition: var(--transition);
}

.site-logo:hover {
  opacity: 0.85;
}

/* Footer'da logo beyaz kart üzerinde göster */
.site-logo-footer {
  height: 60px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 6px 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.logo-icon {
  background: #EA580C;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0 4px 6px -1px rgba(234, 88, 12, 0.2);
  flex-shrink: 0;
  transition: var(--transition);
}

.logo-icon span {
  font-size: 22px;
  color: white;
  display: block;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-logo);
  font-size: 25px;
  letter-spacing: -0.8px;
  line-height: 1;
  transition: var(--transition);
}

.logo-text-dark {
  color: #0F172A;
  font-weight: 700;
}

.logo-text-light {
  color: #FFFFFF;
  font-weight: 700;
}

.logo-text-primary {
  color: #EA580C;
  font-weight: 900;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Desktop Nav Styling */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-family: var(--font-logo);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Toggle Hamburger Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 102;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: var(--dark);
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hamburger Active / Open State Animation */
.menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  background-color: var(--primary);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  width: 0%;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  background-color: var(--primary);
}

/* Mobile Menu Drawer Panel */
.mobile-menu-drawer {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 3px solid transparent;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.05);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
}

.mobile-menu-drawer.active {
  border-bottom-color: var(--primary);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.05), 0 3px 10px rgba(234, 88, 12, 0.6), 0 5px 20px rgba(234, 88, 12, 0.3);
}

.mobile-menu-drawer.active {
  max-height: 360px;
  opacity: 1;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 1.25rem;
}

.mobile-nav-link {
  font-family: var(--font-logo);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  text-decoration: none;
  transition: var(--transition);
  padding: 8px 0;
  border-bottom: 1px solid #F1F5F9;
}

.mobile-nav-link:last-of-type {
  border-bottom: none;
}

.mobile-nav-link:hover {
  color: var(--primary);
  padding-left: 6px;
}

.mobile-nav-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  color: var(--primary);
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(234, 88, 12, 0.15);
}

.mobile-nav-call:hover {
  background-color: var(--primary);
  color: var(--white);
  padding-left: 0;
}

.phone-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary);
  color: var(--white);
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 1px solid var(--primary);
  box-shadow: 0 4px 6px rgba(234, 88, 12, 0.15);
}

.phone-badge:hover {
  background-color: #ea580c;
  border-color: #ea580c;
  color: var(--white);
}

.cta-icon-svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

/* Hero Section */
.hero {
  padding: 5rem 0;
  background: linear-gradient(105deg, #FFFFFF 47%, #F1F5F9 47%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

/* Active Signal Badge */
.signal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(226, 232, 240, 1);
  padding: 8px 16px;
  border-radius: 9999px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; /* Sistem yazı tipleri küçük ekranlarda Türkçe karakterleri mükemmel çizer */
  font-weight: 500; /* Yazı kalınlığı 500'e çekilerek 'i' harfinin noktasının gövdeyle birleşmesi önlendi */
  font-size: clamp(0.78rem, 3vw, 0.88rem);
  color: #334155;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  white-space: nowrap;
  max-width: 100%;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: var(--success);
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: var(--success);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  animation: pulse 1.8s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero-text h1, .dynamic-hero-title {
  font-size: clamp(1.8rem, 5.5vw, 2.6rem);
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: var(--dark);
  letter-spacing: -0.5px;
  text-align: center;
}

.dynamic-hero-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.dynamic-icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  width: 1.15em;
  height: 1.15em;
  transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
  flex-shrink: 0;
}

.dynamic-icon-container.fade {
  opacity: 0;
  transform: scale(0.85);
}

.dynamic-icon-container svg {
  width: 100%;
  height: 100%;
  stroke-width: 2.2;
}

.hero-subtitle {
  font-family: var(--font-title);
  font-size: clamp(1.15rem, 4.5vw, 1.4rem);
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  text-align: center;
  max-width: 600px;
}

.highlight-orange {
  color: var(--primary);
}

.dynamic-word-container {
  display: inline-block;
  color: var(--primary);
  transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
  text-align: left;
}

.dynamic-word-container.fade {
  opacity: 0;
  transform: translateY(5px);
}

/* Hero Bullet List */
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0.75rem auto 2.25rem auto;
  display: inline-flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
  text-align: left;
  max-width: 100%;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(0.95rem, 3.2vw, 1.1rem);
  font-weight: 600;
  color: #334155;
  transition: var(--transition);
}

.hero-bullets li svg {
  color: var(--success);
  flex-shrink: 0;
  background-color: #ECFDF5;
  border: 1px solid #D1FAE5;
  padding: 4px;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero CTA Group & Button */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  width: 100%;
}

.hero-cta-group .signal-badge {
  margin-top: 12px;
  margin-bottom: 0;
}

.hero-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #EA580C 0%, #F97316 100%);
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(1.15rem, 4vw, 1.35rem);
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 10px 25px -5px rgba(234, 88, 12, 0.4), 0 8px 10px -6px rgba(234, 88, 12, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.hero-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -5px rgba(234, 88, 12, 0.5), 0 10px 15px -6px rgba(234, 88, 12, 0.3);
}

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

.hero-primary-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 20%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shimmereffect 3s infinite;
}

@keyframes shimmereffect {
  0% { left: -50%; }
  30% { left: 150%; }
  100% { left: 150%; }
}

.hero-cta-subtext {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hero Image Column */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-container {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  transition: var(--transition);
}

.hero-img:hover {
  transform: scale(1.02);
}

/* Trust Badges Floating */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}

.floating-badge-1 {
  bottom: 20px;
  left: -20px;
  animation-delay: 0s;
}

.floating-badge-2 {
  top: 30px;
  right: -20px;
  animation-delay: 2s;
}

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

.badge-icon {
  width: 38px;
  height: 38px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.badge-text div {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}

.badge-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Brands Grid */
.brands-section {
  padding: 4rem 0;
  background-color: var(--white);
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.brands-title {
  text-align: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 600;
}

.brands-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.brand-card {
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 10px 20px;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: #475569;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.01);
  transition: var(--transition);
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.brand-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  display: inline-block;
  transition: var(--transition);
  flex-shrink: 0;
}

.brand-card:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(234, 88, 12, 0.08);
}

.brand-card:hover .brand-dot {
  transform: scale(1.3);
  box-shadow: 0 0 8px var(--primary);
}


/* Hero Stats Section */
.hero-stats {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin: 1.5rem 0 2.5rem 0;
  width: 100%;
  max-width: 600px;
}

.hero-stats .stat-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-stats .stat-icon-wrapper {
  background-color: transparent;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.hero-stats .stat-number {
  font-family: var(--font-title);
  font-size: clamp(1.3rem, 4.5vw, 1.85rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0.25rem;
  letter-spacing: -0.5px;
}

.hero-stats .stat-label {
  color: var(--text-muted);
  font-size: clamp(0.72rem, 2.6vw, 0.88rem);
  font-weight: 600;
  font-family: var(--font-title);
}

/* Neden Biz? Section */
.why-us-section {
  padding: 5rem 0;
  background-color: var(--white);
  border-top: 1px solid #E2E8F0; /* Consistent divider line above Neden Biz */
  border-bottom: 1px solid #E2E8F0;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2x2 düzeni */
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.why-us-card {
  background-color: var(--light);
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  transition: var(--transition);
  display: flex;
  flex-direction: row; /* İkon solda, içerik sağda */
  align-items: flex-start;
  gap: 1.25rem;
  text-align: left;
}

.why-us-card:hover {
  transform: translateY(-4px);
  background-color: var(--white);
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.04), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  border-color: #CBD5E1;
}

.why-us-icon-wrapper {
  width: 46px;
  height: 46px;
  background-color: var(--white);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  flex-shrink: 0;
}

.why-us-icon-wrapper svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  display: block;
}

.why-us-card:hover .why-us-icon-wrapper {
  background-color: var(--primary);
  color: var(--white);
}

.why-us-card-content {
  flex-grow: 1;
}

.why-us-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.why-us-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background-color: var(--light);
}

.section-header {
  text-align: left;
  max-width: 900px;
  margin: 0 auto 2.5rem auto;
}

.section-subtitle {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.1rem;
  margin: 0 0 0.25rem 0;
  display: block;
}

/* Ortalanmış bölüm başlığı */
.section-header-centered {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header-centered .section-subtitle {
  font-size: 1.5rem;
  letter-spacing: 3px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0;
}

/* Bölüm başlığında logo */
.section-header-logo {
  display: block;
  height: 100px;
  max-width: 320px;
  width: auto;
  object-fit: contain;
  margin-top: 0.75rem;
}

/* Neden Biz bölümü ortalı başlık */
.why-us-header {
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
}

.why-us-header .section-subtitle {
  font-size: 1.5rem;
  letter-spacing: 3px;
}

.services-section .section-title {
  white-space: nowrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  background-color: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -2px rgba(0, 0, 0, 0.02);
  position: relative;
  text-decoration: none;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.06), 0 4px 6px -4px rgba(15, 23, 42, 0.06);
  border-color: #CBD5E1;
}

.service-read-more {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-hover);
  align-self: flex-end;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.service-card:hover .service-read-more {
  gap: 8px;
}

.service-icon {
  width: 48px;
  height: 48px;
  background-color: #F1F5F9;
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  display: block;
}

.service-card:hover .service-icon {
  background-color: var(--primary);
  color: var(--white);
}

.service-name {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--dark);
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}



/* Call Out Section */
.callout {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  color: var(--white);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.callout-content {
  max-width: 700px;
  margin: 0 auto;
}

.callout-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(234, 88, 12, 0.15);
  border: 1px solid rgba(234, 88, 12, 0.3);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}

.callout h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.callout p {
  color: #94A3B8;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

/* Footer */
footer {
  background-color: #0B0F19;
  color: #94A3B8;
  padding: 4rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-about {
  max-width: 450px;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-desc {
  color: #94A3B8;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-title {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

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

.footer-links li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #CBD5E1;
}

.footer-links a {
  color: #CBD5E1;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.legal-notice {
  text-align: center;
  color: #94A3B8; /* High contrast on dark background */
  max-width: 900px;
  line-height: 1.6;
}

.copyright {
  color: #94A3B8; /* High contrast on dark background */
}

/* Floating Elements */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25D366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  z-index: 99;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20BA5A;
}

/* Mobile Sticky CTA Footer */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #FFF7ED; /* Sıcak şeftali / krem tonu (Marka ile uyumlu) */
  z-index: 98;
  box-shadow: 0 -3px 12px rgba(234, 88, 12, 0.18), 0 -8px 24px rgba(234, 88, 12, 0.1);
  padding: 10px 16px;
  border-top: 3px solid #EA580C;
}

.mobile-sticky-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

.mobile-sticky-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 12px;
  border-radius: 12px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  user-select: none;
  cursor: pointer;
}

.mobile-sticky-btn.btn-call {
  background-color: #C2410C; /* Darker orange for better text contrast */
  color: var(--white);
  box-shadow: 0 4px 12px rgba(194, 65, 12, 0.3), 0 0 8px rgba(194, 65, 12, 0.15);
}

.mobile-sticky-btn.btn-call:active {
  background-color: #9A3412;
  transform: scale(0.98);
}

.mobile-sticky-btn.btn-whatsapp {
  background-color: #15803D; /* Deep green for high text contrast */
  color: var(--white);
  box-shadow: 0 4px 12px rgba(21, 128, 61, 0.3), 0 0 8px rgba(21, 128, 61, 0.15);
}

.mobile-sticky-btn.btn-whatsapp:active {
  background-color: #166534;
  transform: scale(0.98);
}

.sticky-icon-svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

/* Responsive Grid / Media Queries */
@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 0;
  }

  footer {
    padding-top: 2.5rem;
    padding-bottom: 110px; /* Space for sticky bar so footer content is not cut off, keeps dark background clean */
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
  }

  .section-header-logo {
    height: 85px;
    width: auto;
    max-width: 260px;
  }

  .desktop-nav {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }

  .header-cta .phone-badge {
    display: none; /* Mobile sticky bar replaces header phone badge for cleaner UI */
  }

  .hero {
    padding: 2rem 0 1.5rem 0; /* Reduced bottom padding to fix the huge gap above Neden Biz */
    background: #FFFFFF;
  }

  .why-us-section,
  .brands-section,
  .services-section,
  .blog-section {
    padding: 2.5rem 0; /* Reduced section padding on mobile for tighter layout */
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-text {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-text h1 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    text-align: center;
    white-space: nowrap;
  }

  .dynamic-hero-title {
    align-items: center;
    white-space: nowrap;
  }

  .dynamic-icon-container {
    margin-top: 0;
  }

  .hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
  }

  .hero-bullets {
    margin: 0.5rem auto 1.75rem auto;
    gap: 0.75rem;
  }

  .hero-cta-group {
    width: 100%;
    align-items: center;
  }

  .hero-primary-btn {
    width: 100%;
    max-width: 400px;
  }

  .hero-image-wrapper {
    order: 2;
    max-width: 450px;
    margin: 0 auto;
  }

  .floating-badge {
    padding: 8px 14px;
  }
  
  .floating-badge-1 {
    left: -10px;
    bottom: 10px;
  }
  
  .floating-badge-2 {
    right: -10px;
    top: 10px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Footer responsiveness modifications (shrink footer for mobile) */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .logo-icon span {
    font-size: 18px;
  }

  .logo-text {
    font-size: 21px;
  }

  .footer-logo {
    margin-bottom: 1rem;
  }

  .footer-desc {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 1rem;
  }

  .footer-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .footer-links li {
    margin-bottom: 0.75rem;
  }

  .footer-links a {
    font-size: 0.88rem;
  }

  .legal-notice {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .copyright {
    font-size: 0.78rem;
  }

  .mobile-sticky-bar {
    display: block;
  }

  .whatsapp-float {
    display: none !important; /* Hide floating WhatsApp button on mobile since we have a dedicated button in the bar */
  }
  
  .callout h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-text h1, .dynamic-hero-title {
    font-size: clamp(1.25rem, 5.6vw, 1.55rem);
    line-height: 1.35;
    white-space: nowrap;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .brand-card {
    padding: 10px 16px;
    font-size: 0.92rem;
    border-radius: 10px;
  }

  .brands-container {
    gap: 0.6rem 0.8rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .service-card {
    padding: 1.25rem 1rem;
    border-radius: 12px;
  }

  .service-name {
    font-size: 1.05rem;
  }

  .service-desc {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.75rem;
    border-radius: 8px;
  }

  .service-icon svg {
    width: 20px;
    height: 20px;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .why-us-card {
    padding: 1.25rem;
    border-radius: 14px;
    gap: 1rem;
  }

  .why-us-card-title {
    font-size: 1.05rem;
  }

  .why-us-card-desc {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .why-us-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  .why-us-icon-wrapper svg {
    width: 20px;
    height: 20px;
  }
  
  .hero-primary-btn {
    font-size: 1.1rem;
    padding: 14px 20px;
  }
  
  .mobile-sticky-bar {
    padding: 8px 12px;
  }
  
  .mobile-sticky-container {
    gap: 8px;
  }

  .mobile-sticky-btn {
    font-size: 0.88rem;
    padding: 12px 8px;
    gap: 6px;
    border-radius: 10px;
  }
  
  .sticky-icon-svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 360px) {
  .section-title {
    font-size: 1.25rem;
  }

  .mobile-sticky-btn {
    font-size: 0.8rem;
    padding: 10px 6px;
    gap: 4px;
    border-radius: 8px;
  }
  
  .sticky-icon-svg {
    width: 14px;
    height: 14px;
  }
}

/* --- Blog / İçerik Bölümü ve Modal Tasarımı --- */
.blog-section {
  padding: 5rem 0;
  background-color: var(--white);
  border-top: 1px solid #E2E8F0; /* Consistent divider line above Blog section */
  border-bottom: 1px solid #E2E8F0;
}

.blog-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 10px 2rem 10px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) #F1F5F9;
}

.blog-grid::-webkit-scrollbar {
  height: 8px;
}

.blog-grid::-webkit-scrollbar-track {
  background: #F1F5F9;
  border-radius: 9999px;
}

.blog-grid::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 9999px;
}

.blog-grid::-webkit-scrollbar-thumb:hover {
  background: #ea580c;
}

.blog-grid .blog-card {
  flex: 0 0 345px;
  scroll-snap-align: start;
}

.blog-card {
  background-color: var(--light);
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.75rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-4px);
  background-color: var(--white);
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.04), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  border-color: #CBD5E1;
}

.blog-tag {
  color: var(--primary-hover); /* High contrast orange for accessibility */
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card-snippet {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.blog-read-more {
  color: var(--primary-hover);
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.blog-card:hover .blog-read-more {
  gap: 10px;
}

/* Blog Makale Modalı */
.blog-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1rem;
}

.blog-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.blog-modal-container {
  background-color: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 650px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  padding: 2.5rem;
}

.blog-modal.active .blog-modal-container {
  transform: translateY(0);
}

.blog-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background-color: var(--light);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--dark);
}

.blog-modal-close:hover {
  background-color: #E2E8F0;
  transform: rotate(90deg);
}

.blog-modal-body h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-modal-body .blog-full-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
}

.blog-modal-body .blog-full-text p {
  margin-bottom: 1.25rem;
}

.blog-modal-body .blog-full-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.blog-modal-body .blog-full-text ul {
  margin-bottom: 1.25rem;
  padding-left: 1.25rem;
}

.blog-modal-body .blog-full-text li {
  margin-bottom: 0.5rem;
  position: relative;
}

.blog-modal-cta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #E2E8F0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.blog-modal-cta-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  max-width: 320px;
}

.blog-modal-cta-btn {
  background-color: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(234, 88, 12, 0.2);
}

.blog-modal-cta-btn:hover {
  background-color: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(234, 88, 12, 0.3);
}

@media (max-width: 640px) {
  .blog-modal-container {
    padding: 1.75rem;
    max-height: 90vh;
  }
  
  .blog-modal-body h2 {
    font-size: 1.35rem;
  }
  
  .blog-modal-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  
  .blog-modal-cta-text {
    max-width: 100%;
  }
  
  .blog-modal-cta-btn {
    justify-content: center;
  }
}

/* --- Blog Detay Sayfası İki Sütunlu Düzen --- */
.blog-detail-container {
  max-width: 1100px !important; /* Genişletilmiş iki sütun için */
  padding: 3rem;
  margin: 0 auto;
}

.blog-detail-grid {
  display: grid;
  grid-template-columns: 2.3fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.blog-main-content {
  background-color: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 2.25rem 2.5rem 2.5rem 2.5rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
  margin-top: 0;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 0;
}

.sidebar-widget {
  background-color: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 2rem 1.75rem 1.75rem 1.75rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
  margin-top: 0;
}

/* Sidebar İletişim Widget'ı */
.sidebar-widget-contact {
  background-color: var(--white);
  color: var(--dark);
  border: 1px solid #E2E8F0;
}

.sidebar-widget-contact h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  margin-top: 0;
  margin-bottom: 0.25rem;
  font-family: var(--font-title);
}

.sidebar-widget-contact p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.sidebar-btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
}

.sidebar-btn-call {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 6px rgba(234, 88, 12, 0.2);
}

.sidebar-btn-call:hover {
  background-color: #ea580c;
  transform: translateY(-2px);
}

.sidebar-btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
  box-shadow: 0 4px 6px rgba(37, 211, 102, 0.2);
}

.sidebar-btn-whatsapp:hover {
  background-color: #20ba59;
  transform: translateY(-2px);
}

/* Sidebar Kategoriler */
.sidebar-widget-title {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 0.5rem;
  font-family: var(--font-title);
}

.sidebar-categories-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-category-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background-color: var(--light);
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: var(--transition);
}

.sidebar-category-link svg {
  color: var(--text-muted);
  transition: var(--transition);
  flex-shrink: 0;
}

.sidebar-category-link:hover {
  background-color: var(--white);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateX(4px);
}

.sidebar-category-link:hover svg {
  color: var(--primary);
}

@media (max-width: 992px) {
  .blog-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .blog-detail-container {
    padding: 1.5rem;
  }
  
  .blog-main-content {
    padding: 1.75rem;
  }
}

/* --- Detay Sayfası Metin Güzelleştirmeleri --- */
.blog-full-text {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #475569; /* Okunabilir yumuşak koyu gri */
}

.blog-full-text p {
  margin-bottom: 1.5rem;
}

.blog-full-text h2, .blog-full-text h3 {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 2.25rem;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 16px;
  line-height: 1.35;
}

/* Başlıkların soluna şık turuncu dikey çizgi */
.blog-full-text h2::before, .blog-full-text h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background-color: var(--primary);
  border-radius: 4px;
}

.blog-full-text strong {
  color: var(--dark);
  font-weight: 700;
}

@media (max-width: 768px) {
  .blog-detail-container {
    padding: 1rem;
  }
  
  .blog-main-content {
    padding: 2rem 1.25rem;
    border-radius: 18px;
  }
  
  .blog-main-content h1 {
    font-size: 1.65rem !important;
    line-height: 1.3;
    margin-bottom: 0.75rem !important;
  }
  
  .blog-full-text {
    font-size: 0.96rem;
    line-height: 1.75;
  }
  
  .blog-full-text h2, .blog-full-text h3 {
    font-size: 1.18rem;
    margin-top: 1.75rem;
    padding-left: 12px;
  }
  
  .blog-full-text h2::before, .blog-full-text h3::before {
    width: 3px;
    top: 3px;
    bottom: 3px;
  }

  /* Ana Sayfa Blog Carousel (Mobil Yatay Kaydırma) */
  .blog-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.25rem;
    padding: 0.5rem 1.25rem 2rem 1.25rem;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  .blog-grid::-webkit-scrollbar {
    display: none; /* Kaydırma çubuğunu gizler */
  }

  .blog-grid {
    scrollbar-width: none; /* Firefox için kaydırma çubuğunu gizler */
  }

  .blog-grid .blog-card {
    flex: 0 0 290px; /* Her bir kartın genişliği */
    scroll-snap-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.03);
    margin-bottom: 0.25rem;
  }
}

/* Subpage top spacing optimization */
.blog-detail-page main {
  padding-top: 3.5rem !important;
}

@media (max-width: 768px) {
  .blog-detail-page main {
    padding-top: 2rem !important;
  }
}


