:root {
  --primary: #0f2b5c;
  --primary-hover: #0a1e3f;
  --primary-light: #e8eef8;
  --accent-red: #dc2626;
  --accent-red-hover: #b91c1c;
  --accent-amber: #f59e0b;
  --accent-green: #16a34a;
  --accent-green-hover: #15803d;
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-alt: #f1f5f9;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --border-focus: #93c5fd;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --text-white: #ffffff;
  --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.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-red: 0 10px 25px -5px rgba(220, 38, 38, 0.35);
  --shadow-green: 0 10px 25px -5px rgba(22, 163, 74, 0.35);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1200px;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  padding-bottom: 76px; 
}
@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}
img, svg {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
h1, h2, h3, h4 {
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}
.topbar {
  background: var(--primary);
  color: var(--text-white);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.topbar-info {
  display: flex;
  align-items: center;
  gap: 18px;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
}
.topbar-item svg {
  width: 15px;
  height: 15px;
  fill: var(--accent-amber);
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-badge {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-red) 100%);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(15, 43, 92, 0.2);
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.logo-title span {
  color: var(--accent-red);
}
.logo-subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
}
.nav-link {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}
.nav-link:hover {
  color: var(--primary);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-red);
  transition: width 0.25s ease;
}
.nav-link:hover::after {
  width: 100%;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-red);
  color: var(--text-white);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-red);
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--accent-red-hover);
  transform: translateY(-2px);
}
.nav-cta svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.hero {
  position: relative;
  padding: 56px 0 64px;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-surface-alt) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(15, 43, 92, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fef2f2;
  border: 1px solid #fee2e2;
  color: var(--accent-red);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  width: fit-content;
}
.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: var(--accent-red);
  border-radius: 50%;
  position: relative;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: rgba(220, 38, 38, 0.4);
  animation: pulse 1.6s infinite ease-in-out;
}
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.8; }
  50% { transform: scale(1.4); opacity: 0.3; }
  100% { transform: scale(0.8); opacity: 0.8; }
}
.hero-title {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary);
  line-height: 1.18;
}
.hero-title span.highlight {
  color: var(--accent-red);
  position: relative;
  display: inline-block;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}
@media (min-width: 576px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition);
  text-align: center;
}
.btn-call {
  background: var(--accent-red);
  color: var(--text-white);
  box-shadow: var(--shadow-red);
  position: relative;
  overflow: hidden;
}
.btn-call:hover {
  background: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -5px rgba(220, 38, 38, 0.45);
}
.btn-whatsapp {
  background: var(--accent-green);
  color: var(--text-white);
  box-shadow: var(--shadow-green);
}
.btn-whatsapp:hover {
  background: var(--accent-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -5px rgba(22, 163, 74, 0.45);
}
.btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}
.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}
@media (min-width: 576px) {
  .hero-trust-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.trust-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.2;
}
.trust-text span {
  font-size: 0.78rem;
  color: var(--text-light);
}
.hero-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xl);
  position: relative;
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}
.hero-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-card-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.hero-card-title {
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 800;
  line-height: 1.2;
}
.hero-card-subtitle {
  font-size: 0.85rem;
  color: var(--text-light);
}
.hero-features-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.feature-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.feature-check svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-green);
  flex-shrink: 0;
  margin-top: 2px;
}
.hero-emergency-box {
  background: #fef2f2;
  border: 1px dashed #fca5a5;
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}
.emergency-box-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.emergency-box-phone {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: 0.5px;
  display: block;
}
.emergency-box-phone:hover {
  color: var(--accent-red);
}
.services-section {
  padding: 80px 0;
  background: var(--bg-body);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.service-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-focus);
}
.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon-box {
  background: var(--primary);
  color: white;
}
.service-icon-box svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}
.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: auto;
}
.service-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.2s ease;
}
.service-card:hover .service-link svg {
  transform: translateX(4px);
}
.why-section {
  padding: 80px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.why-item {
  text-align: center;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.why-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
.why-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.areas-section {
  padding: 80px 0;
  background: var(--bg-body);
}
.areas-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 992px) {
  .areas-container {
    grid-template-columns: 1.2fr 0.8fr;
  }
}
.areas-box {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.areas-box-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}
.areas-box-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-surface-alt);
  color: var(--text-main);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  cursor: pointer;
}
.area-badge:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.area-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-red);
  transition: transform 0.2s ease;
}
.area-badge:hover svg {
  fill: white;
  transform: scale(1.15);
}
.sanayi-box {
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a8a 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.sanayi-box .areas-box-title {
  color: white;
}
.sanayi-box .areas-box-desc {
  color: rgba(255, 255, 255, 0.8);
}
.sanayi-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sanayi-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  color: white;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.sanayi-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(6px);
  border-color: rgba(255, 255, 255, 0.4);
}
.sanayi-item svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-amber);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.sanayi-item:hover svg {
  transform: scale(1.2);
}
.faq-section {
  padding: 80px 0;
  background: var(--bg-surface);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question:hover {
  color: var(--primary);
}
.faq-toggle-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.faq-item.active .faq-answer {
  max-height: 1000px;
  padding-bottom: 20px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}
.cta-banner {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #0a1e3f 100%);
  color: white;
  text-align: center;
}
.cta-title {
  color: white;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.cta-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 28px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer {
  background: #08152c;
  color: #94a3b8;
  padding: 60px 0 24px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}
.footer-brand .logo-title {
  color: white;
}
.footer-desc {
  margin-top: 14px;
  line-height: 1.6;
}
.footer-heading {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a:hover {
  color: white;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #cbd5e1;
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-red);
  flex-shrink: 0;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
}
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-color);
  padding: 10px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
}
@media (min-width: 992px) {
  .mobile-sticky-bar {
    display: none;
  }
}
.mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 0.95rem;
  color: white;
  text-align: center;
}
.mobile-btn-call {
  background: var(--accent-red);
}
.mobile-btn-whatsapp {
  background: var(--accent-green);
}
.mobile-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}
.toast-msg {
  position: fixed;
  bottom: 86px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--primary);
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1000;
}
.toast-msg.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
