@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

@media (max-width: 767px) {
  body {
    padding-bottom: 0;
  }
  main {
    padding-bottom: calc(110px + env(safe-area-inset-bottom));
  }
}
body {
  font-family: Arial, sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  background: linear-gradient(90deg, rgba(31, 127, 214, 0.3), rgba(28, 154, 160, 0.7), rgba(42, 191, 106, 0.9));
  color: white;
  backdrop-filter: blur(26px);
  border-bottom: 1px solid #ddd;
  padding: 12px 16px;
  z-index: 1000;
}
@media (max-width: 768px) {
  .site-header {
    background: linear-gradient(90deg, rgba(31, 127, 214, 0.2), rgba(28, 154, 160, 0.3), rgba(42, 191, 106, 0.6));
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}

/* Logo */
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #111;
}
.brand img {
  display: block;
  height: 72px !important;
  width: auto;
}
@media (max-width: 768px) {
  .brand img {
    height: 50px !important;
  }
}

/* Desktop nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 14px;
}
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 18px !important;
  text-decoration: none;
  color: #000 !important;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 160ms ease, color 160ms ease;
}
.nav-link:hover {
  background: rgba(0, 0, 0, 0.06);
  transform: translateX(2px);
}

.nav-link,
.nav-dropdown__toggle {
  white-space: nowrap;
}

/* Aktif menü item */
.nav-link[aria-current=page],
.mobile-link[aria-current=page],
.mobile-sublink[aria-current=page] {
  color: #0f172a;
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.82), rgba(34, 197, 94, 0.82));
  border: 1px solid rgba(14, 165, 233, 0.85);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

/* Hover’da aktif link zıplamasın */
.nav-link[aria-current=page]:hover,
.mobile-link[aria-current=page]:hover,
.mobile-sublink[aria-current=page]:hover {
  transform: none;
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.99), rgba(34, 197, 94, 0.99));
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown__toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600; /* garanti */
  color: #111; /* garanti */
  padding: 8px 10px; /* linklerle aynı hissiyat */
  border-radius: 8px;
  transition: background 160ms ease, color 160ms ease;
}
.nav-dropdown__toggle:hover {
  background: rgba(0, 0, 0, 0.06);
  transform: translateX(2px);
}
.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 10;
}
.nav-dropdown__menu a {
  display: block;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: #333 !important;
  font-weight: 600;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}
.nav-dropdown__menu a:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #111 !important;
  transform: translateX(2px);
}
.nav-dropdown {
  /* Hover + keyboard focus ile aç */
}
.nav-dropdown:hover .nav-dropdown__menu, .nav-dropdown:focus-within .nav-dropdown__menu {
  display: block;
}

/* Desktop: Hizmetler toggle aktif */
.nav-dropdown__toggle.is-active {
  color: #0f172a;
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.99), rgba(34, 197, 94, 0.99));
  border: 1px solid rgba(14, 165, 233, 0.85);
}

/* Mobile hamburger */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle__icon {
  display: block;
}

/* 🔥 Hamburger -> X geçişi */
.nav-toggle__icon--close {
  display: none;
}

.nav-toggle.is-open .nav-toggle__icon--menu {
  display: none;
}

.nav-toggle.is-open .nav-toggle__icon--close {
  display: block;
}

/* Mobile drawer (şimdilik kapalı dursun) */
/* Mobile drawer (animasyonlu) */
.mobile-menu {
  /* display: none;  <-- bunu kaldırıyoruz */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  padding: 0 16px; /* kapalıyken padding şişirmesin */
  margin: 0;
  width: 100%;
  background: linear-gradient(90deg, rgba(31, 127, 214, 0.01), rgba(28, 154, 160, 0.03), rgba(42, 191, 106, 0.03));
  border-radius: 10px;
  transition: max-height 280ms ease, opacity 200ms ease, transform 220ms ease, padding 220ms ease;
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important; /* desktop’ta görünmesin */
  }
}

