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

:root {
  --primary: #1a7fc1;
  --primary-dark: #155fa0;
  --primary-light: #e8f4fd;
  --secondary: #2ecc71;
  --dark: #1a2636;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(26,127,193,0.2);
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Global Watermark Logo */
.watermark-bg {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background-image: url('img/logo.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 48px;
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: 16px;
}

.section-header .section-subtitle {
  margin: 0 auto 48px;
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--white);
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ===== HEADER / NAV ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

.logo-img-footer {
  height: 64px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.logo-text span {
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.5px;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav ul li a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.3s;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--primary);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--primary-dark);
  color: var(--white) !important;
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO SLIDER ===== */
.hero {
  margin-top: 70px;
  position: relative;
  overflow: hidden;
  height: 580px;
}

.slider {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide {
  width: 33.333%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.slide-1 .slide-bg { background: linear-gradient(135deg, #0f4c81 0%, #1a7fc1 50%, #2193cc 100%); }
.slide-2 .slide-bg { background: linear-gradient(135deg, #0d6b4f 0%, #1a9e6e 50%, #27ae82 100%); }
.slide-3 .slide-bg { background: linear-gradient(135deg, #6b0f1a 0%, #b91c35 50%, #d62c45 100%); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 600px;
  padding: 0 60px;
}

.slide-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.slide-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.slide-content p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.7;
}

.slide-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Slider Watermark Logo */
.slide-watermark {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

.slide-watermark img {
  width: 420px;
  height: 420px;
  object-fit: contain;
  opacity: 0.13;
  filter: brightness(0) invert(1);
  mix-blend-mode: overlay;
}

@media (max-width: 992px) {
  .slide-watermark img { width: 280px; height: 280px; opacity: 0.09; }
}

@media (max-width: 576px) {
  .slide-watermark { display: none; }
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: white;
  width: 28px;
  border-radius: 5px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.2rem;
}

.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* ===== QUICK INFO BAR ===== */
.quick-info {
  background: var(--dark);
  padding: 0;
}

.quick-info-inner {
  display: flex;
  justify-content: center;
}

.quick-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: white;
}

.quick-item:last-child {
  border-right: none;
}

.quick-item .icon {
  font-size: 1.4rem;
  color: var(--primary);
}

.quick-item .info {
  display: flex;
  flex-direction: column;
}

.quick-item .info span {
  font-size: 0.75rem;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quick-item .info strong {
  font-size: 0.92rem;
  font-weight: 600;
}

/* ===== HİZMETLER ===== */
.services {
  padding: 90px 0;
  background: rgba(243, 244, 246, 0.85);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: all 0.3s;
}

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

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

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

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

/* ===== NEDEN BİZ ===== */
.why-us {
  padding: 90px 0;
  background: rgba(255, 255, 255, 0.85);
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-visual {
  position: relative;
}

.why-us-visual .big-icon {
  width: 100%;
  max-width: 420px;
  height: 380px;
  background: linear-gradient(135deg, var(--primary-light), #cce8f8);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.why-us-visual .big-icon::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: rgba(26,127,193,0.15);
  border-radius: 50%;
}

.stat-badge {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-badge.badge-1 {
  bottom: 20px;
  left: -20px;
}

.stat-badge.badge-2 {
  top: 20px;
  right: -20px;
}

.stat-badge .stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-badge .stat-text {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.3;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
}

.why-item-text h4 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
}

.why-item-text p {
  font-size: 0.86rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== NASIL ÇALIŞIR ===== */
.how-it-works {
  padding: 90px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.how-it-works .section-title { color: white; }
.how-it-works .section-subtitle { color: rgba(255,255,255,0.75); }

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: rgba(255,255,255,0.2);
  z-index: 0;
}

.step-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.step-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}

.step-number {
  width: 52px;
  height: 52px;
  background: white;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 16px;
}

.step-card h3 {
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  line-height: 1.6;
}

/* ===== BÖLGELER ===== */
.regions {
  padding: 90px 0;
  background: rgba(243, 244, 246, 0.85);
}

.regions-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.regions-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.region-tag {
  background: var(--white);
  border: 1px solid #d1e8f7;
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.region-tag:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.map-placeholder {
  background: linear-gradient(135deg, var(--primary-light), #cce8f8);
  border-radius: 20px;
  height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--primary);
  font-size: 5rem;
  border: 2px dashed #90c8e8;
}

.map-placeholder p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.regions-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 70px 0;
  background: var(--dark);
  text-align: center;
}

.cta-banner h2 {
  font-size: 2rem;
  color: white;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  font-size: 1rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid #25d366;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-phone:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
  background: #0f1923;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}

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

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand-text {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 14px;
  line-height: 1.2;
  text-decoration: none;
}

.footer-brand-text:hover {
  color: var(--primary);
}

.footer-brand .logo-text strong {
  color: white;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  opacity: 0.7;
}

.footer-col h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}

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

.footer-col ul li a {
  font-size: 0.87rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-col ul li a:hover {
  opacity: 1;
  color: var(--primary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.87rem;
}

.footer-contact-item .fc-icon {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  opacity: 0.5;
}

/* ===== İLETİŞİM SAYFASI ===== */
.page-hero {
  margin-top: 70px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 60px 0;
  text-align: center;
  color: white;
}

.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-hero p {
  opacity: 0.85;
  font-size: 1rem;
}

.contact-section {
  padding: 80px 0;
  background: rgba(243, 244, 246, 0.85);
}

/* Yeni iletişim kartları */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.contact-big-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: all 0.3s;
}

.contact-big-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.cbc-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.cbc-text span {
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 4px;
}

.cbc-text strong {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 600;
}

.cbc-btn {
  width: 100%;
  text-align: center;
  padding: 11px 16px;
  font-size: 0.88rem;
  border-radius: 8px;
  justify-content: center;
}

.cbc-badge {
  background: #e8f4fd;
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

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

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
}

.contact-info-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--dark);
}

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-detail .cd-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}

.contact-detail .cd-text span {
  font-size: 0.78rem;
  color: var(--gray);
  display: block;
  margin-bottom: 2px;
}

.contact-detail .cd-text strong {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 600;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
}

.contact-form-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--dark);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--dark);
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,127,193,0.1);
}

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

/* ===== HİZMETLER SAYFASI ===== */
.services-page {
  padding: 80px 0;
  background: rgba(243, 244, 246, 0.85);
}

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

.service-page-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

.service-card-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-card-header .s-icon {
  font-size: 2.2rem;
  color: white;
}

.service-card-header h3 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
}

.service-card-body {
  padding: 24px;
}

.service-card-body p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-card-body ul {
  list-style: none;
}

.service-card-body ul li {
  font-size: 0.85rem;
  color: var(--dark);
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
}

.service-card-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .services-grid,
  .services-page-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-us-inner,
  .regions-content,
  .contact-grid { grid-template-columns: 1fr; }
  .why-us-visual { display: none; }
  .slide-content { padding: 0 40px; }
  .slide-content h1 { font-size: 2rem; }
}

@media (max-width: 768px) {
  nav ul { display: none; }
  .hamburger { display: flex; }
  .services-grid,
  .services-page-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .quick-info-inner { flex-direction: column; }
  .quick-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .hero { height: 480px; }
  .slide-content h1 { font-size: 1.7rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section-title { font-size: 1.6rem; }
  .steps-grid::before { display: none; }

  /* Mobile Nav */
  nav.mobile-open ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 999;
  }
}

@media (max-width: 480px) {
  .slide-content { padding: 0 24px; }
  .slide-content h1 { font-size: 1.4rem; }
  .slide-buttons { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .steps-grid { grid-template-columns: 1fr; }
}

/* ===== ANİMASYONLAR ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Whatsapp float button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 999;
  transition: all 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

.phone-float {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  box-shadow: 0 4px 20px rgba(26,127,193,0.5);
  z-index: 999;
  transition: all 0.3s;
  text-decoration: none;
}

.phone-float:hover {
  transform: scale(1.1);
}
