/* ===== MODERN ESNAFTAN CSS ===== */

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1E1E1E;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== SLIDER BAR ===== */
.slider-bar {
  background: linear-gradient(135deg, #00B7B2, #009d99);
  color: white;
  padding: 12px 0;
  position: relative;
  overflow: hidden;
}

.slider-content {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  flex: 0 0 100%;
  text-align: center;
  padding: 0 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.active {
  opacity: 1;
}

.slide-text {
  font-size: 14px;
  font-weight: 500;
}

.slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  display: flex;
  gap: 8px;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ===== HEADER ===== */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 183, 178, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 183, 178, 0.1);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

/* Tüm sayfalarda aynı header düzeni için */
header .container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 16px 20px !important;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Tüm sayfalarda aynı logo konumu için */
header .logo {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.logo-letter {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00B7B2, #009d99);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 183, 178, 0.3);
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #00B7B2;
}

.nav {
  display: flex;
  gap: 40px !important;
}

/* Tüm sayfalarda aynı navbar boşlukları için */
.header .nav {
  gap: 40px !important;
}

nav.nav {
  gap: 40px !important;
}

.nav-link {
  text-decoration: none;
  color: #1E1E1E;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #00B7B2;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00B7B2;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Tüm sayfalarda aynı header-actions düzeni için */
header .header-actions {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}

/* Tüm sayfalarda aynı buton stilleri için */
header .btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  border: none !important;
}

header .btn-primary {
  background: linear-gradient(135deg, #00B7B2, #009d99) !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(0, 183, 178, 0.3) !important;
}

header .btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 183, 178, 0.4) !important;
}

/* Esnaflar ve kampanya sayfalarında ikonları görünür yap */
header .btn i {
  display: inline-block !important;
  font-size: 16px !important;
  margin-right: 8px !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Özellikle esnaflar ve kampanya sayfalarında buton ikonları */
.esnaflar .btn i,
.kampanya .btn i,
header .btn-primary i {
  display: inline-block !important;
  font-size: 16px !important;
  margin-right: 8px !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #00B7B2;
  cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #00B7B2, #009d99);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 183, 178, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 183, 178, 0.4);
}

.btn-outline {
  background: transparent;
  color: #00B7B2;
  border: 2px solid #00B7B2;
}

.btn-outline:hover {
  background: #00B7B2;
  color: white;
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-small {
  padding: 8px 16px;
  font-size: 12px;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #00B7B2 0%, #009d99 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-dots)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 600px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: white;
}

.hero-title .highlight {
  color: white;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

/* Download Buttons */
.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  max-width: 300px;
}

.download-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.download-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.download-text {
  flex: 1;
}

.download-label {
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #006B66;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: #666;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-showcase {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 600px;
}

.phone-mockup {
  position: absolute;
  width: 200px;
  height: 400px;
  background: #1a1a1a;
  border-radius: 30px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.main-phone:hover {
  transform: translateX(-50%) scale(1.05);
}

.promo-phone:hover {
  transform: rotate(-15deg) scale(1.05);
}

.map-phone:hover {
  transform: rotate(15deg) scale(1.05);
}

.main-phone {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.promo-phone {
  top: 100px;
  left: 20px;
  z-index: 2;
  transform: rotate(-15deg);
}

.map-phone {
  top: 150px;
  right: 20px;
  z-index: 1;
  transform: rotate(15deg);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #f8f9fa;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: #00B7B2;
  color: white;
  font-size: 14px;
  font-weight: 600;
}

.phone-status {
  display: flex;
  gap: 8px;
  font-size: 12px;
}

.phone-content {
  padding: 15px;
  height: calc(100% - 50px);
  overflow-y: auto;
}

.app-header {
  margin-bottom: 15px;
}

.app-logo {
  font-size: 24px;
  font-weight: 700;
  color: #00B7B2;
  margin-bottom: 8px;
}

.delivery-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #666;
}

.app-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.tab {
  padding: 6px 0;
  font-size: 12px;
  color: #666;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.tab.active {
  color: #00B7B2;
  border-bottom-color: #00B7B2;
}

.app-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 6px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.category-item i {
  font-size: 20px;
  color: #00B7B2;
  margin-bottom: 6px;
}

.category-item span {
  font-size: 10px;
  color: #333;
  text-align: center;
  font-weight: 500;
  line-height: 1.2;
}

/* Promo Phone Styles */
.promo-content {
  padding: 20px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-badge {
  background: #e74c3c;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
  display: inline-block;
}

.promo-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.4;
}

.promo-subtitle {
  font-size: 12px;
  color: #666;
  margin-bottom: 20px;
}

.promo-image {
  font-size: 48px;
  color: #00B7B2;
}

/* Map Phone Styles */
.map-content {
  padding: 15px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.map-header {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.product-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.product-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 4px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 500;
  color: white;
}

.product-category.fresh {
  background: linear-gradient(135deg, #4CAF50, #2E7D32);
}

.product-category.dairy {
  background: linear-gradient(135deg, #2196F3, #1565C0);
}

.product-category.meat {
  background: linear-gradient(135deg, #FF5722, #D32F2F);
}

.product-category i {
  font-size: 16px;
  margin-bottom: 4px;
}

.featured-products {
  margin-bottom: 12px;
}

.product-item {
  background: white;
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: left;
}

.product-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 600;
  color: white;
}

.product-badge.new {
  background: #4CAF50;
}

.product-badge.sale {
  background: #FF5722;
}

.product-name {
  font-size: 10px;
  font-weight: 500;
  color: #333;
  margin-bottom: 2px;
}

.product-price {
  font-size: 9px;
  font-weight: 600;
  color: #00B7B2;
}

.map-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: #666;
}

.map-location i {
  color: #00B7B2;
}

/* ===== TRUST SECTION ===== */
.trust-section {
  padding: 60px 0;
  background: white;
  border-bottom: 1px solid #f0f0f0;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #f8fffe;
  border-radius: 16px;
  border: 1px solid rgba(0, 183, 178, 0.1);
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 183, 178, 0.15);
  border-color: rgba(0, 183, 178, 0.2);
}

.trust-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00B7B2, #009d99);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon i {
  font-size: 24px;
  color: white;
}

.trust-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1E1E1E;
  margin-bottom: 4px;
}

.trust-content p {
  font-size: 14px;
  color: #666;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fffe 0%, #e6f7f7 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 183, 178, 0.1);
  border: 1px solid rgba(0, 183, 178, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 183, 178, 0.15);
}

.testimonial-content {
  margin-bottom: 24px;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.stars i {
  color: #FFD700;
  font-size: 16px;
}

.testimonial-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00B7B2, #009d99);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar i {
  font-size: 24px;
  color: white;
}

.author-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1E1E1E;
  margin-bottom: 4px;
}

.author-info span {
  font-size: 14px;
  color: #666;
}

/* ===== PARTNERS SECTION ===== */
.partners {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.partners::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23666" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23666" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="%23666" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23666" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23666" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  background: white;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #333, #666, #333);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.partner-card:hover::before {
  transform: scaleX(1);
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.1);
}

.partner-icon {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 28px;
  margin: 0 auto 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.partner-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.05), rgba(0,0,0,0.02));
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.partner-card:hover .partner-icon {
  transform: scale(1.05) rotate(3deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #ddd;
}

.partner-card:hover .partner-icon::before {
  opacity: 1;
}

.partner-content {
  text-align: center;
}

.partner-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.partner-card:hover .partner-content h4 {
  color: #333;
}

.partner-content span {
  font-size: 14px;
  color: #666;
  font-weight: 500;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 4px 12px;
  border-radius: 15px;
  display: inline-block;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

.partner-card:hover .partner-content span {
  background: linear-gradient(135deg, #333, #555);
  color: white;
  transform: translateY(-1px);
}

.partner-description {
  font-size: 12px;
  color: #999;
  line-height: 1.4;
  margin-top: 8px;
  opacity: 0.8;
}

/* Ekmek İkonu Çizimi */
.bread-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bread-body {
  position: absolute;
  width: 32px;
  height: 20px;
  background: #333;
  border-radius: 16px 16px 8px 8px;
  border: 2px solid #333;
}

.bread-top {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 28px;
  height: 16px;
  background: #f4e4bc;
  border-radius: 14px 14px 6px 6px;
  border: 1px solid #333;
}

.bread-lines {
  position: absolute;
  top: 6px;
  left: 4px;
  width: 24px;
  height: 1px;
  background: #333;
  border-radius: 1px;
}

.bread-lines::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  width: 24px;
  height: 1px;
  background: #333;
  border-radius: 1px;
}

.bread-lines::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  width: 24px;
  height: 1px;
  background: #333;
  border-radius: 1px;
}

/* ===== SECTIONS ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1E1E1E;
  margin-bottom: 16px;
}

.section-description {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="features-dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%23666" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23features-dots)"/></svg>');
  opacity: 0.3;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(0, 183, 178, 0.15);
  border: 1px solid rgba(0, 183, 178, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::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: left 0.6s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 80px rgba(0, 183, 178, 0.25);
  border-color: rgba(0, 183, 178, 0.3);
}

/* Eski feature-icon stili kaldırıldı */

/* Feature Illustrations */
.feature-illustration {
  width: 90px;
  height: 90px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: none;
  overflow: visible;
}

/* Çizimlerin daha iyi görünmesi için */
.feature-illustration * {
  position: relative;
  z-index: 1;
}

/* Feature resimleri için stil */
.feature-image {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.illustration-scene {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Komisyonsuz Sistem Çizimi - Modern Minimalist */
.esnaf-shop {
  position: relative;
  width: 80px;
  height: 80px;
}

.shop-building {
  width: 45px;
  height: 30px;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border: 2px solid #e9ecef;
  border-radius: 8px;
  position: absolute;
  top: 25px;
  left: 17px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.shop-building::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-bottom: 15px solid #dc3545;
  position: absolute;
  top: -15px;
  left: 0;
}

.shop-building::after {
  content: '';
  width: 6px;
  height: 8px;
  background: #6c757d;
  border-radius: 3px;
  position: absolute;
  top: 6px;
  left: 6px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.shop-building::before {
  content: '';
  width: 6px;
  height: 8px;
  background: #6c757d;
  border-radius: 3px;
  position: absolute;
  top: 6px;
  right: 6px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.shop-sign {
  position: absolute;
  top: 8px;
  right: 10px;
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  box-shadow: 0 3px 8px rgba(220, 53, 69, 0.3);
}

.money-bag {
  position: absolute;
  bottom: 20px;
  left: 10px;
  width: 16px;
  height: 20px;
  background: linear-gradient(135deg, #ffc107, #ffb300);
  border-radius: 8px 8px 4px 4px;
  border: 2px solid #ff8f00;
  box-shadow: 0 3px 6px rgba(255, 193, 7, 0.3);
}

.money-bag::before {
  content: '₺';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #212529;
  font-size: 9px;
  font-weight: bold;
}

.happy-customer {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, #28a745, #20c997);
  border-radius: 50%;
  border: 2px solid #1e7e34;
  box-shadow: 0 2px 6px rgba(40, 167, 69, 0.3);
}

.happy-customer::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

.happy-customer::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 3px;
  height: 3px;
  background: #28a745;
  border-radius: 50%;
}

/* Yerel Esnaf Desteği Çizimi - Detaylı Fırın/Şef Sahnesi */
.community-scene {
  position: relative;
  width: 80px;
  height: 80px;
}

/* Ana Defne Çelengi - Çerçeve */
.laurel-wreath {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  border: 4px solid #5d4037;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 3px 8px rgba(93, 64, 55, 0.3);
}

.laurel-wreath::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  width: 65px;
  height: 65px;
  border: 2px solid #8d6e63;
  border-radius: 50%;
}

.laurel-wreath::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  width: 61px;
  height: 61px;
  border: 1px solid #3e2723;
  border-radius: 50%;
}

/* Şef Figürü - Merkez */
.chef-figure {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 28px;
  background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
  border-radius: 11px 11px 8px 8px;
  z-index: 3;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

/* Şef Şapkası */
.chef-figure::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 10px;
  background: linear-gradient(135deg, #ffffff, #f0f0f0);
  border-radius: 10px 10px 0 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Şef Bıyığı */
.chef-figure::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 3px;
  background: #3e2723;
  border-radius: 4px;
}

/* Şef Kolları - Sağ El Yukarıda */
.chef-arms {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 6px;
  background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
  border-radius: 3px;
  z-index: 2;
}

.chef-arms::before {
  content: '';
  position: absolute;
  top: -3px;
  right: -2px;
  width: 4px;
  height: 4px;
  background: #ff8a65;
  border-radius: 50%;
  transform: rotate(45deg);
}

/* Turuncu Boyun Bağı */
.chef-neckerchief {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 4px;
  background: linear-gradient(135deg, #ff7043, #ff5722);
  border-radius: 2px;
  z-index: 2;
}

/* Ekmek Somunu - Şefin Altında */
.bread-loaf {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 14px;
  background: linear-gradient(135deg, #d4a574, #c49660);
  border-radius: 14px 14px 7px 7px;
  z-index: 2;
  box-shadow: 0 3px 8px rgba(196, 150, 96, 0.4);
}

.bread-loaf::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 24px;
  height: 10px;
  background: linear-gradient(135deg, #e6b885, #d4a574);
  border-radius: 12px 12px 5px 5px;
}

/* Ekmek Çizikleri */
.bread-loaf::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 4px;
  width: 20px;
  height: 1px;
  background: #8d6e63;
  border-radius: 1px;
  box-shadow: 0 1px 0 #8d6e63, 0 2px 0 #8d6e63, 0 3px 0 #8d6e63, 0 4px 0 #8d6e63;
}

/* Ana Banner - Alt Kısım */
.banner {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 10px;
  background: linear-gradient(135deg, #d84315, #bf360c);
  border-radius: 5px;
  z-index: 3;
  box-shadow: 0 3px 8px rgba(212, 67, 21, 0.4);
}

.banner::before {
  content: 'BAKERY';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 6px;
  font-weight: bold;
  letter-spacing: 0.8px;
}

/* Alt Defne Çelengi - Banner Altında */
.bottom-wreath {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 8px;
  border: 2px solid #8d6e63;
  border-radius: 50%;
  z-index: 2;
}

.bottom-wreath::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 45px;
  height: 8px;
  border: 1px solid #a1887f;
  border-radius: 50%;
}

/* Defne Yaprakları - Sol Taraf */
.laurel-leaves {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 15px solid #4caf50;
  transform: rotate(-25deg);
  z-index: 2;
}

.laurel-leaves::before {
  content: '';
  position: absolute;
  top: 3px;
  left: -8px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid #66bb6a;
  transform: rotate(50deg);
}

.laurel-leaves::after {
  content: '';
  position: absolute;
  top: 3px;
  right: -8px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid #66bb6a;
  transform: rotate(-50deg);
}

/* Defne Yaprakları - Sağ Taraf */
.laurel-leaves-right {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 15px solid #4caf50;
  transform: rotate(25deg);
  z-index: 2;
}

.laurel-leaves-right::before {
  content: '';
  position: absolute;
  top: 3px;
  left: -8px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid #66bb6a;
  transform: rotate(50deg);
}

.laurel-leaves-right::after {
  content: '';
  position: absolute;
  top: 3px;
  right: -8px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid #66bb6a;
  transform: rotate(-50deg);
}

/* Güvenli Ödeme Çizimi - Minimalist Güvenlik Sahnesi */
.security-scene {
  position: relative;
  width: 80px;
  height: 80px;
}

/* Dairesel Desen - Arka Plan */
.circular-pattern {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 4px solid #1976d2;
  border-radius: 50%;
  z-index: 1;
}

.circular-pattern::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 2px solid #1565c0;
  border-radius: 50%;
}

.circular-pattern::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 1px solid #0d47a1;
  border-radius: 50%;
}

/* Radyal Çizgiler */
.radial-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  z-index: 2;
}

.radial-lines::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 1px;
  height: 25px;
  background: #1565c0;
}

.radial-lines::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 1px;
  height: 25px;
  background: #1565c0;
}

