/* 
* CMB Silah Sanayi - Ana Stil Dosyası
* Versiyon: 1.0
*/

/* ===== GENEL AYARLAR ===== */
:root {
  /* Ana Renkler */
  --primary-color: #2a3b4c; /* Lacivert */
  --secondary-color: #4d5d53; /* Haki */
  --accent-color: #c4a777; /* Altın/Bronz */

  /* Nötr Renkler */
  --dark-color: #1a1a1a; /* Koyu Siyah */
  --dark-gray: #333333; /* Koyu Gri */
  --medium-gray: #666666; /* Orta Gri */
  --light-gray: #e0e0e0; /* Açık Gri */
  --white-color: #ffffff; /* Beyaz */

  /* Fonksiyonel Renkler */
  --success-color: #4d7c53; /* Askeri Yeşil */
  --warning-color: #c7a758; /* Amber */
  --danger-color: #a73737; /* Koyu Kırmızı */
  --info-color: #3a5e8c; /* Mavi */

  /* Tipografi */
  --heading-font: "Montserrat", sans-serif;
  --body-font: "Roboto", sans-serif;

  /* Boyutlar */
  --container-width: 1200px;
  --header-height: 80px;
  --footer-height: 350px;

  /* Geçişler */
  --transition-speed: 0.3s;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white-color);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.cta {
  background-color: var(--primary-color);
  h2,
  h3,
  p {
    color: var(--white-color);
  }
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color var(--transition-speed);
}
.cta-button {
  background-color: #c94141;
  color: var(--white-color);
  border-radius: 4px;
  padding: 10px 20px;
}

/* ===== TİPOGRAFİ ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  position: relative;
  padding-bottom: 15px;
}

h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 20px;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-speed);
}

a:hover {
  color: var(--accent-color);
}

ul,
ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

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

.section-intro {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

/* ===== BUTONLAR ===== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-speed);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white-color);
  border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
  background-color: transparent;
  color: var(--secondary-color);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

.btn-accent {
  background-color: var(--accent-color);
  color: var(--dark-color);
  border: 2px solid var(--accent-color);
}

.btn-accent:hover {
  background-color: transparent;
  color: var(--accent-color);
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--white-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all var(--transition-speed);
}

header.scrolled {
  height: 60px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  height: 100%;
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  transition: height var(--transition-speed);
}

header.scrolled .logo img {
  height: 40px;
}

nav {
  display: flex;
  align-items: center;
}

.main-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu li {
  margin: 0 15px;
}

.main-menu a {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark-gray);
  position: relative;
  padding: 5px 0;
}

.main-menu a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width var(--transition-speed);
}

.main-menu a:hover:after,
.main-menu a.active:after {
  width: 100%;
}

.main-menu a.active {
  color: var(--primary-color);
}

.contact-button {
  margin-left: 20px;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--dark-gray);
  cursor: pointer;
}

/* ===== SAYFA BAŞLIĞI ===== */
.page-header {
  background-color: #2a3b4c;
  color: var(--medium-color);
  padding: 120px 0 60px;
  text-align: center;
}

.page-header h1 {
  color: var(--white-color);
  margin-bottom: 10px;
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--light-gray);
}

.breadcrumb a {
  color: var(--accent-color);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ===== BÖLÜMLER ===== */
section {
  padding: 80px 0;
}

.map-section {
  background-color: #2a3b4c;
  h2,
  h3 {
    color: var(--white-color);
  }
  color: var(--white-color);
}
.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
}
section:nth-child(even) {
  background-color: #2a3b4c;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Koyu overlay ekleyerek metinlerin daha iyi okunmasını sağlayalım */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Koyu overlay */
  z-index: 1;
}

/* Paralaks efekti için */
.hero-parallax {
  background-attachment: fixed;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #e0e0e0;
  animation: fadeInDown 1s ease-out;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.3s;
  animation-fill-mode: both;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: fadeInUp 1s ease-out 0.6s;
  animation-fill-mode: both;
}

