/* ============================================
   BERK BİLİŞİM - ANA STİL DOSYASI
   ============================================ */

/* --------------------------------------------
   CSS DEĞİŞKENLERİ
   -------------------------------------------- */
:root {
  /* Ana Renkler - Berk Bilişim Kurumsal Renkleri */
  --primary: #e31e24; /* Logo kırmızısı */
  --primary-dark: #b8181c; /* Koyu kırmızı */
  --primary-light: #ff4d52; /* Açık kırmızı */
  --secondary: #1a1a1a; /* Logo siyahı */
  --secondary-light: #2d2d2d; /* Açık siyah */

  /* Metin Renkleri */
  --text-dark: #333333;
  --text-gray: #666666;
  --text-light: #999999;

  /* Arkaplan Renkleri */
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-gray: #e9ecef;
  --bg-dark: #1a1a1a;

  /* Durum Renkleri */
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --info: #17a2b8;

  /* WhatsApp Rengi */
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;

  /* Yazı Tipleri */
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Open Sans", sans-serif;

  /* Layout Değişkenleri */
  --container-width: 1200px;
  --section-padding: 80px;
  --header-height: 80px;
  --header-scrolled-height: 60px;

  /* Geçiş Süreleri */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Gölgeler */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-circle: 50%;
}

/* --------------------------------------------
   RESET & TEMEL STİLLER
   -------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--secondary);
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-normal);
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* --------------------------------------------
   LAYOUT
   -------------------------------------------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Bölüm Başlıkları */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  padding: 5px 15px;
  background-color: rgba(227, 30, 36, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Arkaplan Renkleri */
.bg-light {
  background-color: var(--bg-light);
}

.bg-gray {
  background-color: var(--bg-gray);
}

.bg-dark {
  background-color: var(--bg-dark);
}

/* --------------------------------------------
   BUTONLAR
   -------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  line-height: 1.2;
}

.btn i {
  font-size: 1.1em;
}

/* Buton Varyasyonları */
.btn-primary {
  background-color: var(--primary);
  color: var(--bg-white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--bg-white);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--bg-white);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-phone {
  background-color: var(--secondary);
  color: var(--bg-white);
}

.btn-phone:hover {
  background-color: var(--secondary-light);
}

.btn-emergency {
  background: linear-gradient(135deg, var(--danger) 0%, #c82333 100%);
  color: var(--bg-white);
  animation: pulse 2s infinite;
}

.btn-emergency:hover {
  animation: none;
  transform: scale(1.05);
}

.btn-submit {
  background-color: var(--primary);
  color: var(--bg-white);
  width: 100%;
}

.btn-submit:hover {
  background-color: var(--primary-dark);
}

.btn-submit.industrial {
  background-color: var(--secondary);
}

.btn-submit.industrial:hover {
  background-color: var(--secondary-light);
}

.btn-submit.security {
  background-color: var(--info);
}

.btn-submit.security:hover {
  background-color: #138496;
}

.btn-submit.robot {
  background-color: var(--success);
}

.btn-submit.robot:hover {
  background-color: #218838;
}

.btn-submit.satellite {
  background-color: var(--warning);
  color: var(--secondary);
}

.btn-submit.satellite:hover {
  background-color: #e0a800;
}

/* Buton Boyutları */
.btn-small {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-xlarge {
  padding: 20px 40px;
  font-size: 1.2rem;
}

.btn-block {
  width: 100%;
}

/* Buton Metin Yapısı */
.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.btn-small-text {
  font-size: 0.75rem;
  opacity: 0.9;
  font-weight: 500;
}

.btn-large-text {
  font-size: 1.1rem;
  font-weight: 700;
}

/* Endüstriyel Buton */
.btn-outline-industrial {
  background-color: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
}

.btn-outline-industrial:hover {
  background-color: var(--bg-white);
  color: var(--secondary);
}

.btn-industrial {
  background-color: var(--secondary);
  color: var(--bg-white);
}

.btn-industrial:hover {
  background-color: var(--secondary-light);
}

.btn-emergency-small {
  background-color: var(--danger);
  color: var(--bg-white);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  display: inline-block;
}

.btn-emergency-small:hover {
  background-color: #c82333;
}

.btn-emergency-large {
  background-color: var(--danger);
  color: var(--bg-white);
  padding: 15px 30px;
  border-radius: var(--radius-md);
  font-size: 1.2rem;
  font-weight: 700;
  display: inline-block;
}

.btn-emergency-large:hover {
  background-color: #c82333;
  transform: scale(1.05);
}

.btn-package {
  margin-top: auto;
  width: 100%;
}

/* --------------------------------------------
   HEADER & NAVIGASYON
   -------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.header.scrolled {
  height: var(--header-scrolled-height);
  box-shadow: var(--shadow-lg);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  transition: height var(--transition-normal);
}

.header.scrolled .navbar {
  height: var(--header-scrolled-height);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  transition: height var(--transition-normal);
}

.header.scrolled .logo img {
  height: 40px;
}

/* Navigasyon Menüsü */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding: 5px 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition-normal);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a.active {
  color: var(--primary);
}

/* Dropdown Menü */
.dropdown {
  position: relative;
}

.dropdown > a i {
  font-size: 0.8rem;
  margin-left: 5px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
}

.dropdown-menu a:hover {
  background-color: var(--bg-light);
  color: var(--primary);
}

.dropdown-menu a::after {
  display: none;
}

/* Navigasyon İletişim */
.nav-contact {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: var(--primary);
  color: var(--bg-white);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
}

.phone-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.phone-btn.emergency {
  background-color: var(--danger);
  animation: pulse 2s infinite;
}

/* Hamburger Menü */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 100;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--secondary);
  transition: all var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobil Menü */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: var(--bg-white);
  z-index: 999;
  padding: 80px 20px 20px;
  transition: right var(--transition-normal);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-dark);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  font-family: var(--font-heading);
  font-weight: 600;
  border-bottom: 1px solid var(--bg-gray);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------
   ACİL DURUM BANNER
   -------------------------------------------- */
