:root {
  --bg: #f4fbf6;
  --surface: rgba(255, 255, 255, 0.9);
  --line: rgba(21, 128, 61, 0.1);
  --text: #123120;
  --muted: #5b7265;
  --accent: #16a34a;
  --accent-2: #22c55e;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --blue: #2563eb;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
radial-gradient(circle at top, rgba(34, 197, 94, 0.14), transparent 28%),
radial-gradient(circle at 85% 10%, rgba(22, 163, 74, 0.08), transparent 22%),
var(--bg);
}
a { color: inherit; transition: color 0.2s ease; }
a:hover { color: var(--accent); }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  z-index: 20;
  background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #047857 100%);
  /* Strong white separator between menu/header and content for clarity */
  border-bottom: 3px solid #fff;
}
.header-inner, .footer-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.header-inner { padding: 16px 0; }
.footer-inner { padding: 22px 0; flex-wrap: wrap; color: var(--muted); }
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-rights {
  color: var(--muted);
}
.footer-dev-credit {
  font-size: 12px;
  color: #94a3b8;
}
.footer-dev-credit a {
  color: #64748b;
  text-decoration: none;
}
.footer-dev-credit a:hover {
  color: #334155;
  text-decoration: underline;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  position: relative;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; font-weight: 800; }
.brand-logo { width: 36px; height: 36px; border-radius: 6px; margin-right: 10px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; color: #fff; position: relative; padding-left: 10px; }
.brand-text::before { content: ''; position: absolute; left: 0; top: 2px; bottom: 2px; width: 1px; background: rgba(255,255,255,0.3); }
.brand-text small { margin-top: 2px; color: rgba(255, 255, 255, 0.7); font-weight: 600; font-size: 11px; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.nav-toggle i { font-size: 18px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.nav { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.nav a {
  text-decoration: none; padding: 10px 14px; border-radius: 999px;
  color: rgba(255, 255, 255, 0.85); font-weight: 600; transition: 0.2s ease;
}
.nav a:hover, .nav a.active {
  color: #fff; background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.2);
}
.dropdown {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: -14px;
}
.dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--surface);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 6px;
  min-width: 180px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 50;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.is-open .dropdown-menu,
.dropdown-contact-wrap:focus-within .dropdown-menu,
.dropdown-contact-wrap.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu > a:not(.contact-drop-btn) {
  display: block;
  padding: 10px 14px;
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  border: none !important;
  background: transparent !important;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}
.dropdown-menu > a:not(.contact-drop-btn):hover {
  background: rgba(21, 128, 61, 0.08) !important;
  color: var(--accent) !important;
}

.dropdown-contact-wrap .dropdown-toggle {
  cursor: pointer;
  text-decoration: none !important;
}

.dropdown-contact {
  padding: 12px !important;
  min-width: 240px !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.contact-drop-btn {
  display: flex !important;
  align-items: center;
  justify-content: flex-start !important;
  gap: 12px;
  padding: 16px 20px !important;
  border-radius: 14px !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-drop-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
}

.contact-drop-btn i {
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.contact-drop-phone {
  background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
  color: #ffffff !important;
  border: none !important;
}

.contact-drop-phone:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb) !important;
  color: #ffffff !important;
}

.contact-drop-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E) !important;
  color: #ffffff !important;
  border: none !important;
}

.contact-drop-whatsapp:hover {
  background: linear-gradient(135deg, #1DA851, #0D6E5F) !important;
  color: #ffffff !important;
}

.page-shell { padding: 0 0 10px; }
.home-shell { padding-bottom: 10px; }
.page-shell .section-block,
.home-shell .section-block { margin-top: 20px; }
.page-shell .section-block:first-child,
.home-shell .section-block:first-child { margin-top: 0; }
.home-shell .hero { padding-top: 20px; padding-bottom: 20px; }
.page-shell .hero { padding: 20px 0 20px; }
.home-shell .sections,
.page-shell .sections { padding: 0; }

.page-shell .hero-card,
.home-shell .hero-card {
  min-height: min(68vh, 720px);
  place-items: center;
  place-content: center;
  text-align: center;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #14532d 0%, #166534 50%, #15803d 100%);
}
.page-shell .hero-card::before,
.home-shell .hero-card::before {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1), rgba(6, 78, 59, 0.6));
}
.page-shell .hero-content,
.home-shell .hero-content {
  width: min(760px, 100%);
  margin: 0 auto;
  color: #fff;
}
.page-shell .hero h1,
.home-shell .hero h1 {
  margin: 0 0 12px;
  font-size: clamp(18px, 3.5vw, 36px);
  line-height: 1.2;
  font-weight: 700;
}
.page-shell .hero p,
.home-shell .hero p {
  margin: 0 auto;
  max-width: 60ch;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}
.page-shell .hero-actions,
.home-shell .hero-actions {
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.page-shell .hero .hero-content,
.page-shell .hero .hero-content *,
.home-shell .hero .hero-content,
.home-shell .hero .hero-content * { text-align: center; }
.page-shell .hero .breadcrumbs,
.home-shell .hero .breadcrumbs { display: inline-flex; }

.page-shell .contact-banner,
.home-shell .contact-banner { margin-top: 20px; position: relative; overflow: hidden; }
.page-shell .contact-banner strong,
.home-shell .contact-banner strong { color: var(--text); }
.page-shell .contact-banner::before,
.home-shell .contact-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(34, 197, 94, 0.10));
  pointer-events: none;
}
.page-shell .contact-banner > *,
.home-shell .contact-banner > * { position: relative; z-index: 1; }

.site-header-wrapper {
  position: sticky;
  top: 0;
  z-index: 25;
}
.info-banner-sticky {
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  /* Üst çizgi kaldırıldı - header'ın alt çizgisi yeterli */
  border-bottom: 3px solid #fff; /* header ile aynı renk ve kalınlık */
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  position: relative;
}