/* Konsantrik Daireler */
.concentric-circles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border: 1px solid #0d47a1;
  border-radius: 50%;
  z-index: 2;
}

.concentric-circles::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 1px solid #0d47a1;
  border-radius: 50%;
}

.concentric-circles::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border: 1px solid #0d47a1;
  border-radius: 50%;
}

/* Asma Kilit - Merkez */
.lock-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 28px;
  background: linear-gradient(135deg, #64b5f6, #42a5f5);
  border-radius: 4px;
  border: 2px solid #1976d2;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
}

.lock-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 8px;
  background: #0d47a1;
  border-radius: 1px;
}

.lock-icon::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 8px;
  border: 3px solid #1976d2;
  border-radius: 6px 6px 0 0;
  background: transparent;
}

/* Küçük Geometrik Şekiller */
.geometric-shape-1 {
  position: absolute;
  top: 15px;
  left: 20px;
  width: 4px;
  height: 4px;
  background: #0d47a1;
  border-radius: 1px;
  transform: rotate(45deg);
}

.geometric-shape-2 {
  position: absolute;
  top: 25px;
  right: 15px;
  width: 3px;
  height: 3px;
  background: #1565c0;
  border-radius: 1px;
  transform: rotate(30deg);
}

.geometric-shape-3 {
  position: absolute;
  bottom: 20px;
  left: 15px;
  width: 3px;
  height: 3px;
  background: #0d47a1;
  border-radius: 1px;
  transform: rotate(60deg);
}