.emergency-banner {
  background-color: var(--danger);
  color: var(--bg-white);
  padding: 12px 0;
  text-align: center;
  font-size: 0.95rem;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  z-index: 999;
  transition: top var(--transition-normal);
}

.header.scrolled + .emergency-banner {
  top: var(--header-scrolled-height);
}

.emergency-banner.industrial {
  position: relative;
  top: 0;
}

.emergency-banner i {
  margin-right: 10px;
}

.emergency-banner a {
  font-weight: 700;
  text-decoration: underline;
  color: var(--bg-white);
}

.emergency-banner a:hover {
  text-decoration: none;
}

/* --------------------------------------------
   HERO BÖLÜMLERİ
   -------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 30px);
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
}

.circuit-pattern {
  width: 100%;
  height: 100%;
  background-image: 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='%23E31E24' fill-opacity='0.2'%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");
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: rgba(227, 30, 36, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-title .highlight {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-suffix {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-left: 2px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.hero-image {
  position: relative;
  width: 45%;
  height: 500px;
}

/* Hareketli İkonlar */
.floating-icons {
  position: relative;
  width: 100%;
  height: 100%;
}

.float-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.float-icon:nth-child(1) {
  top: 10%;
  left: 20%;
}
.float-icon:nth-child(2) {
  top: 30%;
  right: 10%;
}
.float-icon:nth-child(3) {
  top: 50%;
  left: 10%;
}
.float-icon:nth-child(4) {
  bottom: 20%;
  right: 25%;
}
.float-icon:nth-child(5) {
  bottom: 10%;
  left: 30%;
}

