/* ============================================
   ERMESAN KONTEYNER - STYLE.CSS v2.0
   Modern, Responsive ve Etkileşimli Tasarım
   ============================================ */

/* ==================== GLOBAL RESET ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #1e293b;
  background: #f8fafb;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
  cursor: none;
}

/* ==================== RENK DEĞİŞKENLERİ ==================== */
:root {
  --primary: #1a3d52;
  --secondary: #2d5f7e;
  --accent: #ff6b35;
  --accent-dark: #e55a2b;
  --accent-light: #ff8c5f;
  --light: #f1f5f9;
  --dark: #0f172a;
  --text: #1e293b;
  --text-light: #6b7280;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

/* ==================== ÖZEL CURSOR ==================== */
.custom-cursor {
  width: 40px;
  height: 40px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.1s ease;
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.1s ease;
}

.custom-cursor.cursor-hover {
  width: 60px;
  height: 60px;
  background: rgba(255, 107, 53, 0.1);
}

.cursor-dot.cursor-hover {
  width: 12px;
  height: 12px;
}

/* Mobile'de cursor'u gizle */
@media (max-width: 768px) {
  .custom-cursor,
  .cursor-dot {
    display: none;
  }
  body {
    cursor: auto;
  }
}

/* ==================== SCROLL PROGRESS BAR ==================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--gradient-accent);
  z-index: 10000;
  transition: width 0.2s ease;
  box-shadow: 0 0 10px var(--accent);
}

/* ==================== GECE MODU ==================== */
body.dark {
  background: linear-gradient(135deg, #0b1622 0%, #1a2332 100%);
  color: #f1f5f9;
}

body.dark .section {
  background: transparent;
}

body.dark .product-card,
body.dark .contact-item,
body.dark .stat {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark header,
body.dark footer {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
}

body.dark .btn-primary {
  background: linear-gradient(135deg, #ff7b45 0%, #ff5722 100%);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

body.dark .section h2 {
  color: #f1f5f9;
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

body.dark .about-text h3 {
  color: #f1f5f9;
}

body.dark .products {
  background: transparent;
}

/* ==================== LOADER ==================== */
#pageLoader {
  position: fixed;
  inset: 0;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
  color: white;
  animation: fadeOut 1s ease 3s forwards;
}

.loader-content {
  text-align: center;
  animation: scaleIn 0.5s ease both;
}

.loader-logo {
  width: 100px;
  margin-bottom: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.loader-spinner {
  width: 70px;
  height: 70px;
  border: 6px solid rgba(255, 255, 255, 0.2);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}

@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ==================== NAVBAR ==================== */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 61, 82, 0.95);
  color: white;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
}

#navbar.scrolled {
  background: rgba(26, 61, 82, 0.98);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.nav-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.logo:hover::after {
  width: 100%;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 3px solid var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.logo-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo:hover .logo-icon::before {
  opacity: 0.2;
}

.logo-icon img {
  width: 50px;
  height: auto;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

.logo-main {
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 1.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-sub {
  font-size: 0.7rem;
  opacity: 0.9;
  font-weight: 500;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 35px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  position: relative;
  font-size: 0.95rem;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
  width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent-light);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  transition: var(--transition);
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.btn-header {
  background: var(--gradient-accent);
  color: white;
  padding: 12px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-header:hover::before {
  opacity: 1;
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* ==================== HERO ==================== */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: zoomPan 25s ease-in-out infinite;
  filter: brightness(0.6);
  transition: transform 0.1s ease;
}

@keyframes zoomPan {
  0% { transform: scale(1) translateX(0); filter: brightness(0.6); }
  25% { transform: scale(1.08) translateX(-20px); }
  50% { transform: scale(1.15) translateX(20px); filter: brightness(0.55); }
  75% { transform: scale(1.08) translateX(-10px); }
  100% { transform: scale(1) translateX(0); filter: brightness(0.6); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 61, 82, 0.7) 0%, rgba(45, 95, 126, 0.5) 100%);
}

.hero-content {
  z-index: 2;
  padding: 30px;
  animation: fadeUp 1.2s ease both;
  max-width: 900px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
  font-size: 3.8rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  letter-spacing: -1px;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.3rem;
  opacity: 0.95;
  margin-bottom: 35px;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  border-radius: var(--radius);
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--gradient-accent);
  color: white;
  padding: 15px 35px;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 3px solid white;
  padding: 12px 32px;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
  background: var(--gradient-accent);
  color: white;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-outline-sm {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: var(--transition);
  font-weight: 600;
}

.btn-outline-sm:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* ==================== RIPPLE EFFECT ==================== */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: rippleEffect 0.6s ease-out;
  pointer-events: none;
}

@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ==================== THEME TOGGLE ==================== */
.theme-toggle {
  position: fixed;
  top: 95px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-accent);
  border: none;
  color: white;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  transition: var(--transition);
}

.theme-toggle:hover {
  transform: scale(1.15) rotate(15deg);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

/* ==================== SCROLL TOP BUTTON ==================== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--gradient-primary);
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  font-size: 1.2rem;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.scroll-top:hover {
  background: var(--gradient-accent);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5);
}

/* ==================== SECTIONS ==================== */
.section {
  padding: 100px 0;
  position: relative;
}

.section h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: -0.5px;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: var(--gradient-accent);
  border-radius: 10px;
}

.section h2::before {
  content: '';
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==================== ABOUT ==================== */
.about {
  background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-text h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 25px;
  font-weight: 800;
  line-height: 1.3;
}

.about-text p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  gap: 18px;
  margin: 35px 0;
}

.feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.feature:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
}

.feature i {
  color: var(--accent);
  font-size: 1.4rem;
  margin-top: 3px;
}

.feature p {
  margin: 0;
  font-weight: 500;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.stat {
  background: white;
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 3px solid var(--light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  opacity: 0.05;
  transition: left 0.5s ease;
}

.stat:hover::before {
  left: 0;
}

.stat:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.25);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(255, 107, 53, 0.1);
}

.stat p {
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
}

/* ==================== PRODUCTS ==================== */
.products {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 35px;
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  perspective: 1000px;
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.product-card:hover::before {
  opacity: 0.05;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}



.product-card:hover .image-carousel img {
  transform: scale(1.05);
}

.image-carousel img:nth-child(1) { animation-delay: 0s; }
.image-carousel img:nth-child(2) { animation-delay: 6s; }
.image-carousel img:nth-child(3) { animation-delay: 12s; }

@keyframes fadeImages {
  0%, 100% { opacity: 0; transform: scale(1); }
  8%, 25% { opacity: 1; transform: scale(1.02); }
  33% { opacity: 0; transform: scale(1.05); }
}

.product-info {
  padding: 30px;
  position: relative;
  z-index: 2;
}

.product-info h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.product-info p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.product-specs span {
  background: var(--light);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.product-specs span:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

.product-specs i {
  color: var(--accent);
  font-size: 1rem;
}

.product-specs span:hover i {
  color: white;
}

.product-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.product-actions .btn {
  flex: 1;
}

/* ==================== GALLERY ==================== */
.gallery {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  aspect-ratio: 4/3;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 61, 82, 0.8) 0%, rgba(255, 107, 53, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.gallery-item::before,
.gallery-overlay {
  pointer-events: none;
}


.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 3rem;
  color: white;
  animation: zoomPulse 1s ease-in-out infinite;
}

@keyframes zoomPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* ==================== LIGHTBOX (Ok Kontrollü - Mobil Uyumlu) ==================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.show {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: rgba(255,107,53,0.3);
  color: var(--accent);
  transform: rotate(90deg);
}

/* Ok butonları */
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  transition: background 0.3s ease, transform 0.2s ease;
}

.lightbox-arrow:hover {
  background: var(--accent);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-arrow.left { left: 25px; }
.lightbox-arrow.right { right: 25px; }

.lightbox-img.fade-in {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
  .lightbox-arrow {
    font-size: 1.5rem;
    padding: 8px 10px;
  }
  .lightbox-close {
    font-size: 2rem;
    width: 40px;
    height: 40px;
  }
  .lightbox-img {
    max-width: 95%;
    max-height: 70vh;
  }
}

/* ==================== CONTACT ==================== */
.contact {
  background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.contact-item {
  background: white;
  text-align: center;
  padding: 35px 25px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.contact-item:hover::before {
  transform: scaleX(1);
}

.contact-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
}

.contact-item i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 15px;
  transition: var(--transition);
}

.contact-item:hover i {
  transform: scale(1.2) rotate(10deg);
}

.contact-item h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-item a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.contact-item a:hover {
  color: var(--accent-dark);
  transform: scale(1.05);
}

/* ==================== MAP ==================== */
.map-area {
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid white;
}

.map-area iframe {
  filter: grayscale(20%);
  transition: filter 0.4s ease;
}

.map-area:hover iframe {
  filter: grayscale(0%);
}

/* ==================== POPUP ==================== */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(5px);
}

.popup.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.popup-content {
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.popup-content h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 800;
}

.popup-content p {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.popup-close:hover {
  color: var(--accent);
  background: rgba(255, 107, 53, 0.1);
  transform: rotate(90deg);
}

.popup-buttons {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.popup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: white;
  text-decoration: none;
  padding: 18px 25px;
  border-radius: 12px;
  transition: var(--transition);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  position: relative;
  overflow: hidden;
}

.popup-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popup-btn:hover::before {
  opacity: 1;
}

.mehmet-btn,
.ercan-btn {
  background: linear-gradient(135deg, #25d366 0%, #1ebe5d 100%);
}

.popup-btn:hover {
  transform: translateX(10px) scale(1.02);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.popup-btn i {
  font-size: 1.8rem;
}

.popup-btn strong {
  font-size: 1.1rem;
}

.popup-btn small {
  opacity: 0.9;
  font-size: 0.9rem;
}

/* ==================== PRODUCT GALLERY MODAL ==================== */
.product-gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-gallery-modal.show {
  opacity: 1;
}

.product-gallery-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 900px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.4s ease;
}

.product-gallery-content h2 {
  color: var(--primary);
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 800;
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.product-gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.product-gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--accent);
  transform: rotate(90deg);
}

/* ==================== FOOTER ==================== */
footer {
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  padding: 35px 25px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  to { left: 100%; }
}

footer p {
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

footer .back-top-link {
  display: inline-block;
  color: white;
  margin-top: 15px;
  text-decoration: none;
  transition: var(--transition);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

footer .back-top-link:hover {
  color: var(--accent-light);
  background: rgba(255, 107, 53, 0.2);
  transform: translateY(-3px);
}

/* ==================== WHATSAPP BUTTON ==================== */
.whatsapp-btn {
  position: fixed;
  bottom: 90px; /* Hafif yukarı çekildi */
  right: 25px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #1ebe5d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  z-index: 998;
  transition: background-color 0.2s linear;
  animation: pulse 2s ease-in-out infinite;
}


@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
  }
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.7);
}

.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -5px;
  border: 2px solid #25d366;
  border-radius: 50%;
  animation: rippleWave 2s ease-out infinite;
}

@keyframes rippleWave {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ==================== PARALLAX ==================== */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  position: relative;
}

/* ==================== FADE-IN ANIMATIONS ==================== */
[data-animate] {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].active {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-up"] {
  transform: translateY(60px);
}

[data-animate="fade-down"] {
  transform: translateY(-60px);
}

[data-animate="fade-left"] {
  transform: translateX(-60px);
}

[data-animate="fade-right"] {
  transform: translateX(60px);
}

[data-animate="fade-in"] {
  transform: scale(0.9);
}

[data-animate].active {
  transform: translate(0) scale(1);
}

/* Delay classes */
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="600"] { transition-delay: 0.6s; }
[data-delay="800"] { transition-delay: 0.8s; }

/* ==================== GLASSMORPHISM EFFECT ==================== */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ==================== GRADIENT TEXT ==================== */
.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==================== WAVE ANIMATION ==================== */
@keyframes wave {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(5deg); }
  75% { transform: translateY(10px) rotate(-5deg); }
}

.wave {
  animation: wave 3s ease-in-out infinite;
}

/* ==================== GLOW EFFECT ==================== */
.glow {
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.5),
              0 0 40px rgba(255, 107, 53, 0.3),
              0 0 60px rgba(255, 107, 53, 0.1);
}

/* ==================== NEUMORPHISM ==================== */
.neumorphic {
  background: #f0f0f0;
  box-shadow: 8px 8px 16px #d1d1d1,
              -8px -8px 16px #ffffff;
}

.neumorphic-inset {
  background: #f0f0f0;
  box-shadow: inset 8px 8px 16px #d1d1d1,
              inset -8px -8px 16px #ffffff;
}

/* ==================== SKELETON LOADER ==================== */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ==================== HOVER LIFT ==================== */
.hover-lift {
  transition: var(--transition);
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* ==================== ROTATE ON HOVER ==================== */
.rotate-hover {
  transition: transform 0.3s ease;
}

.rotate-hover:hover {
  transform: rotate(5deg) scale(1.05);
}

/* ==================== BLUR EFFECT ==================== */
.blur-on-hover {
  transition: filter 0.3s ease;
}

.blur-on-hover:hover {
  filter: blur(2px);
}

/* ==================== GRADIENT BORDER ==================== */
.gradient-border {
  position: relative;
  background: white;
  padding: 3px;
  border-radius: var(--radius);
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-accent);
  border-radius: var(--radius);
  z-index: -1;
}

/* ==================== SHAKE ANIMATION ==================== */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-10px); }
  75% { transform: translateX(10px); }
}

