/* ===================================
   Adanur OSGB - Modern Design
   =================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --primary-red: #dc2626;
  --primary-red-dark: #b91c1c;
  --primary-red-light: #fee2e2;
  --secondary-white: #ffffff;
  --light-gray: #f9fafb;
  --medium-gray: #e5e7eb;
  --dark-gray: #1f2937;
  --text-gray: #6b7280;
  --text-light: #9ca3af;
  --border-color: #e5e7eb;
}

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

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  color: var(--dark-gray);
  line-height: 1.7;
  background-color: var(--secondary-white);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

/* Anchor link scroll offset (navbar sticky olduğu için) */
[id] {
  scroll-margin-top: 100px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-gray);
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  color: var(--text-gray);
  line-height: 1.8;
}

/* ===================================
   Top Bar
   =================================== */
.top-bar {
  background: linear-gradient(
    135deg,
    var(--primary-red-dark) 0%,
    var(--primary-red) 100%
  );
  color: var(--secondary-white);
  padding: 8px 0;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.top-bar-left span {
  margin-right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-left i {
  font-size: 13px;
}

.top-bar-right {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  align-items: center;
}

.top-link {
  color: var(--secondary-white);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 0;
}

.top-link:hover {
  color: var(--secondary-white);
  opacity: 0.9;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  /* Mobilde top-bar'ı gizle (fixed butonlar zaten mevcut) */
  .top-bar {
    display: none;
  }

  .navbar-nav .dropdown-toggle::after {
    float: right;
    margin-top: 8px;
  }

  .navbar-nav .nav-item {
    border-bottom: 1px solid var(--border-color);
  }

  .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }
}

/* ===================================
   Navbar
   =================================== */
.navbar {
  padding: 20px 0;
  transition: all 0.3s;
  background-color: var(--secondary-white);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 15px 0;
}

/* Mobilde navbar collapse içindeki dropdown'lar için özel stil */
@media (max-width: 991px) {
  .navbar-collapse {
    max-height: 80vh;
    overflow-y: auto;
  }

  .navbar-nav .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    float: none;
  }
}

.brand-text {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark-gray);
  letter-spacing: -0.5px;
}

.navbar-logo {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: all 0.3s;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  filter: none;
}

.navbar.scrolled .navbar-logo {
  height: 45px;
}

@media (max-width: 768px) {
  .navbar-logo {
    height: 40px;
  }
}

.navbar-nav .nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  margin: 0 8px;
  padding: 8px 12px;
  transition: all 0.3s;
  position: relative;
  font-size: 15px;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-red);
}

/* Dropdown oklarını kaldır */
.navbar-nav .dropdown-toggle::after {
  display: none;
}

.btn-teklif {
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--primary-red-dark) 100%
  );
  color: var(--secondary-white);
  border: none;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

.btn-teklif:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.35);
  color: var(--secondary-white);
}

.dropdown-menu {
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  margin-top: 0;
  border-radius: 12px;
  padding: 8px;
}

.dropdown-item {
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.3s;
  font-weight: 500;
  font-size: 14px;
}

.dropdown-item:hover {
  background-color: var(--light-gray);
  color: var(--primary-red);
  transform: translateX(4px);
}

/* ===================================
   Mega Menu
   =================================== */
.mega-menu-item {
  position: static;
}

.mega-menu {
  position: absolute !important;
  width: 100%;
  max-width: 900px;
  left: 50% !important;
  transform: translateX(-50%) !important;
  padding: 16px 0;
  margin-top: 0;
  border: none;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  background: var(--secondary-white);
  inset: auto !important;
}

/* Masaüstünde dropdown hover efekti */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover > .dropdown-menu,
  .navbar-nav .dropdown-menu:hover {
    display: block;
    animation: fadeIn 0.3s ease;
  }

  .navbar-nav .mega-menu-item:hover > .mega-menu,
  .navbar-nav .mega-menu:hover {
    display: block;
    animation: fadeIn 0.3s ease;
  }

  /* Dropdown menü açıkken nav-item hover durumunu koru */
  .navbar-nav .dropdown:hover > .nav-link,
  .navbar-nav .dropdown .dropdown-menu:hover ~ .nav-link {
    color: var(--primary-red);
  }
}

.mega-menu-column {
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s;
  height: 100%;
}

.mega-menu-column:hover {
  background-color: var(--light-gray);
}