/* Landing Page Hero */
.lp-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  overflow: hidden;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lp-hero-content {
  max-width: 600px;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: rgba(227, 30, 36, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* Badge Varyasyonları */
.lp-badge.industrial {
  background-color: rgba(26, 26, 26, 0.1);
  color: var(--secondary);
}

.lp-badge.security {
  background-color: rgba(23, 162, 184, 0.1);
  color: var(--info);
}

.lp-badge.robot {
  background-color: rgba(40, 167, 69, 0.1);
  color: var(--success);
}

.lp-badge.satellite {
  background-color: rgba(255, 193, 7, 0.2);
  color: #856404;
}

.lp-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.lp-title .highlight {
  color: var(--primary);
}

.lp-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 25px;
}

.lp-subtitle strong {
  color: var(--text-dark);
}

/* Güven Rozetleri */
.trust-badges {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.trust-item i {
  color: var(--primary);
  font-size: 1.2rem;
}

.trust-badges.industrial .trust-item i {
  color: var(--secondary);
}

/* CTA Grupları */
.lp-cta-group {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

/* Sosyal Kanıt */
.lp-social-proof {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid var(--bg-gray);
}

.lp-social-proof.b2b {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.stars {
  color: var(--warning);
}

.stars i {
  margin-right: 2px;
}

.b2b-clients {
  display: flex;
  align-items: center;
  gap: 10px;
}

.client-avatars {
  display: flex;
}

.client-avatars .avatar {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-circle);
  background-color: var(--primary);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: -8px;
  border: 2px solid var(--bg-white);
}

.client-avatars .avatar:first-child {
  margin-left: 0;
}

/* Fiyat Vurguları */
.price-highlight {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--bg-white);
  padding: 15px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  display: inline-block;
}

.price-label {
  display: block;
  font-size: 0.85rem;
  opacity: 0.9;
}

.price-amount {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.price-note {
  display: block;
  font-size: 0.8rem;
  opacity: 0.8;
  text-decoration: line-through;
}

.price-starting {
  margin-bottom: 20px;
}

.starting-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.starting-price {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
  line-height: 1;
}

.starting-note {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Acil Durum Kutusu */
.urgency-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: rgba(220, 53, 69, 0.1);
  border-left: 4px solid var(--danger);
  padding: 15px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.urgency-box i {
  font-size: 2rem;
  color: var(--danger);
}

.urgency-text strong {
  display: block;
  color: var(--danger);
  font-family: var(--font-heading);
}

.urgency-text span {
  font-size: 0.9rem;
  color: var(--text-gray);
}

/* Güvenlik Özellikleri */
.security-features-list {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.sec-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
  font-weight: 600;
}

.sec-feature i {
  color: var(--info);
}

/* Endüstriyel Özellikler */
.industrial-props {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.ind-prop {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.ind-prop i {
  color: var(--secondary);
}

/* Değer Önerileri */
.value-props {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.value-prop {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.value-prop i {
  color: var(--success);
}

/* Güvenlik Rozetleri */
.security-trust {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--bg-gray);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.trust-badge i {
  color: var(--info);
}

/* Kalite Rozetleri */
.quality-badges {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.quality-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.quality-item i {
  color: var(--warning);
}

/* Uydu İstatistikleri */
.satellite-stats {
  display: flex;
  gap: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--bg-gray);
}

.satellite-stats .stat {
  text-align: center;
}

.satellite-stats .stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.satellite-stats .stat-label {
  font-size: 0.85rem;
  color: var(--text-gray);
}

/* Endüstriyel Güven */
.industrial-trust {
  display: flex;
  gap: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--bg-gray);
}

.industrial-trust .trust-item {
  flex-direction: column;
  gap: 5px;
}

.industrial-trust .trust-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.industrial-trust .trust-label {
  font-size: 0.85rem;
  color: var(--text-gray);
}

/* --------------------------------------------
   FORM STİLLERİ
   -------------------------------------------- */
.lp-form-box {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-xl);
}

.lp-form-box.industrial {
  border-top: 4px solid var(--secondary);
}

.lp-form-box.security {
  border-top: 4px solid var(--info);
}

.lp-form-box.robot {
  border-top: 4px solid var(--success);
}

.lp-form-box.satellite {
  border-top: 4px solid var(--warning);
}

.form-header {
  text-align: center;
  margin-bottom: 25px;
}

.form-header h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.form-header p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* Form Grupları */
.quick-quote-form .form-group {
  margin-bottom: 15px;
}

.quick-quote-form label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.quick-quote-form label i {
  color: var(--primary);
  width: 16px;
}

.quick-quote-form input,
.quick-quote-form select,
.quick-quote-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--bg-gray);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-normal);
  background-color: var(--bg-white);
}

.quick-quote-form input:focus,
.quick-quote-form select:focus,
.quick-quote-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
}

.quick-quote-form input.error,
.quick-quote-form select.error,
.quick-quote-form textarea.error {
  border-color: var(--danger);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* Checkbox Grubu */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  font-weight: normal;
  cursor: pointer;
}

.checkbox-label input {
  width: auto;
  margin-right: 5px;
}

/* Form Notu */
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 10px;
}

.form-note i {
  color: var(--success);
}

/* Form Tercihleri */
.form-preferences {
  margin-bottom: 15px;
}

/* Alan Hata Mesajı */
.field-error {
  color: var(--danger);
  font-size: 0.8rem;
  margin-top: 5px;
  display: block;
}

/* --------------------------------------------
   HİZMET KARTLARI
   -------------------------------------------- */
.services-section {
  padding: var(--section-padding) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(227, 30, 36, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
}

.service-link i {
  transition: transform var(--transition-normal);
}

.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* Detaylı Hizmetler */
.services-detailed {
  padding: var(--section-padding) 0;
}

.service-detailed-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-md);
}

.service-detailed-card:last-child {
  margin-bottom: 0;
}

.service-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-large {
  width: 150px;
  height: 150px;
  background-color: rgba(227, 30, 36, 0.1);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--primary);
}

.service-content {
  display: flex;
  flex-direction: column;
}

.service-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.tag {
  padding: 5px 12px;
  background-color: var(--bg-light);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-gray);
}

.service-desc {
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.8;
}

.service-features {
  margin-bottom: 25px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.service-features li i {
  color: var(--success);
}

.service-cta {
  display: flex;
  gap: 15px;
  margin-top: auto;
  flex-wrap: wrap;
}

/* Hizmet Tipi Kartları */
.service-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-type-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-type-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.service-type-card.popular {
  border: 2px solid var(--primary);
}

.popular-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 5px 40px;
  font-size: 0.75rem;
  font-weight: 700;
  transform: rotate(45deg);
}

.type-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(227, 30, 36, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-type-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-type-card > p {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.type-features {
  margin-bottom: 20px;
}

.type-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.type-features li i {
  color: var(--success);
  font-size: 0.8rem;
}

.type-price {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
  margin-bottom: 15px;
}

/* Uydu Hizmet Kartları */
.satellite-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.sat-service-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.sat-service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.sat-service-card.featured {
  border: 2px solid var(--warning);
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: -10px;
  left: 20px;
  background-color: var(--warning);
  color: var(--secondary);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.sat-service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 193, 7, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--warning);
  margin-bottom: 20px;
}

.sat-service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.sat-service-card ul {
  margin-bottom: 20px;
  flex-grow: 1;
}

.sat-service-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.sat-service-card ul li i {
  color: var(--success);
}

.sat-price {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--warning);
  margin-bottom: 15px;
}

