/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  overflow-x: hidden;
  background: #f5f5f5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo img {
  height: 60px;
  width: auto;
}

/* Navigation Menu - DÜZELTME YAPILDI */
.nav-menu {
  display: flex;
  align-items: center;
}

.menu-items {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0;
}

.menu-item {
  position: relative;
}

.menu-link {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  padding: 25px 20px;
  display: block;
  transition: all 0.3s ease;
  font-size: 14px;
}

.menu-link:hover {
  color: #c41e3a;
}

/* Language Selector */
.menu-item.language .menu-link {
  background: #8b0000;
  color: white;
  border-radius: 4px;
  margin-left: 10px;
  padding: 8px 15px;
  height: auto;
}

.menu-item.language .menu-link:hover {
  background: #a52a2a;
  color: white;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #2c2c2c;
  min-width: 280px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 10px 0;
  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  background: #3a3a3a;
  color: #c41e3a;
  border-left-color: #8b0000;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  background: transparent;
  border: none;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #000000;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Mobile Menu Active Animation */
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Dil Seçici Stilleri */
.language-selector {
  position: relative;
}

.current-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #8b0000;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: 80px;
  justify-content: space-between;
}

.current-lang:hover {
  background: #a52a2a;
}

.flag-icon {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.current-lang svg {
  transition: transform 0.3s ease;
}

.language-selector.active .current-lang svg {
  transform: rotate(180deg);
}

/* Dil Seçenekleri Dropdown */
.lang-options {
  position: absolute;
  top: 100%;
  right: 0;
  background: #2c2c2c;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 8px 0;
  min-width: 180px;
  z-index: 1000;
  border: 1px solid #8b0000;
}

.language-selector:hover .lang-options,
.language-selector.active .lang-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.lang-option:hover {
  background: #3a3a3a;
  color: #ffffff;
  border-left-color: #8b0000;
}

/* Hero Section - Slider (Responsive) */
.hero {
  position: relative;
  width: 100%;
  height: clamp(260px, 60vh, 700px);
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  position: relative;
  min-width: 100%;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Oklar */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(44, 44, 44, 0.9);
  border: 2px solid #8b0000;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-arrow:hover {
  background: #8b0000;
  border-color: #a52a2a;
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow-left {
  left: 30px;
}
.slider-arrow-right {
  right: 30px;
}

/* Noktalar */
.slider-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(139, 0, 0, 0.6);
}

.dot.active {
  background: #8b0000;
  border-color: #a52a2a;
  transform: scale(1.2);
}

.dot:hover {
  background: #8b0000;
}

/* Mekan Dönüşümü Section */
.window-comparison-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  min-height: 60vh;
}

.comparison-header {
  text-align: center;
  margin-bottom: 50px;
}

.comparison-header h2 {
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 600;
}

.comparison-header .highlight {
  color: #8b0000;
}

.comparison-header p {
  font-size: 18px;
  color: #4a4a4a;
  max-width: 600px;
  margin: 0 auto;
}

.comparison-demo {
  max-width: 900px;
  margin: 0 auto;
}

.scene-container {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
  background: #2c2c2c;
}

.scene {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: block;
}

.scene.is-active {
  opacity: 1;
}

.scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.scene-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26, 26, 26, 0.95));
  color: white;
  padding: 30px;
  z-index: 2;
}

.scene-overlay h3 {
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #ffffff;
}

.scene-overlay p {
  font-size: 16px;
  opacity: 0.9;
  margin: 0;
}

.demo-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.demo-btn {
  background: #2c2c2c;
  color: white;
  border: 2px solid #8b0000;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 180px;
  justify-content: center;
  text-decoration: none;
}

.demo-btn:hover:not(:disabled):not(.active-view) {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 0, 0, 0.4);
  background: #8b0000;
}

