/* ========================================
   MODERN ELBISTAN TEKNIK SERVIS STYLES
   ======================================== */

:root {
  /* Premium & Professional Color Palette */
  /* Ana Renkler - Güven ve Kurumsallık */
  --primary-color: #0f172a;
  /* Slate 900 - Çok koyu lacivert */
  --primary-dark: #020617;
  /* Slate 950 - Neredeyse siyah */
  --primary-light: #334155;
  /* Slate 700 - Yumuşak koyu gri */

  /* İkincil Renk - Enerji ve Ustalık */
  --secondary-color: #f59e0b;
  /* Amber 500 - Canlı Turuncu */
  --secondary-dark: #d97706;
  /* Amber 600 - Koyu Turuncu */

  /* Vurgu ve Detay */
  --accent-color: #3b82f6;
  /* Blue 500 - Parlak Mavi (Detaylar için) */

  /* Zemin Renkleri */
  --dark-bg: #0f172a;
  /* Koyu zemin */
  --light-bg: #f1f5f9;
  /* Slate 100 - Çok açık gri zemin */

  /* Yazı Renkleri */
  --text-dark: #1e293b;
  /* Slate 800 - Ana metin */
  --text-light: #64748b;
  /* Slate 500 - Yardımcı metin */
  --white: #ffffff;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* ========================================
   ENHANCED HEADER
   ======================================== */
/* ========================================
   ENHANCED HEADER
   ======================================== */
header#home-2-menu {
  background: rgba(15, 23, 42, 0.95);
  /* Primary Color ile uyumlu */
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header#home-2-menu:hover {
  box-shadow: var(--shadow-lg);
}

.ed-logo h1 {
  /* High-Impact Vibrant Ember-Gold Gradient */
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 25%, #ffffff 50%, #fbbf24 75%, #d97706 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 3s linear infinite;

  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  /* Çok daha büyük logo */
  margin: 0;
  letter-spacing: -1.5px;
  text-transform: lowercase;
  cursor: pointer;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.ed-logo h1:hover {
  transform: scale(1.05);
  text-shadow: 0px 0px 30px rgba(245, 158, 11, 0.6);
  background-position: right center;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.ed-icon svg {
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  fill: var(--secondary-color);
  /* İkon Rengi Turuncu */
}

/* Nav Link Hover Efekti - Altın Sarısı */
nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--secondary-color);
  transition: transform 0.3s ease;
}

/* ========================================
   HERO SECTION
   ======================================== */
#home-2 {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  /* Dikey hizalama zorunlu */
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

#home-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Koyu Mavi Gradient Overlay */
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.9));
  z-index: 1;
}

#home-2 h2 {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 4rem;
  /* Daha büyük başlık */
  font-weight: 800;
  text-align: center;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  padding: 0 2rem;
  margin-bottom: 0.5rem;
  /* Subtitle ile arası az */
  animation: fadeInUp 1s ease-out;
  letter-spacing: -1px;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Text Additions */
.hero-subtitle {
  position: relative;
  z-index: 2;
  color: var(--secondary-color);
  /* Turuncu renk vurgusu */
  font-size: 2.5rem;
  /* Büyük subtitle */
  font-weight: 700;
  text-align: center;
  margin-top: 0;
  margin-bottom: 2rem;
  /* Aşağıdaki metinle boşluk */
  animation: fadeInUp 1.2s ease-out;
}

.hero-description {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  /* Orantılı okunaklı font */
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  padding: 0 2rem;
  animation: fadeInUp 1.4s ease-out;
}

/* ========================================
   ABOUT SECTION ENHANCEMENTS
   ======================================== */
#about-1 .about-call-to-action {
  background: var(--light-bg);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-color);
  margin: var(--spacing-lg) auto;
  max-width: 800px;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  margin-top: var(--spacing-md);
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #128c7e, #0a5d4d) !important;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
#contact {
  background: var(--light-bg);
  padding: var(--spacing-xl) var(--spacing-lg);
}

#contact h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

