/* ===========================================================
   Ünlü Nakliyat — Modern tasarım sistemi (mobil öncelikli)
   Bootstrap 5 üzerine giydirilen özel tema.
   =========================================================== */

:root {
  --primary: #16335c;
  --primary-2: #1d4f8f;
  --primary-dark: #0d2444;
  --primary-light: #eaf1fb;
  --accent: #ff3e41;
  --accent-dark: #e62a2d;
  --accent-light: #ffe9ea;
  --accent-grad: linear-gradient(135deg, #ff3e41 0%, #ff6e70 100%);
  --primary-grad: linear-gradient(135deg, #1d4f8f 0%, #16335c 100%);
  --dark: #0f172a;
  --text: #273043;
  --muted: #6b7280;
  --light: #f6f8fc;
  --border: #e8ecf3;
  --white: #ffffff;
  --success: #16a34a;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.18);
  --max-width: 1200px;
  --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.2; color: var(--dark); font-weight: 800; letter-spacing: -0.02em; }

.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 18px; }
.section { padding: 72px 0; }
.section-tight { padding: 40px 0; }
.bg-light { background: var(--light); }
.text-muted { color: var(--muted) !important; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.section-head .eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  background: var(--accent-light);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
.section-head p { margin-top: 12px; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  font-size: 0.98rem;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(22, 51, 92, 0.28); }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(255, 62, 65, 0.32); }
.btn-accent:hover { background: var(--accent-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border-color: #cbd6e6; }
.btn-outline:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-light { background: #fff; color: var(--primary); }
.btn-light:hover { background: var(--primary-light); color: var(--primary); }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ---------- Announcement bar ---------- */
.announcement-bar {
  background: var(--accent-grad);
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 9px 16px;
}
.announcement-bar a { color: #fff; text-decoration: underline; }

/* ---------- Navbar ---------- */
.navbar-main { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); box-shadow: var(--shadow-sm); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 76px; position: relative; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand .brand-mark {
  background: var(--primary-grad);
  color: #fff;
  padding: 9px 14px;
  border-radius: 12px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 16px rgba(22,51,92,0.3);
}
.brand .brand-mark small { display: block; font-size: 0.58rem; font-weight: 600; letter-spacing: 1px; opacity: 0.9; }
.brand .brand-name { font-weight: 800; color: var(--primary); font-size: 1.18rem; }
.brand .brand-name small { display: block; font-size: 0.7rem; color: var(--accent); font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-links a { padding: 10px 14px; border-radius: 10px; font-weight: 600; color: var(--text); transition: color 0.15s, background 0.15s; display: inline-flex; align-items: center; gap: 5px; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); background: var(--accent-light); }
.nav-links a.nav-cta { background: var(--accent); color: #fff !important; margin-left: 6px; box-shadow: 0 6px 16px rgba(255,62,65,0.32); }
.nav-links a.nav-cta:hover { background: var(--accent-dark); }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0; background: #fff; box-shadow: var(--shadow);
  border-radius: 14px; padding: 8px; min-width: 250px; display: none; flex-direction: column;
}
/* Masaüstünde (fare olan cihazlarda) üzerine gelince açılır */
@media (hover: hover) { .nav-dropdown:hover .nav-dropdown-menu { display: flex; } }
/* Mobil/tüm cihazlarda tıklayınca açılır (JS .open ekler) */
.nav-dropdown.open .nav-dropdown-menu { display: flex; }
.nav-dropdown > a .fa-chevron-down { transition: transform 0.2s; }
.nav-dropdown.open > a .fa-chevron-down { transform: rotate(180deg); }
.nav-dropdown-menu a { white-space: nowrap; }

.nav-phone { display: flex; align-items: center; gap: 8px; font-weight: 800; color: var(--primary); white-space: nowrap; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--primary); cursor: pointer; }

/* ---------- Hero carousel ---------- */
.hero { position: relative; overflow: hidden; background: var(--dark); }
.hero-slide { position: relative; min-height: 600px; display: none; align-items: center; }
.hero-slide.active { display: flex; animation: fadeUp 0.7s ease; }
.hero-slide > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(95deg, rgba(13,36,68,0.92) 0%, rgba(13,36,68,0.6) 45%, rgba(13,36,68,0.25) 100%); }
.hero-content { position: relative; color: #fff; max-width: 680px; }
.hero-content .eyebrow { display: inline-block; color: #fff; background: var(--accent); padding: 6px 16px; border-radius: 30px; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; font-size: 0.78rem; }
.hero-content h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.4rem); margin: 18px 0 14px; line-height: 1.12; }
.hero-content p { font-size: 1.12rem; opacity: 0.94; margin-bottom: 28px; max-width: 580px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-dots { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 2; }
.hero-dots button { width: 34px; height: 5px; border-radius: 4px; border: none; background: rgba(255,255,255,0.45); cursor: pointer; padding: 0; transition: background 0.2s; }
.hero-dots button.active { background: var(--accent); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Trust row ---------- */
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: -44px; position: relative; z-index: 3; }
.trust-item { background: #fff; border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px; }
.trust-item .ti-icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; font-size: 1.3rem; background: var(--accent-light); color: var(--accent); flex-shrink: 0; }
.trust-item b { display: block; font-size: 1rem; color: var(--dark); }
.trust-item span { font-size: 0.85rem; color: var(--muted); }

/* ---------- Grid & Cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform 0.22s, box-shadow 0.22s; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-img { aspect-ratio: 16 / 10; overflow: hidden; position: relative; display: block; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card:hover .card-img img { transform: scale(1.08); }
.card-body { padding: 24px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.card-body h3 { font-size: 1.25rem; margin: 0; }
.card-body p { color: var(--muted); font-size: 0.96rem; margin: 0; }
.card-link { color: var(--accent); font-weight: 700; margin-top: auto; display: inline-flex; gap: 7px; align-items: center; transition: gap 0.18s; }
.card-link:hover { gap: 12px; color: var(--accent); }

/* ---------- Detail layout (içerik + yan panel) ---------- */
.detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.detail-aside { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 96px; }
@media (max-width: 992px) {
  .detail-layout { grid-template-columns: 1fr; }
  .detail-aside { position: static; }
}

/* ---------- Feature / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.split img { border-radius: var(--radius); width: 100%; height: 100%; object-fit: cover; max-height: 480px; box-shadow: var(--shadow); }
.feature-item { display: flex; gap: 16px; margin-bottom: 24px; }
.feature-item .feature-icon { flex-shrink: 0; width: 56px; height: 56px; border-radius: 14px; background: var(--accent-light); color: var(--accent); display: grid; place-items: center; font-size: 1.4rem; }
.feature-item h4 { margin: 0 0 4px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat { border-radius: var(--radius); padding: 30px; text-align: center; color: #fff; box-shadow: var(--shadow); }
.stat:nth-child(1) { background: var(--primary-grad); }
.stat:nth-child(2) { background: var(--accent-grad); }
.stat:nth-child(3) { background: linear-gradient(135deg, #16a34a, #0f7a37); }
.stat .num { font-size: 2.6rem; font-weight: 900; margin: 6px 0 2px; }

/* ---------- Page hero ---------- */
.page-hero { position: relative; background: var(--primary-dark); color: #fff; padding: 64px 0; overflow: hidden; }
.page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(95deg, rgba(13,36,68,0.92), rgba(13,36,68,0.55)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
.breadcrumb-nav { display: flex; gap: 8px; opacity: 0.9; margin-top: 10px; font-size: 0.9rem; flex-wrap: wrap; color: #fff; }
.breadcrumb-nav a:hover { text-decoration: underline; }

/* ---------- Article content (HTML from CMS) ---------- */
.prose { font-size: 1.05rem; color: var(--text); }
.prose h2 { font-size: 1.65rem; margin: 30px 0 12px; }
.prose h3 { font-size: 1.32rem; margin: 26px 0 10px; color: var(--primary); }
.prose h4 { font-size: 1.12rem; margin: 20px 0 8px; }
.prose p { margin-bottom: 15px; }
.prose ul, .prose ol { margin: 0 0 16px 24px; }
.prose li { margin-bottom: 7px; }
.prose strong { color: var(--dark); }
.prose img { border-radius: var(--radius); margin: 18px 0; }
.prose a { color: var(--accent); text-decoration: underline; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.92rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.input, .textarea, .select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--border); border-radius: 12px;
  font-size: 1rem; font-family: inherit; background: #fff; transition: border-color 0.15s, box-shadow 0.15s;
}
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-light); }
.textarea { min-height: 130px; resize: vertical; }
.help { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }

/* ---------- Contact info cards ---------- */
.contact-card { display: flex; gap: 14px; align-items: center; padding: 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 12px; transition: box-shadow 0.18s; }
.contact-card:hover { box-shadow: var(--shadow-sm); }
.contact-card .ci { flex-shrink: 0; width: 52px; height: 52px; border-radius: 13px; background: var(--primary-grad); color: #fff; display: grid; place-items: center; font-size: 1.3rem; }
.contact-card .label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.contact-card .value { font-weight: 700; color: var(--primary); font-size: 1.08rem; }

/* ---------- Testimonials ---------- */
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px; height: 100%; position: relative; }
.testimonial-card::before { content: '\201C'; position: absolute; top: 6px; right: 22px; font-size: 4.5rem; color: var(--accent-light); font-family: Georgia, serif; line-height: 1; }
.stars { color: #f5b301; display: flex; gap: 3px; font-size: 1rem; }
.testimonial-card .comment { color: var(--text); font-size: 0.98rem; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--primary-grad); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.1rem; object-fit: cover; overflow: hidden; }
.testimonial-author b { display: block; color: var(--dark); }
.testimonial-author span { font-size: 0.85rem; color: var(--muted); }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fff; overflow: hidden; transition: box-shadow 0.18s; }
.faq-item.open { box-shadow: var(--shadow); border-color: #d6e0ef; }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 20px 22px; font-size: 1.05rem; font-weight: 700; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; font-family: inherit; }
.faq-question .q-icon { flex-shrink: 0; color: var(--accent); transition: transform 0.25s; font-size: 1.1rem; }
.faq-item.open .q-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 22px; color: var(--muted); }
.faq-item.open .faq-answer { max-height: 800px; padding: 0 22px 20px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px; background: linear-gradient(transparent, rgba(13,36,68,0.85)); color: #fff; font-weight: 700; opacity: 0; transform: translateY(8px); transition: all 0.25s; }
.gallery-item:hover .cap { opacity: 1; transform: translateY(0); }
.lightbox { position: fixed; inset: 0; background: rgba(7,15,30,0.92); z-index: 2000; display: none; place-items: center; padding: 24px; }
.lightbox.open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 10px; }
.lightbox .close { position: absolute; top: 22px; right: 28px; color: #fff; font-size: 2.2rem; background: none; border: none; cursor: pointer; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: #aab4c5; padding-top: 64px; margin-top: 72px; }
.footer h4 { color: #fff; margin-bottom: 18px; font-size: 1.12rem; }
.footer a { color: #aab4c5; display: block; padding: 4px 0; transition: color 0.15s; }
.footer a:hover { color: var(--accent); }
.footer .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px; }
.footer .social { display: flex; gap: 10px; margin-top: 16px; }
.footer .social a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid #2a3850; display: grid; place-items: center; padding: 0; }
.footer .social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.footer-regions { border-top: 1px solid #1e293b; margin-top: 40px; padding-top: 30px; }
.footer-regions .reg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px 24px; }
.footer-bottom { border-top: 1px solid #1e293b; margin-top: 30px; padding: 20px 0; text-align: center; font-size: 0.88rem; }

/* ---------- Whatsapp float ---------- */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; font-size: 1.9rem; box-shadow: var(--shadow-lg); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- Misc ---------- */
.loader { text-align: center; padding: 90px 0; color: var(--muted); }
.alert { padding: 13px 16px; border-radius: 12px; margin-bottom: 16px; font-size: 0.95rem; }
.alert-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.alert-success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.cta-band { background: var(--primary-grad); color: #fff; border-radius: 22px; padding: 44px; text-align: center; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.cta-band::after { content: ''; position: absolute; width: 280px; height: 280px; background: var(--accent); opacity: 0.18; border-radius: 50%; top: -120px; right: -80px; }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p, .cta-band > * { position: relative; }
.cta-band .phone { font-size: 2.1rem; font-weight: 900; color: #fff; }

/* ===========================================================
   Responsive (mobil)
   =========================================================== */
@media (max-width: 992px) {
  .footer .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-regions .reg-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .trust-row { grid-template-columns: repeat(2, 1fr); margin-top: 30px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 12px; box-shadow: var(--shadow); gap: 4px; }
  .nav-menu.open { display: flex; }
  .nav-links { flex-direction: column; align-items: stretch; width: 100%; }
  .nav-dropdown-menu { position: static; box-shadow: none; padding-left: 16px; }
  .nav-phone { display: none; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .hero-slide { min-height: 500px; }
  .section { padding: 48px 0; }
  .cta-band { padding: 30px 22px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer .footer-grid { grid-template-columns: 1fr; }
  .footer-regions .reg-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 1.7rem; }
}

/* ===========================================================
   Fiyat hesaplama aracı
   =========================================================== */
.calc { display: grid; grid-template-columns: 1.3fr 1fr; gap: 28px; align-items: start; }
.calc-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.mini-check { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 0.85rem; color: var(--muted); margin-top: 8px; }
.mini-check input { width: 16px; height: 16px; }
.calc-options { display: flex; flex-direction: column; gap: 13px; margin-top: 10px; padding-top: 18px; border-top: 1px solid var(--border); }
.opt-check { display: flex; align-items: center; gap: 11px; font-weight: 600; cursor: pointer; }
.opt-check input { width: 19px; height: 19px; accent-color: var(--accent); }

.calc-result { position: sticky; top: 96px; }
.calc-result-inner { background: var(--primary-grad); color: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.calc-result-inner::after { content: ''; position: absolute; width: 220px; height: 220px; background: var(--accent); opacity: 0.18; border-radius: 50%; top: -90px; right: -70px; }
.cr-label { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; opacity: 0.95; position: relative; }
.price-range { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 900; margin: 12px 0; line-height: 1.1; position: relative; }
.price-range span { opacity: 0.6; }
.price-range small { font-size: 1.2rem; font-weight: 700; }
.cr-note { font-size: 0.85rem; opacity: 0.92; display: flex; gap: 7px; margin-top: 10px; position: relative; }
.cr-actions { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; position: relative; }
.cr-quote { background: rgba(255, 255, 255, 0.13); border-radius: 14px; padding: 18px; position: relative; }
.cr-quote p { font-weight: 600; margin-bottom: 12px; }
.cr-quote .input { margin-bottom: 10px; }

/* ===========================================================
   Sol "Fiyat Hesapla" hareketli butonu
   =========================================================== */
.estimate-float {
  position: fixed; bottom: 28px; left: 24px; z-index: 999;
  display: flex; align-items: center; gap: 12px;
  background: var(--accent-grad); color: #fff;
  padding: 11px 22px 11px 12px; border-radius: 999px;
  box-shadow: 0 14px 34px rgba(255, 62, 65, 0.5);
  animation: efbounce 1.8s ease-in-out infinite;
}
.estimate-float:hover { transform: scale(1.04); color: #fff; }
.estimate-float .ef-icon {
  width: 46px; height: 46px; border-radius: 50%; background: rgba(255, 255, 255, 0.22);
  display: grid; place-items: center; font-size: 1.4rem; flex-shrink: 0;
  animation: efpulse 1.8s ease-in-out infinite;
}
.estimate-float .ef-text b { display: block; font-size: 1rem; line-height: 1.15; }
.estimate-float .ef-text small { font-size: 0.74rem; opacity: 0.92; }

@keyframes efbounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes efpulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); }
  50% { box-shadow: 0 0 0 12px rgba(255, 255, 255, 0); }
}

@media (max-width: 768px) {
  .calc { grid-template-columns: 1fr; }
  .calc-result { position: static; }
  .estimate-float { bottom: 20px; left: 16px; padding: 10px 18px 10px 10px; }
  .estimate-float .ef-icon { width: 40px; height: 40px; font-size: 1.2rem; }
  .estimate-float .ef-text b { font-size: 0.9rem; }
  .estimate-float .ef-text small { font-size: 0.68rem; }
}

@media (max-width: 420px) {
  .estimate-float .ef-text { display: none; }
  .estimate-float { padding: 10px; }
}