.geometric-shape-4 {
  position: absolute;
  bottom: 15px;
  right: 20px;
  width: 4px;
  height: 4px;
  background: #1565c0;
  border-radius: 1px;
  transform: rotate(15deg);
}

.geometric-shape-5 {
  position: absolute;
  top: 35px;
  left: 10px;
  width: 2px;
  height: 2px;
  background: #0d47a1;
  border-radius: 1px;
  transform: rotate(75deg);
}

.geometric-shape-6 {
  position: absolute;
  top: 40px;
  right: 10px;
  width: 3px;
  height: 3px;
  background: #1565c0;
  border-radius: 1px;
  transform: rotate(45deg);
}

/* Hızlı Teslimat Çizimi - Modern Minimalist */
.delivery-scene {
  position: relative;
  width: 80px;
  height: 80px;
}

.delivery-person {
  position: absolute;
  top: 25px;
  left: 18px;
  width: 14px;
  height: 22px;
  background: linear-gradient(135deg, #00B7B2, #009d99);
  border-radius: 7px;
  box-shadow: 0 3px 8px rgba(0, 183, 178, 0.3);
}

.delivery-person::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 1px;
  width: 7px;
  height: 7px;
  background: linear-gradient(135deg, #ffdbac, #f4a261);
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.delivery-person::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 2px;
  width: 3px;
  height: 3px;
  background: #000;
  border-radius: 50%;
}

.delivery-bike {
  position: absolute;
  top: 30px;
  left: 32px;
  width: 22px;
  height: 16px;
  background: linear-gradient(135deg, #37474f, #263238);
  border-radius: 11px;
  box-shadow: 0 3px 8px rgba(55, 71, 79, 0.3);
}

.delivery-bike::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 6px;
  height: 6px;
  background: #546e7a;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.delivery-bike::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  width: 6px;
  height: 6px;
  background: #546e7a;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.delivery-package {
  position: absolute;
  bottom: 25px;
  left: 22px;
  width: 16px;
  height: 13px;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  border-radius: 4px;
  border: 2px solid #e65100;
  box-shadow: 0 3px 8px rgba(255, 152, 0, 0.3);
}

.delivery-package::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 2px;
  height: 2px;
  background: #e65100;
  border-radius: 50%;
  box-shadow: 3px 0 0 #e65100, 6px 0 0 #e65100;
}

