:root{
  --bg:#f6f8fb;
  --surface:#ffffff;
  --surface2:#f1f5fb;

  --text:#0f172a;
  --muted:#475569;

  --border:#e6edf7;
  --shadow: 0 12px 30px rgba(15, 23, 42, .08);

  --primary:#1e66ff;
  --primary2:#4ea1ff;

  --radius:18px;
}

/* Reset */
*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:
    radial-gradient(900px 380px at 20% 0%, rgba(30,102,255,.06), transparent 55%),
    radial-gradient(900px 380px at 85% 10%, rgba(202,163,90,.06), transparent 60%),
    var(--bg);
  color:var(--text);
}

a{color:var(--primary); text-decoration:none}
a:hover{opacity:.92}

.wrap{max-width:1180px; margin:0 auto; padding:24px}
@media (max-width:900px){ .wrap{padding:18px} }

/* ================= HEADER ================= */

header.nav{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(246,248,251,.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(230,237,247,.8);
}

.nav .wrap.nav-inner{
  display:flex;
  gap:18px;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

.brand{
  display:flex;
  gap:12px;
  align-items:center;
  font-weight:900;
}

.site-logo{
  width:44px;
  height:44px;
  object-fit:contain;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  padding:6px;
  box-shadow:0 10px 22px rgba(15,23,42,.06);
}

.links{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

.links a{
  color:var(--text);
  padding:10px 12px;
  border-radius:12px;
  border:1px solid transparent;
  font-weight:700;
}

.links a:hover{
  border-color:var(--border);
  background:var(--surface);
  box-shadow:0 10px 22px rgba(15,23,42,.06);
}

/* ================= BUTTONS ================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  font-weight:800;
  border:1px solid rgba(30,102,255,.20);
}

.btn.primary{
  background:linear-gradient(135deg, var(--primary), var(--primary2));
  color:#fff;
  border:none;
  box-shadow: 0 14px 26px rgba(30,102,255,.22);
}

.btn.ghost{
  background:var(--surface);
  border:1px solid var(--border);
}

/* ================= CARD ================= */

.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}

/* ================= H力ZMETLER HERO ================= */

.page-hero{
  border-radius:24px;
  padding:28px;
  background:
    radial-gradient(900px 380px at 10% 0%, rgba(30,102,255,.14), transparent 60%),
    linear-gradient(180deg,#fff,#fbfdff);
  box-shadow: 0 18px 45px rgba(15,23,42,.10);
}

.page-hero h1{
  margin:0 0 12px;
  font-size:44px;
  letter-spacing:-.5px;
}

.page-hero p{
  margin:0;
  color:#334155;
  max-width:75ch;
  line-height:1.6;
}

.pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}

.pill{
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
}

.hero-actions{
  margin-top:16px;
  display:flex;
  gap:10px;
}

/* ================= H力ZMET KARTLARI ================= */

.svc-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}

@media(max-width:980px){
  .svc-grid{grid-template-columns:1fr;}
}

.svc-card{
  border-radius:20px;
  padding:16px;
  background:linear-gradient(180deg,#fff,#fbfdff);
  border:1px solid rgba(15,23,42,.10);
  box-shadow:0 16px 34px rgba(15,23,42,.08);
  transition:.2s ease;
}

.svc-card:hover{
  transform:translateY(-4px);
}

.svc-kicker{
  font-size:12px;
  color:#64748b;
  font-weight:900;
  margin:0 0 6px;
}

.svc-title{
  margin:0 0 8px;
  font-size:18px;
  font-weight:900;
}

.svc-desc{
  margin:0 0 12px;
  color:#475569;
  line-height:1.6;
}

/* ===== MINI IMAGE STRIP ===== */

.svc-media{
  height:120px;
  border-radius:16px;
  margin-bottom:14px;
  overflow:hidden;
  position:relative;
  border:1px solid rgba(15,23,42,.08);
}

.svc-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.svc-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(255,255,255,.75), rgba(255,255,255,.05));
}

