/* ============================================
   VEXALAP — Kurumsal 3D Baskı Üretim Servisi
   ============================================ */

:root {
  --navy:       #0F1B2D;
  --navy-light: #1A2C45;
  --steel:      #4A5568;
  --steel-light:#718096;
  --blue:       #1E5F8C;
  --blue-dark:  #154766;
  --orange:     #E76F2C;
  --orange-dark:#C8581C;
  --bg:         #F7F8FA;
  --bg-alt:     #EEF1F5;
  --white:      #FFFFFF;
  --text:       #1A202C;
  --text-muted: #5A6472;
  --border:     #E1E5EB;
  --radius:     8px;
  --shadow-sm:  0 1px 3px rgba(15,27,45,.08);
  --shadow-md:  0 4px 16px rgba(15,27,45,.10);
  --shadow-lg:  0 12px 40px rgba(15,27,45,.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 6%; }
@media (max-width: 600px) { .container { padding: 0 5%; } }

h1, h2, h3, h4 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--navy);
}

/* ====== TOP BAR ====== */
.topbar {
  background: var(--navy);
  color: #C9D3E0;
  font-size: .82rem;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-links { display: flex; gap: 22px; }
.topbar-links a { text-decoration: none; color: #C9D3E0; display: inline-flex; align-items: center; gap: 6px; transition: color .2s; }
.topbar-links a:hover { color: var(--orange); }
.topbar-right { display: flex; gap: 18px; align-items: center; }
.topbar-right a { text-decoration: none; color: #C9D3E0; }

/* ====== NAV ====== */
nav.mainnav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 200;
  box-shadow: var(--shadow-sm);
}
.mainnav .container { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 6px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-name {
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.35rem;
  color: var(--navy); letter-spacing: -0.5px;
}
.brand-name span { color: var(--orange); }

.navlinks { display: flex; gap: 30px; list-style: none; align-items: center; }
.navlinks a {
  text-decoration: none; color: var(--text); font-weight: 600; font-size: .93rem;
  position: relative; padding: 6px 0; transition: color .2s;
}
.navlinks a:hover { color: var(--blue); }
.navlinks a.active { color: var(--blue); }
.navlinks a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--orange);
}

.nav-cta {
  background: var(--orange); color: var(--white);
  padding: 11px 24px; border-radius: 6px;
  font-weight: 700; font-size: .9rem; text-decoration: none;
  transition: background .2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--orange-dark); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle svg { stroke: var(--navy); }

@media (max-width: 940px) {
  .navlinks { display: none; }
  .nav-toggle { display: block; }
  .topbar-links span.hide-mobile { display: none; }
}
@media (max-width: 600px) {
  .nav-cta { padding: 9px 16px; font-size: .82rem; }
  .topbar { font-size: .72rem; }
}

/* Mobile menu */
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 10px 6% 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { text-decoration: none; color: var(--text); font-weight: 600; padding: 12px 0; border-bottom: 1px solid var(--bg-alt); }

/* ====== BREADCRUMB ====== */
.breadcrumb {
  background: var(--bg-alt); padding: 14px 0; font-size: .85rem;
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--steel); text-decoration: none; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span.sep { margin: 0 8px; color: var(--steel-light); }
.breadcrumb span.current { color: var(--navy); font-weight: 600; }

/* ====== PAGE HERO (sub-pages) ====== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 64px 0 56px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow {
  color: var(--orange); font-weight: 700; font-size: .82rem; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 14px;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 14px; }
.page-hero p { color: #C9D3E0; max-width: 600px; font-size: 1.05rem; }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 6px;
  font-weight: 700; font-size: .95rem; text-decoration: none;
  border: none; cursor: pointer; transition: all .2s;
  font-family: 'Source Sans 3', sans-serif;
}
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); }
.btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-outline-navy { background: transparent; border: 2px solid var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ====== SECTION COMMONS ====== */
section { padding: 80px 0; }
.section-alt { background: var(--white); }
.eyebrow {
  color: var(--orange); font-weight: 700; font-size: .8rem; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 12px;
}
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 16px; line-height: 1.2; }
.section-sub { color: var(--text-muted); max-width: 600px; font-size: 1.02rem; }
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* ====== CARDS ====== */
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--blue); }

