/*
Theme Name: Temizlik Pro
Theme URI: https://example.com
Author: Web Geliştirici
Description: Profesyonel temizlik hizmetleri için sıfırdan kodlanmış, SEO dostu, mobil uyumlu WordPress teması. cleanservice.com.sa'dan ilham alınmıştır.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: temizlik-pro
Tags: cleaning, business, service, responsive, seo-friendly, one-page
*/

:root {
  --primary: #0d2b5c;
  --secondary: #ff6b35;
  --light: #ffffff;
  --gray-bg: #f8f9fa;
  --text: #333333;
  --text-light: #666666;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--light);
}

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

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

a:hover {
  color: var(--secondary);
}

ul {
  list-style: none;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--secondary);
  color: white !important;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #e05a2a;
  color: white !important;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: var(--primary);
}

/* Header */
.site-header {
  background: var(--light);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo h1 a {
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.main-menu .menu {
  display: flex;
  gap: 25px;
}

.main-menu .menu a {
  font-weight: 600;
  color: var(--text);
  font-size: 1.05rem;
}

.main-menu .menu a:hover {
  color: var(--secondary);
}

/* Hero */
.hero {
  background: linear-gradient(rgba(13, 43, 92, 0.85), rgba(13, 43, 92, 0.9)), url('<?php echo get_template_directory_uri(); ?>/images/hero-bg.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 140px 0;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #e0e0e0;
}

/* Hizmetler */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-card h3 {
  margin: 15px 0 10px;
  color: var(--primary);
  font-size: 1.4rem;
}

.service-card p {
  color: var(--text-light);
}

/* Süreç */
.steps {
  background: var(--gray-bg);
}

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

.step-item {
  padding: 20px 10px;
}

.step-item i {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  line-height: 50px;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.step-item h4 {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1.2rem;
}

/* Footer */
.site-footer {
  background: var(--primary);
  color: white;
  padding: 50px 0 20px;
}

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

.widget-title {
  color: white;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.widget ul li {
  margin-bottom: 8px;
}

.widget ul li a {
  color: #ccc;
}

.widget ul li a:hover {
  color: white;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #bbb;
  font-size: 0.9rem;
}

/* Mobil */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 15px;
  }

  .main-menu .menu {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }
}