/* ============================================================
   Iç sayfa stilleri - forms, page-headers, tabs, etc.
   ============================================================ */

/* =============== PAGE HERO (smaller hero for sub-pages) =============== */
.page-hero{
  padding:80px 0 60px;
  position:relative;
  text-align:center;
  border-bottom:1px solid var(--line);
}
.page-hero .eyebrow{ margin-bottom:18px; }
.page-hero h1{
  font-size:clamp(40px, 5vw, 72px);
  margin-bottom:18px;
  letter-spacing:-.02em;
}
.page-hero h1 em{
  font-style:italic; color:var(--orange);
}
.page-hero p{
  font-size:18px; color:var(--muted);
  max-width:620px; margin:0 auto;
}

/* =============== BREADCRUMB =============== */
.breadcrumb{
  font-size:13px; color:var(--muted-2);
  letter-spacing:.04em;
  margin-bottom:20px;
  display:flex; gap:8px; justify-content:center;
}
.breadcrumb a{ color:var(--muted-2); transition:color .15s; }
.breadcrumb a:hover{ color:var(--orange); }
.breadcrumb .sep{ color:var(--line); }

/* =============== FORM SYSTEM =============== */
.form-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  padding:48px;
  box-shadow:0 12px 40px rgba(15,38,64,.04);
}
.form-grid{
  display:grid; grid-template-columns:repeat(2, 1fr);
  gap:20px;
}
.form-grid.cols-3{ grid-template-columns:repeat(3, 1fr); }
.form-grid > .full{ grid-column:1 / -1; }
.form-row + .form-row{ margin-top:18px; }
.field{ display:flex; flex-direction:column; gap:7px; }
.field label{
  font-size:13px; font-weight:600;
  color:var(--navy);
  letter-spacing:.02em;
}
.field label .req{ color:var(--orange); margin-left:2px; }
.field .hint{ font-size:12px; color:var(--muted-2); margin-top:2px; }
.input,
.textarea,
.select{
  width:100%;
  padding:13px 16px;
  font-family:var(--sans);
  font-size:14.5px;
  font-weight:400;
  color:var(--ink);
  background:var(--white);
  border:1.5px solid var(--line);
  border-radius:var(--r-md);
  transition:border-color .15s, background .15s, box-shadow .15s;
  appearance:none;
  -webkit-appearance:none;
}
.input:hover,.textarea:hover,.select:hover{ border-color:var(--muted-2); }
.input:focus,.textarea:focus,.select:focus{
  outline:none;
  border-color:var(--orange);
  box-shadow:0 0 0 4px rgba(242,100,25,.1);
  background:var(--white);
}
.textarea{ min-height:140px; resize:vertical; line-height:1.6; }
.select{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231B3A5C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 16px center;
  padding-right:40px;
}

/* Checkbox + radio */
.check{
  display:flex; align-items:flex-start; gap:12px;
  cursor:pointer;
  font-size:14px; line-height:1.5;
  color:var(--ink-2);
  user-select:none;
}
.check input{
  position:absolute;
  opacity:0; pointer-events:none;
}
.check .box{
  width:20px; height:20px;
  flex-shrink:0; margin-top:1px;
  border:1.5px solid var(--line);
  border-radius:5px;
  background:var(--white);
  display:flex; align-items:center; justify-content:center;
  transition:all .15s;
  position:relative;
}
.check input:checked + .box{
  background:var(--orange);
  border-color:var(--orange);
}
.check input:checked + .box::after{
  content:"";
  width:10px; height:6px;
  border-left:2px solid var(--white);
  border-bottom:2px solid var(--white);
  transform:rotate(-45deg) translate(1px, -1px);
}
.check input:focus + .box{
  box-shadow:0 0 0 4px rgba(242,100,25,.15);
}
.check.radio .box{ border-radius:50%; }
.check.radio input:checked + .box{ background:var(--white); border-color:var(--orange); border-width:6px; }
.check.radio input:checked + .box::after{ display:none; }

/* Pill radio (selectable cards) */
.radio-pills{
  display:flex; gap:10px; flex-wrap:wrap;
}
.radio-pills label{
  position:relative;
  cursor:pointer;
}
.radio-pills label input{
  position:absolute; opacity:0; pointer-events:none;
}
.radio-pills .pill{
  padding:11px 22px;
  font-size:14px; font-weight:500;
  color:var(--navy);
  background:var(--white);
  border:1.5px solid var(--line);
  border-radius:999px;
  transition:all .15s;
}
.radio-pills label:hover .pill{ border-color:var(--orange); color:var(--orange); }
.radio-pills input:checked + .pill{
  background:var(--orange);
  color:var(--white);
  border-color:var(--orange);
  box-shadow:0 4px 12px rgba(242,100,25,.25);
}