/* ensure only a single white line under info bar */
.info-banner-sticky:after {
  content: '';
  display: none;
}
.info-banner-sticky i,
.info-banner-sticky .emoji-icon {
  margin-right: 10px;
  line-height: 1;
}
.info-banner-bilgi {
  /* Deeper blue background for stronger emphasis */
  background: #1e3a8a;
  color: #ffffff;
}
.info-banner-bilgi i { color: #ffffff; }

.info-banner-uyari {
  /* Rich amber/yellow for warnings with white text */
  background: #b45309;
  color: #ffffff;
}
.info-banner-uyari i { color: #ffffff; }

.info-banner-basari {
  /* Strong green with white text for success messages */
  background: #047857;
  color: #ffffff;
}
.info-banner-basari i { color: #ffffff; }

.info-banner-hata {
  /* Distinct red with white text for errors */
  background: #b91c1c;
  color: #ffffff;
}
.info-banner-hata i { color: #ffffff; }
.info-banner {
  margin: 16px auto;
  padding: 12px 16px;
  max-width: 760px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 10px;
  color: #c2410c;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.info-banner i {
  margin-right: 8px;
  color: #f97316;
}

@media (max-width: 860px) {
  .site-header {
padding: 8px 0;
  }

  .brand-text small {
display: none;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    margin-right: 0;
  }

  .brand-text {
font-size: 14px;
  }

  .header-inner {
align-items: center;
gap: 12px;
flex-wrap: nowrap;
  }

  .header-actions {
width: auto;
margin-left: auto;
justify-content: flex-end;
align-items: center;
  }

  .nav-toggle {
display: inline-flex;
flex-shrink: 0;
  }

  .nav {
position: absolute;
top: calc(100% + 10px);
right: 0;
width: min(320px, calc(100vw - 32px));
padding: 12px;
border-radius: 20px;
background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #047857 100%);
border: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
display: grid;
gap: 8px;
transform: translateY(-8px) scale(0.98);
opacity: 0;
visibility: hidden;
pointer-events: none;
transition: 0.2s ease;
z-index: 60;
  }

  .nav.is-open {
transform: translateY(0) scale(1);
opacity: 1;
visibility: visible;
pointer-events: auto;
  }

  .nav a,
  .nav .dropdown > a {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
text-align: left;
border-radius: 16px;
padding: 12px 14px;
color: rgba(255, 255, 255, 0.9);
  }

  .nav a:hover,
  .nav .dropdown > a:hover {
color: #fff;
background: rgba(255, 255, 255, 0.15);
  }

  .dropdown {
padding-bottom: 0;
margin-bottom: 0;
  }

  .dropdown > a i {
    transition: transform 0.2s ease;
  }

  .dropdown.is-open > a i {
    transform: rotate(180deg);
  }

  .dropdown-menu {
position: static;
left: auto;
top: auto;
min-width: 0;
width: 100%;
transform: none;
margin-top: 8px;
padding: 6px;
opacity: 1;
visibility: visible;
box-shadow: none;
background: rgba(6, 78, 59, 0.95);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
display: none;
  }

  .dropdown-menu > a:not(.contact-drop-btn) {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 500;
  }

  .dropdown-menu > a:not(.contact-drop-btn):hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
  }

  .dropdown-menu > a.active {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
  }

  .dropdown-contact {
    min-width: 0 !important;
    width: 100% !important;
    padding: 10px !important;
    gap: 8px;
    border-radius: 12px;
    background: rgba(6, 78, 59, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .contact-drop-btn {
    width: 100% !important;
    padding: 12px 14px !important;
    border-radius: 12px !important;
    box-shadow: none;
  }

  .contact-drop-btn:hover {
    transform: none;
    box-shadow: none !important;
  }

  .dropdown.is-open .dropdown-menu,
  .dropdown-contact-wrap.is-open .dropdown-menu {
display: block;
  }

  .dropdown-contact-wrap .dropdown-menu {
background: rgba(6, 78, 59, 0.95) !important;
border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown:hover .dropdown-menu {
transform: none;
  }

  .dropdown-menu a {
color: rgba(255, 255, 255, 0.85);
  }

  .dropdown-menu a:hover {
background: rgba(255, 255, 255, 0.15) !important;
color: #fff !important;
  }

  .page-shell .hero,
  .home-shell .hero {
padding-top: 12px;
padding-bottom: 12px;
  }

  .page-shell .hero-card,
  .home-shell .hero-card {
min-height: 62vh;
padding: 28px 22px;
  }

  .page-shell .hero h1,
  .home-shell .hero h1 {
    margin: 18px 0 12px;
    font-size: clamp(18px, 4vw, 32px);
  }

  .page-shell .hero p,
  .home-shell .hero p {
font-size: 16px;
line-height: 1.7;
  }

  .page-shell .hero-actions,
  .home-shell .hero-actions {
margin-top: 22px;
  }

  .page-shell .sections,
  .home-shell .sections {
padding-top: 0;
  }

  .section-block {
margin-top: 18px;
padding: 20px;
  }

  .section-head {
margin-bottom: 16px;
  }

  .contact-grid {
gap: 18px;
  }

  .contact-card {
padding: 24px;
  }

  .map-container {
margin-top: 18px;
height: 300px;
  }
}

@media (max-width: 640px) {
  .container {
width: min(1120px, calc(100% - 20px));
  }

  .header-inner {
padding: 12px 0;
  }

  .brand {
gap: 10px;
  }

  .brand-mark {
width: 40px;
height: 40px;
border-radius: 13px;
font-size: 18px;
  }

  .brand-text small {
margin-top: 3px;
  }

  .nav {
width: calc(100vw - 20px);
right: -2px;
  }

  .page-shell .hero-card,
  .home-shell .hero-card {
min-height: 56vh;
padding: 22px 16px;
  }

  .page-shell .hero h1,
  .home-shell .hero h1 {
    font-size: clamp(16px, 4vw, 28px);
  }

  .hero-actions {
flex-direction: column;
width: 100%;
  }

  .hero-actions .btn {
width: 100%;
  }

  .section-block {
margin-top: 16px;
padding: 18px;
border-radius: 24px;
  }

  .scroll-row {
grid-auto-columns: minmax(220px, 84vw);
gap: 12px;
  }

  .card {
padding: 20px;
min-height: 140px;
  }

  .card h3 {
font-size: 20px;
  }

  .card-cta h3 {
font-size: 21px;
  }

  .contact-card {
padding: 20px;
border-radius: 18px;
  }

  .contact-card h3 {
font-size: 18px;
  }

  .map-container {
  height: 260px;
  border-radius: 8px;
  }
}

.page-shell .hero-card,
.home-shell .hero-card {
  background-size: cover;
  background-position: center;
}

.simple-services .grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.simple-services .card {
  min-height: auto;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}
.simple-services .card h3 { font-size: 18px; }
.simple-services .card p { font-size: 14px; }
.simple-services .badge { display: inline-flex; }
.simple-services .card:hover { transform: translateY(-2px); }

@media (max-width: 860px) {
  .page-shell .hero-card,
  .home-shell .hero-card {
min-height: 62vh;
padding: 24px;
  }
}
@media (max-width: 640px) {
  .page-shell .hero h1,
  .home-shell .hero h1 {
    font-size: clamp(14px, 5vw, 24px);
  }
}
.hero-card, .panel, .card, .contact-card, .banner {
  border-radius: 28px; background: var(--surface); border: 1px solid rgba(21, 128, 61, 0.08);
  box-shadow: var(--shadow);
}
.hero-card {
  min-height: min(68vh, 720px); overflow: hidden; position: relative;
  display: grid; place-items: center; text-align: center; padding: 48px 32px;
  background:
linear-gradient(180deg, rgba(255,255,255,0.24), rgba(255,255,255,0.08)),
url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=1400&auto=format&fit=crop") center/cover no-repeat;
}
.hero-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.2), rgba(6, 78, 59, 0.82));
}
.hero-content { 
  position: relative; z-index: 1; 
  width: min(760px, 100%); 
  color: #fff; 
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 6px;
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  margin: 0 0 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.22);
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.hero h1 { margin: 0 0 12px; font-size: clamp(18px, 3.5vw, 36px); line-height: 1.2; font-weight: 700; letter-spacing: -0.02em; width: 100%; }
.hero p { margin: 0 auto 16px; max-width: 60ch; font-size: 18px; line-height: 1.8; color: rgba(255, 255, 255, 0.82); width: 100%; }
.section-head p { margin: 8px 0 0; color: var(--muted); }
.copy { margin: 0; font-size: 18px; line-height: 1.8; color: var(--muted); }
.pricing-table-wrap {
  position: relative;
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid rgba(21, 128, 61, 0.12);
}
.pricing-table-wrap::after {
  content: '';
  position: sticky;
  right: 0;
  width: 44px;
  height: 100%;
  float: right;
  pointer-events: none;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(244, 251, 246, 0.95));
}
.pricing-scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.18);
}
.pricing-scroll-hint i {
  color: var(--blue);
  animation: pricingHintMove 1.2s ease-in-out infinite;
}
@keyframes pricingHintMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}
.pricing-copy table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(21, 128, 61, 0.12);
}
.pricing-copy th,
.pricing-copy td {
  border: 1px solid rgba(21, 128, 61, 0.10);
  padding: 10px 12px;
  text-align: left;
  white-space: nowrap;
  word-break: keep-all;
  vertical-align: middle;
}
.pricing-copy th {
  background: rgba(22, 163, 74, 0.10);
  color: var(--text);
  font-weight: 700;
}
.hero-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; width: 100%; align-items: center; }
.hero-actions .top-row { display: flex; gap: 10px; width: 100%; max-width: 500px; }
.hero-actions .top-row .btn { flex: 1; justify-content: center; }
.hero-actions > .btn { display: inline-flex; width: 100%; max-width: 500px; justify-content: center; }
.home-shell .hero-actions { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 500px; }
.home-shell .hero-actions .btn { flex: 1 1 45%; min-width: 140px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 18px; border-radius: 14px; text-decoration: none;
  font-weight: 700; transition: all 0.15s ease; border: none;
}
.btn:hover { transform: none; box-shadow: none; }
.btn-phone { color: #fff; background: linear-gradient(135deg, #2563eb, #3b82f6); box-shadow: var(--shadow); }
.btn-whatsapp { color: #fff; background: linear-gradient(135deg, #16a34a, #22c55e); box-shadow: var(--shadow); }
.btn-phone:hover { color: #fff; }
.btn-whatsapp:hover { color: #fff; }

.section-block { margin-top: 24px; padding: 24px; border-radius: 28px; background: var(--surface); border: 1px solid rgba(21,128,61,0.08); box-shadow: var(--shadow); }
.section-head { margin-bottom: 20px; }
.section-head h2 { margin: 0; font-size: clamp(24px, 4vw, 34px); letter-spacing: -0.04em; }
.section-head p { margin-top: 8px; color: var(--muted); }
.scroll-row { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(250px, 290px); gap: 16px; overflow-x: auto; padding: 8px 4px 18px; scroll-snap-type: x proximity; justify-content: center; }
.scroll-row::-webkit-scrollbar { height: 6px; }
.scroll-row::-webkit-scrollbar-track { background: rgba(21,128,61,0.05); border-radius: 3px; }
.scroll-row::-webkit-scrollbar-thumb { background: rgba(21,128,61,0.2); border-radius: 3px; }
.scroll-row::-webkit-scrollbar-thumb:hover { background: rgba(21,128,61,0.35); }
.why-us-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 8px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 8px; }
.home-shell .features-grid.scroll-row { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(250px, 290px); grid-template-columns: none; gap: 16px; overflow-x: auto; padding: 8px 4px 18px; scroll-snap-type: x proximity; justify-content: start; }
.features-grid .card-sector { height: 100%; box-sizing: border-box; }
.features-grid .card-sector .cta-highlight { color: #16a34a; }
.features-grid .card-cta-hero { min-height: 160px; }
.why-us-card { padding: 24px; border-radius: 16px; background: linear-gradient(145deg, #ffffff 0%, #f0fdf4 100%); border: 1px solid rgba(21,128,61,0.1); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.why-us-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08); }
.why-us-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.why-us-icon i { font-size: 22px; color: #fff; }
.why-us-card h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -0.02em; }
.why-us-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.card {
  scroll-snap-align: start; min-height: 152px; padding: 24px; border-radius: 24px;
  background: #fff; border: 1px solid rgba(21, 128, 61, 0.08); position: relative; overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06); }
.card h3 { margin: 0; font-size: 22px; line-height: 1.15; letter-spacing: -0.04em; }
.card p { margin: 10px 0 0; line-height: 1.75; color: var(--muted); }
.card-link { text-decoration: none; color: inherit; }
.card-sector {
  scroll-snap-align: start;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(21, 128, 61, 0.08);
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.card-sector::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.card-sector:hover {
  background: linear-gradient(145deg, #ffffff 0%, #f0fdf4 100%);
  border-color: rgba(21, 128, 61, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21, 128, 61, 0.12);
}
.card-sector:hover::before {
  opacity: 1;
}
.card-sector h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-sector p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
.sector-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(34, 197, 94, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.sector-icon i {
  font-size: 20px;
  color: #16a34a;
}
.sector-icon .emoji-icon {
  font-size: 24px;
  line-height: 1;
}
.card-sector:hover .sector-icon {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
}
.card-cta { background: linear-gradient(135deg, rgba(34, 197, 94, 0.14), rgba(59, 130, 246, 0.18)); border: 1px solid rgba(34, 197, 94, 0.2); }
.card-cta h3 { font-size: 24px; letter-spacing: -0.05em; }
.card-cta p { color: var(--text); font-weight: 500; }
.card-cta-hero {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 160px;
  padding: 28px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 50%, #166534 100%);
  border: none;
  box-shadow: 0 12px 32px rgba(22, 163, 74, 0.3);
  scroll-snap-align: start;
}
.card-cta-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(22, 163, 74, 0.35);
}
.card-cta-hero h3 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #fff;
}
.cta-highlight {
  background: linear-gradient(90deg, #fef08a, #fde047);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.card-cta-hero p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}
.cta-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 14px;
  background: #fff;
  color: #16a34a;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  width: fit-content;
}
.cta-hero-btn i { font-size: 20px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-top: 24px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px;
  background: rgba(37, 99, 235, 0.12); color: var(--blue); font-weight: 600; font-size: 13px;
}
.steps { display: grid; gap: 12px; margin-top: 18px; }
.step {
  display: flex; align-items: flex-start; gap: 14px; padding: 18px;
  border-radius: 18px; background: rgba(255,255,255,0.95); border: 1px solid rgba(21,128,61,0.08);
}
.step span {
  display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 12px;
  font-weight: 700; background: rgba(22, 163, 74, 0.18); color: var(--accent);
}
.banner {
  margin-top: 24px; padding: 24px; border-radius: 24px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(34, 197, 94, 0.16));
  border: 1px solid rgba(21, 128, 61, 0.12);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.contact-card {
  background: #fff;
  border: 1px solid rgba(21, 128, 61, 0.08);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.contact-card .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(22, 163, 74, 0.1);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 20px;
}
.contact-card h3 { margin: 0; font-size: 20px; letter-spacing: -0.02em; }
.contact-card p,
.contact-card a {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  text-decoration: none;
}
.contact-card a:hover {
  color: var(--accent);
  text-decoration: underline;
}
.map-container {
  margin-top: 24px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  height: 350px;
  background: #e5e7eb;
}
.map-container iframe { width: 100%; height: 100%; border: 0; }
.map-lazy { display: grid; place-items: center; background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%); }
.map-load-btn {
  appearance: none;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: #0f172a;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
}
.map-load-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08); }
.flat-locations {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}
.flat-locations p {
  margin: 0;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(21, 128, 61, 0.08);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}
.flat-locations strong {
  color: var(--text);
  font-weight: 800;
}
.contact-banner {
  margin-top: 24px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(34, 197, 94, 0.16));
  border: 1px solid rgba(21, 128, 61, 0.12);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  align-items: center;
}
.contact-banner strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  letter-spacing: -0.03em;
}
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.contact-actions .btn {
  min-width: 160px;
}
.error-404-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.06) 0%, transparent 100%);
}
.error-404-content {
  max-width: 480px;
}
.error-404-code {
  margin: 0;
  font-size: clamp(72px, 15vw, 140px);
  line-height: 1;
  letter-spacing: -0.06em;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.error-404-title {
  margin: 12px 0 16px;
  font-size: clamp(24px, 5vw, 36px);
  letter-spacing: -0.04em;
  color: var(--text);
}
.error-404-text {
  margin: 0 0 32px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}
.error-404-links {
  margin-bottom: 28px;
}
.btn-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: none;
  transition: none;
}
.btn-home:hover {
  transform: none;
  box-shadow: none;
}
.error-404-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.error-404-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.site-footer { border-top: 1px solid rgba(21, 128, 61, 0.08); background: rgba(255, 255, 255, 0.7); }
.link-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.link-pill {
  display: inline-flex; align-items: center; padding: 8px 12px; border-radius: 999px; text-decoration: none;
  background: rgba(255,255,255,0.9); border: 1px solid rgba(21,128,61,0.08); color: var(--text); font-weight: 600;
}

@media (max-width: 600px) {
  .variant-options-grid { grid-template-columns: 1fr; }
}
.section-block:not(.location-split-section) { margin-top: 24px; padding: 24px; border-radius: 28px; background: var(--surface); border: 1px solid rgba(21,128,61,0.08); box-shadow: var(--shadow); }
.meta { display: flex; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: 14px; }
.breadcrumbs {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 6px;
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  margin: 0 0 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.22);
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.breadcrumbs::-webkit-scrollbar {
  display: none;
}
.breadcrumbs a { color: inherit; text-decoration: none; }
.breadcrumbs a:hover { color: #fff; text-decoration: underline; }
.breadcrumbs span { color: rgba(255, 255, 255, 0.76); }
.other-services-compact {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: #94a3b8;
}
.other-services-label {
  color: #94a3b8;
  font-weight: 500;
}
.other-services-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.other-services-links a {
  color: #64748b;
  text-decoration: none;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(148, 163, 184, 0.08);
}
.other-services-links a:hover {
  color: #334155;
  background: rgba(148, 163, 184, 0.14);
  text-decoration: none;
}
.location-list { display: grid; gap: 12px; margin-top: 16px; }
.location-group {
  background: rgba(255,255,255,0.96); border: 1px solid rgba(21,128,61,0.08); border-radius: 18px; padding: 16px 18px;
}
.location-group summary { cursor: pointer; font-weight: 700; list-style: none; }
.location-group summary::-webkit-details-marker { display: none; }
.location-group .muted { color: var(--muted); font-size: 14px; margin-top: 6px; }
.location-items { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.location-chip {
  display: inline-flex; align-items: center; text-decoration: none; border-radius: 999px;
  background: rgba(22,163,74,0.08); color: var(--text); padding: 7px 10px; font-size: 14px;
}
.form-grid { display: grid; gap: 12px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 600; font-size: 13px; color: #334155; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid #e2e8f0; border-radius: 8px; padding: 10px 12px;
  font: inherit; background: #fff; color: #1e293b; font-size: 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.field textarea { min-height: 90px; resize: vertical; }
.hero-preview {
  position: relative;
  overflow: hidden;
  height: 140px;
  border-radius: 14px;
  border: 1px solid rgba(21,128,61,0.12);
  background-size: cover;
  background-position: center;
}
.hero-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.20), rgba(6, 78, 59, 0.82));
}
.hero-preview-text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; justify-content: flex-end; margin-top: 8px; }
.notice { margin-bottom: 12px; padding: 12px 14px; border-radius: 14px; background: rgba(22,163,74,0.12); border: 1px solid rgba(22,163,74,0.18); }
.notice.error { background: rgba(239,68,68,0.1); border-color: rgba(239,68,68,0.2); }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { text-align: left; padding: 8px 0; border-bottom: 1px solid rgba(21,128,61,0.08); vertical-align: top; }
.small { font-size: 12px; color: #64748b; margin-top: 4px; }

.record-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.record-table th { background: #f1f5f9; padding: 10px 12px; text-align: left; font-size: 12px; font-weight: 600; color: #64748b; text-transform: uppercase; letter-spacing: 0.03em; }
.record-table td { padding: 8px 12px; border-bottom: 1px solid #e2e8f0; vertical-align: middle; font-size: 14px; }
.record-table tr:last-child td { border-bottom: none; }
.record-table tr:hover { background: #f8fafc; }
.record-table .col-name { font-weight: 600; color: #1e293b; }
.record-table .col-type { font-size: 11px; padding: 2px 8px; border-radius: 4px; font-weight: 500; }
.record-table .col-type.type-sector { background: #dbeafe; color: #1d4ed8; }
.record-table .col-type.type-variant { background: #dcfce7; color: #16a34a; }
.record-table .col-status { font-size: 12px; color: #64748b; }
.record-table .col-actions { text-align: right; white-space: nowrap; }
.record-table .col-actions button,
.record-table .col-actions a { 
  background: none; border: none; cursor: pointer; padding: 4px 8px; 
  color: #64748b; font-size: 14px; border-radius: 4px; transition: all 0.15s;
}
.record-table .col-actions button:hover,
.record-table .col-actions a:hover { background: #f1f5f9; color: #2563eb; }
.record-table .col-actions .delete-btn:hover { color: #dc2626; }
.record-table .col-actions form { display: inline; }
.inline-sort-input { 
  width: 50px; padding: 3px 5px; border: 1px solid #e2e8f0; 
  border-radius: 4px; font-size: 12px; text-align: center; 
}
.inline-sort-input:focus { border-color: #2563eb; outline: none; }
.table-actions { display: flex; gap: 8px; margin-top: 0; }
.table-actions .btn { 
  padding: 6px 14px; 
  font-size: 13px; 
  min-height: auto; 
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-weight: 500;
}
.table-actions .btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #1e293b;
}

#sektorler .section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 -16px;
  margin-bottom: 0;
  padding: 12px 16px;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}
#sektorler .section-head h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
}

#service-sort-list .record-item { cursor: grab; }
#service-sort-list .record-item:active { cursor: grabbing; }
#service-sort-list .record-item.is-dragging {
  opacity: 0.55;
  border-style: dashed;
}
#service-sort-list .record-item.is-drop-target {
  outline: 2px solid rgba(37, 99, 235, 0.24);
  outline-offset: 2px;
}
.record-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.record-summary strong {
  display: block;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.record-summary .small { margin-top: 4px; }
.record-summary-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}
.record-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.10);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.record-badge.muted {
  background: rgba(37, 99, 235, 0.10);
}
.record-badge.gray {
  background: rgba(15, 23, 42, 0.08);
}
.record-body {
  padding: 16px;
  border-top: 1px solid rgba(21,128,61,0.08);
  background: linear-gradient(180deg, rgba(244,251,246,0.6), rgba(255,255,255,0.96));
}
.record-item .form-grid { gap: 8px; }
.record-actions { display: flex; gap: 8px; margin-top: 6px; flex-wrap: wrap; }
.record-actions .btn { min-height: 38px; padding: 0 12px; border-radius: 10px; font-size: 13px; }
.record-3col { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.record-2col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.record-2col .field-checkbox {
  align-self: end;
}
.record-2col .field-checkbox:first-child { margin-bottom: 0; }
.compact-head { margin-bottom: 10px; }
.compact-head h2 { margin-bottom: 4px; }
.compact-head p { margin: 0; }
.admin-stack > .section-block { margin-top: 14px; }
@media (max-width: 1100px) {
  .admin-layout {
grid-template-columns: 1fr;
  }
  .admin-sidebar {
position: static;
  }
}
@media (max-width: 640px) {
  .admin-hero .hero-card {
min-height: auto;
padding: 22px;
  }
  .admin-toolbar {
gap: 12px;
  }
}


























































.admin-stack > .section-block:first-child { margin-top: 0; }
.admin-stack .section-block { padding: 20px; }
@media (max-width: 980px) {
  .record-3col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .admin-grid { grid-template-columns: 1fr; gap: 10px; }
  .record-2col, .record-3col { grid-template-columns: 1fr; }
  .record-actions { flex-direction: column; align-items: stretch; }
}

.admin-sections {
  padding-top: 20px;
  padding-bottom: 24px;
}

.admin-shell {
  display: grid;
  gap: 20px;
}

.admin-login-shell {
  max-width: 520px;
}

.admin-login-card {
  padding: 22px;
}

.admin-login-head h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.admin-login-head p {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 14px;
}

.admin-notice {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.2);
  color: #14532d;
  font-weight: 600;
  font-size: 13px;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border: 1px solid #dbe4f0;
  border-radius: 16px;
  background: linear-gradient(155deg, #ffffff 0%, #f7fafc 100%);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.admin-kicker {
  margin: 0;
  color: #2563eb;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

.admin-topbar-head h2 {
  margin: 4px 0 0;
  font-size: 24px;
  line-height: 1.2;
  color: #0f172a;
}

.admin-subtitle {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 14px;
}

.admin-topbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
}

.admin-topbar-actions form {
  margin: 0;
}

.admin-topbar-actions .btn {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 13px;
}

.admin-topbar-actions .btn.btn-home {
  background: #fff;
  color: #334155;
  border: 1px solid #dbe4f0;
}

.admin-topbar-actions .btn.btn-home:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  box-shadow: none;
}

.admin-topbar-actions .btn.btn-logout {
  background: #fff;
  border: 1px solid #dbe4f0;
  color: #475569;
}

.admin-topbar-actions .btn.btn-logout:hover {
  background: #fff1f2;
  border-color: #fecdd3;
  color: #be123c;
  box-shadow: none;
}

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

.admin-metric-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px;
  display: grid;
  gap: 4px;
}

.admin-metric-card .admin-metric-label {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.admin-metric-card strong {
  font-size: 28px;
  line-height: 1;
  color: #0f172a;
}

.admin-metric-card small {
  font-size: 12px;
  color: #64748b;
}

.admin-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.admin-content-grid .section-block {
  margin-top: 0;
  padding: 20px;
}

.admin-content-grid .admin-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.admin-content-grid .admin-card form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.admin-content-grid .admin-form-actions {
  margin-top: auto;
  padding-top: 12px;
}

.admin-card {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.admin-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
}

.admin-card-head h3 {
  margin: 0;
  font-size: 18px;
  color: #0f172a;
}

.admin-card-head p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 13px;
}

.admin-form-grid {
  gap: 12px;
  padding-top: 4px;
  width: 100%;
  box-sizing: border-box;
}

.admin-form-grid .field input,
.admin-form-grid .field textarea,
.admin-form-grid .field select {
  width: 100%;
  box-sizing: border-box;
}

.admin-form-2col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.admin-form-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 12px;
  width: 100%;
}

.admin-form-actions .btn {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 13px;
}

.admin-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  color: #334155;
  font-size: 13px;
  font-weight: 600;
}

.admin-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #2563eb;
}

.admin-subhead {
  margin-top: 8px;
}

.admin-subhead h4 {
  margin: 0;
  font-size: 15px;
  color: #0f172a;
}

.admin-subhead p {
  margin: 4px 0 0;
  font-size: 12px;
  color: #64748b;
}

.admin-record-list {
  display: grid;
  gap: 10px;
}

.admin-record-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.admin-record-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.admin-record-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.admin-drag-handle {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #dbe4f0;
  color: #64748b;
  background: #fff;
}

.admin-record-title-wrap h4 {
  margin: 0;
  font-size: 16px;
  color: #0f172a;
  line-height: 1.2;
}

.admin-record-title-wrap p {
  margin: 3px 0 0;
  font-size: 12px;
  color: #64748b;
}

.admin-record-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 700;
}

