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

/* GLOBAL CSS VARIABLES & DESIGN TOKENS (LIGHT THEME WITH PREMIUM RADIAL CONTRAST) */
:root {
  --bg-color: #f8fafc; /* Açık Fildişi/Gri */
  --bg-card: #ffffff; /* Beyaz Kartlar */
  --bg-card-hover: #ffffff;
  --border-color: rgba(15, 23, 42, 0.08);
  --border-hover: rgba(31, 156, 62, 0.35);
  
  --primary: #1f9c3e; /* Zümrüt Yeşili */
  --primary-glow: rgba(31, 156, 62, 0.25);
  --primary-light: #157e30; 
  --secondary: #0f172a; /* Koyu Slate - İkincil Renk */
  
  --text-main: #0f172a; 
  --text-muted: #475569; 
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* RESET & BASE STYLES */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
}

/* 1. ANIMATED BACKGROUND BLOBS (Siteye Renk ve Akıcılık Katar) */
.bg-blobs-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  mix-blend-mode: multiply;
  animation: drift 25s infinite alternate ease-in-out;
}

.blob-1 {
  top: -10%;
  left: -10%;
  width: 45vw;
  height: 45vw;
  background-color: var(--primary);
  animation-duration: 20s;
}

.blob-2 {
  bottom: -15%;
  right: -5%;
  width: 50vw;
  height: 50vw;
  background-color: #3b82f6; /* Premium Mavi */
  animation-duration: 28s;
  animation-delay: 2s;
}

.blob-3 {
  top: 40%;
  left: 50%;
  width: 35vw;
  height: 35vw;
  background-color: #eab308; /* Altın Sarısı */
  animation-duration: 22s;
  animation-delay: 4s;
}

@keyframes drift {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  50% {
    transform: translate(80px, 50px) scale(1.1) rotate(180deg);
  }
  100% {
    transform: translate(-40px, -80px) scale(0.9) rotate(360deg);
  }
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* MODERN TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary);
}

h1 {
  font-size: 3rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* DYNAMIC ACCENT GRADIENT METİNLER */
.text-gradient {
  background: linear-gradient(135deg, var(--secondary) 30%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* PREMIUM BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  box-shadow: 0 6px 20px rgba(21, 126, 48, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary);
  color: #fff;
  border: 1px solid var(--secondary);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

.btn-secondary:hover {
  background-color: #1e293b;
  transform: translateY(-2px);
}

/* NAVBAR (GLASS EFFECT & LIGHT GLASSMORPHISM) */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

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

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-svg {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
}

/* NAV MENU & DROP-DOWNS */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 10px 16px;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  transition: var(--transition);
}

.nav-link:hover, .nav-item.active .nav-link {
  color: var(--primary-light);
  background-color: rgba(31, 156, 62, 0.05);
}

/* SUBMENU (LIGHT DROPDOWN) */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 1001;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item a {
  display: block;
  padding: 10px 20px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.dropdown-item a:hover {
  color: var(--primary-light);
  background-color: rgba(31, 156, 62, 0.05);
  padding-left: 24px;
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

/* HERO IMAGE WRAPPER (Görselleri Modern Şekilde Gösterir) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
  border: 4px solid #fff;
  transition: var(--transition);
  animation: float 6s infinite ease-in-out;
}

.hero-image-wrapper:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
}

.hero-img-element {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

/* 2. DYNAMIC CSS-BASED HERO ILLUSTRATIONS (Görsel Üretim Hataları Durumunda Çalışır) */

/* CSS Smartphone Mockup (Mobil Uygulama Sayfası İçin) */
.css-phone-mockup {
  width: 250px;
  height: 480px;
  background-color: var(--secondary);
  border: 10px solid #fff;
  border-radius: 36px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
  animation: float 6s infinite ease-in-out;
}

.phone-top-bar {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background-color: #000;
  border-radius: 10px;
  z-index: 10;
}

.phone-screen-content {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: 40px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  position: relative;
}

.screen-widget {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px;
}

.widget-line {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 8px;
}

.widget-line.short { width: 50%; }
.widget-line.green { background: var(--primary); }

.phone-app-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary) 0%, var(--primary-light) 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 0 15px var(--primary-glow);
}

/* CSS API Nodes (Eklentiler Sayfası İçin) */
.api-nodes-visual {
  width: 300px;
  height: 300px;
  position: relative;
  animation: float 6s infinite ease-in-out;
}

.api-center-node {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--secondary);
  border: 4px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--primary-light);
  z-index: 5;
  box-shadow: 0 0 20px var(--primary-glow);
}

