/* ==========================================================================
   KARALAR TEMİZLİK & TESİSAT - Ultra Hızlı & Modern Stil Dosyası
   Mobil Uyumlu | +95 PageSpeed Optimizasyonlu | Google Ads Uyumlu
   ========================================================================== */

:root {
  --primary: #0284c7;       /* Canlı Mavi (Tesisat & Güven) */
  --primary-dark: #0369a1;
  --primary-light: #e0f2fe;
  --secondary: #10b981;     /* Canlı Zümrüt Yeşili (Temizlik & Hijyen) */
  --secondary-dark: #047857;
  --secondary-light: #d1fae5;
  --accent: #f59e0b;        /* Amber / Vurgu */
  --dark: #0f172a;          /* Slate 900 */
  --dark-light: #1e293b;    /* Slate 800 */
  --text-main: #334155;     /* Slate 700 */
  --text-muted: #64748b;    /* Slate 500 */
  --bg-light: #f8fafc;      /* Slate 50 */
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --container-max: 1200px;
  --transition: all 0.25s ease-in-out;
}

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

html {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-white);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-bottom: 70px;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

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

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

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Top Bar */
.top-bar {
  background-color: var(--dark);
  color: #94a3b8;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  white-space: nowrap;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #38bdf8;
  font-weight: 500;
}

.top-bar-badge .live-dot {
  width: 8px;
  height: 8px;
  background-color: var(--secondary);
  border-radius: 50%;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.top-phones {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-phone-link {
  color: #f8fafc;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-phone-link:hover {
  color: #38bdf8;
}


/* Ultra-Responsive Clean Header & Nav Styles */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo-img {
  height: 52px;
  width: 52px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

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

.brand-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--secondary-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.main-nav {
  display: none;
}

@media (min-width: 1040px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}

.nav-item {
  position: relative;
  white-space: nowrap;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.75rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  white-space: nowrap !important;
  transition: var(--transition);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease-in-out;
  z-index: 1010;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-category-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.4rem 0.75rem 0.2rem;
  letter-spacing: 0.05em;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

.dropdown-link:hover {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  transform: translateX(4px);
}

.dropdown-divider {
  height: 1px;
  background-color: var(--border-color);
  margin: 0.4rem 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: #fff;
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.btn-header-call:hover {
  background-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}

.mobile-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-drawer.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-content {
  width: 85%;
  max-width: 360px;
  height: 100%;
  background-color: var(--bg-white);
  padding: 1.5rem;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-drawer.active .mobile-drawer-content {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.mobile-close-btn {
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--dark);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: var(--radius-sm);
  background-color: var(--bg-light);
}

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

.mobile-submenu-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0.75rem 0 0.25rem 0.5rem;
}

.mobile-sub-link {
  display: block;
  padding: 0.5rem 1rem 0.5rem 1.5rem;
  color: var(--text-main);
  font-size: 0.9rem;
  border-left: 2px solid var(--border-color);
}

.mobile-sub-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.mobile-drawer-contacts {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0b192c 0%, #1e3e62 100%);
  color: #fff;
  padding: 3.5rem 0 4.5rem;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(2, 132, 199, 0.25);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #38bdf8;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.15rem;
  }
}

.hero-title .highlight-blue {
  color: #38bdf8;
}

.hero-title .highlight-green {
  color: #34d399;
}

.hero-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  background-color: #1eb954;
  color: #fff;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary);
  color: #fff;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: #fff;
}

.btn-outline-white {
  background-color: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
}

.hero-feature-icon {
  width: 24px;
  height: 24px;
  background: rgba(56, 189, 248, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  flex-shrink: 0;
}

/* Quick Quote Card */
.quick-quote-card {
  background-color: var(--bg-white);
  color: var(--dark);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-quote-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.quick-quote-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
}

.quick-quote-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 0.85rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.form-control {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-light);
  color: var(--dark);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.kvkk-check-group {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 1rem 0;
}

.kvkk-check-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}

.kvkk-check-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.kvkk-check-text a {
  color: var(--primary);
  text-decoration: underline;
}

/* Sections */
.section {
  padding: 4rem 0;
}

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

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.75rem;
}

.section-badge {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-badge.green {
  background-color: var(--secondary-light);
  color: var(--secondary-dark);
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.4rem;
  }
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.service-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-color: var(--dark-light);
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.service-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--dark);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.65rem;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 1.25rem;
  line-height: 1.6;
  flex-grow: 1;
}

.service-features-list {
  margin-bottom: 1.25rem;
  border-top: 1px dashed var(--border-color);
  padding-top: 1rem;
}

.service-feature-point {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}

/* Why Us */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background-color: var(--bg-white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

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

.why-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.why-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* District Grid */
.district-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.85rem;
}

.district-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background-color: var(--bg-white);
  border: 1.5px solid var(--border-color);
  padding: 0.85rem 0.65rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  font-size: 0.95rem;
  transition: var(--transition);
}

