/*
Theme Name: Ecce Danışmanlık
Theme URI: https://saglikyetkibelgesi.com.tr
Author: Ecce Danışmanlık
Description: Sağlık Turizmi Yetki Belgesi Danışmanlık Sitesi
Version: 1.0
*/

/* ═══════════════════════════════════════════
   CSS VARIABLES
═══════════════════════════════════════════ */
:root {
  --teal:       #0B7B6A;
  --teal-dark:  #085C4F;
  --teal-light: #E8F5F2;
  --teal-mid:   #C5E8E1;
  --gold:       #C9973A;
  --gold-light: #FDF6EC;
  --navy:       #0D1B2A;
  --navy-mid:   #1E3448;
  --white:      #FFFFFF;
  --gray-50:    #F8F9FA;
  --gray-100:   #F0F2F4;
  --gray-400:   #9CA3AF;
  --gray-600:   #6B7280;
  --gray-800:   #1F2937;
  --shadow-sm:  0 2px 8px rgba(11,123,106,.08);
  --shadow-md:  0 8px 32px rgba(11,123,106,.12);
  --shadow-lg:  0 20px 60px rgba(11,123,106,.15);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--gray-800); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ═══ UTILITY ═══ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-alt { background: var(--gray-50); }

.tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 0;
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary { background: var(--teal); color: var(--white); box-shadow: 0 4px 20px rgba(11,123,106,.3); }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: var(--white); box-shadow: 0 4px 20px rgba(37,211,102,.3); }
.btn-whatsapp:hover { background: #1FAF57; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); }
.btn-outline:hover { background: rgba(255,255,255,.1); }

/* ═══ TOPBAR ═══ */
.topbar {
  background: var(--teal-dark);
  padding: 8px 0;
  font-size: 13px;
  color: var(--teal-mid);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: var(--teal-mid); transition: var(--transition); }
.topbar a:hover { color: var(--white); }
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; }

/* ═══ NAVBAR ═══ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(11,123,106,.1);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.site-logo { display: flex; flex-direction: column; text-decoration: none; }
.logo-main { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--teal); }
.logo-sub { font-size: 10px; font-weight: 500; color: var(--gray-400); letter-spacing: .12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 8px 14px; font-size: 14px; font-weight: 500; color: var(--gray-800); border-radius: 8px; transition: var(--transition); }
.nav-links a:hover { background: var(--teal-light); color: var(--teal); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.mobile-menu { display: none; flex-direction: column; padding: 16px 24px; border-top: 1px solid var(--gray-100); }
.mobile-menu a { padding: 12px 0; font-size: 15px; font-weight: 500; color: var(--gray-800); border-bottom: 1px solid var(--gray-100); }
.mobile-menu.open { display: flex; }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0B4D42 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(11,123,106,.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(201,151,58,.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,151,58,.15);
  border: 1px solid rgba(201,151,58,.3);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em { font-style: normal; color: var(--gold); }
.hero-desc { font-size: 18px; color: rgba(255,255,255,.72); line-height: 1.7; margin-bottom: 40px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.trust-num { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 700; color: var(--gold); line-height: 1; }
.trust-label { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; letter-spacing: .04em; }

/* Hero Kart */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 340px;
  animation: float 5s ease-in-out infinite;
  position: relative;
}
.hero-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--white); margin-bottom: 8px; }
.hero-card p { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.hero-card-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.hero-card-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,.85); }
.hero-card-list li::before { content: ''; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.hero-stat {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
}
.hero-stat .num { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 700; color: var(--teal); line-height: 1; }
.hero-stat .lbl { font-size: 12px; color: var(--gray-600); margin-top: 4px; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ═══ STATS BAR ═══ */
.stats-bar { background: var(--teal); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 16px; position: relative; }
.stat-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: rgba(255,255,255,.2); }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 700; color: var(--white); line-height: 1; }
.stat-suffix { color: var(--gold); }
.stat-label { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 6px; }

/* ═══ HİZMETLER ═══ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 60px; }
.service-card {
  background: var(--white);
  border: 1px solid rgba(11,123,106,.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 32px; margin-bottom: 20px; }
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; }
.service-link { font-size: 13px; font-weight: 600; color: var(--teal); }

/* ═══ TEŞVİKLER ═══ */
.tesvikler-section { background: var(--navy); }
.tesvikler-section .section-title { color: var(--white); }
.tesvikler-section .section-sub { color: rgba(255,255,255,.6); }
.tesvikler-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.tesvik-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
}
.tesvik-card:hover { background: rgba(11,123,106,.2); border-color: rgba(11,123,106,.4); transform: translateY(-4px); }
.tesvik-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 700; color: var(--gold); opacity: .2; line-height: 1; position: absolute; top: 16px; right: 20px; }
.tesvik-icon { font-size: 28px; margin-bottom: 16px; }
.tesvik-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--white); margin-bottom: 10px; }
.tesvik-card p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.65; }
.tesvik-badge { display: inline-block; background: rgba(201,151,58,.2); color: var(--gold); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 6px; margin-top: 14px; }

