/* Wolvox Destek - Main CSS */
:root {
  --bg-dark: #0B1221;
  --bg-surface: #111D30;
  --accent: #F59E0B;
  --text: #F8F6F1;
  --text-muted: #9AA3B2;
  --green: #10B981;
  --syne: 'Syne', sans-serif;
  --dm-sans: 'DM Sans', sans-serif;
  --section-padding: 5rem 1rem;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text);
  font-family: var(--dm-sans);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--syne);
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-amber {
  background-color: var(--accent);
  color: #000;
}

.btn-amber:hover {
  background-color: #d97706;
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: var(--accent);
  color: #000;
}

/* Nav */
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.header-scrolled {
  background: rgba(11, 18, 33, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.1);
  padding: 0.75rem 0;
}

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

.nav-logo {
  font-size: 1.5rem;
  font-family: var(--syne);
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

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

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: radial-gradient(circle at center, rgba(245, 158, 11, 0.08) 0%, transparent 70%),
                    linear-gradient(rgba(245, 158, 11, 0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(245, 158, 11, 0.05) 1px, transparent 1px);
  background-size: 100% 100%, 60px 60px, 60px 60px;
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.dot-pulse {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero .hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* Stats Section */
.stats-bar {
  background: var(--bg-surface);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--accent);
}

/* Hizmetler Grid */
.hizmetler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.card {
  background: var(--bg-surface);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  border-color: rgba(245, 158, 11, 0.3);
}

.card:hover::before {
  width: 100%;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.card h3 {
  margin-bottom: 1rem;
}

.card .tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent);
  border-radius: 0.4rem;
  font-size: 0.75rem;
  margin-top: 1rem;
}

/* Nasıl Çalışır */
.works-section {
  padding: var(--section-padding);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.step {
  position: relative;
}

.step-num {
  font-family: var(--syne);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: -2.5rem;
  left: -0.5rem;
}

/* SSS Accordion */
.accordion {
  margin-top: 2rem;
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 0.5rem;
}

.accordion-header {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  color: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--dm-sans);
  font-weight: 600;
  font-size: 1.1rem;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

/* Footer & Other */
.footer {
  background: radial-gradient(circle at 50% 100%, rgba(245, 158, 11, 0.03) 0%, #060a12 100%);
  padding: 6rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
}

.footer-links h4, .footer-contact h4, .footer-social h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #fff;
  position: relative;
  display: inline-block;
}

.footer-links h4::after, .footer-contact h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-links ul { list-style: none; padding: 0; }
.footer-links ul li { margin-bottom: 0.75rem; }
.footer-links ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links ul li a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.contact-link:hover {
  color: var(--accent);
}

.footer-bottom {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(154, 163, 178, 0.5);
  background: rgba(0, 0, 0, 0.2);
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero .hero-actions { flex-direction: column; }
}

/* Accordion */
.accordion { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
.accordion-item { background: var(--bg-surface); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 1rem; overflow: hidden; transition: all 0.3s ease; }
.accordion-item:hover { border-color: rgba(245, 158, 11, 0.2); transform: translateY(-2px); }
.accordion-header { width: 100%; padding: 1.5rem; background: none; border: none; color: var(--text); font-size: 1.1rem; font-weight: 600; text-align: left; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: var(--syne); }
.accordion-header span { font-size: 1.5rem; line-height: 1; color: var(--accent); transition: transform 0.3s ease; }
.accordion-content { max-height: 0; padding: 0 1.5rem; overflow: hidden; color: var(--text-muted); line-height: 1.8; transition: all 0.3s ease; opacity: 0; }
.accordion-item.active .accordion-content { max-height: 500px; padding-bottom: 1.5rem; opacity: 1; }
.accordion-item.active .accordion-header span { transform: rotate(45deg); color: var(--text-muted); }
.accordion-item.active { border-color: var(--accent); background: rgba(245, 158, 11, 0.03); }