/* ====== STATS BAR ====== */
.stats-bar {
  background: var(--navy); padding: 0;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stats-bar .stat { padding: 36px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.stats-bar .stat:last-child { border-right: none; }
.stat-num { font-family: 'Archivo', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--white); }
.stat-num span { color: var(--orange); }
.stat-label { color: #A8B5C7; font-size: .82rem; margin-top: 6px; text-transform: uppercase; letter-spacing: .5px; }
@media (max-width: 760px) {
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .stats-bar .stat:nth-child(2) { border-right: none; }
}
@media (max-width: 420px) {
  .stats-bar .stat { padding: 24px 10px; }
  .stat-num { font-size: 1.6rem; }
}

/* ====== FAQ ====== */
.faq-list { display: flex; flex-direction: column; gap: 4px; max-width: 820px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  padding: 20px 26px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 700; font-size: .96rem; gap: 16px; user-select: none;
  color: var(--navy);
}
.faq-arrow { color: var(--orange); flex-shrink: 0; transition: transform .25s; font-size: 1.3rem; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--text-muted); font-size: .92rem; padding: 0 26px; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 26px 22px; }

/* ====== FORM ====== */
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: .82rem; font-weight: 700; margin-bottom: 7px; color: var(--navy); text-transform: uppercase; letter-spacing: .4px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; background: var(--bg); border: 1px solid var(--border);
  color: var(--text); padding: 12px 16px; border-radius: 6px;
  font-size: .95rem; font-family: inherit; outline: none; transition: border-color .2s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--blue); background: var(--white); }
.form-field textarea { resize: vertical; min-height: 110px; }