.clock-icon {
  position: absolute;
  bottom: 15px;
  right: 18px;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #f44336, #d32f2f);
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(244, 67, 54, 0.3);
}

.clock-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 5px;
  background: white;
  border-radius: 1px;
}

.clock-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3px;
  height: 1px;
  background: white;
  border-radius: 1px;
}

/* Kaliteli Hizmet Çizimi - Modern Minimalist */
.quality-scene {
  position: relative;
  width: 80px;
  height: 80px;
}

.quality-badge {
  position: absolute;
  top: 18px;
  left: 32px;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(255, 152, 0, 0.3);
}

.quality-badge::before {
  content: '★';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
}

.star-rating {
  position: absolute;
  top: 12px;
  left: 10px;
  width: 32px;
  height: 8px;
  background: linear-gradient(135deg, #ffd700, #ffc107);
  border-radius: 4px;
  box-shadow: 0 3px 8px rgba(255, 215, 0, 0.3);
}

.star-rating::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  width: 1px;
  height: 1px;
  background: #ff8f00;
  border-radius: 50%;
  box-shadow: 2px 0 0 #ff8f00, 4px 0 0 #ff8f00, 6px 0 0 #ff8f00, 8px 0 0 #ff8f00, 10px 0 0 #ff8f00;
}

.happy-customer {
  position: absolute;
  bottom: 25px;
  left: 18px;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #4caf50, #388e3c);
  border-radius: 50%;
  border: 2px solid #2e7d32;
  box-shadow: 0 3px 8px rgba(76, 175, 80, 0.3);
}

