/* ===========================================================
   MUĞLA YANGIN — Tasarım Token Sistemi
   Renkler: Alarm Kırmızısı / Kömür Siyahı / İkaz Turuncusu
   =========================================================== */
:root {
  --alarm-red: #C81E1E;
  --alarm-red-dark: #8E1414;
  --signal-orange: #FF6A00;
  --charcoal: #16181B;
  --charcoal-soft: #1F2227;
  --steel: #4A5057;
  --off-white: #F7F5F2;
  --paper: #FFFFFF;
  --led-green: #2ECC71;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.brand-text,
.btn-cta,
.section-eyebrow {
  font-family: var(--font-display);
  letter-spacing: .02em;
}

a {
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* ---------- Üst şerit ---------- */
.top-strip {
  background: var(--charcoal);
  color: #B9BDC4;
  font-size: .8rem;
  padding: 6px 0;
}

.top-strip-item {
  color: #B9BDC4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-strip a.top-strip-item:hover {
  color: var(--signal-orange);
}

.status-live {
  color: var(--led-green);
  font-weight: 600;
}

.led {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.led-green {
  background: var(--led-green);
  box-shadow: 0 0 6px var(--led-green);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .35;
  }
}

/* ---------- Navbar ---------- */
.site-header {
  background: var(--paper);
  box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--alarm-red), var(--alarm-red-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.brand-text {
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--charcoal);
}

.brand-accent {
  color: var(--alarm-red);
}

.nav-link {
  color: var(--charcoal) !important;
  font-weight: 500;
  font-size: .95rem;
  padding: .5rem 1rem !important;
}

.nav-link:hover {
  color: var(--alarm-red) !important;
}

.btn-cta {
  background: var(--alarm-red);
  color: #fff !important;
  font-weight: 600;
  padding: .55rem 1.3rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .2s;
}

.btn-cta:hover {
  background: var(--alarm-red-dark);
  transform: translateY(-1px);
}

.btn-outline-cta {
  border: 2px solid #fff;
  color: #fff !important;
  font-weight: 600;
  padding: .55rem 1.3rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .2s;
}

.btn-outline-cta:hover {
  background: #fff;
  color: var(--charcoal) !important;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(115deg, rgba(22, 24, 27, .94) 30%, rgba(22, 24, 27, .75) 100%),
    repeating-linear-gradient(135deg, #1c1e22 0 2px, #16181B 2px 40px);
  color: #fff;
  padding: 110px 0 90px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 106, 0, .18) 0%, transparent 70%);
  pointer-events: none;
}

.section-eyebrow {
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .18em;
  font-weight: 600;
  color: var(--signal-orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--signal-orange);
  display: inline-block;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 22px;
}

.hero h1 .hl {
  color: var(--signal-orange);
}

.hero p.lead {
  color: #C9CCD2;
  font-size: 1.08rem;
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 46px;
  flex-wrap: wrap;
}

.hero-stats .stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.hero-stats .stat-label {
  font-size: .82rem;
  color: #9CA0A7;
}

/* Alarm panel — imza görsel öğesi */
.panel {
  background: var(--charcoal-soft);
  border: 1px solid #2C3036;
  border-radius: 14px;
  padding: 26px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #2C3036;
}

.panel-head .ph-title {
  font-family: var(--font-display);
  font-size: .85rem;
  letter-spacing: .08em;
  color: #9CA0A7;
  text-transform: uppercase;
}

.panel-zone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #22262C;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 10px;
}

.panel-zone:last-child {
  margin-bottom: 0;
}

.zone-name {
  font-size: .88rem;
  color: #E5E7EA;
  font-weight: 500;
}

.zone-sub {
  font-size: .74rem;
  color: #8B8F96;
}

.zone-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  color: var(--led-green);
  font-weight: 600;
}

/* ---------- Genel bölüm ---------- */
.section {
  padding: 86px 0;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--steel);
  max-width: 620px;
  margin: 0 auto;
}

.bg-charcoal {
  background: var(--charcoal);
  color: #fff;
}

.bg-charcoal .section-sub {
  color: #A9ADB4;
}

/* ---------- Hizmet kartları ---------- */
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 26px;
  height: 100%;
  border: 1px solid #ECE9E3;
  transition: .25s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(22, 24, 27, .1);
  border-color: transparent;
}

.service-card .si {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: rgba(200, 30, 30, .08);
  color: var(--alarm-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--steel);
  font-size: .92rem;
  margin-bottom: 0;
}

.service-card .num {
  position: absolute;
  right: 18px;
  top: 14px;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: #F1EEE8;
  z-index: 0;
}

/* ---------- Neden biz ---------- */
.why-item {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
}