/* --------------------------------------------
   PAKET KARTLARI
   -------------------------------------------- */
.packages-section {
  padding: var(--section-padding) 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.package-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.package-card.featured {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--primary);
  z-index: 1;
}

.package-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-color: var(--secondary);
  color: var(--bg-white);
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.package-badge.popular {
  background-color: var(--primary);
}

.package-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(227, 30, 36, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
  margin: 20px auto;
}

.package-card h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.package-price {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}

.package-features {
  margin-bottom: 25px;
  flex-grow: 1;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.package-features li i {
  color: var(--success);
}

/* --------------------------------------------
   NEDEN BİZ / SÜREÇ BÖLÜMLERİ
   -------------------------------------------- */
.why-us {
  padding: var(--section-padding) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.why-content > p {
  color: var(--text-gray);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 15px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(227, 30, 36, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.feature-text p {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.why-image {
  position: relative;
}

.image-frame {
  width: 100%;
  height: 400px;
  background-color: var(--bg-gray);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 20px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.exp-years {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.exp-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Süreç Bölümü */
.process-section {
  padding: var(--section-padding) 0;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -50%;
  width: 100%;
  height: 2px;
  background-color: var(--bg-gray);
  z-index: 0;
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  color: var(--bg-white);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(227, 30, 36, 0.1);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 auto 15px;
}

.step-icon.emergency {
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--danger);
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Zaman Çizelgesi Süreci */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.timeline-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: var(--bg-white);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.timeline-content h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.timeline-content p {
  color: var(--text-gray);
  margin-bottom: 0;
}

/* Acil Servis Süreci */
.emergency-process .process-step .step-icon {
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--danger);
}

/* --------------------------------------------
   MARKALAR BÖLÜMÜ
   -------------------------------------------- */
.brands-section {
  padding: 60px 0;
  background-color: var(--bg-white);
}

.brands-title {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 30px;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.brand-item {
  padding: 15px 30px;
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-gray);
  transition: all var(--transition-normal);
}

.brand-item:hover {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: translateY(-3px);
}

/* Marka Kategorileri */
.brand-categories {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.brand-category h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--secondary);
}

.brand-category h3 i {
  color: var(--primary);
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.brand-logo-item {
  padding: 12px 25px;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.brand-logo-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-dark);
}

/* --------------------------------------------
   FAQ BÖLÜMÜ
   -------------------------------------------- */
.faq-section {
  padding: var(--section-padding) 0;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  margin-bottom: 15px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  transition: background-color var(--transition-normal);
}

.faq-question:hover {
  background-color: var(--bg-light);
}

.faq-question i {
  color: var(--primary);
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--bg-light);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 25px 20px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 0;
}

/* --------------------------------------------
   CTA BÖLÜMÜ
   -------------------------------------------- */
.cta-section {
  padding: var(--section-padding) 0;
}

.cta-box {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  border-radius: var(--radius-lg);
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--bg-white);
  gap: 40px;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--bg-white);
}

.cta-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.cta-services {
  background: linear-gradient(135deg, var(--secondary) 0%, #000000 100%);
}

.cta-box.about-cta {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  color: var(--text-dark);
  border: 2px solid var(--bg-gray);
}

.cta-box.about-cta h2 {
  color: var(--secondary);
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* --------------------------------------------
   WHATSAPP SABİT BUTON
   -------------------------------------------- */
.whatsapp-fixed {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp);
  color: var(--bg-white);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-normal);
}

.whatsapp-fixed:hover {
  transform: scale(1.1);
  background-color: var(--whatsapp-dark);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background-color: var(--secondary);
  color: var(--bg-white);
  padding: 8px 15px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.whatsapp-fixed:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------
   YUKARI ÇIK BUTONU
   -------------------------------------------- */
.scroll-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--bg-white);
  border: none;
  border-radius: var(--radius-circle);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 999;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* --------------------------------------------
   SABİT CTA MOBİL
   -------------------------------------------- */
.sticky-cta-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  padding: 15px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 998;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.sticky-cta-mobile.visible {
  transform: translateY(0);
}

.sticky-cta-mobile.industrial {
  background-color: var(--danger);
}

.sticky-cta-mobile.industrial .btn {
  background-color: var(--bg-white);
  color: var(--danger);
}

/* --------------------------------------------
   KAPASİTE KARTLARI (UPS)
   -------------------------------------------- */
.capacity-section {
  padding: var(--section-padding) 0;
  background-color: var(--bg-light);
}

.capacity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.capacity-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
}

.capacity-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.capacity-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.capacity-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(227, 30, 36, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
  margin: 0 auto 20px;
}

.capacity-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.capacity-range {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.capacity-card > p {
  color: var(--text-gray);
  margin-bottom: 20px;
}

.capacity-card ul {
  text-align: left;
  margin-bottom: 20px;
}

.capacity-card ul li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.capacity-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.response-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background-color: var(--bg-light);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-gray);
}