.happy-customer::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

.happy-customer::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 3px;
  height: 3px;
  background: #4caf50;
  border-radius: 50%;
}

.quality-check {
  position: absolute;
  bottom: 15px;
  right: 12px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #4caf50, #388e3c);
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(76, 175, 80, 0.3);
}

.quality-check::before {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

/* Kolay Kullanım Çizimi - Modern Minimalist */
.easy-use-scene {
  position: relative;
  width: 80px;
  height: 80px;
}

.smartphone {
  position: absolute;
  top: 18px;
  left: 32px;
  width: 22px;
  height: 36px;
  background: linear-gradient(135deg, #37474f, #263238);
  border-radius: 6px;
  border: 2px solid #1a1a1a;
  box-shadow: 0 3px 8px rgba(55, 71, 79, 0.3);
}

.smartphone::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 1px;
  background: #1a1a1a;
  border-radius: 1px;
}

.smartphone::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 1px;
  background: #1a1a1a;
  border-radius: 1px;
}

.user-interface {
  position: absolute;
  top: 25px;
  left: 10px;
  width: 16px;
  height: 22px;
  background: linear-gradient(135deg, #00B7B2, #009d99);
  border-radius: 4px;
  border: 2px solid #007a75;
  box-shadow: 0 3px 8px rgba(0, 183, 178, 0.3);
}

.user-interface::before {
  content: 'UI';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 7px;
  font-weight: bold;
}

.simple-steps {
  position: absolute;
  bottom: 25px;
  left: 18px;
  width: 28px;
  height: 8px;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  border-radius: 4px;
  border: 2px solid #e65100;
  box-shadow: 0 3px 8px rgba(255, 152, 0, 0.3);
}

.simple-steps::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 2px;
  width: 1px;
  height: 1px;
  background: #e65100;
  border-radius: 50%;
  box-shadow: 3px 0 0 #e65100, 6px 0 0 #e65100, 9px 0 0 #e65100, 12px 0 0 #e65100, 15px 0 0 #e65100;
}