.svc-chip{
  position:absolute;
  left:12px;
  bottom:12px;
  padding:6px 10px;
  border-radius:999px;
  background:#fff;
  font-size:12px;
  font-weight:900;
  border:1px solid rgba(15,23,42,.10);
}

/* ===== ACCORDION ===== */

details.svc-acc{
  border:1px solid rgba(15,23,42,.10);
  border-radius:14px;
  margin-top:10px;
  background:#fff;
}

details.svc-acc summary{
  cursor:pointer;
  padding:10px 12px;
  font-weight:900;
  display:flex;
  justify-content:space-between;
}

details.svc-acc summary::-webkit-details-marker{
  display:none;
}

details.svc-acc summary:hover{
  background:rgba(30,102,255,.05);
}

.acc-grid{
  display:grid;
  grid-template-columns: 1.3fr .8fr;
  gap:14px;
  padding:0 14px 14px 14px;
}

@media(max-width:980px){
  .acc-grid{grid-template-columns:1fr;}
}

.svc-list{
  padding-left:18px;
  margin:0;
  line-height:1.8;
  color:#475569;
}

.acc-aside{
  border-radius:14px;
  padding:12px;
  background:linear-gradient(180deg,#fff,#fbfdff);
  border:1px solid rgba(15,23,42,.08);
}

.acc-aside .t{
  font-size:12px;
  font-weight:900;
  color:#64748b;
  margin:0 0 8px;
  text-transform:uppercase;
}

.acc-aside .b{
  font-size:14px;
  line-height:1.6;
  margin:0;
  color:#475569;
}

/* ================= FOOTER ================= */

.footer{
  margin-top:30px;
  padding:16px 0;
  border-top:1px solid var(--border);
  color:var(--muted);
  font-size:13px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
}

/* WhatsApp */
.whatsapp-btn{
  position:fixed;
  right:18px;
  bottom:18px;
  padding:12px 16px;
  border-radius:999px;
  background:#25D366;
  color:#fff;
  font-weight:900;
  box-shadow:0 16px 30px rgba(0,0,0,.18);
}
/* ================= CONTACT (İLETİŞİM) PREMIUM ================= */

/* İletişim sayfası başlığı (Hizmetler'deki .page-hero ile çakışmasın diye ayrı) */
.page-title{
  border-radius:24px;
  padding:28px;
  background:
    radial-gradient(900px 380px at 12% 0%, rgba(30,102,255,.14), transparent 60%),
    radial-gradient(700px 320px at 85% 10%, rgba(78,161,255,.10), transparent 55%),
    linear-gradient(180deg,#fff,#fbfdff);
  box-shadow:0 18px 45px rgba(15,23,42,.10);
  border:1px solid rgba(15,23,42,.06);
}

.page-title h1{
  margin:0 0 10px;
  font-size:44px;
  letter-spacing:-.5px;
}

.page-title p{
  margin:0;
  color:#334155;
  max-width:75ch;
  line-height:1.6;
}

/* Ana iletişim alanı */
.contact-premium{
  margin-top:18px;
}

.contact-grid{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap:18px;
  align-items:start;
}

@media(max-width:980px){
  .contact-grid{ grid-template-columns:1fr; }
}

/* Sol bilgi kartı */
.contact-aside-card{
  background:linear-gradient(180deg,#ffffff,#fbfdff);
  border:1px solid rgba(15,23,42,.10);
  border-radius:var(--radius);
  box-shadow:0 18px 45px rgba(15,23,42,.10);
  padding:22px;
}

.contact-aside-card h2{
  margin:0 0 10px;
  font-size:22px;
  letter-spacing:-.2px;
}

.contact-aside-card p{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.65;
}

.contact-badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:12px 0 16px;
}

.contact-badges .badge{
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
}

.contact-quick{
  margin-top:12px;
  padding-top:12px;
  border-top:1px dashed rgba(15,23,42,.12);
  display:grid;
  gap:10px;
}

.quick-row{
  display:flex;
  justify-content:space-between;
  gap:10px;
}

.quick-label{
  color:var(--muted);
  font-size:12px;
  font-weight:800;
}

.quick-value{
  font-weight:900;
}

.contact-note{
  margin-top:12px;
  font-size:12px;
  color:var(--muted);
}

/* Sağ form kartı */
.contact-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
}

.contact-card-head h2{
  margin:0;
  font-size:24px;
  letter-spacing:-.2px;
}

.contact-card-head .muted{
  margin:6px 0 0;
  color:var(--muted);
  font-size:13px;
}

/* Alertler */
.alert{
  margin:12px 0;
  padding:12px 14px;
  border-radius:14px;
  font-size:14px;
  font-weight:700;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
}

.alert.ok{
  border-color:rgba(34,197,94,.25);
  background:rgba(34,197,94,.08);
}

.alert.err{
  border-color:rgba(239,68,68,.25);
  background:rgba(239,68,68,.08);
}

/* Form düzeni */
.form-premium{
  margin-top:14px;
}

.hp{ display:none !important; }

.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

@media(max-width:980px){
  .grid-2{ grid-template-columns:1fr; }
}

/* Floating label alan grubu */
.fgroup{
  position:relative;
  margin-bottom:12px;
}

.fgroup input,
.fgroup textarea{
  width:100%;
  padding:16px 14px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.14);
  background:#fff;
  outline:none;
  transition:.2s ease;
  font: inherit;
}