.why-ic {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: var(--charcoal);
  color: var(--signal-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.why-item h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.why-item p {
  color: var(--steel);
  font-size: .9rem;
  margin-bottom: 0;
}

/* ---------- Süreç ---------- */
.process-step {
  text-align: center;
  position: relative;
  padding: 0 10px;
}

.process-step .ps-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--alarm-red);
  color: var(--alarm-red);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

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

.process-step p {
  font-size: .85rem;
  color: var(--steel);
}

/* ---------- Bölgeler (GEO) ---------- */
.region-chip {
  background: #fff;
  border: 1px solid #ECE9E3;
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: .92rem;
  height: 100%;
  transition: .2s;
}

.region-chip:hover {
  border-color: var(--alarm-red);
  color: var(--alarm-red);
}

.region-chip i {
  color: var(--alarm-red);
}

/* ---------- Hakkımızda şeridi ---------- */
.about-strip {
  background: var(--alarm-red);
  color: #fff;
  padding: 90px 0;
}

.about-strip .section-eyebrow {
  color: #fff;
}

.about-strip .section-eyebrow::before {
  background: #fff;
}

.about-strip h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.3;
  max-width: 760px;
  margin: 0 auto 18px;
}

.about-text {
  color: rgba(255, 255, 255, .92);
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 760px;
}

.trust-badge {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  padding: 26px 20px;
  text-align: center;
  height: 100%;
  transition: .25s;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, .14);
  transform: translateY(-4px);
}

.trust-ic {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 16px;
}

.trust-badge h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.trust-badge p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 0;
}

/* ---------- SSS ---------- */
.accordion-item {
  border: none;
  border-bottom: 1px solid #E7E4DD;
  background: transparent;
}

.accordion-button {
  font-weight: 600;
  color: var(--charcoal);
  background: transparent;
  padding: 1.1rem 0;
}

.accordion-button:not(.collapsed) {
  color: var(--alarm-red);
  background: transparent;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after {
  filter: invert(20%) sepia(80%) saturate(2000%) hue-rotate(335deg);
}

.accordion-body {
  padding: 0 0 1.2rem;
  color: var(--steel);
}

/* ---------- İletişim ---------- */
.contact-wrap {
  background: var(--charcoal);
  border-radius: 18px;
  overflow: hidden;
}

.contact-info {
  background: var(--charcoal-soft);
  padding: 46px 38px;
  height: 100%;
  color: #fff;
}

.contact-info .ci-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-info .ci-link {
  color: #E5E7EA;
  transition: .2s;
}

.contact-info .ci-link:hover {
  color: var(--signal-orange);
}

.contact-info .ci-ic {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255, 106, 0, .12);
  color: var(--signal-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
}

.contact-form {
  padding: 46px 38px;
}

.contact-form .form-control,
.contact-form .form-select {
  background: #22262C;
  border: 1px solid #2C3036;
  color: #fff;
  padding: .7rem 1rem;
  border-radius: 8px;
}

.contact-form .form-control::placeholder {
  color: #7C8087;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: #22262C;
  border-color: var(--signal-orange);
  color: #fff;
  box-shadow: 0 0 0 .2rem rgba(255, 106, 0, .15);
}

.contact-form label {
  color: #C9CCD2;
  font-size: .85rem;
  margin-bottom: 6px;
}

.btn-submit {
  background: var(--signal-orange);
  color: #fff;
  font-weight: 600;
  padding: .75rem 1.6rem;
  border-radius: 8px;
  border: none;
  width: 100%;
  transition: .2s;
}

.btn-submit:hover {
  background: #E05F00;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: #B9BDC4;
}

.footer-baslik {
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 18px;
}

.footer-text {
  font-size: .88rem;
  line-height: 1.7;
}

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

.footer-link-list li {
  margin-bottom: 12px;
  font-size: .88rem;
}

.footer-link-list a {
  color: #B9BDC4;
}

.footer-link-list a:hover {
  color: var(--signal-orange);
}

.footer-link-list i {
  color: var(--signal-orange);
  width: 18px;
}

.social-ic {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #34383E;
  color: #B9BDC4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
}

.social-ic:hover {
  background: var(--alarm-red);
  border-color: var(--alarm-red);
  color: #fff;
}

.footer-bottom {
  background: #0F1113;
  font-size: .8rem;
}

.footer-bottom span {
  color: #7C8087;
}

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .25);
  z-index: 1000;
  transition: .2s;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  color: #fff;
}

/* Focus görünürlüğü (erişilebilirlik) */
a:focus-visible,
button:focus-visible,
.nav-link:focus-visible {
  outline: 2px solid var(--signal-orange);
  outline-offset: 2px;
}

@media (max-width: 991px) {
  .hero {
    padding: 90px 0 60px;
    text-align: center;
  }

  .hero p.lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    justify-content: center;
  }

  .section-eyebrow {
    justify-content: center;
  }

  .panel {
    margin-top: 40px;
  }
}

.site-logo {
  height: 58px;
  width: auto;
}

.contact-map {
  min-height: 460px;
  border-radius: 0 18px 18px 0;
  overflow: hidden;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
}