.mega-menu-image {
  width: 100%;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-red-light) 0%,
    #fef2f2 100%
  );
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: all 0.3s;
}

.mega-menu-column:hover .mega-menu-image {
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--primary-red-dark) 100%
  );
}

.mega-menu-image i {
  font-size: 2rem;
  color: var(--primary-red);
  transition: all 0.3s;
}

.mega-menu-column:hover .mega-menu-image i {
  color: var(--secondary-white);
  transform: scale(1.1);
}

.mega-menu-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-color);
}

.mega-menu-title a {
  color: var(--dark-gray);
  text-decoration: none;
  transition: color 0.3s;
}

.mega-menu-title a:hover {
  color: var(--primary-red);
}

.mega-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-list li {
  margin-bottom: 4px;
}

.mega-menu-list a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 3px 0;
  transition: all 0.3s;
  position: relative;
  padding-left: 14px;
}

.mega-menu-list a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: var(--primary-red);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s;
}

.mega-menu-list a:hover {
  color: var(--primary-red);
  padding-left: 18px;
}

.mega-menu-list a:hover::before {
  opacity: 1;
  left: 3px;
}

@media (max-width: 991px) {
  /* Tablet ve mobilde top-bar'ı gizle */
  .top-bar {
    display: none;
  }

  .navbar-nav {
    padding: 10px 0;
  }

  .navbar-nav .nav-link {
    padding: 12px 16px;
  }

  .dropdown-menu {
    border: none;
    box-shadow: none;
    background-color: var(--light-gray);
    margin-top: 0;
    padding: 8px 0;
  }

  .dropdown-item {
    padding: 10px 24px;
  }

  .mega-menu {
    position: relative;
    width: 100%;
    padding: 16px;
    box-shadow: none;
    background-color: var(--light-gray);
  }

  .mega-menu-column {
    margin-bottom: 20px;
  }

  .mega-menu-image {
    height: 100px;
  }

  .mega-menu-image i {
    font-size: 3rem;
  }
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
  position: relative;
  min-height: 450px;
  height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Kırmızı overlay kaldırıldı */
/* .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.85) 0%, rgba(185, 28, 28, 0.85) 100%);
    z-index: 1;
} */

.hero-content {
  position: absolute;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  margin: 0 auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.6s ease-in-out,
    visibility 0.6s ease-in-out;
}

.hero-content.active {
  opacity: 1;
  visibility: visible;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 50px;
  color: var(--secondary-white);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 30px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: fadeInUp 0.6s;
}

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--secondary-white);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -2px;
  animation: fadeInUp 0.8s;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
  animation: fadeInUp 0.9s;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content .highlight {
  color: var(--secondary-white);
  position: relative;
  display: inline-block;
}

.hero-content .highlight::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
}

.hero-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  animation: fadeInUp 1s;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
  animation: fadeInUp 1.1s;
  justify-content: center;
}

.btn-hero {
  padding: 14px 32px;
  font-size: 1.063rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary {
  background-color: var(--secondary-white);
  color: var(--primary-red);
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  color: var(--primary-red);
}

.btn-hero-outline {
  background-color: transparent;
  color: var(--secondary-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--secondary-white);
  color: var(--secondary-white);
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary-white);
  font-size: 1.25rem;
  font-weight: 700;
}

.hero-stat i {
  font-size: 1.875rem;
}

.hero-stat span {
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Hero Background Slider */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide picture,
.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-slide img {
  object-fit: cover;
  object-position: center;
}

/* Mobil için slider görsel optimizasyonu */
@media (max-width: 768px) {
  .hero-slide picture,
  .hero-slide img {
    object-fit: cover;
    object-position: center top;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
  }

  .hero-background {
    overflow: hidden;
  }

  .hero-section {
    overflow: hidden;
  }
}

/* Slider Navigation */
.hero-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 12px;
}

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

.hero-dot.active {
  background: var(--secondary-white);
  width: 40px;
  border-radius: 6px;
}

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

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.hero-arrow-prev {
  left: 30px;
}

.hero-arrow-next {
  right: 30px;
}