.admin-badge.admin-badge-muted {
  background: #dcfce7;
  color: #166534;
}

.admin-badge.admin-badge-gray {
  background: #e2e8f0;
  color: #334155;
}

.admin-badge.admin-badge-active {
  background: #dcfce7;
  color: #166534;
}

.admin-badge.admin-badge-inactive {
  background: #fee2e2;
  color: #991b1b;
}

.admin-badge.admin-badge-orange {
  background: #ffedd5;
  color: #9a3412;
}

.admin-page-link {
  color: var(--text);
  text-decoration: none;
}

.admin-page-link:hover {
  color: var(--accent);
}

.admin-record-actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-record-actions form,
.admin-variant-actions form {
  margin: 0;
}

.admin-record-actions .btn,
.admin-variant-actions .btn {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 9px;
  font-size: 12px;
}

.admin-record-actions .btn.btn-home,
.admin-variant-actions .btn.btn-home {
  background: #fff;
  color: #334155;
  border: 1px solid #dbe4f0;
  box-shadow: none;
}

.admin-record-actions .btn.btn-home:hover,
.admin-variant-actions .btn.btn-home:hover {
  background: #f8fafc;
  box-shadow: none;
}

.admin-record-actions .btn.btn-logout,
.admin-variant-actions .btn.btn-logout {
  background: #fff;
  color: #b91c1c;
  border: 1px solid #fecaca;
  box-shadow: none;
}