/* Select cards (paket selection) */
.select-cards{
  display:grid; grid-template-columns:repeat(4, 1fr);
  gap:14px;
}
@media (max-width:1080px){ .select-cards{ grid-template-columns:repeat(2, 1fr); } }
@media (max-width:560px){ .select-cards{ grid-template-columns:1fr; } }
.select-cards label{
  position:relative; cursor:pointer;
}
.select-cards label input{
  position:absolute; opacity:0; pointer-events:none;
}
.select-cards .card{
  padding:24px 22px;
  background:var(--white);
  border:1.5px solid var(--line);
  border-radius:var(--r-md);
  transition:all .2s;
  height:100%;
  display:flex; flex-direction:column;
}
.select-cards label:hover .card{ border-color:var(--orange-soft); transform:translateY(-2px); }
.select-cards input:checked + .card{
  border-color:var(--orange);
  border-width:2px;
  box-shadow:0 0 0 4px rgba(242,100,25,.08), 0 12px 24px rgba(242,100,25,.12);
  padding:23px 21px;
}
.select-cards .card h4{
  font-size:17px; margin-bottom:4px;
}
.select-cards .card .price{
  font-family:var(--display);
  font-size:28px; font-weight:600;
  color:var(--orange);
  margin:6px 0 4px;
}
.select-cards .card .duration{
  font-size:11px; color:var(--muted-2);
  letter-spacing:.16em; text-transform:uppercase;
  margin-bottom:14px;
}
.select-cards .card .desc{
  font-size:13px; color:var(--muted);
  line-height:1.5;
}

/* =============== STEPPER =============== */
.stepper{
  display:flex; gap:8px;
  margin-bottom:48px;
  position:sticky;
  top:90px;
  background:var(--white);
  padding:18px 22px;
  border-radius:var(--r-md);
  border:1px solid var(--line);
  z-index:20;
}
.step-pill{
  flex:1;
  display:flex; align-items:center; gap:10px;
  padding:6px 8px;
  font-size:12.5px;
  color:var(--muted-2);
  border-bottom:2px solid var(--line);
  transition:all .25s;
}
.step-pill .num{
  width:24px; height:24px;
  display:flex; align-items:center; justify-content:center;
  background:var(--line);
  color:var(--muted-2);
  font-weight:600;
  font-size:11px;
  border-radius:50%;
  transition:all .25s;
}
.step-pill.active{ color:var(--navy); border-bottom-color:var(--orange); }
.step-pill.active .num{ background:var(--orange); color:var(--white); }
.step-pill.done{ color:var(--navy); border-bottom-color:var(--orange); }
.step-pill.done .num{ background:var(--navy); color:var(--white); }
.step-pill.done .num::after{ content:"✓"; font-size:13px; }
.step-pill.done .num span{ display:none; }
@media (max-width:760px){
  .stepper{ flex-wrap:wrap; gap:4px; padding:12px; top:80px; }
  .step-pill{ font-size:11px; gap:6px; min-width:48%; }
  .step-pill .num{ width:20px; height:20px; font-size:10px; }
}

/* Step content visibility */
.step-content{ display:none; animation:stepIn .35s ease forwards; }
.step-content.active{ display:block; }
@keyframes stepIn{
  from{ opacity:0; transform:translateY(8px); }
  to{ opacity:1; transform:none; }
}
.step-actions{
  display:flex; justify-content:space-between;
  margin-top:36px;
  padding-top:28px;
  border-top:1px solid var(--line);
}
.step-actions .left{ display:flex; gap:10px; }
.step-actions .right{ display:flex; gap:10px; }

/* Field group with icon prefix */
.input-icon{
  position:relative;
}
.input-icon svg{
  position:absolute; left:14px; top:50%;
  transform:translateY(-50%);
  width:18px; height:18px;
  color:var(--muted-2);
  pointer-events:none;
}
.input-icon .input{
  padding-left:42px;
}

/* =============== PAGE LAYOUT =============== */
.page-section{
  padding:80px 0;
  position:relative;
}
.section-narrow{ max-width:880px; margin:0 auto; }
.two-col{
  display:grid; grid-template-columns:1.2fr 1fr;
  gap:60px;
  align-items:start;
}
@media (max-width:920px){
  .two-col{ grid-template-columns:1fr; gap:40px; }
}