@media (max-width: 991px) {
  .hero-section {
    min-height: 380px;
    height: 50vh;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content h2 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .hero-arrow-prev {
    left: 15px;
  }

  .hero-arrow-next {
    right: 15px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 320px;
    height: 42vh;
    overflow: hidden;
  }

  .hero-background {
    overflow: hidden;
    width: 100%;
    height: 100%;
  }

  .hero-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .hero-slide picture,
  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    max-width: 100vw;
    max-height: 100vh;
    display: block;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content h2 {
    font-size: 1.25rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
  }

  .hero-arrow {
    display: none;
  }
}

/* ===================================
   Section Title
   =================================== */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  display: inline-block;
  color: var(--primary-red);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--dark-gray);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.section-title p {
  font-size: 1.125rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ===================================
   Avantaj Kutuları
   =================================== */
.avantaj-section {
  padding: 100px 0;
  background-color: var(--light-gray);
}

.avantaj-card {
  background-color: var(--secondary-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.avantaj-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-red) 0%,
    var(--primary-red-dark) 100%
  );
  transform: scaleX(0);
  transition: transform 0.4s;
}

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

.avantaj-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-red);
}

.avantaj-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(
    135deg,
    var(--primary-red-light) 0%,
    #fef2f2 100%
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}

.avantaj-card:hover .avantaj-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--primary-red-dark) 100%
  );
}

.avantaj-icon i {
  font-size: 2.5rem;
  color: var(--primary-red);
  transition: color 0.4s;
}

.avantaj-card:hover .avantaj-icon i {
  color: var(--secondary-white);
}

.avantaj-card h3 {
  color: var(--dark-gray);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.avantaj-card p {
  color: var(--text-gray);
  line-height: 1.7;
}

/* ===================================
   Tanıtım Bölümü
   =================================== */
.tanitim-section {
  padding: 100px 0;
  background-color: var(--secondary-white);
}

.tanitim-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.tanitim-logo {
  width: 100%;
  height: 450px;
  object-fit: contain;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  position: relative;
  left: -40px;
  box-shadow: none !important;
}

.tanitim-content h2 {
  color: var(--dark-gray);
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.tanitim-content p {
  color: var(--text-gray);
  margin-bottom: 24px;
  font-size: 1.125rem;
  line-height: 1.8;
}

.tanitim-list {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.tanitim-list li {
  padding: 12px 0;
  color: var(--dark-gray);
  font-size: 1.063rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tanitim-list li i {
  color: var(--primary-red);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.btn-yol-tarifi {
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--primary-red-dark) 100%
  );
  color: var(--secondary-white);
  padding: 14px 32px;
  border: none;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.25);
}

.btn-yol-tarifi:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.35);
  color: var(--secondary-white);
}

/* ===================================
   Özellik Bandı
   =================================== */
.ozellik-band {
  padding: 80px 0;
  background: #ffffff;
  color: var(--dark-gray);
  position: relative;
  overflow: hidden;
}

.ozellik-item {
  text-align: center;
  padding: 24px;
  position: relative;
  z-index: 1;
}

.ozellik-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
  display: block;
  opacity: 0.9;
  color: var(--primary-red);
}

.ozellik-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark-gray);
}

.ozellik-item p {
  color: var(--text-gray);
  font-size: 0.938rem;
}

/* ===================================
   Dijital Çözümler
   =================================== */
.dijital-section {
  padding: 100px 0;
  background-color: var(--light-gray);
}

.dijital-card {
  background-color: var(--secondary-white);
  border-radius: 16px;
  padding: 40px;
  height: 100%;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.dijital-icon {
  position: relative;
  z-index: 2;
}

.dijital-icon i {
  font-size: 3rem;
  color: var(--primary-red);
  transition: all 0.4s;
}

.dijital-card:hover .dijital-icon i {
  transform: scale(1.1);
  color: var(--primary-red);
}

.dijital-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-red-light) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

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

.dijital-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-red);
}

.dijital-card h3 {
  color: var(--dark-gray);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.dijital-card p {
  color: var(--text-gray);
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

.dijital-card a,
.dijital-card .btn {
  position: relative;
  z-index: 2;
}

.contact-icon {
  font-size: 3rem;
  color: var(--primary-red);
  margin-bottom: 1rem;
}

/* ===================================
   Hizmetler Bölümü
   =================================== */
.hizmetler-section {
  padding: 80px 0;
  background-color: var(--secondary-white);
}

.hizmet-card {
  background-color: var(--secondary-white);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
}

.hizmet-card-clickable {
  cursor: pointer;
}

.hizmet-card-clickable:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-red);
}

