@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #0f1115;
  --bg-surface: #181b21;
  --bg-surface-glass: rgba(24, 27, 33, 0.7);
  --primary: #f5a623;
  --primary-hover: #ffb845;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border-light: rgba(255, 255, 255, 0.05);
  
  --shadow-3d: 0 20px 40px -10px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  --shadow-glow: 0 10px 30px -10px rgba(245, 166, 35, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  --border-radius-large: 24px;
  --border-radius-medium: 16px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.text-primary { color: var(--primary); }
.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: #000;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.6);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

/* Typography */
h1, h2, h3, h4 {
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; margin-bottom: 2rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  background-color: transparent;
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background-color: var(--bg-surface-glass);
  padding: 15px 0;
  border-bottom: 1px solid var(--border-light);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  opacity: 0.8;
}

.nav-links a:hover, .nav-links a.active {
  opacity: 1;
  color: var(--primary);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/hero.png');
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(15, 17, 21, 0.95) 0%, rgba(15, 17, 21, 0.7) 50%, rgba(15, 17, 21, 0.3) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-weight: 700;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
  animation: slideUp 1s ease-out;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  animation: slideUp 1.2s ease-out;
}

.hero-actions {
  display: flex;
  gap: 15px;
  animation: slideUp 1.4s ease-out;
}

/* Sections */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Regions Grid */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.region-card {
  background: var(--bg-surface);
  border-radius: var(--border-radius-large);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-3d);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.region-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.region-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(245, 166, 35, 0.2);
}

.region-card:hover::before {
  transform: scaleX(1);
}

.region-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.region-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.region-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.logo ion-icon {
  color: var(--primary);
  font-size: 2.2rem;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* Features (Neden Biz) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-item {
  display: flex;
  gap: 20px;
  background: var(--bg-surface);
  padding: 30px;
  border-radius: var(--border-radius-large);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-3d);
  transition: var(--transition);
}

.feature-item:hover {
  transform: scale(1.02);
  border-color: rgba(245, 166, 35, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(245, 166, 35, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 1.3rem;
}

.feature-content p {
  color: var(--text-muted);
}

/* Testimonials */
.testimonials-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 10px 40px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}
.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 350px;
  background: var(--bg-surface);
  padding: 40px 30px;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-3d);
  position: relative;
  border: 1px solid var(--border-light);
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  color: rgba(245, 166, 35, 0.1);
  font-family: serif;
  line-height: 1;
}

.stars {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  color: #d1d5db;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-surface);
  margin-bottom: 15px;
  border-radius: var(--border-radius-medium);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
}

.faq-icon {
  color: var(--primary);
  transition: transform 0.3s;
}

.faq-item.active {
  box-shadow: var(--shadow-glow);
  border-color: rgba(245, 166, 35, 0.3);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  padding: 0 30px 25px;
  max-height: 200px; /* Adjust based on content */
}

/* Page Headers (for inner pages) */
.page-header {
  padding: 150px 0 80px;
  text-align: center;
  background: linear-gradient(to bottom, #11141a, var(--bg-dark));
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
}

.content-box {
  background: var(--bg-surface);
  border-radius: var(--border-radius-large);
  padding: 50px;
  box-shadow: var(--shadow-3d);
  border: 1px solid var(--border-light);
}

/* Footer */
footer {
  background: #0a0b0e;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Floating Action Buttons */
.fab-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: var(--transition);
  position: relative;
}

.fab-whatsapp {
  background-color: #25D366;
}

.fab-whatsapp:hover {
  background-color: #20ba59;
  transform: scale(1.1);
}

.fab-phone {
  background-color: var(--primary);
  color: #000;
}

.fab-phone:hover {
  background-color: var(--primary-hover);
  transform: scale(1.1);
}

/* Pulse Animation */
.fab::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
  animation: pulse 2s infinite;
}

.fab-whatsapp::before {
  background-color: rgba(37, 211, 102, 0.6);
}

.fab-phone::before {
  background-color: rgba(245, 166, 35, 0.6);
}

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

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: var(--bg-surface);
    flex-direction: column;
    padding: 80px 30px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    transition: 0.4s ease;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .hero {
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-actions {
    justify-content: center;
    flex-direction: column;
  }
  
  .fab-container {
    bottom: 20px;
    left: 20px;
    flex-direction: row;
    width: calc(100% - 40px);
    justify-content: space-between;
  }

  .fab {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .page-header {
    padding: 85px 0 20px;
  }
  
  .content-box {
    padding: 25px;
  }

  .testimonials-slider {
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 10px 5px 20px;
  }
  
  .testimonial-card {
    min-width: 85vw;
    padding: 30px 20px;
    scroll-snap-align: center;
  }
}