.demo-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.demo-btn.active-view {
  background: #8b0000;
  border-color: #a52a2a;
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

.start-btn:not(:disabled) {
  background: #8b0000;
  border-color: #a52a2a;
}

.start-btn:hover:not(:disabled) {
  background: #a52a2a;
}

.switch-btn:not(:disabled) {
  background: #1a1a1a;
}

.switch-btn:hover:not(:disabled) {
  background: #8b0000;
}

.product-btn:not(:disabled) {
  background: #8b0000;
  border-color: #a52a2a;
}

.product-btn:hover:not(:disabled) {
  background: #a52a2a;
  transform: translateY(-2px);
}

.transformation-info {
  text-align: center;
  margin-top: 25px;
  padding: 0 20px;
}

.info-text {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.info-text strong {
  color: #8b0000;
  font-weight: 600;
}

/* Öne Çıkan Modeller Section */
.featured-models-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.featured-header {
  text-align: center;
  margin-bottom: 60px;
}

.featured-header h2 {
  font-size: 36px;
  color: #1a1a1a;
  font-weight: 600;
}

.featured-header .highlight {
  color: #8b0000;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.featured-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  color: inherit;
  display: block;
}

.featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(139, 0, 0, 0.3);
  border-color: #8b0000;
}

.featured-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-card:hover .featured-image img {
  transform: scale(1.08);
}

.featured-title {
  padding: 25px 20px;
  font-size: 20px;
  color: #1a1a1a;
  font-weight: 600;
  text-align: center;
  margin: 0;
  transition: color 0.3s ease;
}

.featured-card:hover .featured-title {
  color: #8b0000;
}

.products-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.products-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.products-header h2 {
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 25px;
  font-weight: 600;
  line-height: 1.3;
}

.products-header h2 .highlight {
  color: #8b0000;
}

.products-description {
  font-size: 18px;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 20px;
}

.products-subtitle {
  font-size: 16px;
  color: #8b0000;
  font-weight: 500;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(139, 0, 0, 0.25);
  border-color: #8b0000;
}

.product-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-title {
  padding: 20px;
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  margin: 0;
}

.bottom-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.bottom-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 300;
  color: #ffffff;
}

.cta-button {
  background: #8b0000;
  color: white;
  border: 2px solid #a52a2a;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background: #a52a2a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 0, 0, 0.5);
}

/* Keşfetmeye Değer İçerikler Section */
.featured-links {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.featured-links-header {
  text-align: center;
  margin-bottom: 60px;
}

.featured-links-header h2 {
  font-size: 36px;
  color: #1a1a1a;
  font-weight: 600;
}

.featured-links-header .highlight {
  color: #8b0000;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.link-card {
  display: block;
  text-decoration: none;
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    border-bottom-color 0.3s ease;
  border: 2px solid transparent;
  border-bottom: 4px solid transparent;
}

.link-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 45px rgba(139, 0, 0, 0.25);
  border-color: #8b0000;
  border-bottom-color: #8b0000;
}

.link-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.link-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.link-card:hover .link-card-image img {
  transform: scale(1.08);
}

.link-card-title {
  padding: 25px 20px;
  font-size: 17px;
  color: #1a1a1a;
  font-weight: 600;
  text-align: center;
  margin: 0;
  line-height: 1.4;
}

.link-card:hover .link-card-title {
  color: #8b0000;
}

/* Footer Üstü CTA Şeridi */
.quick-cta {
  background-color: #2c2c2c;
  padding: 60px 0;
}

.quick-cta .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.cta-box {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  transition: all 250ms ease-in-out;
  border: 2px solid #8b0000;
}

.cta-box:hover,
.cta-box:focus-visible {
  background-color: #8b0000;
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(139, 0, 0, 0.4);
  border-color: #a52a2a;
}

.cta-box:focus-visible {
  outline: 3px solid #8b0000;
  outline-offset: 4px;
}

.cta-icon {
  margin-bottom: 20px;
}

.cta-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.5;
  color: #ffffff;
}

.cta-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #ffffff;
}

.cta-box p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
}

/* Site Footer */
.site-footer {
  background-color: #1a1a1a;
  color: #b0b0b0;
  padding: 80px 0 0;
  font-size: 15px;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-col ul a:hover,
.footer-col ul a:focus-visible {
  color: #8b0000;
  outline: none;
}

.footer-social {
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid #2c2c2c;
}

.footer-social a {
  display: inline-block;
  color: #b0b0b0;
  margin: 0 12px;
  transition: color 200ms ease, transform 200ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: #8b0000;
  transform: scale(1.1);
  outline: none;
}

.footer-social svg {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  font-size: 13px;
  color: #808080;
}

.footer-legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  margin-left: 20px;
  transition: color 200ms ease;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  color: #8b0000;
  outline: none;
}