.mobile-menu.is-open {
  max-height: 80vh; /* içerik artarsa da açılabilsin */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  padding: 16px; /* açıkken gerçek padding */
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu {
    transition: none;
  }
}
.mobile-menu__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.mobile-link,
.mobile-sublink {
  text-decoration: none;
  color: #111;
  font-weight: 700; /* hepsi eşit */
  font-size: 16px; /* hepsi eşit */
  line-height: 1.2;
  padding: 10px 10px;
  border-radius: 10px;
  transition: background 160ms ease, color 160ms ease;
}
.mobile-link:hover,
.mobile-sublink:hover {
  background: rgba(0, 0, 0, 0.06);
  transform: translateX(2px);
}

.mobile-accordion {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 10px 10px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 16px;
  color: #111;
  transition: background 160ms ease, color 160ms ease;
  cursor: pointer;
}

.mobile-accordion:hover {
  background: rgba(0, 0, 0, 0.06);
}

.mobile-submenu {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 0; /* oklar zaten padding-left ile ayarlı */
}

.mobile-submenu[hidden] {
  display: none !important;
}

/* Mobil ana menü okları */
.mobile-link {
  position: relative;
  padding-left: 34px; /* ok için yer */
}

.mobile-link::before {
  content: "›";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  opacity: 0.8;
}

/* Mobil alt menü okları */
.mobile-sublink {
  position: relative;
  padding-left: 44px; /* bir tık daha içerden */
}

.mobile-sublink::before {
  content: "•";
  position: absolute;
  left: 35px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  opacity: 0.7;
}

/* Mobilde "açılır" ok işareti (Hizmetler) */
.mobile-accordion {
  position: relative;
  padding-right: 38px; /* sağ ok için yer */
}

.mobile-accordion::after {
  content: "▾"; /* kapalı durum */
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  opacity: 0.8;
}

/* Mobilde "Hizmetler" satırının soluna da ok ekle */
.mobile-accordion {
  padding-left: 34px; /* sol ok için yer */
}

.mobile-accordion::before {
  content: "›";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  opacity: 0.8;
}

/* Desktop dropdown aktif alt link */
.nav-dropdown__menu a[aria-current=page] {
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.22), rgba(34, 197, 94, 0.22));
  border: 1px solid rgba(14, 165, 233, 0.85);
  color: #000 !important;
}

body.menu-open {
  overflow: hidden;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(31, 127, 214, 0.4), rgba(28, 154, 160, 0.7), rgba(42, 191, 106, 0.9));
  border-top: 0;
  padding: 28px 16px;
  color: rgba(255, 255, 255, 0.92);
  /* 👇 Ultra Soft ışık katmanı */
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.18), transparent 65%);
  pointer-events: none;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Üst satır: Logo + sosyal ikonlar */
.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.footer-brand img {
  display: block;
  height: 50px;
  width: auto;
  border-radius: 20px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

/* Link grid: 4 sütun  + 5. sütun (legal) */
.footer-grid {
  display: grid;
  gap: 25px;
  /* MOBIL (varsayılan): tek sütun */
  grid-template-columns: 1fr;
  grid-template-areas: "brand" "m1" "m2" "m3" "legal";
  justify-items: center;
  text-align: center;
  align-items: start;
  /* SM (>=640): brand üstte, altta 2x2 menü BLOĞU ortada */
}
@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: "brand brand" "m1    m2" "m3    legal";
    justify-items: center;
    text-align: center;
    align-items: start;
  }
}
.footer-grid {
  /* MD (>=768): brand solda 2 satır; sağdaki 4 menü 2x2 ve ORTALI */
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-areas: "brand m1    m2" "brand m3    legal";
    -moz-column-gap: 32px;
         column-gap: 32px;
    row-gap: 22px;
    /* sağdaki blok ortada dursun, legal sağa kaçmasın */
    justify-items: center;
    align-items: center;
    text-align: left;
  }
}
.footer-grid {
  /* LG (>=1024): 5 sütun tek satır */
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    grid-template-areas: "brand m1 m2 m3 legal";
    justify-items: start;
    align-items: center;
    text-align: left;
    gap: 34px;
  }
}