.response-time i {
  color: var(--primary);
}

/* --------------------------------------------
   SÖZLEŞME CTA
   -------------------------------------------- */
.contract-cta {
  padding: var(--section-padding) 0;
}

.contract-box {
  background: linear-gradient(135deg, var(--secondary) 0%, #000000 100%);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  color: var(--bg-white);
}

.contract-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--bg-white);
}

.contract-content > p {
  margin-bottom: 25px;
  opacity: 0.9;
}

.contract-content ul {
  margin-bottom: 30px;
}

.contract-content ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.contract-content ul li i {
  color: var(--success);
}

.contract-action {
  text-align: center;
}

.contract-note {
  display: block;
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* --------------------------------------------
   UYARI BÖLÜMÜ
   -------------------------------------------- */
.warning-section {
  padding: var(--section-padding) 0;
  background-color: var(--bg-light);
}

.warning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.warning-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.warning-content > p {
  color: var(--text-gray);
  margin-bottom: 30px;
}

.warning-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.warning-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
}

.warning-list li i {
  width: 40px;
  height: 40px;
  background-color: var(--danger);
  color: var(--bg-white);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.urgent-box {
  background: linear-gradient(135deg, var(--danger) 0%, #c82333 100%);
  color: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.urgent-box i {
  font-size: 3rem;
  margin-bottom: 20px;
}

.urgent-box h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--bg-white);
}

.urgent-box p {
  margin-bottom: 25px;
  opacity: 0.9;
}

/* --------------------------------------------
   KRİTİK HİZMETLER (Endüstriyel)
   -------------------------------------------- */
.critical-services {
  padding: var(--section-padding) 0;
  background-color: var(--bg-light);
}

.critical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.critical-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.critical-card.emergency {
  border: 2px solid var(--danger);
  position: relative;
}

.critical-icon {
  width: 90px;
  height: 90px;
  background-color: rgba(227, 30, 36, 0.1);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
  margin: 0 auto 25px;
}

.critical-card.emergency .critical-icon {
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--danger);
  animation: pulse 2s infinite;
}

.critical-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.critical-card > p {
  color: var(--text-gray);
  margin-bottom: 25px;
}

.critical-card ul {
  text-align: left;
  margin-bottom: 25px;
}

.critical-card ul li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.critical-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* --------------------------------------------
   SEKTÖRLER
   -------------------------------------------- */
.sectors-section {
  padding: var(--section-padding) 0;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.sector-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.sector-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.sector-card i {
  width: 70px;
  height: 70px;
  background-color: rgba(227, 30, 36, 0.1);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  margin: 0 auto 20px;
}

.sector-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.sector-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* --------------------------------------------
   KARŞILAŞTIRMA TABLOSU
   -------------------------------------------- */
.system-types-section {
  padding: var(--section-padding) 0;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-bottom: 30px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--bg-gray);
}

.comparison-table th {
  background-color: var(--secondary);
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-weight: 600;
}

.comparison-table tr:hover {
  background-color: var(--bg-light);
}

.comparison-table td:first-child {
  font-weight: 600;
}

.system-recommendation {
  text-align: center;
  padding: 30px;
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
}

.system-recommendation p {
  margin-bottom: 15px;
  color: var(--text-gray);
}

/* --------------------------------------------
   REFERANSLAR
   -------------------------------------------- */
.references-section {
  padding: var(--section-padding) 0;
  background-color: var(--bg-white);
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.reference-item {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  transition: all var(--transition-normal);
}

.reference-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.ref-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(227, 30, 36, 0.1);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  margin: 0 auto 20px;
}

.reference-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.reference-item p {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* --------------------------------------------
   TASARRUF BÖLÜMÜ (Robot Süpürge)
   -------------------------------------------- */
.savings-section {
  padding: var(--section-padding) 0;
  background-color: var(--bg-light);
}

.savings-box {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.savings-content h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
}

.savings-content h2 i {
  color: var(--primary);
  margin-right: 10px;
}

.savings-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
}

.savings-item {
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.savings-item.new {
  background-color: var(--bg-light);
}

.savings-item.repair {
  background: linear-gradient(135deg, var(--success) 0%, #218838 100%);
  color: var(--bg-white);
  position: relative;
}

.savings-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.savings-item.new h3 {
  color: var(--text-gray);
}

.savings-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.savings-item ul {
  text-align: left;
}

.savings-item ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.savings-item.new ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--text-gray);
}

.savings-item.repair ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
}

.savings-vs {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-gray);
}

.savings-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: var(--warning);
  color: var(--secondary);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------
   ARıZA BELİRTİLERİ (Robot Süpürge)
   -------------------------------------------- */
.symptoms-section {
  padding: var(--section-padding) 0;
}

.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.symptom-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-normal);
}