/* Animasyon Stilleri */
@media (prefers-reduced-motion: reduce) {
  .anim,
  .anim-item {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.anim {
  transition: opacity 600ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.anim-item {
  transition: opacity 600ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
  opacity: 0;
}

.anim.fade-up,
.anim[data-anim="fade-up"] .anim-item {
  opacity: 0;
  transform: translateY(40px);
}

.anim.slide-up,
.anim[data-anim="slide-up"] .anim-item {
  opacity: 0;
  transform: translateY(40px);
}

.anim.slide-left {
  opacity: 0;
  transform: translateX(-50px);
}

.anim.slide-right {
  opacity: 0;
  transform: translateX(50px);
}

.anim.scale-in {
  opacity: 0;
  transform: scale(0.9);
}

.anim.fade-in {
  opacity: 0;
}

.anim.is-inview,
.anim.is-inview .anim-item {
  opacity: 1;
  transform: none;
}

.anim.is-inview h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #8b0000;
  margin: 15px auto 0;
  transform: scaleX(1);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1) 300ms;
}

h2::after {
  transform: scaleX(0);
}

.anim[data-anim-stagger] .anim-item:nth-child(1) {
  transition-delay: 0ms;
}
.anim[data-anim-stagger] .anim-item:nth-child(2) {
  transition-delay: 100ms;
}
.anim[data-anim-stagger] .anim-item:nth-child(3) {
  transition-delay: 200ms;
}
.anim[data-anim-stagger] .anim-item:nth-child(4) {
  transition-delay: 300ms;
}
.anim[data-anim-stagger] .anim-item:nth-child(5) {
  transition-delay: 400ms;
}
.anim[data-anim-stagger] .anim-item:nth-child(6) {
  transition-delay: 500ms;
}
.anim[data-anim-stagger] .anim-item:nth-child(7) {
  transition-delay: 600ms;
}
.anim[data-anim-stagger] .anim-item:nth-child(8) {
  transition-delay: 700ms;
}

/* ====== RESPONSIVE DESIGN ====== */

/* Tablet */
@media (max-width: 992px) {
  .hero {
    height: clamp(260px, 55vh, 620px);
  }
  .slider-arrow {
    width: 44px;
    height: 44px;
  }
  .slider-arrow-left {
    left: 18px;
  }
  .slider-arrow-right {
    right: 18px;
  }
  .slider-dots {
    bottom: 18px;
  }

  .featured-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Mobile Menu Button Görünür Yap */
  .mobile-menu-btn {
    display: flex;
    z-index: 1001;
  }

  /* Mobil Menü - DÜZELTME */
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #2c2c2c;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 20px 0;
    z-index: 1000;
  }

  /* Menü Açık Durumu */
  .nav-menu.active {
    left: 0;
  }

  .menu-items {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .menu-item {
    width: 100%;
    border-bottom: 1px solid #3a3a3a;
  }

  .menu-link {
    color: #ffffff;
    padding: 15px 20px;
    width: 100%;
  }

  .menu-link:hover {
    background: #3a3a3a;
    color: #c41e3a;
  }

  /* Mobil Dropdown Menu */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #1a1a1a;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
  }

  .dropdown.active .dropdown-menu,
  .dropdown:hover .dropdown-menu {
    max-height: 500px;
    padding: 10px 0;
  }

  .dropdown-menu a {
    padding: 12px 20px 12px 40px;
  }

  /* Mobil Dil Seçici */
  .language-selector {
    width: 100%;
    border-bottom: 1px solid #3a3a3a;
  }

  .current-lang {
    width: 100%;
    padding: 15px 20px;
    background: #2c2c2c;
    color: #ffffff;
    border-radius: 0;
    justify-content: space-between;
  }

  .lang-options {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #1a1a1a;
    border-radius: 0;
    border: none;
    margin-top: 0;
    max-height: 0;
    transition: max-height 0.3s ease;
  }

  .language-selector.active .lang-options {
    max-height: 300px;
  }

  .lang-option {
    padding: 12px 20px 12px 40px;
  }

  /* Hero Slider */
  .hero {
    height: clamp(240px, 50vh, 520px);
  }

  .slide img {
    object-fit: cover;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .slider-arrow-left {
    left: 12px;
  }

  .slider-arrow-right {
    right: 12px;
  }

  .slider-dots {
    gap: 10px;
    bottom: 14px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  /* Sections */
  .window-comparison-section {
    padding: 60px 0;
  }

  .comparison-header h2 {
    font-size: 28px;
  }

  .comparison-header p {
    font-size: 16px;
  }

  .scene-container {
    height: 350px;
  }

  .scene-overlay {
    padding: 20px;
  }

  .scene-overlay h3 {
    font-size: 20px;
  }

  .demo-controls {
    flex-direction: column;
    align-items: center;
  }

  .demo-btn {
    min-width: 200px;
  }

  .info-text {
    font-size: 15px;
  }

  .featured-models-section {
    padding: 60px 0;
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .featured-image {
    height: 200px;
  }

  .featured-title {
    font-size: 18px;
    padding: 20px 15px;
  }

  .featured-header h2 {
    font-size: 30px;
  }

  .products-section {
    padding: 60px 0;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .product-image {
    height: 150px;
  }

  .product-title {
    font-size: 14px;
    padding: 15px;
  }

  .products-header h2 {
    font-size: 28px;
  }

  .products-description {
    font-size: 16px;
  }

  .products-header {
    margin-bottom: 40px;
  }

  .bottom-section h2 {
    font-size: 24px;
  }

  .featured-links {
    padding: 60px 0;
  }

  .links-grid {
    gap: 20px;
  }

  .link-card-title {
    font-size: 16px;
    padding: 20px 15px;
  }

  .featured-links-header h2 {
    font-size: 26px;
  }

  .featured-links-header {
    margin-bottom: 40px;
  }

  .quick-cta {
    padding: 40px 0;
  }

  .quick-cta .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-footer {
    padding-top: 60px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-legal-links a {
    margin: 0 10px;
  }
}

/* Küçük Mobil */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    height: clamp(220px, 48vh, 460px);
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
  }

  .slider-arrow-left {
    left: 10px;
  }

  .slider-arrow-right {
    right: 10px;
  }

  .slider-dots {
    bottom: 10px;
  }

  .scene-container {
    height: 280px;
    border-radius: 10px;
  }

  .comparison-header h2 {
    font-size: 24px;
  }

  .comparison-header p {
    font-size: 15px;
  }

  .demo-btn {
    padding: 10px 20px;
    font-size: 13px;
    min-width: 160px;
  }

  .scene-overlay {
    padding: 15px;
  }

  .scene-overlay h3 {
    font-size: 18px;
  }

  .scene-overlay p {
    font-size: 14px;
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .featured-image {
    height: 160px;
  }

  .featured-title {
    font-size: 16px;
    padding: 18px 12px;
  }

  .featured-header h2 {
    font-size: 26px;
  }

  .featured-header {
    margin-bottom: 40px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .product-image {
    height: 150px;
  }

  .product-title {
    font-size: 14px;
    padding: 15px;
  }

  .products-header h2 {
    font-size: 24px;
  }

  .bottom-section h2 {
    font-size: 20px;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 14px;
  }

  .links-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Çok Küçük Ekranlar */
@media (max-width: 400px) {
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .featured-image {
    height: 200px;
  }

  .featured-title {
    font-size: 18px;
    padding: 20px 15px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 180px;
  }
}

/* Body için menü açık durumu */
body.menu-open {
  overflow: hidden;
}

/* Erişilebilirlik: animasyonu azalt */
@media (prefers-reduced-motion: reduce) {
  .slider-wrapper {
    transition: none;
  }
  .slider-arrow {
    transition: none;
  }
  .dot {
    transition: none;
  }
  .nav-menu {
    transition: none;
  }
}

.header-social {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 20px;
}

.header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #333;
  transition: color 0.3s ease;
}

.header-social a:hover {
  color: #8b4513; /* Veya sitenizin ana rengini kullanın */
}

.header-social svg {
  width: 20px;
  height: 20px;
}

/* Mobil için gizle */
@media (max-width: 768px) {
  .header-social {
    display: none;
  }
}