/* Area mapping */
.footer-area--brand {
  grid-area: brand;
}

.footer-area--m1 {
  grid-area: m1;
}

.footer-area--m2 {
  grid-area: m2;
}

.footer-area--m3 {
  grid-area: m3;
}

.footer-area--legal {
  grid-area: legal;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col--brand {
  text-align: center;
}
@media (min-width: 768px) {
  .footer-col--brand {
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .footer-col--brand {
    padding-right: 40px; /* lg’de nefes */
  }
}
@media (min-width: 1280px) {
  .footer-col--brand {
    padding-right: 56px; /* xl’de daha rahat */
  }
}

.footer-col--brand .footer-brand {
  justify-content: center;
}

.footer-col--brand .footer-social {
  justify-content: center;
}

.footer-about {
  margin: 14px 0 16px;
  max-width: 42ch;
  line-height: 1.6;
  font-size: 14px;
  color: black;
  font-weight: bold;
  text-align: justify;
}
@media (min-width: 768px) {
  .footer-about {
    width: 100%;
  }
}

.footer-col--brand .footer-brand img {
  height: 58px;
  width: auto;
}

.footer-link {
  text-decoration: none;
  color: black !important;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.25;
  transition: color 160ms ease, transform 160ms ease, background 160ms ease;
}
@media (min-width: 768px) {
  .footer-link {
    font-size: 16px;
  }
}
.footer-link:hover {
  color: rgba(255, 255, 255, 0.95) !important;
  transform: translateX(2px);
}

/* Divider */
.footer-divider {
  border: 0;
  border-top: 1px solid #eaeaea;
  margin: 22px 0 14px;
}

/* En alt satır */
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copy,
.footer-credit {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
}

.footer-credit__link {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  text-decoration: none;
}
.footer-credit__link:hover {
  text-decoration: underline;
  color: rgb(255, 255, 255);
}

.footer-link {
  color: rgba(255, 255, 255, 0.92);
}
.footer-link:hover {
  color: #ffffff;
}

.footer-copy,
.footer-credit {
  color: black;
}

.footer-credit__link {
  color: #000;
}
.footer-credit__link:hover {
  text-decoration: underline;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
}
.social-link svg {
  display: block;
}

/* Instagram normalde de renkli olsun */
.social-link--instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  border-color: transparent;
  opacity: 0.9;
}

/* Hover: sadece biraz daha pop */
.social-link--instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(221, 42, 123, 0.35);
  opacity: 1;
}

/* Instagram özel hover */
.social-link--instagram:hover {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  border-color: transparent;
  color: #ffffff;
}

/* Mail default stil */
.social-link--mail {
  background: linear-gradient(120deg, #1f7fd6 0%, #1c9aa0 45%, #2abf6a 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.social-link--mail:hover {
  background: linear-gradient(135deg, #0e5bb5, #1f7fd6);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(31, 127, 214, 0.45), 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.social-link--mail:active {
  transform: scale(0.96);
}

.floating-actions {
  position: fixed;
  right: 16px;
  bottom: 100px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ✅ Tablet bandı: footer yazılarını kapatmasın */
@media (min-width: 768px) and (max-width: 1310px) {
  .floating-actions {
    right: 12px;
    bottom: 260px;
    gap: 8px;
  }
}
.floating-actions__btn {
  width: 82px;
  height: 82px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}
.floating-actions__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  filter: brightness(1.06);
}
.floating-actions__btn:active {
  transform: translateY(0);
}
.floating-actions__btn svg {
  display: block;
}

@media (max-width: 1310px) {
  .floating-actions__btn {
    width: 52px;
    height: 52px;
  }
}
/* WhatsApp */
.floating-actions__btn--whatsapp {
  background: #25d366;
  border: none;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.35);
}
.floating-actions__btn--whatsapp svg {
  width: 78px;
  height: 78px;
}

.floating-actions__btn--whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.45);
}