#contact h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 1rem auto;
  border-radius: 2px;
}

/* Google Maps Container */
.map-container {
  max-width: 1200px;
  margin: 0 auto var(--spacing-xl);
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  display: block;
}

/* Contact Info Grid */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.contact-item {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  gap: var(--spacing-md);
  transition: all 0.3s ease;
  align-items: flex-start;
}

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

.contact-item svg {
  flex-shrink: 0;
  fill: var(--primary-color);
  width: 32px;
  height: 32px;
}

.contact-item div {
  flex: 1;
}

.contact-item strong {
  display: block;
  color: var(--primary-color);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.contact-item p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-item a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.location-direction-btn {
  margin-top: var(--spacing-sm);
  background: var(--primary-color) !important;
  color: var(--white) !important;
  padding: 0.5rem 1rem !important;
  display: inline-block;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
}

.location-direction-btn:hover {
  background: var(--primary-dark) !important;
}

/* ========================================
   HEADER ENHANCEMENTS
   ======================================== */
header#home-2-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1rem 2rem;
  background: rgba(31, 41, 55, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo Sol Tarafta */
header#home-2-menu .ed-logo {
  order: 1;
  flex-shrink: 0;
}

header#home-2-menu .ed-logo h1 {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0;
  white-space: nowrap;
}

/* Menü Orta/Sağ Tarafta */
header#home-2-menu nav {
  order: 2;
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

header#home-2-menu nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}

header#home-2-menu nav ul li a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--white);
  font-weight: 600;
  font-size: 1.15rem;
  /* Menü bir tık büyütüldü */
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  background: transparent;
}

/* Hover Efekti - Yavaş Renk Değişimi */
header#home-2-menu nav ul li a:hover {
  background: rgba(37, 99, 235, 0.3);
  color: var(--white);
}

header#home-2-menu .ed-icon {
  display: none;
  order: 3;
  flex-shrink: 0;
}

/* Konum Butonu Özel Stil */
.location-btn {
  background: rgba(245, 158, 11, 0.2) !important;
}

.location-btn:hover {
  background: rgba(245, 158, 11, 0.4) !important;
}

/* ========================================
   ABOUT SECTION - IMAGE LEFT, TEXT RIGHT
   ======================================== */
#about-1 {
  background: linear-gradient(to bottom, var(--white), var(--light-bg));
  padding: var(--spacing-xl) var(--spacing-lg);
}

#about-1 h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
}

#about-1 h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 1rem auto;
  border-radius: 2px;
}

/* Resim + Yazı Container */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

/* Resim Solda */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  max-height: 450px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* Smooth zoom enabled on desktop */
  cursor: pointer;
}

.about-image img:hover {
  transform: scale(1.05);
  /* Zoom on hover */
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 3px solid var(--primary-color);
  border-radius: var(--radius-xl);
  z-index: -1;
}

/* Yazı Sağda */
.about-content {
  text-align: left;
}

.about-content p {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.about-content .about-call-to-action {
  background: var(--light-bg);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-color);
  margin: var(--spacing-md) 0;
}

/* Mobil Responsive */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .about-image {
    order: 1;
  }

  .about-content {
    order: 2;
    text-align: center;
  }

  .about-image::before {
    display: none;
  }

  .about-image img {
    max-height: 350px;
  }
}

#about-1 ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  max-width: 900px;
  margin: 0 auto var(--spacing-lg);
  padding: 0;
  list-style: none;
}

#about-1 ul li {
  background: var(--white);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#about-1 ul li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white);
  border-radius: 50%;
  font-weight: bold;
  flex-shrink: 0;
}

#about-1 ul li:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

/* Modern Button Styles */
#about-1 a,
.button,
.modern-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1.125rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

#about-1 a::before,
.button::before,
.modern-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

#about-1 a:hover::before,
.button:hover::before,
.modern-button:hover::before {
  left: 100%;
}

#about-1 a:hover,
.button:hover,
.modern-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

/* ========================================
   SERVICES SECTION - PROFESSIONAL CARDS
   ======================================== */
