
:root {
  --orange: #E8520A;
  --orange-dk: #C94300;
  --navy: #1C2B4A;
  --navy-mid: #243660;
  --cream: #F7F5F2;
  --white: #FFFFFF;
  --gray: #64748B;
  --gray-lt: #F1F5F9;
  --border: #E2E8F0;
  --green: #25D366;
  --text: #1A202C;
  --font: 'Inter', sans-serif;
  --r: 10px;
  --sh: 0 2px 16px rgba(0,0,0,.08);
  --sh-lg: 0 8px 32px rgba(0,0,0,.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── CONTAINER ─────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  padding: 0 20px;
}
.site-header .inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo svg { width: 36px; height: 36px; }
.logo-text { color: var(--white); font-weight: 800; font-size: 1.15rem; letter-spacing: -.3px; }
.logo-text span { color: var(--orange); }
.main-nav { display: flex; gap: 28px; }
.main-nav a { color: rgba(255,255,255,.8); font-size: .92rem; font-weight: 500; transition: color .2s; }
.main-nav a:hover { color: var(--white); }
.header-cta {
  background: var(--orange); color: var(--white) !important;
  padding: 9px 20px; border-radius: var(--r);
  font-weight: 700; font-size: .9rem;
  transition: background .2s;
  white-space: nowrap;
}
.header-cta:hover { background: var(--orange-dk) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }
.mobile-nav {
  display: none; flex-direction: column; gap: 0;
  background: var(--navy-mid); padding: 8px 0 16px;
}
.mobile-nav a { color: rgba(255,255,255,.85); padding: 12px 24px; font-size: .95rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: flex; }

/* ── HERO (ANASAYFA) ─────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, #1C2B4A 55%, #1e3560 100%);
  padding: 80px 20px 90px;
}
.hero::before {
  content: '';
  position: absolute; right: -8%; top: -20%;
  width: 50%; height: 150%;
  background: var(--orange);
  opacity: .07;
  clip-path: polygon(18% 0%, 100% 0%, 82% 100%, 0% 100%);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,82,10,.18); color: #FF8A5C;
  border: 1px solid rgba(232,82,10,.3);
  padding: 5px 14px; border-radius: 20px;
  font-size: .82rem; font-weight: 600; letter-spacing: .5px;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 {
  color: var(--white); font-size: 3rem; font-weight: 800;
  line-height: 1.12; letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-sub { color: rgba(255,255,255,.72); font-size: 1.08rem; margin-bottom: 32px; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white);
  padding: 14px 28px; border-radius: var(--r);
  font-weight: 700; font-size: 1rem;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--orange-dk); transform: translateY(-1px); }
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--white);
  padding: 14px 28px; border-radius: var(--r);
  font-weight: 700; font-size: 1rem;
  transition: opacity .2s, transform .15s;
}
.btn-wa:hover { opacity: .9; transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
  padding: 12px 26px; border-radius: var(--r);
  font-weight: 600; font-size: .95rem;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

/* Hero paint roller illustration */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
}
.paint-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 32px; text-align: center; width: 100%;
  max-width: 340px;
}
.paint-card-title { color: rgba(255,255,255,.5); font-size: .8rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.trust-items { display: flex; flex-direction: column; gap: 12px; }
.trust-item {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.05);
  border-radius: 8px; padding: 12px 16px;
  color: var(--white);
}
.trust-item .ti-icon { font-size: 1.5rem; flex-shrink: 0; }
.trust-item .ti-text { text-align: left; }
.trust-item .ti-num { font-size: 1.25rem; font-weight: 800; color: var(--orange); line-height: 1; }
.trust-item .ti-label { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 2px; }