/* Call */
.floating-actions__btn--call {
  background: #0f172a;
  border: none;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.35);
}

.floating-actions__btn--call:hover {
  background: #111827;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.45);
}

/* İçeriği engellemesin diye mobilde biraz küçült */
@media (max-width: 480px) {
  .floating-actions__btn {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
}
.contact-page {
  padding: 28px 0 40px;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 16px;
}

.page-head {
  margin-bottom: 18px;
}

.page-title {
  font-size: 34px;
  margin: 0 0 8px;
}

.page-subtitle {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
  font-size: 16px;
  line-height: 1.5;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  justify-items: center;
}

/* Kart + Glow */
.card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 28px !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: linear-gradient(120deg, rgba(31, 127, 214, 0.22), rgba(28, 154, 160, 0.22), rgba(42, 191, 106, 0.22));
  filter: blur(28px);
  z-index: 0;
}
.card > * {
  position: relative;
  z-index: 1;
}

.card-title {
  margin: 0 0 18px;
  font-size: 22px;
}
@media (min-width: 768px) {
  .card-title {
    font-size: 24px;
  }
}

/* SOL KART: içeriği yay */
.contact-card {
  display: flex;
  flex-direction: column;
  width: min(100%, 980px);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Satırlar */
.contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(31, 127, 214, 0.12);
  box-shadow: 0 10px 22px rgba(31, 127, 214, 0.1);
  color: #0f172a;
}
.contact-icon svg {
  display: block;
}

.contact-text,
.contact-link {
  font-size: 16px;
  line-height: 1.55;
}
@media (min-width: 768px) {
  .contact-text,
  .contact-link {
    font-size: 17px;
  }
}

.contact-link {
  text-decoration: none;
  color: #0f172a;
  font-weight: 800;
}
.contact-link:hover {
  text-decoration: underline;
}

/* Butonlar */
.contact-actions {
  margin-top: auto;
  padding-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
@media (min-width: 768px) {
  .contact-actions {
    gap: 12px;
  }
}

.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
}
@media (min-width: 1024px) {
  .action-btn {
    padding: 0 18px;
  }
}
.action-btn {
  white-space: nowrap;
  height: 46px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.action-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}
.action-btn svg {
  flex: 0 0 auto;
  display: block;
}

.action-btn span {
  display: none;
}

@media (min-width: 1024px) {
  .action-btn span {
    display: inline;
  }
}
.action-btn--whatsapp {
  color: #16a34a;
  border-color: rgba(34, 197, 94, 0.4);
}
.action-btn--whatsapp:hover {
  color: #0f172a;
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.82), rgba(34, 197, 94, 0.82));
  border-color: rgba(34, 197, 94, 0.75);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.2);
}

.action-btn--call {
  color: #1d4ed8;
  border-color: rgba(31, 127, 214, 0.4);
}
.action-btn--call:hover {
  color: #0f172a;
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.82), rgba(34, 197, 94, 0.82));
  border-color: rgba(31, 127, 214, 0.68);
  box-shadow: 0 14px 30px rgba(31, 127, 214, 0.2);
}

.action-btn--mail {
  color: #0f766e;
  border-color: rgba(28, 154, 160, 0.4);
}
.action-btn--mail:hover {
  color: #0f172a;
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.82), rgba(34, 197, 94, 0.82));
  border-color: rgba(28, 154, 160, 0.68);
  box-shadow: 0 14px 30px rgba(28, 154, 160, 0.2);
}

.pc {
  padding: 34px 16px;
}

.pc__container {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1310px) {
  .pc__container {
    padding-right: 60px;
  }
}
@media (max-width: 768px) {
  .pc__container {
    padding-right: 45px;
  }
}

.pc__header {
  margin-bottom: 18px;
}

.pc__title {
  font-size: 32px;
  line-height: 1.1;
  margin: 0 0 8px;
}

.pc__subtitle {
  margin: 0;
  opacity: 0.8;
}