.happy-user {
  position: absolute;
  bottom: 15px;
  right: 18px;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #4caf50, #388e3c);
  border-radius: 50%;
  border: 2px solid #2e7d32;
  box-shadow: 0 3px 8px rgba(76, 175, 80, 0.3);
}

.happy-user::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

.happy-user::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 3px;
  height: 3px;
  background: #4caf50;
  border-radius: 50%;
}

/* Eski feature-icon stilleri kaldırıldı - artık feature-illustration kullanılıyor */

.feature-card:nth-child(1):hover .feature-illustration {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(120, 120, 120, 0.2);
}

.feature-card:nth-child(1):hover .feature-image {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(120, 120, 120, 0.15);
}

.feature-card:nth-child(2):hover .feature-illustration {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(140, 140, 140, 0.2);
}

.feature-card:nth-child(2):hover .feature-image {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(140, 140, 140, 0.15);
}

.feature-card:nth-child(3):hover .feature-illustration {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(160, 160, 160, 0.2);
}

.feature-card:nth-child(4):hover .feature-image {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(160, 160, 160, 0.15);
}

.feature-card:nth-child(4):hover .feature-illustration {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(160, 160, 160, 0.2);
}

.feature-card:nth-child(5):hover .feature-illustration {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(180, 180, 180, 0.2);
}

