/* =========================================
   ANKARA DEZENFEKTE — MODERN THEME CSS
   ========================================= */

/* CSS Variables */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #dbeafe;
  --accent: #16a34a;
  --accent-light: #dcfce7;
  --dark: #0f172a;
  --text: #334155;
  --text-muted: #64748b;
  --cream: #f8fafc;
  --surface: #f1f5f9;
  --border: #e2e8f0;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 20px 50px rgba(15, 23, 42, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-primary:active { transform: scale(0.97); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.btn-block { display: flex; justify-content: center; width: 100%; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: #25d366;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-whatsapp:hover { background: #128c7e; }

/* Section Headers */
.section-header { margin-bottom: 48px; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 12px auto 0;
}

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

/* =========================================
   HEADER
   ========================================= */

.header-top-bar {
  background: var(--dark);
  padding: 10px 0;
  font-size: 13px;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-links { display: flex; gap: 16px; list-style: none; }

.social-links a {
  color: #94a3b8;
  transition: color 0.2s;
}

.social-links a:hover { color: #fff; }

.info-links { display: flex; gap: 24px; list-style: none; align-items: center; }

.info-links a {
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.info-links a:hover { color: #fff; }

.info-links .live-support {
  background: #25d366;
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 600;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
}

.site-header-menu {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

.logo-text .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.logo-text small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 4px;
}

.main-navigation a {
  display: block;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  border-radius: 8px;
  transition: var(--transition);
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
  color: var(--primary);
  background: var(--primary-light);
}

.has-dropdown { position: relative; }

.has-dropdown > a i { font-size: 10px; margin-left: 4px; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
}

.dropdown-menu li a:hover {
  background: var(--cream);
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.mobile-menu.active { right: 0; }

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  font-size: 18px;
  font-weight: 600;
}

.mobile-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--dark);
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
}

.mobile-cta { margin-top: auto; padding-top: 24px; }

/* =========================================
   HERO SECTION
   ========================================= */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #dae5ea 0%, #2f7da5 50%, #a5b7c0 100%);
  z-index: 1;
}

.hero-slider {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 0 60px;
}

.hero-slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-slide.active { display: grid; }

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-image {
  display: flex;
  justify-content: flex-end;
}

.hero-image-circle {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.3);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.hero-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  grid-column: 1 / -1;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-dots button.active {
  width: 28px;
  border-radius: 14px;
  background: #fff;
}

/* =========================================
   SERVICES SECTION
   ========================================= */

.services-section { background: var(--cream); padding: 100px 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.services-grid.large { grid-template-columns: repeat(3, 1fr); }

.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.service-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

.service-body h3 a:hover { color: var(--primary); }

.service-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-top: auto;
  transition: gap 0.3s;
}

.service-link:hover { gap: 10px; }

/* =========================================
   ABOUT SECTION
   ========================================= */

.about-section { padding: 100px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-content .section-title { font-size: 36px; }

.about-content p {
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.7;
}

.about-features {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
}

.about-features i {
  color: var(--accent);
  font-size: 16px;
}

.about-content .btn-secondary { margin-top: 32px; }

/* =========================================
   STATS SECTION
   ========================================= */

.stats-section {
  background: var(--dark);
  padding: 80px 0;
}

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

.stat-item { text-align: center; padding: 24px; }

.stat-icon {
  width: 64px;
  height: 64px;
  background: rgba(37, 99, 235, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

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

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* =========================================
   PROCESS SECTION
   ========================================= */

.process-section { padding: 100px 0; }

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

.process-step {
  text-align: center;
  padding: 32px 16px;
  position: relative;
}

.process-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =========================================
   NEWS SECTION
   ========================================= */

.news-section { background: var(--cream); padding: 100px 0; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.news-card { display: flex; flex-direction: column; gap: 20px; }

.news-image {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.news-card:hover .news-image img { transform: scale(1.03); }

.news-body { display: flex; flex-direction: column; gap: 8px; }

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-meta .dot {
  width: 4px;
  height: 4px;
  background: var(--text-muted);
  border-radius: 50%;
}

.news-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.news-body h3 a:hover { color: var(--primary); }

.news-body > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */

.testimonials-section { padding: 100px 0; overflow: hidden; }

.testimonials-track-wrapper { position: relative; }

.testimonials-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px 0;
  cursor: grab;
  user-select: none;
}

.testimonials-track:active { cursor: grabbing; }

.testimonials-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex: 0 0 380px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  overflow: hidden;
}

.testimonial-author strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted);
}

/* =========================================
   CTA SECTION
   ========================================= */

.cta-section {
  background: var(--primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 256px;
  height: 256px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  transform: translate(30%, 30%);
}

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

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.cta-section > .container > p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 32px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 48px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: var(--transition);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.cta-note {
  display: block;
  margin-top: 20px;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
}

/* =========================================
   PAGE HERO (Inner Pages)
   ========================================= */

.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 140px 0 60px;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover { color: #fff; }

.breadcrumb i { font-size: 10px; }

/* =========================================
   PAGE CONTENT
   ========================================= */

.page-content { padding: 80px 0; }

.page-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
}

.page-sidebar { position: sticky; top: 100px; height: fit-content; }

.sidebar-cta {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin-bottom: 24px;
}

.sidebar-cta-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
  font-size: 24px;
}

.sidebar-cta h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.sidebar-cta p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.sidebar-cta .btn-primary,
.sidebar-cta .btn-whatsapp {
  margin-bottom: 8px;
}

.sidebar-services {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.sidebar-services h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.sidebar-services ul { list-style: none; }

.sidebar-services li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.sidebar-services li a:hover { color: var(--primary); padding-left: 4px; }

.sidebar-services li:last-child a { border-bottom: none; }

.sidebar-services i {
  width: 28px;
  height: 28px;
  background: var(--primary-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--primary);
}

.page-featured-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}

.page-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.page-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}

.page-body h2,
.page-body h3 {
  color: var(--dark);
  margin: 32px 0 16px;
}

.page-body p { margin-bottom: 16px; }

.page-body ul,
.page-body ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.page-body li { margin-bottom: 8px; }

.page-body a { color: var(--primary); }

.page-body a:hover { text-decoration: underline; }

.page-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

/* =========================================
   SERVICES PAGE
   ========================================= */

.services-page { padding: 80px 0; }

.services-page .section-header { margin-bottom: 48px; }

.cta-phone {
  font-size: 32px;
  font-weight: 700;
  margin: 16px 0 8px;
}

.cta-phone a {
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.cta-text {
  font-size: 18px;
  color: var(--text-muted);
}

/* =========================================
   FOOTER
   ========================================= */

.site-footer {
  background: var(--dark);
  color: #94a3b8;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1.5fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo .logo-text {
  color: #fff;
  font-size: 20px;
}

.footer-logo .logo-text i {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 320px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: var(--transition);
}

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

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul a {
  font-size: 14px;
  color: #94a3b8;
  transition: var(--transition);
}

.footer-col ul a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
}

.footer-contact i {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.footer-contact a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 48px;
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #64748b;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: #64748b;
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

/* =========================================
   WHATSAPP WIDGET
   ========================================= */

.whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.whatsapp-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: whatsapp-pulse 2s ease-in-out infinite;
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-toggle:hover { transform: scale(1.1); }

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

.whatsapp-panel {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  display: none;
}

.whatsapp-panel.active { display: block; animation: fade-in-up 0.3s ease forwards; }

.whatsapp-header {
  background: #075e54;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.whatsapp-header strong {
  display: block;
  color: #fff;
  font-size: 14px;
}

.whatsapp-header span {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 6px;
}

.whatsapp-header span i {
  color: #4ade80;
  font-size: 8px;
}

.whatsapp-body {
  padding: 16px;
  background: #e5ddd5;
  min-height: 180px;
}

.whatsapp-message {
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  border-top-left-radius: 0;
  max-width: 85%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.whatsapp-message p {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.5;
}

.whatsapp-message span {
  display: block;
  text-align: right;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

.whatsapp-footer {
  padding: 12px;
  background: #fff;
  border-top: 1px solid var(--border);
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
  .hero-slide {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content h1 { font-size: 40px; }
  
  .hero-image { justify-content: center; }
  
  .hero-image-circle {
    width: 320px;
    height: 320px;
  }
  
  .services-grid,
  .services-grid.large { grid-template-columns: repeat(2, 1fr); }
  
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  
  .about-grid { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  
  .page-layout { grid-template-columns: 1fr; }
  
  .page-sidebar { position: static; }
}

@media (max-width: 768px) {
  .section-title { font-size: 32px; }
  
  .hero-content h1 { font-size: 32px; }
  
  .hero-image-circle {
    width: 260px;
    height: 260px;
  }
  
  .main-navigation,
  .header-actions { display: none; }
  
  .mobile-toggle { display: flex; }
  
  .services-grid,
  .services-grid.large,
  .news-grid { grid-template-columns: 1fr; }
  
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  
  .stat-number { font-size: 40px; }
  
  .process-grid { grid-template-columns: 1fr; }
  
  .testimonial-card { flex: 0 0 300px; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .cta-section h2 { font-size: 28px; }
  
  .cta-phone { font-size: 24px; }
}

/* =========================================
   ANIMATIONS
   ========================================= */

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* AOS-like animations */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-right"] { transform: translateX(-30px); }

[data-aos="fade-right"].aos-animate { transform: translateX(0); }

[data-aos="fade-left"] { transform: translateX(30px); }

[data-aos="fade-left"].aos-animate { transform: translateX(0); }

[data-aos="zoom-in"] { transform: scale(0.9); }

[data-aos="zoom-in"].aos-animate { transform: scale(1); }





/* ============================================
   ARKAPLAN TANIMLARI - EKLENECEK CSS
   ============================================ */

/* 1. Genel Body Arkaplan */
body {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    background-attachment: fixed;
    color: #1e293b;
}

/* 2. Hero Section Arkaplan */
.hero-section {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

/* 3. Services Section Arkaplan */
.services-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #ffffff);
    pointer-events: none;
}

/* 4. About Section Arkaplan */
.about-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
}

.about-section::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

/* 5. Stats Section Arkaplan */
.stats-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    color: #ffffff;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
}

/* Stats sayıları için renk ayarı */
.stat-number {
    color: #38bdf8;
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.stat-label {
    color: #94a3b8;
}

/* 6. Process Section Arkaplan */
.process-section {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    position: relative;
}

/* Process adımları için bağlantı çizgisi efekti */
.process-grid {
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, #0ea5e9, #22d3ee, #0ea5e9);
    opacity: 0.3;
    z-index: 0;
}

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

/* 7. News/Blog Section Arkaplan */
.news-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

/* 8. Testimonials Section Arkaplan */
.testimonials-section {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    position: relative;
    color: #ffffff;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
}

.testimonial-quote {
    color: #ffffff;
}

.testimonial-author strong {
    color: #ffffff;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.7);
}

/* 9. CTA Section Arkaplan */
.cta-section {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    position: relative;
    color: #ffffff;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
    animation: ctaPulse 4s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.5; }
}

.cta-section h2,
.cta-section p {
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.btn-cta {
    background: #ffffff;
    color: #dc2626;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* 10. Service Cards Arkaplan */
.service-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #0ea5e9;
}

/* 11. News Cards Arkaplan */
.news-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.15);
}

/* 12. Process Steps Arkaplan */
.process-step {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    position: relative;
    z-index: 1;
}

.process-number {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
}

/* 13. Hero Overlay Düzenlemesi */
.hero-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(30, 41, 59, 0.5) 100%);
}

/* 14. Section Header Stilleri */
.section-header .section-label {
    color: #0ea5e9;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    color: #0f172a;
    font-weight: 700;
}

.section-subtitle {
    color: #64748b;
}

/* 15. About Features List */
.about-features li {
    color: #334155;
}

.about-features li i {
    color: #0ea5e9;
}

/* 16. Smooth Section Transitions */
section {
    position: relative;
}

/* Section'lar arası yumuşak geçiş */
.services-section,
.about-section,
.process-section,
.news-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* 17. WhatsApp Widget Arkaplan */
.whatsapp-panel {
    background: #ffffff;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.whatsapp-header {
    background: linear-gradient(135deg, #075e54, #128c7e);
    color: #ffffff;
}

.whatsapp-toggle {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* 18. Genel Container Ayarları */
.container {
    position: relative;
    z-index: 1;
}

/* 19. Hero Content Renkleri */
.hero-content h1 {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* 20. Responsive Düzenlemeler */
@media (max-width: 768px) {
    .hero-section {
        background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    }
    
    .stats-section {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    }
    
    .cta-section {
        background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    }
    
    .process-grid::before {
        display: none;
    }
}