.pc__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 1024px) {
  .pc__grid {
    grid-template-columns: 1.55fr 0.85fr;
    gap: 22px;
    align-items: start;
  }
}

.pc__toolbar {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.pc__search {
  flex: 1;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0 12px;
}

.pc__section {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  margin-bottom: 14px;
}

.pc__sectionTitle {
  margin: 0 0 10px;
  font-size: 16px;
}

.pc__list {
  display: grid;
  gap: 10px;
}

.pc__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.pc__item--custom {
  border-style: dashed;
}

.pc__itemMain {
  min-width: 0;
}

.pc__itemName {
  font-weight: 700;
  margin-bottom: 2px;
}

.pc__itemWatt {
  font-size: 13px;
  opacity: 0.75;
}

.pc__pill {
  display: inline-block;
  margin-left: 8px;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
}

.pc__stepper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.pc__stepBtn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  color: #fff;
  /* BFA gradient hissi (header/footer ile uyumlu) */
  background: linear-gradient(90deg, rgba(31, 127, 214, 0.95), rgba(28, 154, 160, 0.95), rgba(42, 191, 106, 0.95));
}

.pc__qty {
  width: 28px;
  text-align: center;
  font-weight: 800;
}

.pc__rowRight {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.pc__trash {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(0, 0, 0, 0.04);
  cursor: pointer;
}

.pc__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 768px) {
  .pc__form {
    grid-template-columns: 1.6fr 0.8fr 0.6fr auto;
    align-items: end;
  }
}

.pc__field {
  display: grid;
  gap: 6px;
}

.pc__label {
  font-size: 12px;
  opacity: 0.8;
}

.pc__input {
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0 12px;
}

.pc__muted {
  opacity: 0.7;
  padding: 10px 4px;
}

.pc__right {
  position: relative;
}
@media (min-width: 1024px) {
  .pc__right {
    position: sticky;
    top: 90px; /* header sticky’ye çarpmasın */
  }
}

.pc__summary {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.pc__kvabox {
  border-radius: 16px;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.95);
  margin-bottom: 12px;
}

.pc__kvaLabel {
  opacity: 0.7;
  font-size: 13px;
  margin-bottom: 6px;
}

.pc__kvaValue {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
}

.pc__meta {
  margin-top: 10px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0.85;
  font-size: 13px;
}

.pc__btn {
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(0, 0, 0, 0.04);
  cursor: pointer;
  padding: 0 14px;
  font-weight: 700;
}

.pc__btn--primary {
  border: 0;
  color: #fff;
  background: linear-gradient(90deg, rgba(31, 127, 214, 0.95), rgba(28, 154, 160, 0.95), rgba(42, 191, 106, 0.95));
}

.pc__btn--ghost {
  background: linear-gradient(90deg, rgba(31, 127, 214, 0.95), rgba(28, 154, 160, 0.95), rgba(42, 191, 106, 0.95));
  color: #fff;
}

.pc__btn--full {
  width: 100%;
}

/* Modal */
.pc__modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2000;
}

.pc__modal.is-open {
  display: block;
}

.pc__modalBackdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.55);
}

.pc__modalCard {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(720px, 100% - 24px);
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.pc__modalHead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pc__modalTitle {
  margin: 0;
  font-size: 16px;
}

.pc__iconBtn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(0, 0, 0, 0.04);
  cursor: pointer;
}

.pc__modalBody {
  padding: 14px;
}

.pc__table {
  display: grid;
  gap: 8px;
}

.pc__thead,
.pc__trow {
  display: grid;
  grid-template-columns: 1.6fr 0.5fr 0.5fr 0.7fr;
  gap: 10px;
  align-items: center;
}