#services-1 {
  background: var(--dark-bg);
  padding: var(--spacing-xl) var(--spacing-lg);
}

#services-1 h2 {
  color: var(--white);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

#services-1 h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  margin: 1rem auto;
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(16, 185, 129, 0.15));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: var(--spacing-xl) var(--spacing-lg);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: attr(data-number);
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
  border-color: var(--primary-light);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(16, 185, 129, 0.25));
}

.service-icon {
  font-size: 4rem;
  margin-bottom: var(--spacing-md);
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.service-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.service-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
#gallery-1 {
  padding: var(--spacing-xl) var(--spacing-lg);
  background: var(--light-bg);
}

#gallery-1 img {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transition: all 0.4s ease;
}

#gallery-1 img:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
#contact {
  background: linear-gradient(to bottom, var(--light-bg), #e2e8f0);
  padding: var(--spacing-xl) var(--spacing-lg);
}

/* Harita ve Kartlar */
.contact-item {
  background: var(--white);
  border: 1px solid #e2e8f0;
  /* Hafif gri sınır */
}

.contact-item svg {
  fill: var(--secondary-color);
  /* Turuncu İkonlar */
}

.contact-item strong {
  color: var(--primary-color);
}

.contact-item a:hover {
  color: var(--secondary-color);
}

.location-direction-btn {
  background: var(--primary-color) !important;
}

.location-direction-btn:hover {
  background: var(--secondary-color) !important;
}

/* ========================================
   FOOTER (KALDIRILDI)
   ======================================== */
footer {
  display: none;
}

/* ========================================
   BUTTONS
   ======================================== */
#about-1 .about-call-to-action {
  border-left-color: var(--secondary-color);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

#about-1 a,
.button,
.modern-button,
.whatsapp-btn {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark)) !important;
  color: #fff !important;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

#about-1 a:hover,
.button:hover,
.modern-button:hover,
.whatsapp-btn:hover {
  background: linear-gradient(135deg, var(--secondary-dark), #b45309) !important;
  box-shadow: 0 6px 15px rgba(245, 158, 11, 0.5);
  transform: translateY(-2px);
}

/* Whatsapp İkonu Beyaz Kalmalı */
.whatsapp-btn svg {
  fill: #fff !important;
}

/* ========================================
   BRANDS SECTION
   ======================================== */
#brands-section {
  background: var(--light-bg);
  padding: var(--spacing-xl) 2rem;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

#brands-section h3 {
  color: var(--primary-light);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.brands-grid span {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  color: var(--text-light);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.brands-grid span:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--primary-color);
  border-color: var(--secondary-color);
}

.brand-subtext {
  margin-top: var(--spacing-md);
  color: var(--text-light);
  font-size: 0.9rem;
  font-style: italic;
}

/* ========================================
   MOBILE BOTTOM BAR
   ======================================== */
.mobile-bottom-bar {
  display: none;
  /* Masaüstünde gizli */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  padding: 10px;
  gap: 10px;
}

.mobile-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

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

.wp-btn {
  background: #25d366;
  color: var(--white);
}

/* Mobilde Floating Butonu Gizle (Çakışmasın) */
@media (max-width: 768px) {
  .whatsapp-float {
    display: none;
  }

  .mobile-bottom-bar {
    display: flex;
  }

  /* Footer mobilde çubuğun altında kalmasın diye boşluk */
  footer {
    padding-bottom: 80px;
  }
}

@media (max-width: 768px) {
  #home-2 h2 {
    font-size: 2rem;
  }

  #about-1 h2,
  #services-1 h2 {
    font-size: 2rem;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ========================================
   SMOOTH SCROLLING
   ======================================== */
html {
  scroll-behavior: smooth;
}

/* ========================================
   LOADING ANIMATIONS
   ======================================== */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Apply animations on page load */
#about-1 {
  animation: slideInLeft 0.8s ease-out;
}

#services-1 {
  animation: slideInRight 0.8s ease-out;
}