/* ── STATS BAR ──────────────────────────────────────────── */
.stats-bar {
  background: var(--navy-mid);
  padding: 0 20px;
}
.stats-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-left: 1px solid rgba(255,255,255,.08);
}
.stat-item {
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.stat-num { font-size: 1.6rem; font-weight: 800; color: var(--orange); line-height: 1; }
.stat-label { font-size: .75rem; color: rgba(255,255,255,.55); margin-top: 4px; text-transform: uppercase; letter-spacing: .5px; }

/* ── SECTION BASES ──────────────────────────────────────── */
.section { padding: 80px 20px; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); }
.section-label {
  font-size: .75rem; font-weight: 700; color: var(--orange);
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-size: 2rem; font-weight: 800; letter-spacing: -.5px;
  line-height: 1.2; margin-bottom: 16px;
}
.section-title-white { color: var(--white); }
.section-sub { color: var(--gray); max-width: 560px; font-size: 1.02rem; }
.section-sub-white { color: rgba(255,255,255,.65); }
.section-head { margin-bottom: 52px; }

/* ── SERVICES GRID ──────────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--r);
  padding: 32px 28px;
  box-shadow: var(--sh);
  border: 1px solid var(--border);
  transition: box-shadow .2s, transform .2s, border-color .2s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--orange);
  transition: height .3s;
}
.service-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); border-color: rgba(232,82,10,.2); }
.service-card:hover::before { height: 100%; }
.svc-icon { font-size: 2.2rem; margin-bottom: 16px; }
.svc-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.svc-desc { font-size: .9rem; color: var(--gray); line-height: 1.6; }

/* ── WHY US ──────────────────────────────────────────────── */
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.why-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: rgba(255,255,255,.05);
  border-radius: var(--r); padding: 24px;
  border: 1px solid rgba(255,255,255,.1);
}
.why-icon { font-size: 2rem; flex-shrink: 0; }
.why-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.why-desc { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ── PROCESS ──────────────────────────────────────────────── */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 30px; left: 10%; right: 10%;
  height: 2px; background: var(--border); z-index: 0;
}
.step {
  text-align: center; position: relative; z-index: 1;
}
.step-num {
  width: 60px; height: 60px; margin: 0 auto 16px;
  background: var(--orange); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 800;
  box-shadow: 0 4px 16px rgba(232,82,10,.35);
}
.step-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: .87rem; color: var(--gray); }

/* ── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  border-radius: 16px; padding: 52px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  margin: 0 auto; max-width: 1160px;
}
.cta-text h2 { color: var(--white); font-size: 1.75rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -.3px; }
.cta-text p { color: rgba(255,255,255,.8); font-size: 1rem; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--orange);
  padding: 13px 26px; border-radius: var(--r);
  font-weight: 700; font-size: .95rem;
  transition: opacity .2s, transform .15s;
}
.btn-white:hover { opacity: .9; transform: translateY(-1px); }
.btn-wa-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: #1a9e4b; color: var(--white);
  padding: 13px 26px; border-radius: var(--r);
  font-weight: 700; font-size: .95rem;
  transition: opacity .2s;
}
.btn-wa-dark:hover { opacity: .88; }

/* ── BLOG CARDS ─────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--white); border-radius: var(--r);
  box-shadow: var(--sh); overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow .2s, transform .2s;
}
.blog-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.blog-thumb {
  height: 180px; display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.blog-thumb.t1 { background: linear-gradient(135deg,#FFF3EE,#FFE0D0); }
.blog-thumb.t2 { background: linear-gradient(135deg,#EEF3FF,#D0DFFF); }
.blog-thumb.t3 { background: linear-gradient(135deg,#EEFDF3,#C6F0D4); }
.blog-body { padding: 24px; }
.blog-category {
  font-size: .72rem; font-weight: 700; color: var(--orange);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px;
}
.blog-title { font-size: 1rem; font-weight: 700; line-height: 1.4; margin-bottom: 10px; }
.blog-excerpt { font-size: .87rem; color: var(--gray); margin-bottom: 16px; line-height: 1.6; }
.blog-read { font-size: .85rem; font-weight: 600; color: var(--orange); }
.blog-read:hover { text-decoration: underline; }

/* ── INNER PAGE HERO ────────────────────────────────────── */
.inner-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 52px 20px 48px;
}
.inner-hero-inner { max-width: 1160px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.55); font-size: .83rem; }
.breadcrumb a:hover { color: rgba(255,255,255,.85); }
.breadcrumb span { color: rgba(255,255,255,.35); font-size: .83rem; }
.inner-hero h1 { color: var(--white); font-size: 2.2rem; font-weight: 800; letter-spacing: -.5px; }
.inner-hero-sub { color: rgba(255,255,255,.65); margin-top: 8px; font-size: 1rem; }