.pc__thead {
  font-weight: 800;
  opacity: 0.75;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pc__trow {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pc__modalTotals {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 6px;
}

.pc__modalFoot {
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: flex-end;
}

.pc__disclaimer {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.88;
  text-align: center;
}

.pc__disclaimer--compact {
  margin-top: 12px;
  font-size: 12px;
  opacity: 0.82;
  text-align: left;
}

/* Ana sayfa genel container */
.home {
  /* header/footer ile uyum için sayfaya nefes */
  padding: 0 0 44px;
}

/* ---------------- HERO ---------------- */
.hero {
  position: relative;
  overflow: hidden;
  /* footer/header hissine yakın yumuşak gölge */
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  /* büyük ekranlarda yükseklik */
  min-height: 580px;
  display: grid;
  align-items: end; /* ✅ içerik (glass) aşağı yaklaşsın */
  justify-items: center; /* ✅ yatayda ortada kalsın */
}

.hero__media {
  position: absolute;
  inset: 0;
  background: url("/assets/img/hero-bg.webp") center/cover no-repeat;
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .hero__media {
    background-position: left center;
  }
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 78, 100, 0.18), rgba(56, 97, 125, 0.36));
  pointer-events: none;
}

/* camsı kutu */
.hero__glass {
  position: relative;
  width: min(540px, 100% - 28px);
  text-align: center;
  padding: 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero__title {
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.05;
  font-size: clamp(22px, 4vw, 36px);
  color: rgba(255, 255, 255, 0.96);
}

.hero__text {
  margin: 0 auto 18px;
  max-width: 48ch;
  line-height: 1.6;
  font-size: clamp(13px, 2.6vw, 16px);
  color: rgba(255, 255, 255, 0.9);
}

.hero__actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------------- BUTTONS ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}