.api-sub-node {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  z-index: 5;
  transition: var(--transition);
}

.api-sub-node:hover {
  transform: scale(1.1);
  border-color: var(--primary);
}

.node-1 { top: 10%; left: 50%; transform: translateX(-50%); }
.node-2 { bottom: 10%; left: 20%; }
.node-3 { bottom: 10%; right: 20%; }

.api-line {
  position: absolute;
  background: linear-gradient(to top, var(--primary), var(--secondary));
  z-index: 1;
}

.line-1 {
  width: 2px;
  height: 100px;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
}

.line-2 {
  width: 100px;
  height: 2px;
  top: 65%;
  left: 25%;
  transform: rotate(45deg);
}

.line-3 {
  width: 100px;
  height: 2px;
  top: 65%;
  right: 25%;
  transform: rotate(-45deg);
}

/* CSS 3D Credit Card (Banka Sayfası İçin) */
.payment-card-3d {
  width: 340px;
  height: 200px;
  background: linear-gradient(135deg, #0b0f19 0%, #111827 50%, #064e3b 100%);
  border-radius: 20px;
  padding: 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  transform: perspective(1000deg) rotateX(12deg) rotateY(-12deg);
  animation: float 6s infinite ease-in-out;
}

.payment-card-3d:hover {
  transform: perspective(1000deg) rotateX(0deg) rotateY(0deg) translateY(-8px);
  box-shadow: 0 40px 80px rgba(31, 156, 62, 0.15);
  border-color: rgba(31, 156, 62, 0.5);
}

.card-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
}

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

.card-chip {
  width: 44px;
  height: 32px;
  background: radial-gradient(circle, #fcd34d 0%, #fbbf24 100%);
  border-radius: 6px;
}

.card-brand {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.card-number {
  font-family: monospace;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #cbd5e1;
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
}

/* CSS Message Center (İletişim Sayfası İçin) */
.message-visual-box {
  width: 280px;
  height: 250px;
  position: relative;
  animation: float 6s infinite ease-in-out;
}

.msg-bubble-css {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.85rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
  position: absolute;
  max-width: 200px;
}

.msg-bubble-css.one {
  top: 10%;
  left: 0;
  border-left: 4px solid var(--primary);
}

.msg-bubble-css.two {
  bottom: 20%;
  right: 0;
  background: var(--secondary);
  color: #fff;
  border-right: 4px solid var(--primary);
}

.msg-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
  animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 1; }
}

/* SECTION STYLING */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  margin-bottom: 15px;
}

/* SERVICES GRID (3x3 RESPONSIVE LAYOUT) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(31, 156, 62, 0.02) 0%, rgba(15, 23, 42, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08), 0 0 25px rgba(31, 156, 62, 0.1);
}

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

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: #fff;
  font-size: 1.5rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
}

.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(31, 156, 62, 0.3);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
  transition: color 0.3s ease;
  font-family: var(--font-title);
}

.service-card:hover h3 {
  color: var(--primary-light);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-link {
  color: var(--primary-light);
  gap: 12px;
}

.service-link i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
  transform: translateX(3px);
}

/* DETAILS SPLIT SECTION */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-left {
  padding-right: 20px;
}

.split-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.info-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-card h3 i {
  color: var(--primary);
}

/* LETS TALK / BANNER CTA AREA */
.cta-banner {
  background: linear-gradient(135deg, #f0fdf4 0%, #e8f5e9 100%);
  border: 1px solid rgba(31, 156, 62, 0.1);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(31, 156, 62, 0.05);
}

.cta-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-banner p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* DYNAMIC FORM STYLES */
.custom-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 35px;
  border-radius: 16px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

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

.form-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(31, 156, 62, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 15px;
  margin-bottom: 20px;
}

.checkbox-group input {
  margin-top: 4px;
  accent-color: var(--primary);
}

.checkbox-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  user-select: none;
}

.checkbox-label a {
  color: var(--primary-light);
  text-decoration: underline;
}

/* BANK CARD COMPONENT */
.bank-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bank-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.bank-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.bank-name {
  color: #0f172a;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.2rem;
}