/* ── URGENCY STRIP ──────────────────────────────────────── */
.urgency-strip {
  background: var(--orange); color: var(--white);
  padding: 14px 20px; text-align: center;
}
.urgency-strip strong { font-weight: 700; }
.urgency-strip a { color: var(--white); font-weight: 700; text-decoration: underline; }

/* ── REVIEWS ────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white); border-radius: var(--r);
  padding: 28px; box-shadow: var(--sh);
  border: 1px solid var(--border);
  position: relative;
}
.review-card::before {
  content: '"'; position: absolute; top: 12px; right: 20px;
  font-size: 4rem; color: var(--orange); opacity: .15;
  font-family: Georgia, serif; line-height: 1;
}
.stars { color: #F59E0B; font-size: 1rem; margin-bottom: 12px; }
.review-text { font-size: .9rem; color: var(--text); line-height: 1.65; margin-bottom: 16px; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem; flex-shrink: 0;
}
.reviewer-name { font-size: .88rem; font-weight: 600; }
.reviewer-loc { font-size: .78rem; color: var(--gray); }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  text-align: left; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem; font-weight: 600; color: var(--text);
  gap: 16px;
}
.faq-q .faq-arrow {
  flex-shrink: 0; width: 22px; height: 22px;
  border-radius: 50%; background: var(--gray-lt);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s, background .25s;
  font-size: .75rem; color: var(--gray);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--orange); color: var(--white); }
.faq-a {
  font-size: .92rem; color: var(--gray); line-height: 1.7;
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s;
  padding-bottom: 0;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* ── CONTACT SECTION ─────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 14px; letter-spacing: -.3px; }
.contact-info p { color: var(--gray); margin-bottom: 24px; }
.contact-detail {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.cd-icon {
  width: 44px; height: 44px; border-radius: var(--r);
  background: #FFF3EE; display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.cd-label { font-size: .78rem; color: var(--gray); margin-bottom: 2px; }
.cd-val { font-weight: 600; font-size: .97rem; }
.contact-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.contact-ctas a {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: var(--r);
  font-weight: 700; font-size: .97rem;
}
.cta-call { background: var(--orange); color: var(--white); }
.cta-call:hover { background: var(--orange-dk); }
.cta-wa { background: var(--green); color: var(--white); }
.cta-wa:hover { opacity: .92; }
.contact-map {
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--sh-lg);
}
.map-placeholder {
  background: linear-gradient(135deg,#1C2B4A,#243660);
  height: 360px; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; color: var(--white); text-align: center;
}
.map-placeholder .map-icon { font-size: 3rem; }
.map-placeholder p { font-size: .88rem; color: rgba(255,255,255,.6); }

/* ── DISTRICT FOOTER GRID ────────────────────────────────── */
.footer { background: var(--navy); padding: 60px 20px 0; }
.footer-top { max-width: 1160px; margin: 0 auto 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-desc { color: rgba(255,255,255,.5); font-size: .88rem; max-width: 320px; line-height: 1.7; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1160px; margin: 0 auto; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-col h4 { color: var(--white); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,.5); font-size: .84rem; margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: rgba(255,255,255,.9); }
.footer-districts { padding: 40px 20px 40px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-districts-inner { max-width: 1160px; margin: 0 auto; }
.footer-districts h4 { color: rgba(255,255,255,.4); font-size: .75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.district-links { display: flex; flex-wrap: wrap; gap: 8px; }
.district-links a {
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.6);
  padding: 5px 13px; border-radius: 20px; font-size: .8rem;
  border: 1px solid rgba(255,255,255,.08);
  transition: background .2s, color .2s, border-color .2s;
}
.district-links a:hover { background: rgba(232,82,10,.2); color: var(--white); border-color: rgba(232,82,10,.3); }
.footer-bottom { max-width: 1160px; margin: 0 auto; padding: 20px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,.3); font-size: .8rem; }

/* ── FLOAT BUTTONS ──────────────────────────────────────── */
.float-btns {
  position: fixed; bottom: 24px; right: 20px; z-index: 500;
  display: flex; flex-direction: column; gap: 12px;
}
.float-btn {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25); font-size: 1.3rem;
  transition: transform .2s, box-shadow .2s; cursor: pointer;
  color: var(--white);
}
.float-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(0,0,0,.3); }
.float-wa { background: var(--green); }
.float-call { background: var(--orange); }
.float-label {
  position: absolute; right: 66px;
  background: var(--navy); color: var(--white);
  padding: 5px 10px; border-radius: 6px;
  font-size: .75rem; font-weight: 600; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.float-btn:hover .float-label { opacity: 1; }

/* ── BLOG POST ─────────────────────────────────────────── */
.blog-post-hero { background: linear-gradient(135deg,var(--navy),var(--navy-mid)); padding: 56px 20px 48px; }
.blog-post-body { max-width: 780px; margin: 0 auto; padding: 56px 20px; }
.blog-post-body h2 { font-size: 1.4rem; font-weight: 700; margin: 36px 0 12px; }
.blog-post-body h3 { font-size: 1.1rem; font-weight: 700; margin: 28px 0 8px; color: var(--orange); }
.blog-post-body p { color: #3D4A5C; margin-bottom: 18px; line-height: 1.8; }
.blog-post-body ul { margin: 0 0 18px 20px; list-style: disc; }
.blog-post-body ul li { color: #3D4A5C; margin-bottom: 8px; line-height: 1.7; font-size: .97rem; }
.blog-post-meta { display: flex; gap: 20px; margin-bottom: 28px; }
.blog-meta-tag { font-size: .78rem; font-weight: 700; color: var(--orange); letter-spacing: 1px; text-transform: uppercase; }
.blog-meta-date { font-size: .78rem; color: var(--gray); }
.post-cta-box {
  background: linear-gradient(135deg,#FFF3EE,#FFDECE);
  border: 1px solid rgba(232,82,10,.2);
  border-radius: 12px; padding: 28px; margin: 36px 0;
  text-align: center;
}
.post-cta-box p { color: var(--navy); font-weight: 600; margin-bottom: 14px; }

/* ── CONTENT PROSE ─────────────────────────────────────── */
.prose { max-width: 800px; margin: 0 auto; }
.prose p { margin-bottom: 18px; color: #3D4A5C; line-height: 1.8; }
.prose strong { color: var(--navy); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media(max-width:900px){
  .hero-inner { grid-template-columns:1fr; gap:36px; }
  .hero-visual { display:none; }
  .hero h1 { font-size:2.2rem; }
  .stats-grid { grid-template-columns:repeat(3,1fr); }
  .stat-item:nth-child(4),.stat-item:nth-child(5) { display:none; }
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .why-grid { grid-template-columns:1fr; }
  .process-steps { grid-template-columns:repeat(2,1fr); }
  .process-steps::before { display:none; }
  .cta-banner { flex-direction:column; text-align:center; padding:36px 28px; }
  .blog-grid { grid-template-columns:1fr; }
  .reviews-grid { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:600px){
  .main-nav, .header-cta { display:none; }
  .hamburger { display:flex; }
  .hero h1 { font-size:1.8rem; }
  .hero { padding:52px 20px 60px; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .stat-item:nth-child(3) { display:none; }
  .services-grid { grid-template-columns:1fr; }
  .section { padding:52px 20px; }
  .process-steps { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .cta-banner { padding:28px 20px; }
  .float-btns { bottom:16px; right:14px; }
  .float-btn { width:48px; height:48px; font-size:1.15rem; }
}