.shake {
  animation: shake 0.5s ease;
}

/* ==================== FLOATING ANIMATION ==================== */
@keyframes floating {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.floating {
  animation: floating 3s ease-in-out infinite;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .section h2 {
    font-size: 2.3rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: rgba(26, 61, 82, 0.98);
    backdrop-filter: blur(20px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .nav-menu.active {
    max-height: 400px;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 0;
    padding: 25px;
  }
  
  .nav-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
  }
  
  .nav-menu li:last-child {
    border-bottom: none;
  }

  .menu-toggle {
    display: flex;
  }

  .btn-header {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }
  
  .popup-content {
    padding: 35px 25px;
  }
  
  .product-gallery-content {
    padding: 25px;
  }
  
  .product-gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .theme-toggle {
    width: 45px;
    height: 45px;
    top: 85px;
    right: 20px;
  }
  
  .whatsapp-btn {
    width: 55px;
    height: 55px;
    bottom: 90px;
    right: 20px;
  }
  
  .scroll-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .section h2 {
    font-size: 1.8rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 12px 24px;
  }

  .popup-content {
    padding: 25px 20px;
  }
  
  .popup-content h2 {
    font-size: 1.5rem;
  }
  
  .about-text h3 {
    font-size: 1.5rem;
  }
  
  .about-text p {
    font-size: 0.95rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .product-info h3 {
    font-size: 1.2rem;
  }
  
  .contact-item {
    padding: 25px 20px;
  }
  
  .nav-container {
    height: 65px;
  }
  
  .logo-main {
    font-size: 1rem;
  }
  
  .logo-sub {
    font-size: 0.65rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== PRINT STYLES ==================== */
@media print {
  .theme-toggle,
  .scroll-top,
  .whatsapp-btn,
  .menu-toggle,
  .popup,
  .lightbox,
  #pageLoader,
  .scroll-progress {
    display: none !important;
  }
}

/* ==================== ACCESSIBILITY ==================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==================== HIGH CONTRAST MODE ==================== */
@media (prefers-contrast: high) {
  :root {
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
  }
  
  .btn {
    border: 2px solid currentColor;
  }
}

/* ==================== UTILITY CLASSES ==================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.align-center { align-items: center; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: 9999px; }

.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ======= DRAG-SCROLL GALERİ ======= */
.image-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 10px;
  height: 300px;
  background: #f1f5f9;
  border-radius: 14px;
  padding: 10px;
  cursor: grab;
  user-select: none;
  scroll-snap-type: x mandatory;
}
.image-carousel:active {
  cursor: grabbing;
}
.image-carousel::-webkit-scrollbar {
  display: none;
}
.image-carousel img {
  flex: 0 0 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  scroll-snap-align: center;
  transition: transform 0.3s ease, opacity 0.5s ease;
  opacity: 0;
}
.image-carousel img.loaded {
  opacity: 1;
}
.image-carousel img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}


.image-carousel {
  display: flex;
  overflow-x: hidden; /* sadece butonlarla kayacak */
  position: relative;
  height: 300px;
  border-radius: 14px;
  background: #f1f5f9;
}

.image-carousel img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, opacity 0.5s ease;
  opacity: 1; /* direk görünür olsun */
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  color: #1a3d52;
  border: none;
  font-size: 1.5rem;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
}
.carousel-arrow.left { left: 10px; }
.carousel-arrow.right { right: 10px; }
.carousel-arrow:hover {
  background: #ff6b35;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.fade-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.fade-bg.active {
  opacity: 1;
}

/* ======== FORM POPUP (DÜZ STİL) ======== */
#formPopup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

#formPopup.show {
  display: flex;
}

/* === Form gönderim durumları === */
#formStatus {
  margin-top: 15px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  min-height: 20px;
}