.admin-record-actions .btn.btn-logout:hover,
.admin-variant-actions .btn.btn-logout:hover {
  background: #fff1f2;
  box-shadow: none;
}

.admin-variant-list {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #dbe4f0;
  display: grid;
  gap: 8px;
}

.admin-variant-item {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  padding: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 8px;
}

.admin-variant-title h5 {
  margin: 0;
  font-size: 14px;
  color: #0f172a;
}

.admin-variant-title p {
  margin: 3px 0 0;
  font-size: 12px;
  color: #64748b;
}

.admin-variant-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.admin-variant-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

#service-sort-list .record-item {
  cursor: grab;
}

#service-sort-list .record-item:active {
  cursor: grabbing;
}

#service-sort-list .record-item.is-dragging {
  opacity: 0.5;
  border-style: dashed;
}

#service-sort-list .record-item.is-drop-target {
  outline: 2px solid rgba(37, 99, 235, 0.28);
  outline-offset: 2px;
}

@media (max-width: 1100px) {
  .admin-content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .admin-topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-topbar-actions {
    justify-content: flex-start;
  }

  .admin-metric-grid {
    grid-template-columns: 1fr 1fr;
  }

  .admin-record-head {
    flex-direction: column;
  }

  .admin-record-meta {
    justify-content: flex-start;
  }

  .admin-variant-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .admin-variant-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .admin-metric-grid,
  .admin-form-2col {
    grid-template-columns: 1fr;
  }

  .admin-topbar-head h2 {
    font-size: 20px;
  }

  .admin-card {
    padding: 12px;
  }

  .admin-form-actions,
  .admin-record-actions,
  .admin-variant-actions {
    justify-content: stretch;
  }

  .admin-form-actions .btn,
  .admin-record-actions .btn,
  .admin-variant-actions .btn {
    width: 100%;
  }
}