.hero-button {
  display: inline-block;
  padding: 14px 28px;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.hero-button:hover {
  background-color: var(--primary-color-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-button.secondary {
  background-color: transparent;
  border: 2px solid #fff;
}

.hero-button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Hero animasyonları */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Video background */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 80vh;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

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

  .hero-button {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}

/* ===== CAROUSEL STYLES ===== */
.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel-container.loaded {
  opacity: 1;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.carousel-slide.active .carousel-content {
  opacity: 1;
  transform: translateY(0);
}

.carousel-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin-bottom: 20px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.carousel-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.carousel-button:hover {
  background-color: var(--primary-color-dark);
  transform: translateY(-2px);
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
  z-index: 10;
}

.carousel-button-prev,
.carousel-button-next {
  background-color: rgba(255, 255, 255, 0.8);
  color: #333;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.carousel-button-prev:hover,
.carousel-button-next:hover {
  background-color: #fff;
  transform: scale(1.1);
}

.carousel-button-prev:focus,
.carousel-button-next:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.5);
}

/* Carousel Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-indicator.active {
  background-color: #fff;
  transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .carousel-title {
    font-size: 1.8rem;
  }

  .carousel-description {
    font-size: 1rem;
  }

  .carousel-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

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

  .carousel-button-prev,
  .carousel-button-next {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .carousel-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .carousel-description {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .carousel-button {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .carousel-indicators {
    bottom: 10px;
  }

  .carousel-indicator {
    width: 8px;
    height: 8px;
  }
}

/* Carousel Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-slide .carousel-content * {
  animation: fadeIn 0.5s ease forwards;
  opacity: 0;
}

.carousel-slide .carousel-title {
  animation-delay: 0.2s;
}

.carousel-slide .carousel-description {
  animation-delay: 0.4s;
}

.carousel-slide .carousel-button {
  animation-delay: 0.6s;
}

/* Accessibility Improvements */
.carousel-container:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.5);
}

.carousel-button-prev:focus,
.carousel-button-next:focus,
.carousel-indicator:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.5);
}

