/* ============================================
   HALI YIKAMA v1 - Temiz, Ferah, Hijyenik Tema
   ============================================ */

/* --- CSS Değişkenleri --- */
:root {
  --primary: #0ea5c0;
  --primary-light: #e0f7fa;
  --primary-dark: #0889a0;
  --secondary: #43b89c;
  --secondary-light: #e8f8f2;
  --accent: #f5c842;
  --accent-light: #fff9e6;
  --white: #ffffff;
  --off-white: #f8fafb;
  --light-gray: #f1f4f6;
  --gray: #e2e8ed;
  --text: #2d3a45;
  --text-light: #6b7c8a;
  --text-muted: #94a3b0;
  --border: #e2e8ed;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 15px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
  --shadow-hover: 0 8px 30px rgba(14,165,192,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

/* --- Genel Yardımcılar --- */
.section-padding {
  padding: 80px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

.bg-light-custom {
  background: var(--off-white);
}

.bg-primary-light {
  background: var(--primary-light);
}

.bg-secondary-light {
  background: var(--secondary-light);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.text-primary-custom {
  color: var(--primary) !important;
}

.text-secondary-custom {
  color: var(--secondary) !important;
}

.badge-custom {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

/* --- Butonlar --- */
.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary-custom {
  background: var(--secondary);
  color: var(--white);
  border: none;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary-custom:hover {
  background: #3aa88d;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 11px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border: none;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp:hover {
  background: #1fb855;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}

.btn-white-custom {
  background: var(--white);
  color: var(--primary);
  border: none;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-white-custom:hover {
  background: var(--off-white);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* --- Üst Bilgi Barı --- */
.top-bar {
  background: var(--primary);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar a {
  color: var(--white);
  opacity: 0.9;
}

.top-bar a:hover {
  opacity: 1;
  color: var(--white);
}

.top-bar i {
  margin-right: 5px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 20px;
}

.top-bar-badge {
  background: rgba(255,255,255,0.2);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* --- Ana Header --- */
.main-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  z-index: 1050;
}

.main-header.sticky-top {
  position: sticky;
  top: 0;
}

.main-header .navbar {
  padding: 12px 0;
}

.main-header .navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-header .navbar-brand span {
  color: var(--text);
  font-weight: 600;
}

.main-header .navbar-brand .brand-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.main-header .nav-link {
  color: var(--text);
  font-weight: 500;
  padding: 8px 16px !important;
  font-size: 0.93rem;
  transition: var(--transition);
  border-radius: 8px;
}

.main-header .nav-link:hover,
.main-header .nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}

.main-header .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 10px;
  margin-top: 8px;
}

.main-header .dropdown-item {
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.main-header .dropdown-item:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.header-cta .btn {
  padding: 10px 24px;
  font-size: 0.88rem;
}

.navbar-toggler {
  border: none;
  padding: 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* --- Hero Alanı --- */
.hero-section {
  background: linear-gradient(135deg, var(--primary-light) 0%, #f0fbfc 50%, var(--secondary-light) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14,165,192,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(67,184,156,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
}

.hero-title .highlight {
  color: var(--primary);
  position: relative;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem;
}

.hero-badge {
  background: var(--white);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.hero-badge i {
  color: var(--primary);
}

.hero-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}

.hero-form h5 {
  font-weight: 700;
  margin-bottom: 5px;
}

.hero-form p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.hero-form .form-control {
  border: 2px solid var(--gray);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.hero-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14,165,192,0.1);
}

.hero-form .form-select {
  border: 2px solid var(--gray);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.hero-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14,165,192,0.1);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* --- Avantajlar --- */
.advantage-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border);
  height: 100%;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.advantage-icon {
  width: 65px;
  height: 65px;
  background: var(--primary-light);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.advantage-card:hover .advantage-icon {
  background: var(--primary);
  color: var(--white);
}

.advantage-card h5 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}

.advantage-card p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* --- Hizmet Kartları --- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.service-card-img {
  height: 200px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-card-img i {
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.4;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-body {
  padding: 24px;
}

.service-card-body h5 {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.service-card-body p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.service-card-body .service-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-card-body .service-link:hover {
  gap: 10px;
}

/* --- Süreç Adımları --- */
.process-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-number {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.process-step-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
}

.process-step h5 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}

.process-step p {
  opacity: 0.85;
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* --- Neden Biz --- */
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  border: 1px solid var(--border);
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.why-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.why-card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
}

.why-card h5 {
  font-weight: 700;
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.why-card p {
  color: var(--text-light);
  font-size: 0.86rem;
  margin-bottom: 0;
}

/* --- Öncesi Sonrası --- */
.ba-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: var(--transition);
}

.ba-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.ba-images {
  display: flex;
  position: relative;
}

.ba-images .ba-img {
  flex: 1;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  position: relative;
}

.ba-before {
  background: #fce4e4;
  color: #c0392b;
}

.ba-after {
  background: var(--primary-light);
  color: var(--primary);
}

.ba-divider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--primary);
  box-shadow: var(--shadow);
  z-index: 5;
}

.ba-card-body {
  padding: 20px;
}

.ba-card-body h5 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.ba-card-body p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.ba-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.ba-badge-before {
  background: #fce4e4;
  color: #c0392b;
}

.ba-badge-after {
  background: #e0f7e0;
  color: #27ae60;
}

/* --- Fiyat Kartları --- */
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.price-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.price-card.featured {
  border: 2px solid var(--primary);
  position: relative;
}

.price-card.featured::before {
  content: 'Popüler';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 18px;
  border-radius: 50px;
}

.price-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--primary);
}

.price-card h5 {
  font-weight: 700;
  margin-bottom: 6px;
}

.price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin: 12px 0 4px;
}

.price-amount span {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.price-card .price-features {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  text-align: left;
}

.price-card .price-features li {
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-card .price-features li i {
  color: var(--secondary);
  font-size: 0.8rem;
}

/* --- Bölgeler --- */
.region-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
}

.region-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.region-card i {
  color: var(--primary);
  font-size: 1.1rem;
}

.region-card span {
  font-weight: 500;
  font-size: 0.92rem;
}

/* --- Galeri --- */
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.gallery-item .gallery-img {
  height: 250px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.gallery-item .gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

/* --- Müşteri Yorumları --- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.testimonial-stars {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.testimonial-text {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}

.testimonial-author h6 {
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 2px;
}

.testimonial-author small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* --- Kampanya --- */
.campaign-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.campaign-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.campaign-card-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 24px;
  text-align: center;
}

.campaign-discount {
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  margin-bottom: 4px;
}

.campaign-card-body {
  padding: 24px;
}

.campaign-card-body h5 {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.campaign-card-body p {
  color: var(--text-light);
  font-size: 0.88rem;
}

/* --- SSS / Accordion --- */
.faq-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  padding: 18px 24px;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--primary-light);
  color: var(--primary);
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  background-size: 1rem;
}

.faq-accordion .accordion-body {
  color: var(--text-light);
  font-size: 0.92rem;
  padding: 0 24px 18px;
  line-height: 1.7;
}

/* --- Blog Kartları --- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.blog-card-img {
  height: 200px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 24px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.blog-card-meta i {
  margin-right: 3px;
}

.blog-card-body h5 {
  font-weight: 700;
  font-size: 1.02rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card-body h5 a {
  color: var(--text);
}

.blog-card-body h5 a:hover {
  color: var(--primary);
}

.blog-card-body p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 14px;
}

.blog-read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-read-more:hover {
  gap: 10px;
}

/* --- CTA Alanı --- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--secondary) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.cta-section p {
  opacity: 0.9;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* --- Footer --- */
.footer {
  background: #1a2a35;
  color: #c5d0d8;
  padding: 60px 0 0;
}

.footer h5 {
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.footer p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #9ab0be;
}

.footer a {
  color: #9ab0be;
  transition: var(--transition);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.footer-logo .brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

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

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

.footer-links a {
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 3px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 40px;
  font-size: 0.85rem;
  color: #7a8e9a;
}

/* --- Sayfa Başlık Alanı (İç Sayfalar) --- */
.page-header {
  background: linear-gradient(135deg, var(--primary-light) 0%, #f0fbfc 50%, var(--secondary-light) 100%);
  padding: 50px 0 40px;
  text-align: center;
  position: relative;
}

.page-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.page-header p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.breadcrumb-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.88rem;
}

.breadcrumb-custom a {
  color: var(--primary);
}

.breadcrumb-custom span {
  color: var(--text-muted);
}

/* --- İletişim --- */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 18px;
  height: 100%;
}

.contact-info-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
}

.contact-info-card h6 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info-card p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 0;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid var(--gray);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.92rem;
  transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14,165,192,0.1);
}

.contact-form textarea.form-control {
  min-height: 130px;
}

/* --- Servis Talebi Form --- */
.service-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.trust-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.trust-point-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}

.trust-point h6 {
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 3px;
}

.trust-point p {
  color: var(--text-light);
  font-size: 0.84rem;
  margin-bottom: 0;
}

/* --- Blog Detay --- */
.blog-detail-header {
  padding: 50px 0 30px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
}

.blog-detail-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blog-detail-meta i {
  margin-right: 4px;
  color: var(--primary);
}

.blog-content {
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--text);
}

.blog-content h2,
.blog-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.blog-content p {
  margin-bottom: 1.2rem;
}

.blog-content ul, .blog-content ol {
  margin-bottom: 1.2rem;
  padding-left: 20px;
}

.blog-content li {
  margin-bottom: 6px;
}

/* --- Fiyat Tablosu --- */
.price-table {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.price-table table {
  margin-bottom: 0;
}

.price-table thead {
  background: var(--primary);
  color: var(--white);
}

.price-table thead th {
  font-weight: 600;
  padding: 14px 20px;
  border: none;
  font-size: 0.92rem;
}

.price-table tbody td {
  padding: 14px 20px;
  font-size: 0.9rem;
  border-color: var(--border);
  vertical-align: middle;
}

.price-table tbody tr:hover {
  background: var(--primary-light);
}

/* --- Sabit Butonlar --- */
.fixed-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 9999;
  transition: var(--transition);
  text-decoration: none;
}

.fixed-whatsapp:hover {
  transform: scale(1.1);
  color: var(--white);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.fixed-phone {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(14,165,192,0.4);
  z-index: 9999;
  transition: var(--transition);
  text-decoration: none;
}

.fixed-phone:hover {
  transform: scale(1.1);
  color: var(--white);
  box-shadow: 0 6px 30px rgba(14,165,192,0.5);
}

/* --- Mobil Alt Bar --- */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
  z-index: 9998;
  padding: 8px 0;
}

.mobile-bottom-bar a {
  flex: 1;
  text-align: center;
  padding: 8px 5px;
  font-size: 0.72rem;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.mobile-bottom-bar a i {
  font-size: 1.2rem;
}

.mobile-bottom-bar a.active,
.mobile-bottom-bar a:hover {
  color: var(--primary);
}

.mobile-bottom-bar .bar-whatsapp {
  color: #25D366;
}

.mobile-bottom-bar .bar-phone {
  color: var(--primary);
}

/* --- Genel İçerik Sayfası --- */
.content-page h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.content-page h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  margin-top: 1.5rem;
}

.content-page p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.content-page ul {
  color: var(--text-light);
  padding-left: 20px;
}

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

/* --- Sayfa İçi CTA --- */
.inline-cta {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
}

.inline-cta h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

.inline-cta p {
  color: var(--text-light);
  margin-bottom: 20px;
}

/* --- Swiper Ayarları --- */
.swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

/* --- Animasyonlar --- */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-form {
    margin-top: 30px;
  }

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

  .section-padding {
    padding: 60px 0;
  }

  .top-bar {
    display: none;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-section {
    padding: 50px 0 40px;
  }

  .section-padding {
    padding: 50px 0;
  }

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

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .mobile-bottom-bar {
    display: flex;
  }

  .fixed-whatsapp,
  .fixed-phone {
    bottom: 80px;
  }

  .fixed-whatsapp {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
    right: 20px;
  }

  .fixed-phone {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
    left: 20px;
  }

  .footer {
    padding-bottom: 70px;
  }

  .page-header h1 {
    font-size: 1.7rem;
  }

  .service-form-card {
    padding: 24px;
  }

  .hero-form {
    padding: 24px;
  }
}

@media (max-width: 575px) {
  .hero-badges {
    flex-direction: column;
  }

  .hero-badge {
    font-size: 0.8rem;
  }

  body {
    font-size: 14px;
  }
}

/* --- Lightbox / Modal --- */
.modal-gallery .modal-content {
  border-radius: var(--radius-lg);
  border: none;
}

.modal-gallery .modal-body {
  padding: 0;
}

.modal-gallery img {
  border-radius: var(--radius-lg);
}

/* --- Kampanya Detay Banner --- */
.campaign-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.campaign-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.campaign-banner h3 {
  font-weight: 800;
  font-size: 1.8rem;
}

/* --- Loading Shimmer --- */
.placeholder-img {
  background: linear-gradient(110deg, var(--light-gray) 8%, #f5f7f9 18%, var(--light-gray) 33%);
  background-size: 200% 100%;
  animation: shimmer 1.5s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 2.5rem;
}

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

/* --- Seçim / Filtre Etiketleri --- */
.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  justify-content: center;
}

.filter-tag {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}

.filter-tag:hover,
.filter-tag.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* --- Counter --- */
.counter-box {
  text-align: center;
  padding: 20px;
}

.counter-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
}