@media (max-width: 860px) { .hero-card { min-height: 62vh; padding: 24px; } }
@media (max-width: 640px) {
  .header-inner {
flex-direction: row;
align-items: center;
justify-content: space-between;
gap: 10px;
  }

  .header-actions {
width: auto;
margin-left: auto;
align-items: center;
justify-content: flex-end;
  }

  .brand {
min-width: 0;
  }

  .brand-text {
min-width: 0;
  }

  .section-block, .panel { padding: 18px; }
  .hero { padding-top: 18px; }
}

/* Contact Banner Responsive Fixes */
@media (max-width: 860px) {
  .contact-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px;
  }
  .contact-banner strong {
    justify-content: center;
    font-size: 16px;
  }
  .contact-actions {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  /* Hero'daki butonları ve iletişim section'unu gizle */
  .hero-actions {
    display: none !important;
  }
  
  .contact-banner {
    display: none !important;
  }
  
  /* Footer responsive - simetrik hizalama */
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 16px 0;
  }
  
  .footer-inner > div {
    width: 100%;
  }
  
  /* Body'e padding ekle - sticky footer için */
  body {
    padding-bottom: 80px;
  }
  
  /* Sticky Footer - Mobil görünümde sabit alt çubuk */
  .sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
    padding: 12px 16px;
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    visibility: visible !important;
    opacity: 1 !important;
  }
  .sticky-footer-badge {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 12px;
    margin-bottom: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
  }
  .online-indicator {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
  }
  .online-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-online 1.5s ease-in-out infinite;
  }
  @keyframes pulse-online {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
  }
  
  .sticky-footer .btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    line-height: 1;
  }
  
  .sticky-footer .btn span {
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
  }
  
  .sticky-footer .btn-phone {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
  }
  
  .sticky-footer .btn-whatsapp {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
  }
  
  .sticky-footer .btn i,
  .sticky-footer .btn .emoji-icon {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    padding-right: 8px;
    height: 100%;
    line-height: 1;
  }
}