.fgroup textarea{
  min-height:150px;
  resize:vertical;
}

/* label */
.fgroup label{
  position:absolute;
  left:12px;
  top:14px;
  padding:0 6px;
  background:#fff;
  border-radius:8px;
  color:#64748b;
  font-size:14px;
  font-weight:800;
  pointer-events:none;
  transition:.18s ease;
}

/* focus */
.fgroup input:focus,
.fgroup textarea:focus{
  border-color:rgba(30,102,255,.55);
  box-shadow:0 0 0 4px rgba(30,102,255,.10);
}

/* placeholder=" " ile çalışır */
.fgroup input:focus + label,
.fgroup textarea:focus + label,
.fgroup input:not(:placeholder-shown) + label,
.fgroup textarea:not(:placeholder-shown) + label{
  top:-9px;
  font-size:12px;
  color:rgba(30,102,255,.95);
}

.help{
  display:block;
  margin-top:8px;
  font-size:12px;
  color:var(--muted);
}

/* KVKK satırı */
.kvkk-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
  margin:6px 0 10px;
}

@media(max-width:980px){
  .kvkk-row{ flex-direction:column; }
}

.kvkk-check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:13px;
  color:#0f172a;
  line-height:1.45;
}

.kvkk-check input{
  margin-top:3px;
}

.kvkk-link{
  font-size:13px;
  font-weight:900;
  white-space:nowrap;
}

@media(max-width:980px){
  .kvkk-link{ white-space:normal; }
}

/* Buton alanı */
.form-actions{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
  margin-top:10px;
}

.btn-wide{
  padding-left:18px;
  padding-right:18px;
}

.contact-footer{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(15,23,42,.08);
  color:var(--muted);
  font-size:13px;
}
/* ================= CONTACT (İLETİŞİM) PREMIUM ================= */