.district-badge:hover {
  border-color: var(--primary);
  background-color: var(--primary-light);
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background-color: var(--bg-white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.review-stars {
  color: #f59e0b;
  display: flex;
  gap: 2px;
  margin-bottom: 0.85rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border-color);
  padding-top: 0.85rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.review-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.review-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* CTA Strip */
.cta-strip {
  background: linear-gradient(135deg, #0f172a 0%, #0369a1 100%);
  color: #fff;
  padding: 3.5rem 0;
  position: relative;
}

.cta-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .cta-strip-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.cta-strip-title {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.cta-strip-desc {
  color: #cbd5e1;
  font-size: 1rem;
}

.cta-strip-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #0b192c 0%, #1e3e62 100%);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.page-title {
  font-size: 2.15rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.page-breadcrumb a {
  color: #38bdf8;
}

.content-block {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-main);
}

.content-block h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--dark);
  margin: 2rem 0 1rem;
}

.content-block h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin: 1.5rem 0 0.65rem;
}

.content-block p {
  margin-bottom: 1.15rem;
}

.content-block ul {
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
}

.content-block ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}

.content-block ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 800;
}

.info-box {
  background-color: var(--bg-light);
  border-left: 4px solid var(--primary);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.5rem 0;
}

/* Footer */
.site-footer {
  background-color: #0b1120;
  color: #94a3b8;
  padding: 3.5rem 0 0;
  border-top: 3px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.25rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.15rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--primary);
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-contacts-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}

.footer-contacts-list a {
  color: #f8fafc;
  font-weight: 600;
}

.footer-contacts-list a:hover {
  color: #38bdf8;
}

.footer-links-list li {
  margin-bottom: 0.45rem;
}

.footer-links-list a {
  color: #94a3b8;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-links-list a:hover {
  color: #38bdf8;
  transform: translateX(4px);
}

/* Footer Bottom */
.footer-bottom {
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: #64748b;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    text-align: left;
  }
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.footer-legal-links a {
  color: #94a3b8;
}

.footer-legal-links a:hover {
  color: #38bdf8;
}

.footer-credit {
  color: #94a3b8;
  font-weight: 500;
}

.footer-credit a {
  color: #38bdf8;
  font-weight: 700;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* Mobile Fixed Bar */
.mobile-fixed-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  display: flex;
  z-index: 1500;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
}

@media (min-width: 992px) {
  .mobile-fixed-bar {
    display: none;
  }
}

.mobile-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}

.mobile-bar-btn.call-btn {
  background-color: var(--primary);
  color: #ffffff;
}

.mobile-bar-btn.whatsapp-btn {
  background-color: #25d366;
  color: #ffffff;
}


/* Hero Image Showcase */
.hero-showcase-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.15);
  background: var(--dark-light);
}

.hero-showcase-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hero-showcase-card:hover .hero-showcase-img {
  transform: scale(1.03);
}

.hero-showcase-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(11, 25, 44, 0.2) 0%, rgba(11, 25, 44, 0.6) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
}

.hero-floating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  backdrop-filter: blur(8px);
  width: fit-content;
}

.hero-floating-badge.badge-top {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.5);
  color: #38bdf8;
}

.hero-floating-badge.badge-bottom {
  background: rgba(16, 185, 129, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  align-self: flex-end;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Contact Card Items (Estetik İletişim Kutuları) */
.contact-card-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background-color: var(--bg-white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
}

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

.contact-card-item.whatsapp-highlight {
  border-color: #25d366;
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.contact-card-item.whatsapp-highlight:hover {
  box-shadow: 0 8px 20px -4px rgba(37, 211, 102, 0.3);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.contact-card-icon.blue {
  background-color: var(--primary-light);
  color: var(--primary);
}

.contact-card-icon.green {
  background-color: #dcfce7;
  color: #16a34a;
}

.contact-card-icon.purple {
  background-color: #f3e8ff;
  color: #9333ea;
}

.contact-card-icon.yellow {
  background-color: #fef3c7;
  color: #d97706;
}

.contact-card-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-card-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.contact-card-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* Reviews Expand / Load More Animation */
.review-item-hidden {
  display: none !important;
}

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


/* Strict Mobile Responsive Fixes - Zero Horizontal Overflow & Pure Alignment */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 576px) {
  .top-bar-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.25rem;
    font-size: 0.75rem;
  }
  .top-phones {
    gap: 0.75rem;
    justify-content: center;
  }
  .brand-title {
    font-size: 1.05rem !important;
  }
  .brand-subtitle {
    font-size: 0.65rem !important;
  }
  .brand-logo-img {
    width: 38px !important;
    height: 38px !important;
  }
  .hero-title {
    font-size: 1.85rem !important;
  }
  .section-title {
    font-size: 1.75rem !important;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
}