/* Çok küçük ekranlar için (iPhone SE vb.) */
@media (max-width: 360px) {
  .sticky-footer .btn {
    font-size: 11px;
    padding: 10px 6px;
    gap: 6px;
  }
  
  .sticky-footer .btn i,
  .sticky-footer .btn .emoji-icon {
    font-size: 15px;
    padding-right: 6px;
  }
}

/* Desktop'ta sticky footer gizli */
.sticky-footer {
  display: none;
}

/* Floating Buttons - Bottom Right */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.float-btn i,
.float-btn .emoji-icon {
  font-size: 28px;
  color: #fff;
  line-height: 1;
}

.float-phone {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.float-whatsapp {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Mobilde floating buttons gizle (sticky footer kullanılır) */
@media (max-width: 768px) {
  .floating-buttons {
    display: none;
  }
}

/* İlçelerimiz + Harita */
.ilceler-harita-row { display: flex; gap: 16px; margin-top: 24px; }
.ilceler-col, .harita-col { flex: 1; }

.ilceler-col .section-block { margin-top: 0; display: flex; flex-direction: column; }
.harita-col .section-block { margin-top: 0; display: flex; flex-direction: column; }

.harita-block { height: 100%; }
.harita-block .section-head { flex-shrink: 0; }
.harita-block .box-map { flex: 1; min-height: 0; }

.box-items {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(52px, auto);
  align-content: start;
  gap: 8px;
  flex: 1;
  overflow-y: auto;
  min-height: 260px;
  max-height: 260px;
}

.ilce-item {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-left: 3px solid #16a34a;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ilce-item:hover {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-left-color: #22c55e;
  transform: translateX(4px);
}

.box-map { flex: 1; min-height: 0; overflow: hidden; }
.box-map iframe { width: 100%; height: 100%; border: none; display: block; }

.box-empty { padding: 20px; text-align: center; color: #9ca3af; font-size: 13px; }

/* Varyant Seçenekleri */
.varyant-section { display: flex; flex-direction: column; }
.varyant-section .section-head { margin-bottom: 20px; }
.varyant-grid { 
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  max-height: 260px;
  overflow-y: auto;
}
.varyant-item {
  display: block;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-left: 3px solid #16a34a;
  text-decoration: none;
  transition: all 0.2s ease;
}
.varyant-item:hover {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-left-color: #22c55e;
  transform: translateX(4px);
}

@media (max-width: 600px) {
  .varyant-grid { grid-template-columns: 1fr; }
}

.variant-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  max-height: 260px;
  overflow-y: auto;
}
.variant-option-pill {
  display: block;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-left: 3px solid #16a34a;
  text-decoration: none;
  transition: all 0.2s ease;
}
.variant-option-pill:hover {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-left-color: #22c55e;
  transform: translateX(4px);
}

@media (max-width: 600px) {
  .variant-options-grid { grid-template-columns: 1fr; }
  .other-services-compact { font-size: 11px; gap: 6px; }
  .other-services-links a { padding: 2px 5px; }
}

@media (max-width: 768px) {
  .ilceler-harita-row { flex-direction: column; }
  .ilceler-col, .harita-col { width: 100%; }
}

/* Location Search Autocomplete */
.location-search-results {
  display: none;
  position: absolute;
  z-index: 100;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-top: 4px;
}

.location-search-results.is-open {
  display: block;
}

.location-search-item {
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
}

.location-search-item:hover {
  background: #f8fafc;
}

.location-search-item:last-child {
  border-bottom: none;
}

.location-search-item .level-badge {
  display: inline-block;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  background: #e2e8f0;
  color: #64748b;
  margin-right: 8px;
}

.location-search-item .level-badge.il { background: #dbeafe; color: #1d4ed8; }
.location-search-item .level-badge.ilce { background: #dcfce7; color: #16a34a; }
.location-search-item .level-badge.mahalle { background: #fef3c7; color: #d97706; }

.selected-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  min-height: 40px;
  padding: 8px;
  border: 1px dashed #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
}

.selected-location-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  font-size: 13px;
  color: #1d4ed8;
}

.selected-location-tag .remove-location {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 0;
  margin-left: 2px;
}

.selected-location-tag .remove-location:hover {
  color: #ef4444;
}

#location-search-field {
  position: relative;
}

#location-search-field input {
  width: 100%;
}

.admin-redirect-status {
  margin-bottom: 12px;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

.badge-active {
  background: #dcfce7;
  color: #166534;
}

.badge-inactive {
  background: #f1f5f9;
  color: #64748b;
}

.btn-secondary {
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #e2e8f0;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.btn-secondary:hover {
  background: #e2e8f0;
}

.admin-redirect-section {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
}

.admin-redirect-section h4 {
  margin: 0 0 8px 0;
  font-size: 15px;
  color: #991b1b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-redirect-section p {
  margin: 0 0 16px 0;
  font-size: 13px;
  color: #7f1d1d;
  line-height: 1.5;
}

.admin-redirect-section .btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
}

.admin-redirect-section .btn-danger-soft {
  background: #ef4444;
  color: #fff;
}

.admin-redirect-section .btn-danger-soft:hover {
  background: #dc2626;
}

.admin-redirect-section .btn-success-soft {
  background: #22c55e;
  color: #fff;
}

.admin-redirect-section .btn-success-soft:hover {
  background: #16a34a;
}

.admin-redirect-section .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
}

