/* Micert Tool Ana Sayfa CSS - Koyu Yeşil Tema, Modern ve Efektli Tasarım */

:root {
  --primary-color: #0a2c18;         /* Ana koyu yeşil renk */
  --primary-dark: #051b0e;          /* Daha koyu yeşil */
  --primary-light: #1a4d31;         /* Açık yeşil */
  --secondary-color: #263238;       /* Koyu mavi-gri */
  --accent-color: #f39c12;          /* Turuncu aksan */
  --light-bg: #f1f5f2;              /* Açık arkaplan */
  --dark-bg: #1a2a30;               /* Koyu arkaplan */
  --text-light: #ecf0f1;            /* Açık metin */
  --text-dark: #263238;             /* Koyu metin */
  --text-muted: #607d8b;            /* Soluk metin */
  --card-bg: #ffffff;               /* Kart arkaplanı */
  --success-color: #0a2c18;         /* Başarı yeşil */
  --warning-color: #f39c12;         /* Uyarı turuncu */
  --danger-color: #e74c3c;          /* Tehlike kırmızı */
  --info-color: #3498db;            /* Bilgi mavi */
  --border-radius: 10px;            /* Köşe yuvarlaklığı */
  --box-shadow: 0 10px 20px rgba(10, 44, 24, 0.15);  /* Gölge */
}

/* ===== TEMEL STILLER ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Poppins', 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background-color: var(--light-bg);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="2" fill="%230a2c18" opacity="0.15"/></svg>');
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  animation: fadeIn 0.5s ease;
}

/* Sayfa genelinde hafif su dalgası efekti */
body:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.03;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1440" height="800" viewBox="0 0 1440 800"><path fill="%230a2c18" fill-opacity="0.5" d="M0,288L48,272C96,256,192,224,288,197.3C384,171,480,149,576,165.3C672,181,768,235,864,250.7C960,267,1056,245,1152,250.7C1248,256,1344,288,1392,304L1440,320L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: center;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-light);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  position: relative;
  background-color: var(--primary-color);
  background-image: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-color) 100%);
  background-size: 200% auto;
  color: white;
  box-shadow: 0 4px 10px rgba(10, 44, 24, 0.3);
  overflow: hidden;
  z-index: 1;
}

.btn-primary:hover {
  background-position: right center;
  animation: shine 1.5s infinite;
  color: white;
  box-shadow: 0 6px 15px rgba(10, 44, 24, 0.4);
}

.btn-primary:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transition: all 0.6s ease;
  z-index: -1;
}

.btn-primary:hover:before {
  left: 100%;
}

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

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

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

/* ===== NAVBAR STILI ===== */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 2px 15px rgba(10, 44, 24, 0.1);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(10, 44, 24, 0.08);
}

.navbar.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(10, 44, 24, 0.15);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.navbar-brand i {
  margin-right: 10px;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.navbar-brand:hover i {
  transform: rotate(15deg);
}

.navbar-brand:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary-color));
  transition: width 0.4s ease;
}

.navbar-brand:hover:after {
  width: 100%;
}

.navbar-menu {
  display: flex;
  align-items: center;
}

.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0 5px;
  position: relative;
  overflow: hidden;
}

.nav-link {
  display: block;
  padding: 10px 15px;
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}

.nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary-color));
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

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

.nav-link:hover:before,
.nav-link.active:before {
  transform: translateX(0);
}

.nav-link.active {
  color: var(--primary-color);
}

.nav-link i {
  margin-right: 5px;
  transition: transform 0.3s ease;
}

.nav-link:hover i {
  transform: translateY(-2px);
}

.navbar-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.navbar-toggle:hover {
  transform: scale(1.1);
}

.auth-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.auth-buttons .btn i {
  transition: transform 0.3s ease;
}

.auth-buttons .btn:hover i {
  transform: translateX(3px);
}

/* Responsive Navbar için Medya Sorguları */
@media (min-width: 992px) {
  .navbar-toggle {
    display: none;
  }
  
  .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  
  .navbar-nav {
    flex-direction: row;
  }
}