.counter-label {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 4px;
}

/* --- İç Sayfa Sidebar --- */
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.sidebar-card h5 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-light);
}

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

.sidebar-links li {
  margin-bottom: 6px;
}

.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
}

.sidebar-links a:hover,
.sidebar-links a.active {
  background: var(--primary-light);
  color: var(--primary);
}

/* --- Scroll to top --- */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 42px;
  height: 42px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  z-index: 9990;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.scroll-top:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.scroll-top.show {
  display: flex;
}

@media (max-width: 767px) {
  .scroll-top {
    bottom: 150px;
    right: 20px;
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
}

/* --- Sayfa Başlığı Arka Plan Görseli --- */
.page-header-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.page-header-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(14,165,192,0.88), rgba(67,184,156,0.88));
}

.page-header-bg > .container {
  position: relative;
  z-index: 1;
}

/* --- Öncesi/Sonrası Gerçek Görsel --- */
.ba-img-real {
  background-size: cover;
  background-position: center;
  position: relative;
}

.ba-before.ba-img-real::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(192, 57, 43, 0.35);
}

.ba-after.ba-img-real::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 165, 192, 0.25);
}

.ba-img-real .text-center {
  position: relative;
  z-index: 2;
}

/* --- CTA Arka Plan Görseli --- */
.cta-section.cta-bg {
  background-size: cover;
  background-position: center;
}

.cta-section.cta-bg::before {
  background: linear-gradient(135deg, rgba(14,165,192,0.92), rgba(8,137,160,0.92), rgba(67,184,156,0.92));
}

/* --- Hero Arka Plan Görseli --- */
.hero-section.hero-bg {
  background-image: url('https://images.pexels.com/photos/8774376/pexels-photo-8774376.jpeg?auto=compress&cs=tinysrgb&w=1400&h=700&fit=crop');
  background-size: cover;
  background-position: center;
}

.hero-section.hero-bg::before,
.hero-section.hero-bg::after {
  display: none;
}

/* --- Neden Biz Görseli --- */
.why-us-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.why-us-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* --- Placeholder Img Override --- */
.placeholder-img {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.placeholder-img i {
  font-size: 2.5rem;
  opacity: 0.3;
}