/* Yükleniyor animasyonu (nokta efekti) */
#formStatus.loading::after {
  content: '';
  display: inline-block;
  margin-left: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff6b35;
  animation: dots 1s infinite ease-in-out;
}

@keyframes dots {
  0%, 80%, 100% {
    box-shadow: 8px 0 0 0 #ff6b35, 16px 0 0 0 #ff6b35;
  }
  40% {
    box-shadow: 8px 0 0 -4px #ff6b35, 16px 0 0 4px #ff6b35;
  }
}

/* Başarılı gönderim */
#formStatus.success {
  color: #22c55e;
  animation: fadeInScale 0.4s ease forwards;
}

/* Hata durumu */
#formStatus.error {
  color: #ef4444;
  animation: fadeInScale 0.4s ease forwards;
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}


#formPopup .popup-content {
  background: #fff;
  padding: 35px 25px 25px;
  border-radius: 16px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  position: relative;
}

/* === Kapatma butonu — sade ve sabit === */
#formPopup .popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 26px;
  border: none;
  background: none;
  color: #333;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

/* === Form elemanları === */
#formPopup input,
#formPopup textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  outline: none;
}

#formPopup button {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: none;
  background: #ff6b35;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}

.mail-btn {
  position: fixed;
  bottom: 160px; /* Arada yaklaşık 20-25px fark */
  right: 25px;
  background-color: #ff6b35;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: background-color 0.2s linear;
  text-decoration: none;
}

.mail-btn:hover {
  background-color: #ff7b4a;
}

/* === Mobilde ikisini orantılı küçült === */
@media (max-width: 768px) {
  .whatsapp-btn,
  .mail-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
    right: 15px;
  }

  .whatsapp-btn {
    bottom: 70px;
  }

  .mail-btn {
    bottom: 125px; /* Aradaki fark ~20px */
  }
}



/* ====
================ END OF STYLESHEET ==================== */