@media (max-width: 991.98px) {
  .navbar-container {
    padding: 0 15px;
  }
  
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 15px rgba(10, 44, 24, 0.1);
    padding: 10px 20px;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    z-index: 1000;
    display: none;
  }
  
  .navbar-collapse.show {
    display: block;
    animation: fadeIn 0.3s ease;
  }
  
  .navbar-nav {
    flex-direction: column;
    width: 100%;
    padding: 10px 0;
  }
  
  .navbar-nav .nav-item {
    margin: 0;
    width: 100%;
    text-align: center;
  }
  
  .navbar-nav .nav-link {
    padding: 12px 15px;
    width: 100%;
    display: block;
  }
  
  .auth-buttons {
    margin-top: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

/* ===== HERO BÖLÜMÜ ===== */
.hero-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(10, 44, 24, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.hero-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="2" fill="%230a2c18" opacity="0.2"/></svg>');
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
  animation: fadeInUp 1s ease;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
  position: relative;
  display: inline-block;
}

.hero-section h1:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary-color), var(--primary-light));
  background-size: 200% auto;
  animation: shine 3s linear infinite;
}

.hero-section .lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

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

/* ===== ÖZELLİKLER BÖLÜMÜ ===== */
.features-section {
  padding: 80px 0;
  background-color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.section-title:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-color);
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: var(--primary-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: var(--box-shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-top: 3px solid transparent;
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
  padding: 30px;
  text-align: center;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-top: 3px solid var(--primary-color);
}

.feature-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(10, 44, 24, 0.03) 100%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: -1;
  border-radius: var(--border-radius);
}

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

.feature-icon {
  font-size: 3rem;
  background: linear-gradient(120deg, var(--primary-light) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease;
  margin-bottom: 20px;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) translateY(-5px);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
  width: 100%;
  text-align: center;
}

.feature-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  width: 100%;
  text-align: center;
}