/* ====== FOOTER ====== */
footer { background: var(--navy); color: #B8C2D2; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand .brand-name { color: var(--white); }
.footer-desc { font-size: .88rem; line-height: 1.7; max-width: 280px; color: #94A2B8; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 6px; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  transition: background .2s;
}
.footer-social a:hover { background: var(--orange); }
.footer-col h4 { color: var(--white); font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { text-decoration: none; color: #94A2B8; font-size: .88rem; transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: .88rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: .82rem; color: #7C8AA0;
}
.footer-bottom a { text-decoration: none; color: #7C8AA0; }
.footer-bottom a:hover { color: var(--orange); }

/* ====== BREADCRUMB SCHEMA HELPER (visual list) ====== */
.tag-pill {
  display: inline-block; background: rgba(30,95,140,.08); color: var(--blue);
  border: 1px solid rgba(30,95,140,.2); padding: 4px 12px; border-radius: 100px;
  font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
}
.tag-pill.orange { background: rgba(231,111,44,.08); color: var(--orange-dark); border-color: rgba(231,111,44,.25); }

/* Scroll-reveal helper */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ====== RESPONSIVE 2-COLUMN GRID HELPERS ======
   Replaces inline "grid-template-columns:1fr 1fr" etc. so mobile can stack. */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.grid-2col.reverse-mobile > *:first-child { order: 2; }
.grid-2col.reverse-mobile > *:last-child { order: 1; }

.grid-2col-uneven {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
}
.grid-2col-wide {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.grid-2col-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 860px) {
  .grid-2col,
  .grid-2col-uneven,
  .grid-2col-wide {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .grid-2col.reverse-mobile > *:first-child { order: 1; }
  .grid-2col.reverse-mobile > *:last-child { order: 2; }
}
@media (max-width: 480px) {
  .grid-2col-form { grid-template-columns: 1fr; }
}

/* ====== GLOBAL RESPONSIVE SAFETY NET ====== */
img, svg { max-width: 100%; height: auto; }
table { width: 100%; }
.container { width: 100%; }

@media (max-width: 600px) {
  table:not(.no-scroll) { display: block; overflow-x: auto; white-space: nowrap; }
}

@media (max-width: 600px) {
  h1 { word-break: break-word; }
  section { padding: 56px 0; }
  .page-hero { padding: 56px 0 44px !important; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions, .stats-bar, .footer-bottom { text-align: center; }
}
@media (max-width: 420px) {
  .nav-cta { display: none; }
}

/* ====== BLOG ====== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.blog-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: box-shadow .25s, transform .25s, border-color .25s;
  display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--blue); }
.blog-card-img {
  height: 170px; background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.blog-card-img svg { opacity: .9; }
.blog-card-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--orange); color: white; font-size: .7rem; font-weight: 700;
  padding: 4px 12px; border-radius: 100px; text-transform: uppercase; letter-spacing: .4px;
}
.blog-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { font-size: .76rem; color: var(--steel-light); margin-bottom: 10px; display: flex; gap: 10px; align-items: center; }
.blog-card-title { font-size: 1.08rem; margin-bottom: 10px; line-height: 1.35; }
.blog-card-excerpt { color: var(--text-muted); font-size: .87rem; flex: 1; margin-bottom: 14px; }
.blog-card-link { color: var(--blue); font-weight: 700; font-size: .85rem; text-decoration: none; }

.blog-article { max-width: 760px; margin: 0 auto; }
.blog-article h2 { font-size: 1.5rem; margin: 36px 0 14px; }
.blog-article h3 { font-size: 1.2rem; margin: 28px 0 12px; }
.blog-article p { color: var(--text); margin-bottom: 16px; line-height: 1.75; }
.blog-article ul, .blog-article ol { margin: 0 0 18px 22px; color: var(--text); line-height: 1.75; }
.blog-article li { margin-bottom: 8px; }
.blog-article blockquote {
  border-left: 3px solid var(--orange); padding: 4px 0 4px 20px; margin: 24px 0;
  color: var(--text-muted); font-style: italic; font-size: .98rem;
}
.blog-article table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .9rem; }
@media (max-width: 600px) {
  .blog-article table { display: block; overflow-x: auto; white-space: nowrap; }
}
.blog-article th { background: var(--navy); color: white; padding: 12px 16px; text-align: left; }
.blog-article td { padding: 10px 16px; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.blog-article tr:nth-child(even) td { background: var(--bg); }

.article-hero-meta { display: flex; gap: 16px; align-items: center; color: #C9D3E0; font-size: .88rem; flex-wrap: wrap; }
.article-tag { background: rgba(231,111,44,.15); color: #FFB28A; padding: 3px 12px; border-radius: 100px; font-size: .76rem; font-weight: 700; text-transform: uppercase; }

.related-posts { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; margin-top: 16px; }

/* ====== LEGAL PAGES (KVKK / Gizlilik) ====== */
.legal-content { max-width: 800px; }
.legal-content h2 { font-size: 1.35rem; margin: 32px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.05rem; margin: 22px 0 10px; color: var(--blue); }
.legal-content p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.75; }
.legal-content ul { margin: 0 0 16px 22px; color: var(--text-muted); line-height: 1.75; }
.legal-content li { margin-bottom: 6px; }
.legal-toc {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 28px; margin-bottom: 36px;
}
.legal-toc h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .5px; color: var(--navy); margin-bottom: 14px; }
.legal-toc ol { margin: 0 0 0 18px; display: flex; flex-direction: column; gap: 8px; }
.legal-toc a { color: var(--blue); text-decoration: none; font-size: .9rem; }
.legal-toc a:hover { text-decoration: underline; }
.legal-updated { font-size: .82rem; color: var(--steel-light); margin-bottom: 28px; }

/* ====== WA SEND BUTTON IN FORM ====== */
.btn-wa {
  background: #25D366; color: white;
}
.btn-wa:hover { background: #1ebc59; }
.form-divider {
  display: flex; align-items: center; gap: 12px; margin: 18px 0;
  color: var(--steel-light); font-size: .82rem; text-transform: uppercase; letter-spacing: .5px;
}
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* Slider */
.page-hero{position:relative;overflow:hidden;padding:0!important}
.hero-slider{position:relative;height:650px}
.slide{position:absolute;inset:0;display:flex;align-items:center;opacity:0;transition:opacity .8s}
.slide.active{opacity:1}
.slide::before{content:'';position:absolute;inset:0;background:rgba(0,0,0,.55)}
.slide-content{position:relative;z-index:2;max-width:700px;color:#fff;padding:120px 20px}
.slide h1{font-size:clamp(2.2rem,5vw,4rem);margin-bottom:15px}
.slide p{font-size:1.1rem;margin-bottom:25px}
.slide1{background:url('https://images.unsplash.com/photo-1532187643603-ba119ca4109e?auto=format&fit=crop&w=1600&q=80') center/cover}
.slide2{background:url('https://images.unsplash.com/photo-1581092921461-eab62e97a780?auto=format&fit=crop&w=1600&q=80') center/cover}
.slide3{background:url('https://images.unsplash.com/photo-1565043589221-1a6fd9ae45c7?auto=format&fit=crop&w=1600&q=80') center/cover}

.hero-slider{height:520px;position:relative;overflow:hidden}
.hero-slider .slide{position:absolute;inset:0;opacity:0;transition:.8s;background:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),url('https://images.unsplash.com/photo-1532614338840-ab30cf10ed36?q=80&w=1600&auto=format&fit=crop') center/cover}
.hero-slider .slide:nth-child(2){background:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),url('https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?q=80&w=1600&auto=format&fit=crop') center/cover}
.hero-slider .slide:nth-child(3){background:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),url('https://images.unsplash.com/photo-1565043589221-1a6fd9ae45c7?q=80&w=1600&auto=format&fit=crop') center/cover}
.hero-slider .active{opacity:1}
.hero-slider .overlay{color:#fff;max-width:1240px;margin:auto;padding:180px 6%}
.hero-slider h1{color:#fff;font-size:56px}

/* ============================================
   MODERN İLETİŞİM FORMU KARTI
   ============================================ */

/* Kart sarmalayıcı */
.contact-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(15,27,45,.10), 0 1px 4px rgba(15,27,45,.06);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* Kart başlığı — gradient şerit */
.contact-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 36px;
  background: linear-gradient(135deg, var(--navy) 0%, #1A2C45 100%);
  border-bottom: 3px solid var(--orange);
}
.contact-card-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: rgba(231,111,44,.2);
  border: 1.5px solid rgba(231,111,44,.4);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card-title {
  font-family: 'Archivo', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 4px;
}
.contact-card-sub {
  font-size: .85rem;
  color: #94A2B8;
  margin: 0;
}

/* Form alanları */
.contact-card form {
  padding: 32px 36px 36px;
}

.cf-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 540px) {
  .cf-row-2 { grid-template-columns: 1fr; }
  .contact-card-header { padding: 22px 24px; }
  .contact-card form { padding: 24px; }
}

.cf-field {
  margin-bottom: 18px;
}

/* Label — ikon + metin */
.cf-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--navy);
  margin-bottom: 8px;
}
.cf-label svg { color: var(--blue); flex-shrink: 0; }

/* Input ortak */
.cf-input {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .95rem;
  color: var(--text);
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  appearance: none;
}
.cf-input:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(30,95,140,.1);
}
.cf-input::placeholder { color: #A0ADB8; }

/* Select sarmalayıcı */
.cf-select-wrap {
  position: relative;
}
.cf-select-wrap .cf-input {
  padding-right: 40px;
  cursor: pointer;
}
.cf-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--steel);
}