/* İletişim sayfası başlığı (Hizmetler'deki .page-hero ile çakışmasın diye ayrı) */
.page-title{
  border-radius:24px;
  padding:28px;
  background:
    radial-gradient(900px 380px at 12% 0%, rgba(30,102,255,.14), transparent 60%),
    radial-gradient(700px 320px at 85% 10%, rgba(78,161,255,.10), transparent 55%),
    linear-gradient(180deg,#fff,#fbfdff);
  box-shadow:0 18px 45px rgba(15,23,42,.10);
  border:1px solid rgba(15,23,42,.06);
}

.page-title h1{
  margin:0 0 10px;
  font-size:44px;
  letter-spacing:-.5px;
}

.page-title p{
  margin:0;
  color:#334155;
  max-width:75ch;
  line-height:1.6;
}

.contact-premium{ margin-top:18px; }

.contact-grid{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap:18px;
  align-items:start;
}
@media(max-width:980px){
  .contact-grid{ grid-template-columns:1fr; }
}

/* Sol bilgi kartı */
.contact-aside-card{
  background:linear-gradient(180deg,#ffffff,#fbfdff);
  border:1px solid rgba(15,23,42,.10);
  border-radius:var(--radius);
  box-shadow:0 18px 45px rgba(15,23,42,.10);
  padding:22px;
}

.contact-aside-card h2{
  margin:0 0 10px;
  font-size:22px;
  letter-spacing:-.2px;
}

.contact-aside-card p{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.65;
}

.contact-badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:12px 0 16px;
}
.contact-badges .badge{
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
}

.contact-quick{
  margin-top:12px;
  padding-top:12px;
  border-top:1px dashed rgba(15,23,42,.12);
  display:grid;
  gap:10px;
}
.quick-row{ display:flex; justify-content:space-between; gap:10px; }
.quick-label{ color:var(--muted); font-size:12px; font-weight:800; }
.quick-value{ font-weight:900; }

.contact-note{
  margin-top:12px;
  font-size:12px;
  color:var(--muted);
}

/* Sağ form kartı */
.contact-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
}

.contact-card-head h2{
  margin:0;
  font-size:24px;
  letter-spacing:-.2px;
}
.contact-card-head .muted{
  margin:6px 0 0;
  color:var(--muted);
  font-size:13px;
}

/* Alertler */
.alert{
  margin:12px 0;
  padding:12px 14px;
  border-radius:14px;
  font-size:14px;
  font-weight:700;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
}
.alert.ok{
  border-color:rgba(34,197,94,.25);
  background:rgba(34,197,94,.08);
}
.alert.err{
  border-color:rgba(239,68,68,.25);
  background:rgba(239,68,68,.08);
}

.form-premium{ margin-top:14px; }
.hp{ display:none !important; }

.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
@media(max-width:980px){
  .grid-2{ grid-template-columns:1fr; }
}

/* Floating label */
.fgroup{
  position:relative;
  margin-bottom:12px;
}
.fgroup input,
.fgroup textarea{
  width:100%;
  padding:16px 14px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.14);
  background:#fff;
  outline:none;
  transition:.2s ease;
  font:inherit;
}
.fgroup textarea{ min-height:150px; resize:vertical; }

.fgroup label{
  position:absolute;
  left:12px;
  top:14px;
  padding:0 6px;
  background:#fff;
  border-radius:8px;
  color:#64748b;
  font-size:14px;
  font-weight:800;
  pointer-events:none;
  transition:.18s ease;
}

.fgroup input:focus,
.fgroup textarea:focus{
  border-color:rgba(30,102,255,.55);
  box-shadow:0 0 0 4px rgba(30,102,255,.10);
}

/* placeholder=" " ile çalışır */
.fgroup input:focus + label,
.fgroup textarea:focus + label,
.fgroup input:not(:placeholder-shown) + label,
.fgroup textarea:not(:placeholder-shown) + label{
  top:-9px;
  font-size:12px;
  color:rgba(30,102,255,.95);
}

.help{
  display:block;
  margin-top:8px;
  font-size:12px;
  color:var(--muted);
}

/* KVKK */
.kvkk-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
  margin:6px 0 10px;
}
@media(max-width:980px){
  .kvkk-row{ flex-direction:column; }
}
.kvkk-check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:13px;
  color:#0f172a;
  line-height:1.45;
}
.kvkk-check input{ margin-top:3px; }

.kvkk-link{
  font-size:13px;
  font-weight:900;
  white-space:nowrap;
}
@media(max-width:980px){
  .kvkk-link{ white-space:normal; }
}

/* Buton */
.form-actions{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
  margin-top:10px;
}
.btn-wide{ padding-left:18px; padding-right:18px; }

.contact-footer{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(15,23,42,.08);
  color:var(--muted);
  font-size:13px;
}