/* =============== INFO CARDS / GRID =============== */
.info-grid{
  display:grid; grid-template-columns:repeat(2, 1fr);
  gap:24px;
}
@media (max-width:720px){ .info-grid{ grid-template-columns:1fr; } }
.info-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--r-md);
  padding:28px;
  transition:all .2s;
}
.info-card:hover{
  border-color:var(--orange-soft);
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(15,38,64,.06);
}
.info-card .ic-icon{
  width:44px; height:44px;
  background:var(--orange-tint);
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  color:var(--orange);
  margin-bottom:18px;
}
.info-card .ic-icon svg{ width:20px; height:20px; }
.info-card h4{ font-size:17px; margin-bottom:8px; color:var(--navy); }
.info-card p{ font-size:14px; color:var(--muted); margin:0; line-height:1.6; }

/* =============== CONTACT INFO LIST =============== */
.contact-list{
  list-style:none; padding:0; margin:0;
  display:grid; gap:18px;
}
.contact-list li{
  display:grid; grid-template-columns:auto 1fr;
  gap:18px;
  padding:18px 22px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--r-md);
}
.contact-list .ico{
  width:42px; height:42px;
  background:var(--orange-tint);
  color:var(--orange);
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
}
.contact-list .ico svg{ width:18px; height:18px; }
.contact-list strong{
  display:block;
  font-size:14px; font-weight:600;
  color:var(--navy);
  margin-bottom:4px;
}
.contact-list span,
.contact-list a{
  font-size:14px;
  color:var(--ink-2);
  display:block;
  text-decoration:none;
}
.contact-list a:hover{ color:var(--orange); }

/* =============== MAP PLACEHOLDER =============== */
.map-frame{
  width:100%; height:380px;
  border-radius:var(--r-lg);
  overflow:hidden;
  border:1px solid var(--line);
  position:relative;
  background:var(--white-3);
}
.map-frame iframe{
  width:100%; height:100%;
  border:0;
}

/* =============== HIZMETLER PAGE =============== */
.svc-detail{
  display:grid; grid-template-columns:1fr 1.4fr;
  gap:60px;
  align-items:start;
  padding:60px 0;
  border-top:1px solid var(--line);
}
.svc-detail:first-of-type{ border-top:0; }
@media (max-width:920px){ .svc-detail{ grid-template-columns:1fr; gap:30px; } }
.svc-side{ position:sticky; top:130px; }
.svc-side .svc-icon{
  width:64px; height:64px;
  background:var(--orange-tint);
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  color:var(--orange);
  margin-bottom:20px;
}
.svc-side .svc-icon svg{ width:28px; height:28px; }
.svc-side .price{
  font-family:var(--display);
  font-size:48px; font-weight:600;
  color:var(--navy);
  line-height:1;
  margin:14px 0 4px;
}
.svc-side .price .from{ font-size:14px; color:var(--muted); font-family:var(--sans); margin-left:6px; }
.svc-side .duration{
  font-size:11px; color:var(--muted-2);
  letter-spacing:.16em; text-transform:uppercase;
  margin-bottom:24px;
}

.svc-checklist{
  list-style:none; padding:0; margin:0 0 20px;
  display:grid; grid-template-columns:repeat(2, 1fr);
  gap:8px 24px;
}
@media (max-width:560px){ .svc-checklist{ grid-template-columns:1fr; } }
.svc-checklist li{
  font-size:14px; color:var(--ink-2);
  padding:8px 0;
  display:flex; gap:10px;
  border-bottom:1px solid var(--line-2);
}
.svc-checklist li::before{
  content:""; width:16px; height:16px; flex-shrink:0; margin-top:3px;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F26419' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center/contain;
}

/* =============== ABOUT VALUES =============== */
.values-grid{
  display:grid; grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
@media (max-width:880px){ .values-grid{ grid-template-columns:1fr; } }
.value-card{
  padding:36px 28px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  position:relative;
  overflow:hidden;
}
.value-card .num{
  font-family:var(--display);
  font-size:64px; font-weight:300;
  color:var(--orange);
  opacity:.25;
  position:absolute;
  top:14px; right:20px;
  line-height:1;
}
.value-card h3{ font-size:22px; margin-bottom:10px; }
.value-card p{ font-size:14.5px; color:var(--muted); margin:0; line-height:1.65; }

/* =============== ALERT / SUCCESS BOX =============== */
.success-box{
  text-align:center;
  padding:60px 40px;
  border-radius:var(--r-lg);
  background:linear-gradient(135deg, rgba(45,122,62,.05), rgba(45,122,62,0));
  border:1px solid rgba(45,122,62,.2);
}
.success-box .icon-wrap{
  width:72px; height:72px;
  background:rgba(45,122,62,.12);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:#2D7A3E;
  margin:0 auto 20px;
}
.success-box h2{ margin-bottom:14px; }
.success-box p{ color:var(--muted); }

/* =============== UTILITIES =============== */
.mt-0{ margin-top:0 !important; }
.mb-0{ margin-bottom:0 !important; }
.text-center{ text-align:center; }