/* Textarea */
.cf-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* KVKK onay kutusu */
.cf-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  cursor: pointer;
}
.cf-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.cf-check-box {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  border-radius: 6px;
  border: 2px solid var(--border);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s;
}
.cf-check input:checked ~ .cf-check-box {
  background: var(--blue);
  border-color: var(--blue);
}
.cf-check input:checked ~ .cf-check-box::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}
.cf-check-text {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.cf-check-text a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* WhatsApp butonu — tek büyük CTA */
.cf-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #25D366 0%, #1eb85a 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  letter-spacing: .2px;
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
  transition: transform .18s, box-shadow .18s, filter .18s;
  position: relative;
  overflow: hidden;
}
.cf-wa-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.12) 0%, transparent 60%);
  pointer-events: none;
}
.cf-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,.5);
  filter: brightness(1.05);
}
.cf-wa-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.cf-wa-arrow {
  margin-left: auto;
  flex-shrink: 0;
  opacity: .75;
}

/* Alt bilgi notu */
.cf-wa-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: .78rem;
  color: var(--text-muted);
  text-align: center;
  justify-content: center;
}
.cf-wa-hint svg { flex-shrink: 0; color: #6B7280; }

/* Fiyat al — dosya eki notu */
.fiyat-file-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  background: rgba(30,95,140,.06);
  border: 1px solid rgba(30,95,140,.18);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: .84rem;
  color: var(--blue);
  line-height: 1.5;
}
.fiyat-file-note svg { flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   İLETİŞİM SAYFASI — YENİDEN TASARIM
   ============================================================ */

/* Ana grid: sol bilgiler | sağ form */
.iletisim-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 960px) {
  .iletisim-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Sol kolon başlık */
.iletisim-baslik {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.iletisim-alt {
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* İletişim kartları listesi */
.ci-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

/* Tekil kart */
.ci-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  text-decoration: none;
  color: var(--navy);
  transition: border-color .2s, box-shadow .2s, transform .15s;
}
.ci-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(30,95,140,.10);
  transform: translateY(-1px);
}
.ci-info { cursor: default; }
.ci-info:hover { transform: none; box-shadow: none; border-color: var(--border); }

/* İkon sarmalayıcı */
.ci-icon-wrap {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(30,95,140,.08);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ci-icon-wa { background: rgba(37,211,102,.12); color: #1a9e4e; }

.ci-etiket {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 3px;
}
.ci-deger {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}
.ci-ok {
  margin-left: auto;
  flex-shrink: 0;
  color: var(--steel-light);
  opacity: .5;
}

/* Tel kartı özel hover */
.ci-tel:hover { border-color: var(--orange); }
.ci-tel:hover .ci-icon-wrap { background: rgba(231,111,44,.1); color: var(--orange); }
.ci-wa:hover { border-color: #25D366; }
.ci-wa:hover .ci-icon-wrap { background: rgba(37,211,102,.18); }

/* ─── ARA BUTONU ─── */
.ara-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 14px;
  padding: 18px 24px;
  text-decoration: none;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(231,111,44,.40);
  transition: transform .2s, box-shadow .2s;
}
.ara-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(231,111,44,.55);
}
.ara-btn:active { transform: translateY(0); }

/* Nabız efekti (ping) */
.ara-btn-pulse {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  animation: ping 2s ease-in-out infinite;
}
@keyframes ping {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: .6; }
  50%       { transform: translateY(-50%) scale(1.5); opacity: 0; }
}

.ara-btn > svg { position: relative; z-index: 1; flex-shrink: 0; }

.ara-btn-metin {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.ara-btn-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: .85;
  margin-bottom: 2px;
}
.ara-btn-tel {
  font-family: 'Archivo', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.3px;
}

/* form kartı — sağ kolon tam genişlik */
.iletisim-grid .contact-card {
  width: 100%;
}
.contact-card form {
  padding: 28px 32px 32px;
}
@media (max-width: 540px) {
  .contact-card form { padding: 20px; }
  .contact-card-header { padding: 20px; }
  .ara-btn-tel { font-size: 1.05rem; }
}

/* ============================================
   İLETİŞİM SAYFASI — TUTARLI KART TASARIMI
   ============================================ */

.iletisim-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 860px) {
  .iletisim-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ====== SOL: BİLGİ KARTI (form kartıyla aynı dil) ====== */
.info-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(15,27,45,.10), 0 1px 4px rgba(15,27,45,.06);
  overflow: hidden;
  border: 1px solid var(--border);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--navy) 0%, #1A2C45 100%);
  border-bottom: 3px solid var(--blue);
}
.info-card-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: rgba(30,95,140,.25);
  border: 1.5px solid rgba(30,95,140,.5);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-card-title {
  font-family: 'Archivo', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 4px;
}
.info-card-sub {
  font-size: .85rem;
  color: #94A2B8;
  margin: 0;
  line-height: 1.5;
}