.hizmet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-red);
}

.hizmet-image {
  width: 100%;
  height: 180px;
  background: linear-gradient(
    135deg,
    var(--light-gray) 0%,
    var(--medium-gray) 100%
  );
  display: block;
  overflow: hidden;
  position: relative;
  transition: all 0.4s;
}

.hizmet-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s ease;
  display: block;
}

.hizmet-card:hover .hizmet-image {
  background: transparent;
}

.hizmet-card:hover .hizmet-img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.hizmet-card-body {
  padding: 20px;
}

.hizmet-card h4 {
  color: var(--dark-gray);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hizmet-card p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.875rem;
}

.hizmet-card-clickable {
  color: inherit;
}

.hizmet-card-clickable a {
  color: inherit;
  text-decoration: none;
}

.hizmet-card-clickable:hover h4 {
  color: var(--primary-red);
}

.hizmet-card-clickable:hover .text-danger {
  color: var(--primary-red-dark) !important;
}

/* ===================================
   Sektörel Çözümler
   =================================== */
.sektorel-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.sektor-card {
  background-color: var(--secondary-white);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
}

.sektor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-red);
}

.sektor-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(
    135deg,
    var(--light-gray) 0%,
    var(--medium-gray) 100%
  );
  display: block;
  overflow: hidden;
  position: relative;
  transition: all 0.4s;
}

.sektor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sektor-card:hover .sektor-img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

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

.sektor-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--primary-red-dark) 100%
  );
  color: var(--secondary-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.sektor-card:hover .sektor-icon {
  transform: scale(1.1) rotate(5deg);
}

.sektor-card h4 {
  color: var(--dark-gray);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.sektor-card h5 {
  color: var(--dark-gray);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 12px;
}

.sektor-card > div > p {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 0.938rem;
}

.sektor-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sektor-list li {
  color: var(--text-gray);
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.6;
}

.sektor-list i {
  color: var(--primary-red);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ===================================
   Referanslar
   =================================== */
.referanslar-section {
  padding: 100px 0;
  background-color: var(--secondary-white);
}

.logo-slider {
  width: 100%;
  padding: 20px 0;
  overflow: hidden;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: slide 25s linear infinite;
  width: max-content;
}

.logo-item {
  width: 100px;
  height: 100px;
  background-color: var(--secondary-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-weight: 600;
  padding: 15px;
  flex-shrink: 0;
  overflow: hidden;
  font-size: 0.938rem;
  border: 3px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: all 0.4s;
  display: block;
  padding: 10px;
  max-width: 100%;
  max-height: 100%;
}

.logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  text-align: center;
}

.logo-placeholder i {
  font-size: 2.5rem;
  color: var(--primary-red);
}

.logo-placeholder p {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin: 0;
}

.logo-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-red);
}

.logo-item:hover .logo-img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 991px) {
  .logo-item {
    width: 90px;
    height: 90px;
    padding: 12px;
    font-size: 0.813rem;
  }
}

@media (max-width: 576px) {
  .logo-item {
    width: 80px;
    height: 80px;
    padding: 10px;
    font-size: 0.75rem;
  }

  .logo-track {
    gap: 15px;
  }
}

/* ===================================
   Blog
   =================================== */
.blog-section {
  padding: 80px 0;
  background-color: var(--secondary-white);
}

.blog-filter-bar {
  background: var(--light-gray);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.blog-card {
  background: var(--light-gray);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
  position: relative;
  overflow: hidden;
  height: 220px;
  display: block;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-red);
  color: var(--secondary-white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 1;
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: var(--text-gray);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-title a {
  color: var(--dark-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-title a:hover {
  color: var(--primary-red);
}

.blog-excerpt {
  color: var(--text-gray);
  font-size: 0.938rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.btn-read-more {
  color: var(--primary-red);
  font-weight: 600;
  font-size: 0.938rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s ease;
}

.btn-read-more:hover {
  gap: 10px;
}

/* Blog Sidebar */
.blog-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  z-index: 10;
  align-self: flex-start;
}

.sidebar-widget {
  background: var(--light-gray);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.widget-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-gray);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-red);
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 10px;
}

.category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  color: var(--dark-gray);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.category-list a:hover,
.category-list a.active {
  background: var(--primary-red);
  color: var(--secondary-white);
}

.category-list .count {
  font-size: 0.875rem;
  opacity: 0.8;
}

.recent-posts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recent-posts li {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.recent-posts li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-post-item {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: var(--dark-gray);
}

.recent-post-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
}

.recent-post-placeholder {
  width: 70px;
  height: 70px;
  background: var(--light-gray);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
}

.recent-post-content {
  flex: 1;
}

.recent-post-content h6 {
  font-size: 0.938rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 6px;
  transition: color 0.2s ease;
}

.recent-post-item:hover h6 {
  color: var(--primary-red);
}

.recent-post-content .date {
  font-size: 0.813rem;
  color: var(--text-gray);
}

.cta-widget {
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--primary-red-dark) 100%
  );
  color: var(--secondary-white);
}