.bank-chip {
  width: 40px;
  height: 30px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 6px;
}

.bank-info-row {
  margin-bottom: 12px;
}

.bank-info-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.bank-info-value {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bank-iban-value {
  font-family: monospace;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  background: rgba(0, 0, 0, 0.03);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.copy-btn {
  background: rgba(31, 156, 62, 0.06);
  border: 1px solid rgba(31, 156, 62, 0.15);
  color: var(--primary);
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.copy-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* SSS / FAQ ACCORDION */
.faq-section {
  border-top: 1px solid var(--border-color);
  padding-top: 80px;
  margin-top: 60px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.faq-item.active {
  border-color: var(--border-hover);
  box-shadow: 0 6px 20px rgba(0,0,0,0.03);
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  color: #0f172a;
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: rgba(0, 0, 0, 0.01);
}

.faq-answer-content {
  padding: 0 25px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* MAP STYLING */
#map-container {
  height: 350px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

/* WHATSAPP SIMULATOR */
.whatsapp-chat-bubble {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.wa-trigger {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
  transition: var(--transition);
}

.wa-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.wa-simulator {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.wa-simulator.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wa-sim-header {
  background: #075e54;
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-sim-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.wa-sim-title h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.wa-sim-title span {
  font-size: 0.75rem;
  color: #25d366;
}

.wa-sim-body {
  padding: 20px;
  background: #e5ddd5;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.wa-msg {
  background: #ffffff;
  color: #111b21;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  max-width: 85%;
  margin-bottom: 12px;
  position: relative;
  align-self: flex-start;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.wa-sim-footer {
  padding: 12px 20px;
  background: #f0f2f5;
  display: flex;
}

.wa-sim-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25d366;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.wa-sim-btn:hover {
  background: #20ba5a;
}

/* FOOTER */
.footer {
  background: radial-gradient(circle at top right, rgba(31, 156, 62, 0.04), transparent 40%),
              linear-gradient(180deg, #090d16 0%, #0f172a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 40px;
}

.footer h4, .footer p, .footer-bottom p {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-family: var(--font-title);
  margin-bottom: 25px;
  font-size: 1.15rem;
  font-weight: 750;
  color: #ffffff;
  position: relative;
  padding-bottom: 8px;
}

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

.footer-col p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.65;
}

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

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

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 12px rgba(31, 156, 62, 0.4);
  transform: translateY(-3px);
}

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

.footer-bottom p {
  color: #64748b;
  margin: 0;
}

/* ALERT MESSAGES */
.toast-msg {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 1100;
  background: #ffffff;
  border: 1px solid var(--primary);
  border-radius: 8px;
  padding: 12px 20px;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateX(120%);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.toast-msg.show {
  transform: translateX(0);
}

/* ==========================================
   NEW HOMEPAGE SECTIONS STYLING
   ========================================== */

/* 1. WHY DIJIHYPE SECTION (SPLIT PREMIUM LAYOUT) */
.split-grid-why {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .split-grid-why {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.why-sticky-content {
  position: sticky;
  top: 120px;
}

.accent-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31, 156, 62, 0.08);
  border: 1px solid rgba(31, 156, 62, 0.2);
  color: var(--primary-light);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: var(--font-title);
  width: fit-content;
}

.why-bullets {
  list-style: none;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.why-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text-main);
  font-size: 0.95rem;
}

.bullet-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(31, 156, 62, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.why-cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

@media (max-width: 600px) {
  .why-cards-container {
    grid-template-columns: 1fr;
  }
}

.premium-why-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.01);
  display: flex;
  flex-direction: column;
  z-index: 1;
  overflow: hidden;
}

.card-glow-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(31, 156, 62, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.premium-why-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06), 0 0 20px rgba(31, 156, 62, 0.08);
}

.premium-why-card:hover .card-glow-bg {
  opacity: 1;
}

.why-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.why-icon-box-new {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(31, 156, 62, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.4s ease;
}

.premium-why-card:hover .why-icon-box-new {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}

.card-number-accent {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--border-color);
  transition: color 0.4s ease;
}

.premium-why-card:hover .card-number-accent {
  color: var(--primary-glow);
}

.premium-why-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
  font-family: var(--font-title);
}

.premium-why-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* 2. PROCESS / HOW WE WORK SECTION */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  margin-top: 20px;
}

/* Dotted connection line for timeline */
.process-timeline::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--border-color) 0px, var(--border-color) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}

@media (max-width: 992px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-timeline::after {
    top: 50px;
    bottom: 50px;
    left: 30px;
    width: 2px;
    height: auto;
    background: repeating-linear-gradient(to bottom, var(--border-color) 0px, var(--border-color) 8px, transparent 8px, transparent 16px);
  }
}

.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

@media (max-width: 992px) {
  .process-step {
    flex-direction: row;
    gap: 25px;
    align-items: flex-start;
  }
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  color: var(--secondary);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  flex-shrink: 0;
}

.process-step:hover .step-number {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(31, 156, 62, 0.25);
}

.step-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
  font-family: var(--font-title);
}

.step-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* 3. STATS SECTION */
#home-stats {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0;
}