.info-card-body {
  padding: 18px 20px 26px;
}

/* İletişim satırları */
.ci-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  transition: background .2s;
}
a.ci-row:hover { background: var(--bg); }
.ci-row-static { cursor: default; }

.ci-row-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(30,95,140,.08);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ci-row-icon-wa {
  background: rgba(37,211,102,.12);
  color: #1eb85a;
}

.ci-row-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.ci-row-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
}
.ci-row-value {
  font-size: .98rem;
  font-weight: 700;
  color: var(--navy);
  word-break: break-word;
}
.ci-row-arrow {
  flex-shrink: 0;
  color: var(--steel-light);
  transition: transform .2s, color .2s;
}
.ci-row:hover .ci-row-arrow {
  transform: translateX(3px);
  color: var(--blue);
}

/* Satırlar arası ince ayraç */
.ci-row:not(:last-child) {
  border-bottom: 1px solid var(--bg-alt);
}
.ci-row-wa:not(:last-child),
.ci-row-static:not(:last-child) {
  border-bottom: 1px solid var(--bg-alt);
}

/* ARA BUTONU — bilgi kartının altında, dolu CTA */
.ara-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 12px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(231,111,44,.3);
  transition: transform .18s, box-shadow .18s;
}
.ara-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(231,111,44,.42);
}
.ara-btn-pulse {
  position: absolute;
  left: 20px;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  animation: araPulse 2s ease-out infinite;
  z-index: 0;
}
@keyframes araPulse {
  0%   { transform: scale(0.6); opacity: .7; }
  100% { transform: scale(1.6); opacity: 0; }
}
.ara-btn svg { position: relative; z-index: 1; flex-shrink: 0; }
.ara-btn-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.ara-btn-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: white;
}
.ara-btn-tel {
  font-size: .82rem;
  color: rgba(255,255,255,.85);
  font-weight: 600;
}