/* Screen reader only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===== ÖZELLİKLER ===== */
.features {
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature-item {
  padding: 30px;
  border-radius: 8px;
  background-color: var(--white-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-speed);
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.feature-item h3 {
  margin-bottom: 15px;
}

/* ===== ÜRÜNLER ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: var(--white-color);
  transition: transform var(--transition-speed);
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-image {
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed);
}

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

.product-content {
  padding: 20px;
}

.product-category {
  font-size: 0.8rem;
  color: var(--medium-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.product-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.product-description {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.product-specs {
  font-size: 0.8rem;
  color: var(--medium-gray);
}

/* ===== HAKKIMIZDA ===== */
.about-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.about-text {
  flex: 1;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--medium-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== KALİTE POLİTİKASI ===== */
.quality-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.quality-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.quality-text {
  flex: 1;
}

.quality-principles {
  margin-top: 30px;
}

.principle-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.principle-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.principle-content h4 {
  margin-bottom: 5px;
}

/* ===== İNSAN KAYNAKLARI ===== */
.careers-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.open-positions {
  margin-bottom: 60px;
}

.positions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.position-card {
  background-color: var(--white-color);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-speed);
}

.position-card:hover {
  transform: translateY(-5px);
}

.position-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.position-title {
  margin-bottom: 5px;
}

.position-location {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--medium-gray);
  margin-bottom: 10px;
}

.position-location i {
  margin-right: 5px;
}

.position-type {
  display: inline-block;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.full-time {
  background-color: rgba(77, 124, 83, 0.1);
  color: var(--success-color);
}

.part-time {
  background-color: rgba(199, 167, 88, 0.1);
  color: var(--warning-color);
}

.position-description {
  margin-bottom: 20px;
}

.position-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.position-date {
  color: var(--medium-gray);
}

.application-process {
  margin-bottom: 60px;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.process-step:not(:last-child):after {
  content: "";
  position: absolute;
  top: 40px;
  right: -50%;
  width: 100%;
  height: 2px;
  background-color: var(--light-gray);
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.step-title {
  margin-bottom: 10px;
}

.step-description {
  font-size: 0.9rem;
  color: var(--medium-gray);
}

.company-benefits {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 80px 0;
  text-align: center;
}

.company-benefits h2 {
  color: var(--white-color);
}

.company-benefits h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.benefit-item {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: transform var(--transition-speed);
}

.benefit-item:hover {
  transform: translateY(-10px);
}

.benefit-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.benefit-title {
  color: var(--white-color);
  margin-bottom: 10px;
}

.benefit-description {
  font-size: 0.9rem;
  color: var(--light-gray);
}

/* ===== İLETİŞİM ===== */
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.contact-card {
  background-color: var(--white-color);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-speed);
}

.contact-card:hover {
  transform: translateY(-10px);
}

.contact-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.contact-title {
  margin-bottom: 15px;
}

.contact-details {
  font-size: 0.9rem;
}

.contact-details p {
  margin-bottom: 5px;
}

.contact-form-container {
  background-color: var(--white-color);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group.full-width {
  grid-column: span 2;
}

label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  font-family: var(--body-font);
  font-size: 1rem;
  transition: border-color var(--transition-speed);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

.form-submit {
  grid-column: span 2;
  text-align: center;
}

.contact-map {
  margin-top: 60px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* ===== DESTEK SAYFASI ===== */
.support-intro {
  padding-bottom: 0;
}

.support-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.support-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.support-text {
  flex: 1;
}

.support-contact-info {
  margin-top: 30px;
  padding: 20px;
  background-color: #f8f8f8;
  border-radius: 8px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item i {
  width: 30px;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.support-categories {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.support-categories h2 {
  color: var(--white-color);
  text-align: center;
}

.support-categories h2:after {
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.category-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: all var(--transition-speed);
}

.category-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
}

.category-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.category-item h3 {
  color: var(--white-color);
  margin-bottom: 10px;
}

.category-item p {
  font-size: 0.9rem;
  color: var(--light-gray);
}

.document-filters {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.filter-label {
  font-weight: 600;
  margin-right: 15px;
}

.filter-buttons {
  display: flex;
  gap: 10px;
}

.filter-btn {
  padding: 8px 15px;
  background-color: var(--light-gray);
  border: none;
  border-radius: 4px;
  font-family: var(--body-font);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-speed);
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.documents-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.document-item {
  display: flex;
  background-color: var(--white-color);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.document-icon {
  font-size: 2rem;
  color: var(--danger-color);
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.document-info {
  flex: 1;
}

.document-info h3 {
  margin-bottom: 10px;
}

.document-meta {
  display: flex;
  gap: 20px;
  font-size: 0.8rem;
  color: var(--medium-gray);
  margin-bottom: 15px;
}

.maintenance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.maintenance-item {
  display: flex;
  gap: 30px;
  background-color: var(--white-color);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.maintenance-image {
  flex: 0 0 300px;
  border-radius: 8px;
  overflow: hidden;
}

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

.maintenance-content {
  flex: 1;
}

.maintenance-steps {
  margin-bottom: 20px;
}

.troubleshooting-list {
  margin-top: 20px;
}

.trouble-item {
  margin-bottom: 20px;
}

.trouble-item:last-child {
  margin-bottom: 0;
}

.trouble-item h4 {
  margin-bottom: 5px;
  color: var(--primary-color);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
  background-color: var(--white-color);
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.faq-toggle {
  color: var(--primary-color);
  transition: transform var(--transition-speed);
}

.faq-answer {
  background-color: #f8f8f8;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-speed);
}

.faq-answer p {
  padding: 20px 0;
}

.warranty-content {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.warranty-image {
  flex: 0 0 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.warranty-info {
  flex: 1;
}

.warranty-info h4 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.video-item {
  background-color: var(--white-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.video-thumbnail {
  position: relative;
  height: 200px;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(42, 59, 76, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  font-size: 1.5rem;
  transition: all var(--transition-speed);
}

.video-play-btn:hover {
  background-color: var(--primary-color);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
  padding: 20px;
}

.video-info h3 {
  margin-bottom: 10px;
}

.video-duration {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--medium-gray);
  margin-top: 10px;
}

.video-duration i {
  margin-right: 5px;
}

.video-channel-link {
  text-align: center;
}

.support-form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white-color);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.support-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  grid-column: span 2;
}

.half-width {
  flex: 1;
}

.file-upload {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.file-upload input {
  display: none;
}

.file-upload-btn {
  padding: 10px 15px;
  background-color: #f8f8f8;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  margin-right: 10px;
  transition: all var(--transition-speed);
}

.file-upload-btn:hover {
  background-color: var(--light-gray);
}

.file-name {
  font-size: 0.9rem;
  color: var(--medium-gray);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.location-item {
  background-color: var(--white-color);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  gap: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.location-icon {
  font-size: 2rem;
  color: var(--primary-color);
}

.location-info h3 {
  margin-bottom: 15px;
}

.location-info p {
  margin-bottom: 10px;
}

.locations-map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* ===== ÜRÜN DETAY SAYFASI ===== */
.product-detail {
  display: flex;
  gap: 50px;
  margin-bottom: 60px;
}

.product-gallery {
  flex: 0 0 50%;
}

.main-image {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

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

.thumbnails {
  display: flex;
  gap: 10px;
}

.thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition-speed);
}

.thumbnail.active,
.thumbnail:hover {
  opacity: 1;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  flex: 1;
}

.product-category-badge {
  display: inline-block;
  padding: 5px 10px;
  background-color: var(--secondary-color);
  color: var(--white-color);
  font-size: 0.8rem;
  border-radius: 4px;
  margin-bottom: 15px;
}

.product-title-large {
  font-size: 2rem;
  margin-bottom: 20px;
}

.product-description-large {
  margin-bottom: 30px;
}

.product-features {
  margin-bottom: 30px;
}

.product-features h3 {
  margin-bottom: 15px;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.features-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--success-color);
}

.product-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.product-specs-table th,
.product-specs-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid var(--light-gray);
}

.product-specs-table th {
  background-color: #f8f8f8;
  font-weight: 600;
  width: 40%;
}

.product-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.related-products h2 {
  text-align: center;
  margin-bottom: 40px;
}

.related-products h2:after {
  left: 50%;
  transform: translateX(-50%);
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--dark-color);
  color: var(--light-gray);
  padding: 80px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.footer-logo {
  flex: 0 0 0%;
}

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

.footer-links {
  flex: 0 0 0%;
  display: flex;
  justify-content: space-between;
}

.footer-column h4 {
  color: var(--white-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-column ul li a {
  color: var(--light-gray);
  transition: color var(--transition-speed);
}

.footer-column ul li a:hover {
  color: var(--accent-color);
}

.footer-contact {
  flex: 0 0 25%;
}

.footer-contact h4 {
  color: var(--white-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-contact h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact p i {
  margin-right: 10px;
  color: var(--accent-color);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--white-color);
  font-size: 1.2rem;
  transition: all var(--transition-speed);
}

.social-icons a:hover {
  background-color: var(--accent-color);
  color: var(--dark-color);
  transform: translateY(-5px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  color: var(--light-gray);
  font-size: 0.9rem;
  transition: color var(--transition-speed);
}

.legal-links a:hover {
  color: var(--accent-color);
}

.legal-notice {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: var(--medium-gray);
  text-align: center;
}

/* ===== RESPONSIVE TASARIM ===== */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }

  .main-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

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

  .about-content,
  .quality-content,
  .warranty-content {
    flex-direction: column;
  }

  .about-image,
  .quality-image,
  .warranty-image {
    margin-bottom: 30px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .maintenance-item {
    flex-direction: column;
  }

  .maintenance-image {
    flex: 0 0 auto;
    height: 250px;
  }

  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-detail {
    flex-direction: column;
  }

  .product-gallery {
    flex: 0 0 100%;
    margin-bottom: 30px;
  }

  .footer-content {
    flex-wrap: wrap;
  }

  .footer-logo {
    flex: 0 0 100%;
    margin-bottom: 30px;
  }

  .footer-links {
    flex: 0 0 60%;
  }

  .footer-contact {
    flex: 0 0 35%;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .features-grid,
  .products-grid,
  .positions-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: column;
    gap: 30px;
  }

  .process-step:not(:last-child):after {
    display: none;
  }

  .contact-info,
  .categories-grid,
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-links {
    flex: 0 0 100%;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
  }

  .footer-contact {
    flex: 0 0 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .legal-links {
    margin-top: 15px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }

  .page-header {
    padding: 100px 0 40px;
  }

  .hero {
    height: 80vh;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

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

  .about-stats {
    grid-template-columns: 1fr;
  }

  .principle-item {
    flex-direction: column;
  }

  .principle-icon {
    margin-bottom: 10px;
  }

  .contact-form-container,
  .support-form-container {
    padding: 20px;
  }

  .location-item {
    flex-direction: column;
  }

  .location-icon {
    margin-bottom: 15px;
  }

  .product-actions {
    flex-direction: column;
  }

  .thumbnails {
    flex-wrap: wrap;
  }
}

/* ===== ANİMASYONLAR ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

/* ===== YARDIMCI SINIFLAR ===== */
.text-center {
  text-align: center;
}

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

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 10px !important;
}

.mb-2 {
  margin-bottom: 20px !important;
}

.mb-3 {
  margin-bottom: 30px !important;
}

.mb-4 {
  margin-bottom: 40px !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 10px !important;
}

.mt-2 {
  margin-top: 20px !important;
}

.mt-3 {
  margin-top: 30px !important;
}

.mt-4 {
  margin-top: 40px !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.py-2 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.py-3 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.py-4 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}