.btn--primary {
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, #1f7fd6, #1c9aa0, #2abf6a);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}
.btn--primary:hover {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  background: linear-gradient(-135deg, #1f7fd6, #1c9aa0, #2abf6a);
}

.btn--ghost {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(15, 23, 42, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: rgba(15, 23, 42, 0.3);
}

/* ✅ Sadece HERO içinde: İletişim de primary gibi görünsün */
.hero .btn--ghost {
  border: 0;
  background: linear-gradient(135deg, #1f7fd6, #1c9aa0, #2abf6a);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.hero .btn--ghost:hover {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  background: linear-gradient(-135deg, #1f7fd6, #1c9aa0, #2abf6a);
}

/* ---------------- SERVICES ---------------- */
.services {
  margin-top: 34px;
}

/* ✅ Panel (hero gibi geniş) */
.services__container {
  width: min(1700px, 100% - 80px);
  margin: 0 auto;
  padding: 0 24px;
  /* Panel görünümü */
  background: #fff;
  border-radius: 28px;
  box-shadow: 1px 0px 22px 6px rgba(37, 102, 20, 0.65);
  border: 1px solid rgba(42, 191, 106, 0.9);
  /* ✅ panel yüksekliği artsın (ferahlık) */
  padding-top: 44px;
  padding-bottom: 54px;
}

@media (max-width: 768px) {
  .services__container {
    width: 95%;
    border-radius: 20px;
  }
}
/* ✅ İçeriği kontrollü genişlikte tut */
.services__inner {
  max-width: 1520px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 22px;
}

.section-head__title {
  margin: 0 0 12px;
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 900;
  letter-spacing: -0.3px;
}

.section-head__line {
  height: 2px;
  width: min(1560px, 100%); /* ✅ daha uzun */
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, #1f7fd6, #1c9aa0, #2abf6a);
  opacity: 0.65;
}

.services__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Kart */
.service-card {
  border-radius: 22px; /* ✅ daha yumuşak */
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-card__link {
  display: grid;
  grid-template-rows: auto auto;
  color: inherit;
  text-decoration: none;
}

.service-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -o-object-position: center;
     object-position: center;
}

.service-card__body {
  padding: 18px 18px 20px;
  background: linear-gradient(90deg, rgba(31, 127, 214, 0.2), rgba(28, 154, 160, 0.4), rgba(42, 191, 106, 0.6));
}

.service-card__title {
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: -0.2px;
}

.service-card__cta {
  display: inline-flex;
  font-weight: bolder;
  opacity: 0.85;
  color: #04813a;
}

/* hover */
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 1px 0px 22px 6px rgba(37, 102, 20, 0.65);
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1280px) {
  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .services__container {
    padding: 22px 16px 26px;
    border-radius: 22px;
  }
}
@media (max-width: 640px) {
  .home {
    padding: 0 0 36px;
  }
  .hero__glass {
    padding: 20px 16px;
    border-radius: 18px;
    margin-bottom: 5px;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
  /* ✅ Mobilde butonlar yan yana */
  .hero__actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    width: auto;
  }
  .hero__actions .btn {
    flex: 1;
    min-width: 0;
    height: 44px;
    padding: 0 12px;
  }
  .services__container {
    border-radius: 20px;
    padding: 18px 12px 22px;
  }
}
#hizmetlerimiz {
  scroll-margin-top: 100px; /* header yüksekliğine göre 72-110 arası ayarla */
}

/* ---------------- SERVICE AREAS (Hizmet Bölgelerimiz) ---------------- */
.service-areas {
  margin-top: 34px;
}

.service-areas__lead {
  max-width: 95ch;
  margin: 0 auto 22px;
  line-height: 1.7;
  font-size: 16px;
  color: rgba(15, 23, 42, 0.78);
  text-align: justify;
}

/* Grid */
.areas-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Kart */
.area-card {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 74px;
  padding: 14px 14px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.2px;
  /* Tema */
  color: black;
  background: rgb(171, 205, 234);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  /* Hover */
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.area-card:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, rgba(31, 127, 214, 0.3), rgba(28, 154, 160, 0.7), rgba(42, 191, 106, 0.9));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}
.area-card:focus-visible {
  outline: 3px solid rgba(42, 191, 106, 0.65);
  outline-offset: 3px;
}

/* Responsive */
@media (max-width: 1100px) {
  .areas-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .areas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-areas__lead {
    font-size: 15px;
  }
}
@media (max-width: 420px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
}
.legal-page {
  padding: 42px 16px 56px;
}

.legal-page__section {
  width: 100%;
}

.legal-page__container {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 44px 52px 56px;
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(31, 127, 214, 0.18);
  box-shadow: 0 10px 26px rgba(31, 127, 214, 0.12), 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-page__header {
  margin-bottom: 36px;
}

.legal-page__title {
  margin: 0;
  text-align: center;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  font-weight: 800;
  color: #111;
}

.legal-page__meta {
  margin: 18px 0 0;
  text-align: right;
  font-size: 15px;
  line-height: 1.5;
  color: #666;
}

.legal-page__content {
  color: #1b1b1b;
  font-size: 18px;
  line-height: 1.9;
}

.legal-page__content p {
  margin: 0 0 22px;
}

.legal-page__content h2 {
  margin: 38px 0 16px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  font-weight: 800;
  color: #111;
}

.legal-page__content ul {
  margin: 0 0 24px 26px;
  padding: 0;
}

.legal-page__content li {
  margin-bottom: 14px;
}

.legal-page__content a {
  color: #1f7fd6;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page__content strong {
  font-weight: 700;
  color: #111;
}

@media (min-width: 1024px) {
  .legal-page {
    padding-top: 52px;
    padding-bottom: 72px;
  }
  .legal-page__container {
    padding: 52px 64px 64px;
    box-shadow: 1px 0px 22px 6px rgba(37, 102, 20, 0.65);
  }
}
@media (max-width: 767px) {
  .legal-page {
    padding: 24px 12px 36px;
  }
  .legal-page__container {
    padding: 24px 18px 32px;
    border-radius: 20px;
  }
  .legal-page__title {
    font-size: 34px;
  }
  .legal-page__meta {
    margin-top: 14px;
    text-align: left;
    font-size: 14px;
  }
  .legal-page__content {
    font-size: 16px;
    line-height: 1.75;
  }
  .legal-page__content h2 {
    margin-top: 28px;
    margin-bottom: 12px;
    font-size: 26px;
  }
  .legal-page__content ul {
    margin-left: 20px;
  }
}
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 14px 16px;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 720px;
}

.cookie-banner__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #e5e7eb;
}