@media (max-width: 540px) {
  .info-card-header { padding: 22px 22px; }
}
@media (max-width: 480px) {
  .info-card-body { padding: 14px 14px 20px; }
}

/* ============================================
   MOBİL HIZLI İLETİŞİM BUTONLARI
   (Telefon + WhatsApp + Instagram — sağ alt sabit grup)
   ============================================ */
.wa-float-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  transition: opacity .2s ease;
}

.quick-contact-btn {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .22s, box-shadow .22s;
}
.quick-contact-btn:hover { transform: scale(1.1); }
.quick-contact-btn svg { position: relative; z-index: 1; }

/* WhatsApp */
.wa-float {
  background: linear-gradient(135deg, #2cdf6e 0%, #1eb85a 100%);
  box-shadow: 0 6px 28px rgba(37,211,102,.55), 0 2px 8px rgba(0,0,0,.15);
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.45);
  animation: waFloatPulse 2.2s ease-out infinite;
}
.wa-float:hover { box-shadow: 0 10px 36px rgba(37,211,102,.7), 0 2px 10px rgba(0,0,0,.2); }
@keyframes waFloatPulse {
  0%   { transform: scale(0.85); opacity: .9; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* Telefon */
.phone-float {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  box-shadow: 0 6px 28px rgba(30,95,140,.5), 0 2px 8px rgba(0,0,0,.15);
}
.phone-float:hover { box-shadow: 0 10px 36px rgba(30,95,140,.65), 0 2px 10px rgba(0,0,0,.2); }

/* Instagram */
.insta-float {
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 60%, #6228d7 100%);
  box-shadow: 0 6px 28px rgba(238,42,123,.45), 0 2px 8px rgba(0,0,0,.15);
}
.insta-float:hover { box-shadow: 0 10px 36px rgba(238,42,123,.6), 0 2px 10px rgba(0,0,0,.2); }

/* Hover etiketleri (sadece masaüstü) */
.quick-contact-label {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--navy);
  color: white;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(15,27,45,.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.quick-contact-label::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--navy);
}
.quick-contact-btn:hover .quick-contact-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Mobilde: sadece 3 ikon, etiketsiz, küçültülmüş */
@media (max-width: 768px) {
  .quick-contact-label { display: none; }
  .wa-float-wrap { bottom: 16px; right: 14px; gap: 10px; }
  .quick-contact-btn { width: 48px; height: 48px; }
  .quick-contact-btn svg { width: 22px; height: 22px; }
}
@media (max-width: 480px) {
  /* Form alanlarının float butonlarla görsel çakışmasını engelle */
  .contact-card form,
  #quote-form {
    padding-bottom: 70px;
  }
}

/* ============================================
   ŞEHİR SAYFALARI
   ============================================ */
.city-hero { padding-bottom: 60px; }
.city-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.city-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
}

.city-content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .city-content-grid { grid-template-columns: 1fr; }
}

.city-content-main h2 {
  font-size: 1.6rem;
  margin: 36px 0 14px;
}
.city-content-main h2:first-child { margin-top: 0; }
.city-content-main h3 {
  font-size: 1.2rem;
  margin: 26px 0 12px;
  color: var(--blue);
}
.city-content-main p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.district-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 8px;
}
.district-pill {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--navy);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
}