.admin-redirect-section .badge-active {
  background: #bbf7d0;
  color: #166534;
  border: 1px solid #86efac;
}

.admin-redirect-section .badge-inactive {
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

/* FAQ Section */
.faq-section {
  background: #f9f9f9;
  padding: 60px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 32px;
  align-items: stretch;
}

.faq-grid-no-image {
  grid-template-columns: 1fr;
}

.faq-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  background: #e5e5e5;
  height: 100%;
  min-height: 400px;
}

.faq-image-inner {
  position: absolute;
  inset: 0;
}

.faq-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faq-content {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.faq-content .section-head {
  text-align: left;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.faq-content .section-head h2 {
  font-size: 22px;
  margin-bottom: 6px;
  color: var(--text);
}

.faq-content .section-head p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-item {
  background: #fafafa;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: var(--accent);
  background: #fff;
}

.faq-item.open {
  border-color: var(--accent);
  background: #fff;
}

.faq-question {
  width: 100%;
  padding: 12px 14px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  font-family: inherit;
}

.faq-question span {
  flex: 1;
  padding-right: 8px;
}

.faq-chevron {
  font-size: 16px;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 14px 12px;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-image-wrapper {
    display: none;
  }

  .faq-section {
    padding: 40px 0;
  }

  .faq-content {
    padding: 20px;
  }
}

/* Reviews Section */
.reviews-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.reviews-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 320px);
  gap: 14px;
  overflow-x: auto;
  padding: 6px 2px 12px;
  scroll-snap-type: x proximity;
}