.stats-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(31, 156, 62, 0.15) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
  filter: blur(80px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-value {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

/* Custom text gradient using secondary and primary light colors */
.text-gradient-primary {
  color: var(--primary);
}

.stat-label {
  font-size: 0.95rem;
  color: #94a3b8;
  font-weight: 500;
}

/* 4. TECH MARQUEE (Sonsuz Akan Şerit) */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  user-select: none;
}

.marquee-content {
  display: flex;
  gap: 50px;
  padding: 10px 0;
  animation: marquee-scroll 25s linear infinite;
  min-width: 100%;
}

.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
  background: #ffffff;
  border: 2px solid var(--border-color);
  padding: 14px 32px;
  border-radius: 0px; /* Keskin Kenar */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Hafif gölge */
  transition: all 0.3s ease;
  height: 68px;
  min-width: 170px;
}

.marquee-item i {
  color: var(--primary);
  font-size: 1.25rem;
}

.marquee-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(31, 156, 62, 0.08); /* Yumuşak yeşil gölge */
}

.partner-logo {
  height: 30px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.8);
  transition: all 0.3s ease;
}

.marquee-item:hover .partner-logo {
  filter: grayscale(0%) opacity(1);
}

.partner-custom-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--secondary);
  transition: all 0.3s ease;
}

.marquee-item:hover .partner-custom-logo {
  color: var(--primary);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 25px));
  }
}

/* 5. TESTIMONIALS SLIDER SECTION */
.testimonials-slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 20px 10px;
}

.testimonials-track {
  display: flex;
  position: relative;
  height: 280px;
}

@media (max-width: 600px) {
  .testimonials-track {
    height: 340px;
  }
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(50px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.testimonial-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 2;
}

.testimonial-quote-icon {
  font-size: 2.25rem;
  color: var(--primary-glow);
  line-height: 1;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--secondary);
  margin-bottom: 25px;
}

@media (max-width: 600px) {
  .testimonial-text {
    font-size: 1rem;
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Slider buttons & dots */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  position: relative;
  z-index: 5;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.slider-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px var(--primary-glow);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 10px;
}

/* ==========================================
   DARK SECTION BACKGROUNDS & DEEP CONTRAST
   ========================================== */
.section-dark {
  background-color: #0b0f19 !important; /* Deep Dark Night Blue */
  color: #ffffff !important;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Ambient Glow for Dark Sections */
.section-dark::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 20%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(31, 156, 62, 0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  filter: blur(100px);
}

.section-dark .container {
  position: relative;
  z-index: 1;
}

.section-dark h2 {
  color: #ffffff !important;
}

.section-dark h2::after {
  background: var(--primary) !important;
}

.section-dark p {
  color: #94a3b8 !important;
}

/* Service Card Adaptations in Dark Sections */
.section-dark .service-card {
  background: #111827 !important;
  border-color: rgba(255, 255, 255, 0.05) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.section-dark .service-card h3 {
  color: #ffffff !important;
}

.section-dark .service-card p {
  color: #94a3b8 !important;
}

.section-dark .service-card:hover {
  border-color: var(--primary) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(31, 156, 62, 0.15) !important;
}

.section-dark .service-icon-box {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%) !important;
}

.section-dark .service-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%) !important;
}

/* Process Section Adaptations in Dark Sections */
.section-dark .step-number {
  background: #111827 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
}