.symptom-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.symptom-card i {
  width: 70px;
  height: 70px;
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--danger);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.symptom-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.symptom-card > p {
  color: var(--text-gray);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.solution {
  display: inline-block;
  padding: 5px 15px;
  background-color: var(--success);
  color: var(--bg-white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.symptoms-cta {
  text-align: center;
}

/* --------------------------------------------
   PLATFORMLAR (Kamera/Uydu)
   -------------------------------------------- */
.platforms-section {
  padding: var(--section-padding) 0;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.platform-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.platform-card:hover {
  transform: translateY(-5px);
}

.platform-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  padding: 15px;
  border-radius: var(--radius-md);
}

.platform-logo.turksat {
  background-color: #e31e24;
  color: white;
}

.platform-logo.digiturk {
  background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
  color: white;
}

.platform-logo.dsmart {
  background: linear-gradient(135deg, #00a8e8 0%, #0077b6 100%);
  color: white;
}

.platform-logo.tivibu {
  background: linear-gradient(135deg, #4a90e2 0%, #2e5c8a 100%);
  color: white;
}

.platform-card > p {
  color: var(--text-gray);
  margin-bottom: 15px;
}

.platform-type {
  display: inline-block;
  padding: 5px 15px;
  background-color: var(--bg-light);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-gray);
}

/* --------------------------------------------
   MERKEZİ UYDU SİSTEMİ
   -------------------------------------------- */
.central-system-section {
  padding: var(--section-padding) 0;
  background-color: var(--bg-white);
}

.central-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.central-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.central-content > p {
  color: var(--text-gray);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.benefits-list {
  margin-bottom: 30px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.benefits-list li i {
  width: 30px;
  height: 30px;
  background-color: var(--success);
  color: var(--bg-white);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.benefits-list li strong {
  display: block;
  margin-bottom: 5px;
}

.benefits-list li p {
  margin-bottom: 0;
}

.central-visual {
  width: 100%;
  height: 400px;
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.central-visual i {
  font-size: 5rem;
  color: var(--primary);
}

/* --------------------------------------------
   HİKAYE BÖLÜMÜ (Hakkımızda)
   -------------------------------------------- */
.story-section {
  padding: var(--section-padding) 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.story-content p {
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.8;
}

.signature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--bg-gray);
}

.sig-img {
  height: 60px;
}

.sig-text strong {
  display: block;
  color: var(--secondary);
}

.sig-text span {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.story-image {
  position: relative;
}

.story-photo-placeholder {
  width: 100%;
  height: 400px;
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

.story-photo-placeholder i {
  font-size: 4rem;
  margin-bottom: 20px;
}

.story-photo-placeholder span {
  font-size: 1rem;
}

.experience-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-xl);
}

/* --------------------------------------------
   DEĞERLER BÖLÜMÜ
   -------------------------------------------- */
.values-section {
  padding: var(--section-padding) 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.value-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(227, 30, 36, 0.1);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
  margin: 0 auto 25px;
  transition: all var(--transition-normal);
}

.value-card:hover .value-icon {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: rotateY(360deg);
}

.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.value-card p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 0;
}

/* --------------------------------------------
   İSTATİSTİK BÖLÜMÜ
   -------------------------------------------- */
.stats-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--secondary) 0%, #000000 100%);
  color: var(--bg-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}

.stat-item {
  text-align: center;
}

.stat-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 auto 15px;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 5px;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.8;
}

/* --------------------------------------------
   EKİP BÖLÜMÜ
   -------------------------------------------- */
.team-section {
  padding: var(--section-padding) 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.team-photo {
  width: 120px;
  height: 120px;
  background-color: var(--bg-light);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary);
  margin: 0 auto 20px;
}

.team-card h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-role {
  display: block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.team-card > p {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* --------------------------------------------
   SAYFA BAŞLIKLARI
   -------------------------------------------- */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  text-align: center;
}

.page-header.about-header {
  background: linear-gradient(
    135deg,
    rgba(227, 30, 36, 0.05) 0%,
    var(--bg-white) 100%
  );
}

.page-header.contact-header {
  background: linear-gradient(
    135deg,
    rgba(23, 162, 184, 0.05) 0%,
    var(--bg-white) 100%
  );
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.breadcrumb a {
  color: var(--primary);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.page-header p {
  color: var(--text-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --------------------------------------------
   FİLTRE BUTONLARI
   -------------------------------------------- */
.services-filter {
  padding: 30px 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--bg-gray);
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 25px;
  background-color: var(--bg-light);
  border: none;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-gray);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary);
  color: var(--bg-white);
}

/* --------------------------------------------
   İLETİŞİM SAYFASI ÖZEL
   -------------------------------------------- */
.contact-info-section {
  padding: 60px 0;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.contact-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card.emergency {
  border: 2px solid var(--danger);
}

.contact-card.whatsapp {
  border: 2px solid var(--whatsapp);
}

.contact-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.contact-card.emergency .contact-icon {
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--danger);
}

.contact-card.whatsapp .contact-icon {
  background-color: rgba(37, 211, 102, 0.1);
  color: var(--whatsapp);
}

.contact-card:nth-child(3) .contact-icon {
  background-color: rgba(227, 30, 36, 0.1);
  color: var(--primary);
}

.contact-card:nth-child(4) .contact-icon {
  background-color: rgba(23, 162, 184, 0.1);
  color: var(--info);
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-detail {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.contact-link {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.contact-card.emergency .contact-link {
  color: var(--danger);
}

.contact-card.whatsapp .contact-link {
  color: var(--whatsapp);
}

.contact-address {
  display: block;
  color: var(--text-dark);
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.contact-badge {
  display: inline-block;
  padding: 5px 15px;
  background-color: var(--bg-light);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-gray);
}

/* İletişim Ana */
.contact-main-section {
  padding: var(--section-padding) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form-wrapper {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.contact-form label i {
  color: var(--primary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--bg-gray);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-normal);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
}

.whatsapp-direct {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--bg-gray);
  text-align: center;
}

.whatsapp-direct p {
  color: var(--text-gray);
  margin-bottom: 15px;
}

/* Harita */
.contact-map-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.map-container {
  flex: 1;
  min-height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-info {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
}

.map-info h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--primary);
}

.map-info p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Çalışma Saatleri */
.working-hours-section {
  padding: var(--section-padding) 0;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.hours-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
}

.hours-card.emergency {
  border: 2px solid var(--danger);
}

.hours-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(227, 30, 36, 0.1);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.hours-card.emergency .hours-icon {
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--danger);
}

.hours-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.hours-list {
  margin-bottom: 20px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--bg-gray);
}

.hours-list li.closed {
  color: var(--text-light);
}

.hours-list li.closed .time {
  color: var(--danger);
}

.day {
  font-weight: 600;
}

.time {
  color: var(--primary);
  font-weight: 600;
}

.emergency-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background-color: rgba(220, 53, 69, 0.1);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--danger);
}

.whatsapp-note {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Hizmet Bölgeleri */
.service-areas-section {
  padding: var(--section-padding) 0;
}

.areas-content {
  max-width: 1000px;
  margin: 0 auto;
}

.areas-intro {
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.area-group h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--primary);
}

.area-group ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.area-group li {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.areas-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  color: var(--text-gray);
}

/* --------------------------------------------
   WHATSAPP BÖLÜMÜ
   -------------------------------------------- */
.whatsapp-quote-section {
  padding: var(--section-padding) 0;
}

.quote-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}

.quote-content {
  padding-right: 20px;
}

.quote-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(37, 211, 102, 0.1);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--whatsapp);
  margin-bottom: 20px;
}

.quote-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.quote-content > p {
  color: var(--text-gray);
  margin-bottom: 30px;
}

.whatsapp-form {
  margin-top: 30px;
}

.whatsapp-form .form-group {
  margin-bottom: 15px;
}

.whatsapp-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.whatsapp-form input,
.whatsapp-form select,
.whatsapp-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--bg-gray);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  transition: all var(--transition-normal);
}