.reviews-grid::-webkit-scrollbar {
  height: 6px;
}

.reviews-grid::-webkit-scrollbar-track {
  background: rgba(21, 128, 61, 0.08);
  border-radius: 999px;
}

.reviews-grid::-webkit-scrollbar-thumb {
  background: rgba(21, 128, 61, 0.28);
  border-radius: 999px;
}

.review-card {
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid rgba(21, 128, 61, 0.12);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.review-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.review-author-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.review-role {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.review-stars {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.review-body {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
  font-size: 14px;
}

.review-meta {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-auto-columns: minmax(220px, 85vw);
  }
}

/* AI Button */
.ai-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  vertical-align: middle;
  margin-left: 12px;
}

.ai-badge-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.ai-badge-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.admin-card-head h3 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

/* Hero Form Transformation */

/* Teklif Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--surface);
  border-radius: 20px;
  padding: 32px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 80px rgba(0,0,0,0.25);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s;
}

.modal-backdrop.is-open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--muted);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.modal-close:hover {
  background: var(--line);
  color: var(--text);
}

.modal h2 {
  margin: 0 0 24px;
  font-size: 24px;
  color: var(--text);
}

.modal .form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.modal .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.modal label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.modal input,
.modal textarea {
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
  background: #fff;
}

.modal input:focus,
.modal textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.modal .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 16px;
}