.section-dark .process-step:hover .step-number {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

.section-dark .step-content h3 {
  color: #ffffff !important;
}

.section-dark .step-content p {
  color: #94a3b8 !important;
}

.section-dark .process-timeline::after {
  background: repeating-linear-gradient(to right, rgba(31, 156, 62, 0.2) 0px, rgba(31, 156, 62, 0.2) 8px, transparent 8px, transparent 16px) !important;
}

@media (max-width: 992px) {
  .section-dark .process-timeline::after {
    background: repeating-linear-gradient(to bottom, rgba(31, 156, 62, 0.2) 0px, rgba(31, 156, 62, 0.2) 8px, transparent 8px, transparent 16px) !important;
  }
}

/* ==========================================
   ANIMATED SHIFT BACKGROUNDS (LIGHT SECTIONS)
   ========================================== */
#home-why {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
  position: relative;
  overflow: hidden;
}

.why-glow-1 {
  position: absolute;
  top: -15%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(31, 156, 62, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
  animation: drift-glow-why 20s infinite alternate ease-in-out;
}

.why-glow-2 {
  position: absolute;
  bottom: -15%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
  animation: drift-glow-why 24s infinite alternate-reverse ease-in-out;
}

@keyframes drift-glow-why {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.1); }
}

.split-grid-why {
  position: relative;
  z-index: 1;
}

/* ==========================================
   PREMIUM CTA BANNER SECTION (cta-banner-new)
   ========================================== */
.cta-banner-new {
  position: relative;
  background: linear-gradient(135deg, #0b0f19 0%, #060810 100%);
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  padding: 60px 80px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.cta-grid-new {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .cta-banner-new {
    padding: 50px 40px;
  }
  .cta-grid-new {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .cta-visual-new {
    order: -1;
  }
}

.cta-glow-1 {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(31, 156, 62, 0.15) 0%, transparent 70%);
  filter: blur(50px);
  z-index: -1;
  pointer-events: none;
  animation: pulse-glow-cta 8s infinite alternate ease-in-out;
}

.cta-glow-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  filter: blur(50px);
  z-index: -1;
  pointer-events: none;
  animation: pulse-glow-cta 10s infinite alternate-reverse ease-in-out;
}

@keyframes pulse-glow-cta {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.2) translate(20px, -20px); }
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31, 156, 62, 0.1);
  border: 1px solid rgba(31, 156, 62, 0.2);
  color: var(--primary-light);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-content-new h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: var(--font-title);
}

@media (max-width: 768px) {
  .cta-content-new h2 {
    font-size: 2rem;
  }
}

.cta-content-new p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 35px;
}

.btn-cta-premium {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary);
  color: #ffffff !important;
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(31, 156, 62, 0.2);
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-cta-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}

.btn-cta-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(31, 156, 62, 0.4);
  background: var(--primary-light);
}

.btn-cta-premium:hover::before {
  left: 100%;
}

.btn-cta-premium i {
  transition: transform 0.3s ease;
}

.btn-cta-premium:hover i {
  transform: translateX(4px);
}

.cta-visual-new {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.cta-visual-new img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  animation: float-cta-image 6s infinite alternate ease-in-out;
}

@keyframes float-cta-image {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(2deg); }
}

/* MOBILE RESPONSIVENESS */
.nav-toggle {
  display: none;
}