/* ===== SUNUCU DURUMU BÖLÜMÜ ===== */
.status-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.status-card {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.status-header {
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  color: white;
  padding: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.status-header i {
  margin-right: 10px;
  font-size: 1.4rem;
}

.status-table {
  width: 100%;
  border-collapse: collapse;
}

.status-table th {
  background-color: #f2f2f2;
  padding: 15px;
  text-align: left;
  font-weight: 600;
  color: var(--secondary-color);
}

.status-table td {
  padding: 15px;
  border-bottom: 1px solid #eee;
  color: var(--text-dark);
}

.status-table tr:last-child td {
  border-bottom: none;
}

.status-table tr:hover {
  background-color: rgba(10, 44, 24, 0.05);
}

.status-table tr:hover td {
  color: var(--primary-color);
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.badge-success {
  background-color: var(--primary-color);
  color: white;
}

.badge-warning {
  background-color: var(--warning-color);
  color: white;
}

.badge-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.badge-success:hover {
  box-shadow: 0 3px 6px rgba(10, 44, 24, 0.2);
  transform: translateY(-2px);
}

/* ===== SATICILAR BÖLÜMÜ ===== */
.resellers-section {
  padding: 80px 0;
  background-color: white;
}

.resellers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.reseller-card {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-top: 3px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.reseller-card:hover {
  transform: translateY(-10px);
  border-top: 3px solid var(--primary-color);
}

.reseller-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(10, 44, 24, 0.03) 100%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: -1;
}

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

.reseller-header {
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  color: white;
  padding: 15px 20px;
  font-weight: 600;
  font-size: 1.1rem;
}

.reseller-body {
  padding: 20px;
  flex-grow: 1;
}

.reseller-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

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

.reseller-info li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.reseller-info i {
  color: var(--primary-color);
  margin-right: 10px;
  min-width: 20px;
  text-align: center;
}

.reseller-info li:hover {
  transform: translateX(5px);
}

/* ===== ÖDEME YÖNTEMLERİ BÖLÜMÜ ===== */
.payment-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.payment-card {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  max-width: 900px;
  margin: 0 auto;
}

.payment-body {
  padding: 40px;
  text-align: center;
}

.payment-title {
  font-size: 1.4rem;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
}

.payment-method {
  display: flex;
  align-items: center;
  padding: 15px 25px;
  background: rgba(46, 204, 113, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(46, 204, 113, 0.2);
}

.payment-method:hover {
  transform: scale(1.05);
  background: rgba(46, 204, 113, 0.1);
}

.payment-method i {
  font-size: 1.8rem;
  margin-right: 10px;
}

.payment-method span {
  font-weight: 600;
  color: var(--text-dark);
}

.payment-paypal {
  color: #0070ba;
}

.payment-bank {
  color: #6c757d;
}

.payment-usdt {
  color: #26a17b;
}

.payment-btc {
  color: #f7931a;
}

/* ===== İLETİŞİM BÖLÜMÜ ===== */
.contact-section {
  padding: 80px 0;
  background-color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-card {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(10, 44, 24, 0.05);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(10, 44, 24, 0.12);
  border-color: rgba(10, 44, 24, 0.1);
}

.contact-header {
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.contact-header i {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
}

.contact-body {
  padding: 20px;
  text-align: center;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  background-color: rgba(10, 44, 24, 0.03);
  border-radius: 8px;
  transition: all 0.3s ease;
  color: var(--secondary-color);
  font-weight: 500;
}

.contact-link:hover {
  background-color: rgba(10, 44, 24, 0.08);
  color: var(--primary-color);
}

.contact-link i {
  color: var(--primary-color);
  font-size: 1.2rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.contact-link:hover i {
  opacity: 1;
  transform: translateX(0);
}

/* ===== FOOTER BÖLÜMÜ ===== */
.footer {
  background-color: var(--dark-bg);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.05"/></svg>');
  z-index: 0;
}

.footer-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 60px 0 30px;
}

.footer-col {
  position: relative;
}

.footer-title {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer-about p {
  color: #bdc3c7;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-text {
  color: #bdc3c7;
  line-height: 1.7;
  margin-bottom: 15px;
}

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

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

.footer-links a {
  color: #bdc3c7;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-links i {
  margin-right: 10px;
  color: var(--primary-color);
}

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.footer-social a:hover {
  transform: translateY(-8px) rotate(8deg);
  background-color: var(--primary-color);
}

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

.footer-links-bottom a {
  color: #bdc3c7;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-links-bottom a:hover {
  color: white;
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 15px 0;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.footer-copyright {
  text-align: center;
  color: #bdc3c7;
  font-size: 0.9rem;
}

.footer-copyright p {
  margin: 0;
}

.footer-copyright a {
  color: var(--primary-light);
  transition: all 0.3s ease;
}

.footer-copyright a:hover {
  color: white;
}

/* Responsive Footer Düzenlemeleri */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0 20px;
  }
  
  .footer-col {
    text-align: center;
  }
  
  .footer-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links a {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-links-bottom {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Contact responsiveness */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 576px) {
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .contact-header {
    padding: 15px;
  }
  
  .contact-header i {
    font-size: 1.5rem;
  }
  
  .contact-link {
    padding: 10px;
  }
}

/* ===== ANİMASYONLAR ===== */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes shine {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

/* Özel animasyonlu scroll efekti */
.reveal {
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.5s;
}

/* Özel scroll çubuğu */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(10, 44, 24, 0.05);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Önemli Bölümleri Vurgulama */
.section-title:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-color);
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: var(--primary-light);
}

/* Hero Section Efektleri */
.hero-section h1:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary-color), var(--primary-light));
  background-size: 200% auto;
  animation: shine 3s linear infinite;
}

/* Footer Efektleri */
.footer-social a {
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.footer-social a:hover {
  transform: translateY(-8px) rotate(8deg);
}

/* Page Transition Effect */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body {
  animation: fadeIn 0.5s ease;
}