.feature-card:nth-child(5):hover .feature-image {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(180, 180, 180, 0.15);
}

.feature-card:nth-child(6):hover .feature-illustration {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(200, 200, 200, 0.2);
}

.feature-card:nth-child(6):hover .feature-image {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(200, 200, 200, 0.15);
}

/* Eski feature-icon i stilleri kaldırıldı */

.feature-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: #1E1E1E;
  margin-bottom: 18px;
  transition: color 0.3s ease;
}

.feature-card:nth-child(1):hover h3 {
  color: #666666;
}

.feature-card:nth-child(2):hover h3 {
  color: #777777;
}

.feature-card:nth-child(3):hover h3 {
  color: #888888;
}

.feature-card:nth-child(4):hover h3 {
  color: #999999;
}

.feature-card:nth-child(5):hover h3 {
  color: #aaaaaa;
}

.feature-card:nth-child(6):hover h3 {
  color: #bbbbbb;
}

.feature-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-stats {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.stat-item {
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

/* Tüm butonlar eski yeşil (teal) renginde */
.feature-card:nth-child(1) .stat-item {
  background: linear-gradient(135deg, #00B7B2, #009d99);
  box-shadow: 0 4px 15px rgba(0, 183, 178, 0.2);
}

.feature-card:nth-child(2) .stat-item {
  background: linear-gradient(135deg, #00B7B2, #009d99);
  box-shadow: 0 4px 15px rgba(0, 183, 178, 0.2);
}

.feature-card:nth-child(3) .stat-item {
  background: linear-gradient(135deg, #00B7B2, #009d99);
  box-shadow: 0 4px 15px rgba(0, 183, 178, 0.2);
}

.feature-card:nth-child(4) .stat-item {
  background: linear-gradient(135deg, #00B7B2, #009d99);
  box-shadow: 0 4px 15px rgba(0, 183, 178, 0.2);
}

.feature-card:nth-child(5) .stat-item {
  background: linear-gradient(135deg, #00B7B2, #009d99);
  box-shadow: 0 4px 15px rgba(0, 183, 178, 0.2);
}

.feature-card:nth-child(6) .stat-item {
  background: linear-gradient(135deg, #00B7B2, #009d99);
  box-shadow: 0 4px 15px rgba(0, 183, 178, 0.2);
}

.feature-card:nth-child(1):hover .stat-item {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 183, 178, 0.3);
}

.feature-card:nth-child(2):hover .stat-item {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 183, 178, 0.3);
}

.feature-card:nth-child(3):hover .stat-item {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 183, 178, 0.3);
}

.feature-card:nth-child(4):hover .stat-item {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 183, 178, 0.3);
}

.feature-card:nth-child(5):hover .stat-item {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 183, 178, 0.3);
}

.feature-card:nth-child(6):hover .stat-item {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 183, 178, 0.3);
}

/* Additional Features */
.additional-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 183, 178, 0.1);
  border: 1px solid rgba(0, 183, 178, 0.1);
  transition: all 0.4s ease;
}

.feature-highlight:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 183, 178, 0.2);
  border-color: rgba(0, 183, 178, 0.3);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