@media (max-width: 992px) {
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
    z-index: 1002;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
  }
  
  .nav-toggle:hover {
    background-color: rgba(15, 23, 42, 0.04);
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -85%;
    width: 80%;
    height: 100vh;
    background: var(--secondary); /* İkincil slate rengi arka plan */
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    padding: 30px 24px 24px 24px;
    gap: 12px;
    transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow-y: auto;
    box-shadow: 10px 0 35px rgba(0, 0, 0, 0.4);
    z-index: 1001;
  }
  
  .nav-menu.show {
    left: 0;
  }
  
  /* Cascading Item Transitions when opened */
  .nav-menu .nav-item {
    width: 100%;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  
  .nav-menu.show .nav-item {
    opacity: 1;
    transform: translateY(0);
  }
  
  .nav-menu.show .nav-item:nth-child(1) { transition-delay: 0.04s; }
  .nav-menu.show .nav-item:nth-child(2) { transition-delay: 0.08s; }
  .nav-menu.show .nav-item:nth-child(3) { transition-delay: 0.12s; }
  .nav-menu.show .nav-item:nth-child(4) { transition-delay: 0.16s; }
  .nav-menu.show .nav-item:nth-child(5) { transition-delay: 0.2s; }
  .nav-menu.show .nav-item:nth-child(6) { transition-delay: 0.24s; }
  .nav-menu.show .nav-item:nth-child(7) { transition-delay: 0.28s; }
  .nav-menu.show .nav-item:nth-child(8) { transition-delay: 0.32s; }
  
  .nav-link {
    width: 100%;
    padding: 10px 14px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.85); /* Koyu arka planda okunabilir açık renk yazı */
  }
  
  .nav-link:hover, .nav-item.active .nav-link {
    background-color: rgba(31, 156, 62, 0.15);
    color: #4ade80; /* Yeşil renge geçiş */
  }
  
  /* Modern Grouped Card Submenu on Mobile */
  .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    display: none; /* Başlangıçta gizli/kapalı */
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 6px;
    margin-top: 4px;
    width: 100%;
    flex-direction: column;
    gap: 2px;
    box-shadow: none;
    transform: none;
    transition: var(--transition);
  }
  
  .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    display: flex;
  }
  
  .nav-item:hover .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
  
  .nav-item:hover .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    display: flex;
  }
  
  .dropdown-item a {
    padding: 8px 12px;
    font-size: 0.9rem;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    transition: var(--transition);
  }
  
  .dropdown-item a:hover {
    color: #4ade80;
    background-color: rgba(255, 255, 255, 0.05);
    padding-left: 16px;
  }
  
  .nav-cta {
    display: none;
  }
  
  .nav-mobile-only {
    display: block !important;
    border-top: 0px solid rgba(255, 255, 255, 0.1) !important;
  }
  
  .nav-mobile-socials a:hover {
    color: #4ade80 !important;
    transform: translateY(-2px);
  }
}