.city-feature-list, .city-process-list {
  margin: 0 0 16px 0;
  padding-left: 22px;
  color: var(--text-muted);
  line-height: 1.75;
}
.city-feature-list li, .city-process-list li { margin-bottom: 10px; }
.city-feature-list strong, .city-process-list strong { color: var(--navy); }

.city-content-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.city-quote-card { position: sticky; top: 100px; }

.related-cities-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}
.related-cities-box h4 {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.related-city-link {
  display: block;
  padding: 10px 0;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: .92rem;
  border-bottom: 1px solid var(--bg-alt);
  transition: color .2s;
}
.related-city-link:last-child { border-bottom: none; }
.related-city-link:hover { color: var(--blue); }

/* ============================================
   CTA BANNER (ortak — şehir/hizmet/blog sayfaları)
   ============================================ */
.cta-banner-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 56px 0;
}
.cta-banner-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-banner-title {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.cta-banner-sub { color: #C9D3E0; }
.cta-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-wa-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid #25D366;
  color: #25D366;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-wa-outline:hover {
  background: #25D366;
  color: white;
}

/* Footer trust badges */
.footer-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.footer-badge {
  background: rgba(231,111,44,.12);
  color: var(--orange);
  border: 1px solid rgba(231,111,44,.25);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
}

/* ============================================
   ŞEHİRLER İNDEKS SAYFASI
   ============================================ */
.city-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.city-index-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  text-decoration: none;
  color: var(--text);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
}
.city-index-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.city-index-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.city-index-card h3 {
  font-family: 'Archivo', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.city-index-card p {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.city-index-link {
  color: var(--blue);
  font-weight: 700;
  font-size: .85rem;
}

.city-index-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(30,95,140,.06);
  border: 1px solid rgba(30,95,140,.18);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 36px;
  font-size: .9rem;
  color: var(--blue-dark);
  line-height: 1.6;
}
.city-index-note svg { flex-shrink: 0; margin-top: 2px; color: var(--blue); }
.city-index-note a { color: var(--orange-dark); font-weight: 700; text-decoration: underline; }

/* ============================================
   FİYAT MOTORU — Dosya yükleme + Boyut + Sonuç
   ============================================ */

/* Dosya yükleme alanı */
.upload-drop {
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  background: var(--bg);
}
.upload-drop:hover { border-color: var(--blue); background: rgba(30,95,140,.04); }
.upload-drop.has-file { border-color: var(--blue); border-style: solid; background: rgba(30,95,140,.05); }
.upload-drop.upload-error { border-color: #DC2626; background: rgba(220,38,38,.05); }

#upload-empty-state, #upload-file-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--steel);
}
.upload-drop-text {
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy);
}
.upload-drop-hint {
  font-size: .78rem;
  color: var(--text-muted);
}
.upload-remove-btn {
  margin-top: 4px;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.upload-remove-btn:hover { border-color: #DC2626; color: #DC2626; }

/* Boyut girişi (en x boy x yükseklik) */
.cf-dim-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cf-dim-input { text-align: center; }
.cf-dim-sep {
  color: var(--steel-light);
  font-weight: 700;
  flex-shrink: 0;
}

/* Hesaplama animasyonu — buton içi spinner */
.cf-wa-btn.is-calculating {
  pointer-events: none;
  opacity: .85;
}
.cf-wa-btn .btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,.35);
  border-top-color: white;
  border-radius: 50%;
  animation: btnSpin .7s linear infinite;
}
.cf-wa-btn.is-calculating .btn-spinner { display: inline-block; }
.cf-wa-btn.is-calculating svg:not(.btn-spinner) { display: none; }
@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

/* Fiyat sonuç kartı */
.price-result-card {
  margin-top: 24px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 16px;
  padding: 28px 30px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(15,27,45,.18);
  animation: priceCardIn .4s ease;
}
@keyframes priceCardIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.price-result-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--orange);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 14px;
}
.price-result-range {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.price-result-range span {
  font-size: .55em;
  color: #94A2B8;
  font-weight: 600;
  display: block;
  margin-top: 4px;
}
.price-result-note {
  color: #C9D3E0;
  font-size: .85rem;
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto;
}
.price-result-note strong { color: white; }

@media (max-width: 480px) {
  .cf-dim-row { gap: 6px; }
  .price-result-card { padding: 22px 18px; }
}