/* ═══ SÜREÇ ═══ */
.surec-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 60px; position: relative; }
.surec-steps::before { content: ''; position: absolute; top: 35px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--teal-mid), var(--teal), var(--teal-mid)); }
.step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; }
.step-circle {
  width: 70px; height: 70px;
  background: var(--white);
  border: 3px solid var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 700; color: var(--teal);
  margin-bottom: 20px;
  position: relative; z-index: 1;
  transition: var(--transition);
  box-shadow: 0 0 0 6px var(--teal-light);
}
.step:hover .step-circle { background: var(--teal); color: var(--white); }
.step h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.step p { font-size: 12px; color: var(--gray-600); line-height: 1.5; }

/* ═══ REFERANSLAR ═══ */
.ref-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.ref-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 32px 28px; transition: var(--transition); }
.ref-card:hover { box-shadow: var(--shadow-md); }
.stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.ref-text { font-size: 15px; color: var(--gray-600); line-height: 1.75; font-style: italic; margin-bottom: 24px; }
.ref-author { display: flex; align-items: center; gap: 12px; }
.ref-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; color: var(--white); flex-shrink: 0; }
.ref-name { font-weight: 600; font-size: 14px; color: var(--navy); }
.ref-title { font-size: 12px; color: var(--gray-400); margin-top: 2px; }

/* ═══ BLOG ═══ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.blog-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-img { height: 180px; background: linear-gradient(135deg, var(--teal-dark), var(--navy-mid)); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.blog-body { padding: 24px; }
.blog-cat { font-size: 11px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.blog-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
.blog-card p { font-size: 13px; color: var(--gray-600); line-height: 1.65; margin-bottom: 16px; }
.blog-meta { font-size: 12px; color: var(--gray-400); }

/* ═══ CTA BAND ═══ */
.cta-band { background: linear-gradient(135deg, var(--teal-dark), var(--navy)); padding: 80px 0; text-align: center; }
.cta-band h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 4vw, 44px); color: var(--white); margin-bottom: 16px; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,.7); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══ İLETİŞİM ═══ */
.iletisim-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; margin-top: 60px; }
.contact-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--navy); margin-bottom: 16px; }
.contact-info p { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--gray-100); }
.contact-item:last-of-type { border-bottom: none; }
.contact-icon { width: 44px; height: 44px; background: var(--teal-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-detail strong { display: block; font-size: 11px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.contact-detail a, .contact-detail span { font-size: 15px; color: var(--navy); font-weight: 500; }
.contact-detail a:hover { color: var(--teal); }
.wa-direct-btn { display: flex; align-items: center; gap: 12px; background: #25D366; color: var(--white); padding: 16px 24px; border-radius: var(--radius); font-weight: 600; font-size: 15px; margin-top: 24px; transition: var(--transition); box-shadow: 0 4px 20px rgba(37,211,102,.3); text-decoration: none; }
.wa-direct-btn:hover { background: #1FAF57; transform: translateY(-2px); color: var(--white); }

/* FORM */
.contact-form { background: var(--white); border: 1px solid rgba(11,123,106,.1); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.contact-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--navy); margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--gray-600); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--gray-800);
  background: var(--gray-50); border: 1.5px solid var(--gray-100); border-radius: var(--radius);
  outline: none; transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); background: var(--white); box-shadow: 0 0 0 3px rgba(11,123,106,.1); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 16px; background: var(--teal); color: var(--white); border: none; border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; transition: var(--transition); }
.form-submit:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(11,123,106,.3); }
.form-note { font-size: 12px; color: var(--gray-400); text-align: center; margin-top: 12px; }
.form-success { display: none; text-align: center; padding: 32px 0; }
.form-success .check { font-size: 56px; margin-bottom: 12px; }
.form-success h4 { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--teal); margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--gray-600); margin-bottom: 20px; }
.form-error-msg { background: #FEF2F2; border: 1px solid #FECACA; color: #DC2626; padding: 12px 16px; border-radius: var(--radius); font-size: 14px; margin-bottom: 16px; display: none; }
.form-loading { display: none; text-align: center; padding: 16px; color: var(--teal); font-size: 14px; }

/* ═══ FOOTER ═══ */
.site-footer { background: var(--navy); color: rgba(255,255,255,.65); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--white); margin-bottom: 12px; }
.footer-desc { font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: var(--transition); text-decoration: none; }
.social-btn:hover { background: var(--teal); }
.footer-col h4 { font-size: 12px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.55); transition: var(--transition); text-decoration: none; }
.footer-col ul li a:hover { color: var(--teal-mid); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--teal-mid); }

/* ═══ FLOATING WHATSAPP ═══ */
.float-wa { position: fixed; bottom: 24px; right: 24px; z-index: 9999; }
.float-wa a {
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: var(--white);
  padding: 13px 20px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  transition: var(--transition);
}
.float-wa a:hover { transform: scale(1.05); box-shadow: 0 8px 32px rgba(37,211,102,.5); color: var(--white); }
.wa-dot { width: 10px; height: 10px; background: var(--white); border-radius: 50%; animation: wapulse 2s infinite; }
@keyframes wapulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .6; transform: scale(1.3); } }

/* ═══ FADE ANIMATIONS ═══ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .tesvikler-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .services-grid, .ref-grid, .blog-grid { grid-template-columns: 1fr; }
  .surec-steps { grid-template-columns: 1fr; gap: 24px; }
  .surec-steps::before { display: none; }
  .tesvikler-grid { grid-template-columns: 1fr; }
  .iletisim-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar .topbar-left { display: none; }
  .float-wa a span:last-child { display: none; }
  .float-wa a { padding: 14px; border-radius: 50%; }
}