/* Soluk renkler için highlight ikonları */
.feature-highlight:nth-child(1) .highlight-icon {
  background: linear-gradient(135deg, #d5a5a5, #c4a4a4);
}

.feature-highlight:nth-child(2) .highlight-icon {
  background: linear-gradient(135deg, #a5b5d5, #94a4c4);
}

.feature-highlight:nth-child(3) .highlight-icon {
  background: linear-gradient(135deg, #d5c4a5, #c4b494);
}

.feature-highlight:hover .highlight-icon {
  transform: scale(1.1);
}

.highlight-icon i {
  font-size: 24px;
  color: white;
}

.highlight-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1E1E1E;
  margin-bottom: 8px;
}

.highlight-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Features CTA */
.features-cta {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, #fefefe, #f8f8f0);
  border-radius: 24px;
  color: #333;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.features-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  background: #00B7B2;
  color: white;
  border: 2px solid #00B7B2;
}

.cta-buttons .btn:hover {
  background: #009d99;
  color: white;
  border-color: #009d99;
  transform: translateY(-3px);
}

.cta-buttons .btn-outline {
  background: transparent;
  color: #00B7B2;
  border-color: #00B7B2;
}

.cta-buttons .btn-outline:hover {
  background: #00B7B2;
  color: white;
}

/* ===== CAMPAIGNS SECTION ===== */
.campaigns {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fffe 0%, #e6f7f7 100%);
}

.campaigns-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.campaign-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 183, 178, 0.1);
  transition: all 0.3s ease;
}

.campaign-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 183, 178, 0.15);
}

.campaign-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.campaign-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #00B7B2;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.campaign-content {
  padding: 24px;
}

.campaign-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1E1E1E;
  margin-bottom: 8px;
}

.campaign-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.campaign-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #999;
}

.campaigns-actions {
  text-align: center;
}

/* ===== MERCHANTS SECTION ===== */
.merchants {
  padding: 80px 0;
  background: white;
}

.merchants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.merchant-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 183, 178, 0.1);
  transition: all 0.3s ease;
}

.merchant-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 183, 178, 0.15);
}

.merchant-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.merchant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.merchant-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 183, 178, 0.9);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.merchant-content {
  padding: 24px;
}

.merchant-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1E1E1E;
  margin-bottom: 8px;
}

.merchant-address {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.merchant-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars i {
  color: #FFD700;
  font-size: 14px;
}

.rating-text {
  font-size: 12px;
  color: #666;
}

.merchant-actions {
  text-align: center;
}

.merchants-actions {
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  background: #1E1E1E;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #00B7B2;
}

.footer-description {
  color: #ccc;
  margin-bottom: 24px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(0, 183, 178, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00B7B2;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #00B7B2;
  color: white;
  transform: translateY(-2px);
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00B7B2;
}

.contact-info p {
  color: #ccc;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info i {
  color: #00B7B2;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #00B7B2;
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00B7B2, #009d99);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(0, 183, 178, 0.3);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-to-top.show {
  transform: translateY(0);
  opacity: 1;
}

.scroll-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 183, 178, 0.4);
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-up.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Keyframe Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(0, 183, 178, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 183, 178, 0.6), 0 0 30px rgba(0, 183, 178, 0.4);
  }
}

/* Enhanced animations for feature cards */
.feature-card {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered animation delays */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .phone-showcase {
    height: 400px;
    max-width: 300px;
  }

  .phone-mockup {
    width: 150px;
    height: 300px;
  }

  .main-phone {
    top: 20px;
  }

  .promo-phone {
    top: 40px;
    left: 10px;
    transform: rotate(-10deg);
  }

  .map-phone {
    top: 60px;
    right: 10px;
    transform: rotate(10deg);
  }

  .download-buttons {
    align-items: center;
  }

  .download-btn {
    max-width: 250px;
  }

  .features-grid,
  .campaigns-slider,
  .merchants-grid {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .partner-card {
    padding: 24px 16px;
  }
  
  .partner-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .partner-content h4 {
    font-size: 18px;
  }
  
  .partner-content span {
    font-size: 12px;
    padding: 3px 10px;
  }
  
  .partner-description {
    font-size: 11px;
  }

  .additional-features {
    grid-template-columns: 1fr;
  }

  .feature-highlight {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .features-cta {
    padding: 40px 20px;
  }

  .cta-content h3 {
    font-size: 24px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }
  
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .partner-card {
    padding: 20px 16px;
  }
  
  .partner-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .partner-content h4 {
    font-size: 16px;
  }
  
  .partner-content span {
    font-size: 11px;
    padding: 3px 8px;
  }
  
  .partner-description {
    font-size: 10px;
  }

  .btn-large {
    padding: 14px 24px;
    font-size: 14px;
  }
}