.cta-widget .widget-title {
  color: var(--secondary-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-widget p {
  color: rgba(255, 255, 255, 0.9);
}

/* Blog Detay */
.blog-detail-section {
  padding: 80px 0;
  background-color: var(--secondary-white);
}

.blog-detail-section .row {
  align-items: flex-start;
}

.blog-detail-card {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
}

.blog-detail-meta {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.blog-category-badge {
  display: inline-block;
  background: var(--primary-red);
  color: var(--secondary-white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 12px;
}

.blog-meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.938rem;
  color: var(--text-gray);
}

.blog-meta-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-detail-image {
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
}

.blog-detail-image img {
  width: 100%;
  height: auto;
}

.blog-detail-content {
  font-size: 1.063rem;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 32px;
}

.blog-detail-content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-gray);
  margin-bottom: 24px;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.tag-badge {
  background: var(--light-gray);
  color: var(--dark-gray);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.875rem;
}

.blog-share {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-white);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.share-btn:hover {
  transform: scale(1.1);
}

.share-btn.facebook {
  background: #1877f2;
}
.share-btn.twitter {
  background: #1da1f2;
}
.share-btn.linkedin {
  background: #0a66c2;
}
.share-btn.whatsapp {
  background: #25d366;
}

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

.author-avatar {
  font-size: 4rem;
  color: var(--primary-red);
  margin-bottom: 12px;
}

.author-info h5 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-widget .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-list i {
  color: var(--primary-red);
  font-size: 1.125rem;
}

.contact-list a {
  color: var(--dark-gray);
  text-decoration: none;
}

.contact-list a:hover {
  color: var(--primary-red);
}

/* ===================================
   SSS (Sıkça Sorulan Sorular)
   =================================== */
.sss-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.sss-section .accordion {
  border-radius: 12px;
  overflow: hidden;
}

.sss-section .accordion-item {
  background: var(--secondary-white);
  border: 1px solid var(--border-color);
  margin-bottom: 12px;
  border-radius: 8px !important;
  overflow: hidden;
}

.sss-section .accordion-item:last-child {
  margin-bottom: 0;
}

.sss-section .accordion-button {
  background-color: var(--secondary-white);
  color: var(--dark-gray);
  font-weight: 600;
  font-size: 1.063rem;
  padding: 20px 24px;
  border: none;
  box-shadow: none;
}

.sss-section .accordion-button:not(.collapsed) {
  background-color: var(--primary-red);
  color: var(--secondary-white);
  box-shadow: none;
}

.sss-section .accordion-button:not(.collapsed) i {
  color: var(--secondary-white);
}

.sss-section .accordion-button:hover {
  background-color: var(--light-gray);
}

.sss-section .accordion-button:not(.collapsed):hover {
  background-color: var(--primary-red-dark);
}

.sss-section .accordion-button i {
  color: var(--primary-red);
  font-size: 1.25rem;
}

.sss-section .accordion-button:focus {
  border-color: var(--primary-red);
  box-shadow: none;
}

.sss-section .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23dc2626'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.sss-section .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.sss-section .accordion-body {
  padding: 24px;
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 1rem;
  border-top: 1px solid var(--border-color);
}

/* ===================================
   İletişim / Teklif Formu
   =================================== */
.teklif-section {
  padding: 40px 0;
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--primary-red-dark) 100%
  );
  color: var(--secondary-white);
  position: relative;
  overflow: hidden;
}

.teklif-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
}

.teklif-content {
  position: relative;
  z-index: 1;
}

.teklif-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--secondary-white);
}

