/* ===================
   Genel Ayarlar
=================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}

h1, h2, h3 {
  font-weight: 700;
  color: #222;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ===================
   Navbar
=================== */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: #ff6600;
}

.main-menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.main-menu a {
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: 0.3s;
}

.main-menu a:hover,
.main-menu a.active {
  background: #ff6600;
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
}

#menu.show {
  display: flex;
  flex-direction: column;
}

/* ===================
   Hero
=================== */
.page-hero {
  background: #f8f9fa;
  padding: 60px 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.hero-text h1 {
  font-size: 38px;
  margin-bottom: 20px;
}

.hero-text span {
  color: #ff6600;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-actions .cta-button {
  display: inline-block;
  background: #ff6600;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
}

.hero-actions .cta-button:hover {
  background: #e65c00;
}

.hero-media img {
  max-width: 100%;
  border-radius: 8px;
}

/* ===================
   Features
=================== */
.features {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.features h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.feature-box {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
  background: #fff;
}

.feature-box h3 {
  margin-bottom: 15px;
  color: #ff6600;
}

.feature-box p {
  font-size: 15px;
}

/* ===================
   CTA Strip
=================== */
.cta-strip {
  background: #ff6600;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.cta-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.cta-strip h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.cta-strip .cta-button {
  background: #fff;
  color: #ff6600;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
}

.cta-strip .cta-button:hover {
  background: #f1f1f1;
}

/* ===================
   Footer
=================== */
.site-footer {
  background: #222;
  color: #bbb;
  padding: 20px;
  text-align: center;
}

.site-footer a {
  color: #fff;
}

/* ===================
   WhatsApp Button
=================== */
.wa-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: 0.3s;
}

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

/* ===================
   Responsive
=================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-flex {
    flex-direction: column;
    text-align: center;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .main-menu ul {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 15px;
    border: 1px solid #eee;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  .hamburger {
    display: flex;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}
