/* Konya Kuru Temizleme - Custom Styles */
:root {
  --primary: #1a3a5c;
  --primary-dark: #0f2844;
  --primary-light: #2d5a87;
  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --bg-light: #f4f6f8;
  --bg-white: #ffffff;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(26, 58, 92, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 58, 92, 0.1);
  --shadow-lg: 0 16px 40px rgba(26, 58, 92, 0.12);
  --radius: 12px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.25;
}

a {
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
  min-height: var(--header-height);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--border);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary) !important;
  letter-spacing: -0.02em;
}

.navbar-logo {
  height: 44px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  flex-shrink: 0;
}

.navbar-brand-text span {
  color: var(--accent);
}

.footer-logo {
  height: 56px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  margin-bottom: 1rem;
}

@media (max-width: 399.98px) {
  .navbar-brand-text {
    font-size: 0.95rem;
  }

  .navbar-logo {
    height: 38px;
  }
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  padding: 0.5rem 0.85rem !important;
  border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent) !important;
  background: rgba(59, 130, 246, 0.08);
}

.btn-call-header {
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--header-height) + 3rem) 0 4rem;
  background: linear-gradient(135deg, #f8fafc 0%, #eef4fb 50%, #f8fafc 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(26, 58, 92, 0.08);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 1.75rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-cta .btn {
  min-height: 48px;
  padding: 0.65rem 1.35rem;
  font-weight: 600;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-feature i {
  color: var(--accent);
  font-size: 1.1rem;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-stat-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: #fff;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* Buttons */
.btn-primary-custom {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
}

.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}

.btn-outline-primary-custom {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary-custom:hover {
  background: var(--primary);
  color: #fff;
}

.btn-whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  color: #fff;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-muted);
  margin: 0;
}

/* Service cards */
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(59, 130, 246, 0.3);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(26, 58, 92, 0.08));
  border-radius: 14px;
  margin-bottom: 1.25rem;
}

.service-card-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Region cards */
.region-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.region-card:hover {
  box-shadow: var(--shadow-md);
}

.region-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.region-card h3 i {
  color: var(--accent);
}

.region-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.region-card .btn-link-custom {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.region-card .btn-link-custom:hover {
  color: var(--accent-hover);
}

/* Trust bar */
.trust-bar {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.trust-item {
  text-align: center;
  padding: 0.5rem;
}

.trust-item i {
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.trust-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary-dark);
}

.trust-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* About teaser */
.about-teaser-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* FAQ */
.faq-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--primary-dark);
  padding: 1.15rem 1.25rem;
  background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(59, 130, 246, 0.06);
  color: var(--primary);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.faq-accordion .accordion-body {
  color: var(--text-muted);
  padding: 0 1.25rem 1.25rem;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 3.5rem 0;
  border-radius: var(--radius-lg);
  margin: 0 1rem;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-band p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.cta-band .btn-light {
  font-weight: 600;
  border-radius: 50px;
  min-height: 48px;
  padding: 0.65rem 1.5rem;
}

/* Contact */
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent);
  border-radius: 10px;
  flex-shrink: 0;
}

.contact-form .form-control,
.contact-form .form-select {
  min-height: 48px;
  border-radius: 10px;
  border-color: var(--border);
  padding: 0.65rem 1rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.contact-form textarea.form-control {
  min-height: 120px;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 320px;
  background: var(--bg-light);
}

.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  color: var(--text-muted);
  flex-direction: column;
  gap: 0.5rem;
}

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--header-height) + 2.5rem) 0 2.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.page-hero .breadcrumb {
  margin-bottom: 0;
}

.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
}

.page-hero .breadcrumb-item.active {
  color: #fff;
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.page-hero-lead {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

/* SEO content block */
.seo-content-block {
  max-width: 800px;
}

.seo-content-block h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.seo-content-block h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.seo-content-block p {
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 3.5rem 0 0;
}

.site-footer h5 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer a:hover {
  color: #fff;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-nap {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-nap i {
  color: var(--accent);
  margin-right: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Floating buttons */
.float-actions {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1020;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.35rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.float-btn:hover {
  transform: scale(1.08);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.float-btn-call {
  background: var(--primary);
}

.float-btn-whatsapp {
  background: #25d366;
}

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Process steps */
.process-step {
  text-align: center;
  padding: 1.5rem;
}

.process-step .step-num {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Team / values */
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  height: 100%;
}

.value-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* Utilities */
.text-accent {
  color: var(--accent) !important;
}

.bg-primary-custom {
  background: var(--primary) !important;
}

main {
  padding-top: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .service-card:hover {
    transform: none;
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  .hero {
    padding-bottom: 3rem;
  }

  .hero-image-wrap {
    margin-top: 2rem;
  }

  .cta-band {
    margin: 0;
    border-radius: 0;
  }
}

@media (max-width: 575.98px) {
  .section {
    padding: 3rem 0;
  }

  .float-actions {
    bottom: 1rem;
    right: 1rem;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}