.teklif-content p {
  font-size: 0.875rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.teklif-form {
  background-color: var(--secondary-white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
}

.form-label {
  color: var(--dark-gray);
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 0.813rem;
}

.form-control,
.form-select {
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s;
  font-size: 0.813rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.btn-submit {
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--primary-red-dark) 100%
  );
  color: var(--secondary-white);
  padding: 10px 32px;
  border: none;
  font-weight: 600;
  font-size: 0.875rem;
  width: 100%;
  border-radius: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.25);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.35);
}

.form-check-label {
  color: var(--text-gray);
  font-size: 0.75rem;
}

.teklif-form .mb-3 {
  margin-bottom: 12px !important;
}

/* ===================================
   Footer
   =================================== */
.footer {
  background-color: #111827;
  padding-top: 80px;
}

.footer-logo {
  height: 50px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer h5 {
  color: var(--secondary-white);
  font-weight: 700;
  margin-bottom: 24px;
  font-size: 1.125rem;
}

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

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.938rem;
}

.footer-links a:hover {
  color: var(--secondary-white);
  padding-left: 4px;
}

.footer-contact li {
  margin-bottom: 16px;
  color: #9ca3af;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.938rem;
}

.footer-contact i {
  color: var(--primary-red);
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer hr {
  background-color: rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.powered-by {
  font-size: 0.875rem;
  color: #9ca3af;
}

.devora-link {
  color: var(--primary-red) !important;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.devora-link:hover {
  color: var(--primary-red-dark) !important;
  text-decoration: underline;
}

.devora-link strong {
  color: var(--primary-red) !important;
}

.footer-link {
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.875rem;
}

.footer-link:hover {
  color: var(--primary-red) !important;
}

@media (max-width: 768px) {
  .powered-by {
    margin: 15px 0;
    font-size: 0.813rem;
  }

  .footer .row.align-items-center > div {
    text-align: center !important;
    margin-bottom: 15px;
  }
}

/* ===================================
   Fixed Action Buttons
   =================================== */
.fixed-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fixed-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-white);
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.fixed-btn.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.fixed-btn.phone {
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--primary-red-dark) 100%
  );
}

.fixed-btn.location {
  background: linear-gradient(135deg, #4b5563 0%, #1f2937 100%);
}

.fixed-btn:hover {
  transform: scale(1.1);
  color: var(--secondary-white);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
}

/* ===================================
   Page Header
   =================================== */
.page-header {
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--primary-red-dark) 100%
  );
  padding: 100px 0;
  text-align: center;
  color: var(--secondary-white);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
}

.page-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--secondary-white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-header .lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

/* ===================================
   Lightbox (Galeri)
   =================================== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 40px;
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.3s;
}

.lightbox-close:hover {
  color: var(--primary-red);
  transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 56px;
  font-weight: bold;
  cursor: pointer;
  padding: 20px;
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--primary-red-dark) 100%
  );
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}

.lightbox-prev {
  left: -90px;
}

.lightbox-next {
  right: -90px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 30px rgba(220, 38, 38, 0.6);
}

@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    position: relative;
    display: inline-block;
    margin: 10px;
    left: auto;
    right: auto;
    transform: none;
  }

  .lightbox-prev:hover,
  .lightbox-next:hover {
    transform: scale(1.1);
  }
}

/* ===================================
   Harita Bölümü
   =================================== */
.harita-section {
  background-color: var(--light-gray);
}

.harita-wrapper {
  width: 100%;
  height: 450px;
  background: linear-gradient(
    135deg,
    var(--medium-gray) 0%,
    var(--light-gray) 100%
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
}

.harita-wrapper i {
  font-size: 5rem;
  color: var(--primary-red);
}

/* ===================================
   Utility Classes
   =================================== */
.text-red {
  color: var(--primary-red) !important;
}

.bg-red {
  background-color: var(--primary-red) !important;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ===================================
   Responsive Adjustments
   =================================== */
@media (max-width: 991px) {
  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 2.25rem;
  }

  .avantaj-section,
  .tanitim-section,
  .dijital-section,
  .hizmetler-section,
  .referanslar-section,
  .teklif-section {
    padding: 70px 0;
  }

  .teklif-form {
    padding: 32px 24px;
  }
}

@media (max-width: 767px) {
  .hero-buttons {
    flex-direction: column;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .fixed-actions {
    right: 16px;
    bottom: 16px;
  }

  .fixed-btn {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}