.cookie-banner__link {
  align-self: flex-start;
  color: #2abf6a;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

.cookie-banner__btn {
  border: 0;
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.18s ease;
}

.cookie-banner__btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.cookie-banner__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.cookie-banner__btn--primary {
  background: linear-gradient(135deg, #1f7fd6, #1c9aa0, #2abf6a);
  color: #fff;
}
.cookie-banner__btn--primary:hover {
  transform: translateY(-1px);
}

/* Mobil */
@media (max-width: 640px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .cookie-banner__actions {
    width: 100%;
  }
  .cookie-banner__btn {
    flex: 1;
  }
}
.services-page {
  padding: 48px 16px 64px;
}

.services-section {
  width: 100%;
}

.services-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 56px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 1px 0px 22px 6px rgba(37, 102, 20, 0.65);
}
.services-container p {
  text-align: justify;
}

.services-hero {
  margin-bottom: 36px;
}

.services-title {
  margin: 0 0 24px;
  text-align: center;
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 700;
  color: #1f1f1f;
}

.services-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  width: min(400px, 100%);
  margin-inline: auto;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 22px;
}

.services-icon img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.services-intro,
.section-intro,
.emergency-box p,
.bottom-cta p,
.why-card p,
.faq-item p,
.service-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 8px;
}

.section-title {
  margin: 0 0 18px;
  font-size: 1.55rem;
  line-height: 1.3;
  color: #1f1f1f;
}

.emergency-box,
.why-us,
.service-areas,
.faq-section,
.bottom-cta {
  margin-top: 42px;
}

.emergency-box,
.bottom-cta {
  padding: 24px;
  border: 1px solid rgba(37, 102, 20, 0.18);
  border-radius: 22px;
  background: rgba(37, 102, 20, 0.04);
}

.emergency-box h2,
.bottom-cta h2 {
  margin: 0 0 14px;
  font-size: 1.45rem;
  line-height: 1.3;
  color: #1f1f1f;
}

.emergency-list {
  margin: 20px 0 14px 1.6rem;
  padding: 0;
}

.emergency-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.emergency-note {
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s ease;
}

.cta-btn--primary {
  background: #256614;
  color: #fff;
}

.cta-btn--primary:hover {
  background: #1d4f10;
}

.cta-btn--secondary {
  border: 1px solid #256614;
  color: #256614;
  background: #fff;
}

.cta-btn--secondary:hover {
  background: rgba(37, 102, 20, 0.06);
}

.services-list {
  margin-top: 42px;
}

.service-item {
  margin-bottom: 34px;
}
.service-item:last-child {
  margin-bottom: 0;
}
.service-item h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  line-height: 1.3;
  color: #1f1f1f;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.why-card {
  padding: 20px;
  border-radius: 20px;
  background: #f7faf5;
  border: 1px solid rgba(37, 102, 20, 0.12);
}
.why-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.35;
  color: #1f1f1f;
}

.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #256614;
  background: rgba(37, 102, 20, 0.08);
  border: 1px solid rgba(37, 102, 20, 0.14);
  transition: 0.25s ease;
}
.area-links a:hover {
  background: rgba(37, 102, 20, 0.14);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(37, 102, 20, 0.12);
  background: #fff;
}
.faq-item h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.4;
  color: #1f1f1f;
}

@media (max-width: 900px) {
  .services-container {
    padding: 38px 28px;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .services-page {
    padding: 36px 12px 52px;
  }
  .services-container {
    padding: 32px 20px;
    border-radius: 24px;
  }
  .services-title {
    font-size: 1.7rem;
  }
  .section-title,
  .emergency-box h2,
  .bottom-cta h2 {
    font-size: 1.3rem;
  }
  .service-item h3 {
    font-size: 1.18rem;
  }
}