@media (max-width: 768px) {
  /* 1. RESPONSIVE TYPOGRAPHY & HEADER CENTERING */
  h1, 
  h2, 
  h3, 
  [class*="-hero-title"], 
  [class*="-title"] {
    text-align: center !important;
  }
  
  h1, [class*="-hero-title"] { 
    font-size: clamp(1.7rem, 4.8vw, 2.05rem) !important; 
    line-height: 1.18 !important; 
    margin-top: 0 !important;
    margin-bottom: 8px !important;
  }
  
  h2 { 
    font-size: clamp(1.35rem, 3.8vw, 1.55rem) !important; 
    line-height: 1.25 !important; 
    display: inline-block !important;
    margin-bottom: 8px !important;
  }
  
  h3 { 
    font-size: clamp(1.15rem, 3.2vw, 1.35rem) !important; 
    margin-bottom: 8px !important;
  }
  
  /* Centering H2 Underlines */
  h2::after, [class*="-title"]::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  
  /* Center Intro and Paragraph Texts in Headers with Tighter Margins */
  p, 
  .hero-content p, 
  .section-header p, 
  .cta-content p,
  [class*="-hero-desc"],
  [class*="-desc"] {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 16px !important;
    font-size: 0.92rem !important;
    line-height: 1.5 !important;
  }
  
  /* 2. COMPACT HERO & SECTION PADDINGS (Less empty space) */
  .hero, 
  [class*="-hero"] {
    padding-top: 85px !important; /* Fixed header offset gap */
    padding-bottom: 20px !important;
  }
  
  .hero-content,
  .section-header,
  [class*="-header"],
  .cta-content {
    text-align: center !important;
    min-height: auto !important;
  }
  
  .section {
    padding: 40px 0 !important; /* Modern compact section padding */
  }
  
  .hero-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 30px !important; /* Homepage normal gap spacing */
  }
  
  .split-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  /* MOBİL HERO SIRALAMA DÜZENLEMELERİ (Yalnızca alt sayfalarda: E-Ticaret, Web Sitesi, Mobil vb.)
     Anasayfa (.hero / #home-hero) bu sıralamadan hariç tutulur, orijinal sırasında kalır. */
  [class*="-hero"] .hero-grid {
    gap: 0 !important; /* Grid otomatik boşluklarını sıfırlayıp marjlarla hassas yönetiyoruz */
  }
  
  [class*="-hero"] .hero-content {
    display: contents !important; /* Alt elemanları üst gridin doğrudan çocukları yapar */
  }
  
  [class*="-hero"] [class*="-hero-badge"],
  [class*="-hero"] [class*="-badge"],
  [class*="-hero"] .badge {
    order: 1 !important;
    margin: 0 auto 6px auto !important; /* Rozet-Başlık arası mesafe */
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    justify-self: center !important;
    width: auto !important;
    max-width: fit-content !important;
    padding: 5px 12px !important;
    font-size: 0.72rem !important;
    border-radius: 100px !important;
  }
  
  [class*="-hero"] h1, 
  [class*="-hero"] [class*="-hero-title"], 
  [class*="-hero"] [class*="-title"] {
    order: 2 !important;
    margin-bottom: 12px !important; /* Başlık-Görsel arası mesafe */
  }
  
  [class*="-hero"] .hero-visual,
  [class*="-hero"] [class*="-visual"],
  [class*="-hero"] .hero-image-wrapper {
    order: 3 !important;
    margin: 0 auto 14px auto !important; /* Görsel-Açıklama arası mesafe */
    width: 100% !important;
    max-width: 250px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    justify-self: center !important;
  }
  
  [class*="-hero"] .hero-content p,
  [class*="-hero"] [class*="-hero-desc"],
  [class*="-hero"] [class*="-desc"] {
    order: 4 !important; /* Resimden sonra açıklamayı göster */
    margin-bottom: 16px !important; /* Açıklama-Buton arası mesafe */
    margin-top: 0 !important;
  }
  
  [class*="-hero"] .hero-actions,
  [class*="-hero"] [class*="-actions"],
  [class*="-hero"] .hero-buttons,
  [class*="-hero"] [class*="-buttons"],
  [class*="-hero"] .button-group,
  [class*="-hero"] .btn-group,
  [class*="-hero"] .cta-buttons {
    order: 5 !important; /* Açıklamadan sonra butonları göster */
  }
  
  [class*="-hero"] [class*="-hero-stats"],
  [class*="-hero"] [class*="-stats"],
  [class*="-hero"] .emlak-hero-stats {
    order: 6 !important;
    margin-top: 15px !important;
  }
  
  /* Genel mobil hero görseli (Anasayfa dahil) boyut ve kenar boşlukları */
  .hero-visual,
  [class*="-visual"],
  .hero-image-wrapper {
    max-width: 250px !important;
    margin: 15px auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  /* 3. MODERN CARDS & GRID OVERRIDES (Prevents squeezed padding on small mobile screens) */
  .service-card,
  .hotel-feature-card,
  .corp-table-container,
  .plugins-showcase-card,
  .process-step,
  .emlak-comp-table,
  [class*="-card"]:not(i):not([class*="fa-"]):not(.payment-card-3d),
  [class*="-table-container"],
  [class*="-showcase-card"] {
    padding: 22px !important; /* Sıkışık desktop padding değerini mobil için optimize eder */
    border-radius: 16px !important;
    border: 1px solid rgba(15, 23, 42, 0.05) !important;
    background: #ffffff !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.02) !important;
    margin-top: 0 !important;
  }
  
  /* Koyu Arka Planlı Kartlar */
  .section-dark .service-card,
  .section-dark [class*="-card"]:not(i):not([class*="fa-"]):not(.payment-card-3d) {
    background: rgba(255, 255, 255, 0.02) !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
  }
  
  /* Modern Grids Overrides (Clean stacking with soft 16px gap) */
  .services-grid,
  .features-grid,
  .plugins-showcase-grid,
  .hotel-features-grid,
  [class*="grid"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  
  /* 4. BUTTONS STACKING & CENTERING */
  .hero-actions,
  [class*="-actions"],
  .hero-buttons,
  [class*="-buttons"],
  .button-group,
  .btn-group,
  .cta-buttons {
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 290px !important;
    margin: 0 auto !important;
    gap: 10px !important;
  }
  
  .hero-actions .btn,
  [class*="-actions"] .btn,
  .hero-buttons .btn,
  [class*="-buttons"] .btn,
  .button-group .btn,
  .btn-group .btn,
  .cta-buttons .btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 10px 20px !important;
    font-size: 0.95rem !important;
  }
  
  /* 5. FORM AND GRID FIXES */
  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  
  input, select, textarea {
    border-radius: 10px !important;
    padding: 10px 14px !important;
    font-size: 0.92rem !important;
  }
  
  /* Centering pricing/packages inline grids on small mobile screens */
  div[style*="minmax(340px"], 
  div[style*="minmax(320px"],
  [class*="grid"][style*="minmax(340px"],
  [class*="grid"][style*="minmax(320px"] {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
    gap: 16px !important;
    justify-content: center !important;
  }

  /* 6. FOOTER RESPONSIVE CENTERING */
  .footer-col {
    text-align: center !important;
  }
  
  .footer-col h4::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  
  .footer-socials {
    justify-content: center !important;
    margin-top: 15px !important;
  }

  .footer-links {
    text-align: left !important;
    display: inline-block !important;
    width: 100% !important;
  }
  .footer-links li {
    text-align: left !important;
  }

  /* Bank Page Card & Billing Info Overrides on Mobile */
  .payment-card-3d {
    width: 280px !important;
    height: 165px !important;
    padding: 16px 20px !important;
    transform: none !important;
    margin: 0 auto !important;
    background: linear-gradient(135deg, #0b0f19 0%, #111827 50%, #064e3b 100%) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
  }
  .payment-card-3d .card-top {
    margin-bottom: 15px !important;
  }
  .payment-card-3d .card-number {
    font-size: 1rem !important;
    margin-bottom: 12px !important;
    letter-spacing: 1.5px !important;
  }
  .payment-card-3d .card-bottom {
    font-size: 0.65rem !important;
  }
  #billing-info-card {
    background: var(--secondary) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
  }
  #billing-info-card .bank-info-value {
    color: #ffffff !important;
  }
  #billing-info-card .bank-info-label {
    color: #94a3b8 !important;
  }

  /* Homepage & Hakkımızda Hero Layout Reordering */
  .hero .hero-grid {
    gap: 0 !important;
  }
  .hero .hero-content {
    display: contents !important;
  }
  .hero h1 {
    order: 2 !important;
    margin-top: 0 !important;
    margin-bottom: 12px !important;
  }
  .hero .hero-visual {
    order: 3 !important;
    margin: 0 auto 14px auto !important;
  }
  .hero .hero-content p {
    order: 4 !important;
    margin-bottom: 16px !important;
    margin-top: 0 !important;
  }
  .hero .hero-actions {
    order: 5 !important;
  }

  /* Reduce margin/padding above titles on mobile and collapse full-height stretch */
  .hero, 
  [class*="-hero"] {
    padding-top: 95px !important; /* Normal visual gap of 15px below the 80px fixed header */
    padding-bottom: 30px !important;
    min-height: auto !important;
  }

  /* Nasıl Çalışırız? (Timeline Process Steps) Mobile Colors */
  #home-process .process-step {
    background: var(--secondary) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
  }
  #home-process .process-step .step-number {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
  }
  #home-process .process-step .step-content h3 {
    color: #ffffff !important;
  }
  #home-process .process-step .step-content p {
    color: rgba(255, 255, 255, 0.7) !important;
  }

  /* Scale down all floating badges (baloncuklar) in hero visuals on mobile */
  [class*="-float-badge"] {
    display: flex !important;
    padding: 6px 10px !important;
    border-radius: 12px !important;
    gap: 8px !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
    width: max-content !important;
    max-width: 140px !important;
  }
  [class*="-float-badge"] i,
  [class*="-float-badge"] .badge-icon-box {
    width: 24px !important;
    height: 24px !important;
    font-size: 0.75rem !important;
    flex-shrink: 0 !important;
  }
  [class*="-float-badge"] span {
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    display: block !important;
  }
  [class*="-float-badge"] p {
    font-size: 0.6rem !important;
    margin: 0 !important;
    line-height: 1.1 !important;
    display: block !important;
  }

  /* Stack subpage hero stats grids and center text on mobile */
  [class*="-hero-stats"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    text-align: center !important;
  }

  /* Disable expensive backdrop filter and use solid white header on mobile */
  .header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background-color: #ffffff !important;
  }

  /* Disable heavy animations & blurred background blobs on mobile to prevent choppiness/lag */
  .bg-blobs-container,
  .bg-blob {
    display: none !important;
    animation: none !important;
  }

  [class*="-float-badge"],
  [class*="-badge"] {
    animation: none !important;
  }

  /* Contact page info cards text color override on mobile */
  .info-card h3,
  .info-card p:not(:last-child) {
    color: var(--secondary) !important;
  }
  .info-card p:last-child {
    color: #64748b !important; /* Premium dark grey for subtext accessibility */
  }
}