.whatsapp-form input:focus,
.whatsapp-form select:focus,
.whatsapp-form textarea:focus {
  outline: none;
  border-color: var(--whatsapp);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.quote-features {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.quote-features h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--secondary);
}

.quote-features ul {
  margin-bottom: 30px;
}

.quote-features ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--text-gray);
}

.quote-features ul li i {
  color: var(--whatsapp);
}

.quote-stats {
  display: flex;
  gap: 30px;
}

.quote-stat {
  text-align: center;
}

.quote-stat .stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.quote-stat .stat-text {
  font-size: 0.9rem;
  color: var(--text-gray);
}

/* --------------------------------------------
   MÜŞTERİ YORUMLARI
   -------------------------------------------- */
.testimonials-section {
  padding: var(--section-padding) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--warning);
  margin-bottom: 15px;
}

.testimonial-stars i {
  margin-right: 2px;
}

.testimonial-text {
  color: var(--text-gray);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-author strong {
  display: block;
  color: var(--secondary);
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* --------------------------------------------
   PARTNERLER / REFERANSLAR
   -------------------------------------------- */
.partners-section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.partner-logo {
  padding: 20px 40px;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-gray);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.partner-logo:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------
   FOOTER
   -------------------------------------------- */
.footer {
  background-color: var(--secondary);
  color: var(--bg-white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
  /*filter: brightness(0) invert(1);  Logo'yu beyaz yapar */
  width: auto;
}

.footer-brand p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  transition: all var(--transition-normal);
}

.social-links a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer h4 {
  color: var(--bg-white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: var(--text-light);
  font-size: 0.95rem;
  transition: all var(--transition-normal);
}

.footer ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.footer-contact ul li i {
  color: var(--primary);
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid var(--secondary-light);
  padding: 20px 0;
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

/* --------------------------------------------
   BİLDİRİMLER
   -------------------------------------------- */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background-color: var(--success);
  color: var(--bg-white);
  padding: 15px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10000;
  animation: slideInRight 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.notification.notification-success {
  background-color: var(--success);
}

.notification.notification-error {
  background-color: var(--danger);
}

.notification.notification-info {
  background-color: var(--info);
}

/* --------------------------------------------
   İLERLEME ÇUBUĞU
   -------------------------------------------- */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  z-index: 10001;
  transition: width 0.1s;
}

/* --------------------------------------------
   YARDIMCI SINIFLAR
   -------------------------------------------- */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: 10px;
}
.mt-2 {
  margin-top: 20px;
}
.mt-3 {
  margin-top: 30px;
}
.mt-4 {
  margin-top: 40px;
}
.mt-5 {
  margin-top: 50px;
}

.mb-1 {
  margin-bottom: 10px;
}
.mb-2 {
  margin-bottom: 20px;
}
.mb-3 {
  margin-bottom: 30px;
}
.mb-4 {
  margin-bottom: 40px;
}
.mb-5 {
  margin-bottom: 50px;
}

.pt-1 {
  padding-top: 10px;
}
.pt-2 {
  padding-top: 20px;
}
.pt-3 {
  padding-top: 30px;
}
.pt-4 {
  padding-top: 40px;
}
.pt-5 {
  padding-top: 50px;
}

.pb-1 {
  padding-bottom: 10px;
}
.pb-2 {
  padding-bottom: 20px;
}
.pb-3 {
  padding-bottom: 30px;
}
.pb-4 {
  padding-bottom: 40px;
}
.pb-5 {
  padding-bottom: 50px;
}

.hidden {
  display: none;
}
.visible {
  display: block;
}

/* --------------------------------------------
   ANİMASYON KEYFRAME'LERİ
   -------------------------------------------- */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(227, 30, 36, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(227, 30, 36, 0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* --------------------------------------------
   ÖZEL KAYDIRMA ÇUBUĞU
   -------------------------------------------- */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* --------------------------------------------
   SEÇİM STİLLERİ
   -------------------------------------------- */
::selection {
  background-color: var(--primary);
  color: var(--bg-white);
}

::-moz-selection {
  background-color: var(--primary);
  color: var(--bg-white);
}

/* --------------------------------------------
   RESPONSIVE TASARIM
   -------------------------------------------- */

/* 1024px ve altı - Tablet */
@media (max-width: 1024px) {
  .lp-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lp-hero-content {
    max-width: 100%;
    text-align: center;
  }

  .trust-badges,
  .lp-cta-group,
  .lp-social-proof,
  .security-features-list,
  .industrial-props,
  .value-props,
  .quality-badges {
    justify-content: center;
  }

  .hero-image {
    display: none;
  }

  .why-grid,
  .story-grid,
  .central-grid,
  .warning-grid,
  .quote-box {
    grid-template-columns: 1fr;
  }

  .contract-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .savings-comparison {
    grid-template-columns: 1fr;
  }

  .savings-vs {
    display: none;
  }

  .service-detailed-card {
    grid-template-columns: 1fr;
  }

  .service-image {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* 768px ve altı - Mobil */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  .nav-menu,
  .nav-contact {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title,
  .lp-title,
  .page-header h1,
  .section-title {
    font-size: 2rem;
  }

  .hero-subtitle,
  .lp-subtitle {
    font-size: 1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .services-grid,
  .service-types-grid,
  .packages-grid,
  .critical-grid,
  .sectors-grid,
  .values-grid,
  .team-grid,
  .platforms-grid,
  .references-grid,
  .hours-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: column;
  }

  .process-step::after {
    display: none;
  }

  .package-card.featured,
  .capacity-card.featured,
  .sat-service-card.featured {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-brand p,
  .social-links {
    text-align: center;
    justify-content: center;
  }

  .footer-contact ul li {
    justify-content: center;
  }

  .sticky-cta-mobile {
    display: block;
  }

  body {
    padding-bottom: 80px;
  }

  .whatsapp-fixed {
    bottom: 90px;
  }

  .scroll-to-top {
    bottom: 160px;
  }

  .experience-float {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .areas-group ul {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* 480px ve altı - Küçük Mobil */
@media (max-width: 480px) {
  .btn-xlarge {
    padding: 15px 25px;
    font-size: 1rem;
  }

  .lp-cta-group {
    flex-direction: column;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .service-cta {
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .quote-stats {
    flex-direction: column;
  }

  .timeline-item {
    flex-direction: column;
    text-align: center;
  }

  .timeline-icon {
    margin: 0 auto;
  }

  .industrial-trust {
    flex-direction: column;
    gap: 15px;
  }

  .security-trust {
    flex-direction: column;
    gap: 15px;
  }
}

/* --------------------------------------------
   BASKI STİLLERİ
   -------------------------------------------- */
@media print {
  .no-print {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  a {
    text-decoration: underline;
  }

  .page-break {
    page-break-before: always;
  }
}

/* --------------------------------------------
   HAREKET AZALTMA TERCİHİ
   -------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
