/* =============================================
   EM Trading — Global Stylesheet
   ============================================= */

:root {
  --primary:      #0D1B2A;
  --primary2:     #1B2B3A;
  --accent:       #0891B2;
  --accent2:      #0EA5C9;
  --accent-glow:  rgba(8, 145, 178, 0.22);
  --red:          #C0392B;
  --light:        #F0F6FA;
  --white:        #FFFFFF;
  --text:         #1E293B;
  --muted:        #64748B;
  --border:       #E2E8F0;
  --radius:       10px;
  --shadow:       0 2px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.14);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', 'Segoe UI', Arial, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---- Language Toggle ---- */
html[lang="fr"] .en { display: none !important; }
html[lang="en"] .fr { display: none !important; }

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }

/* =============================================
   NAVIGATION
   ============================================= */
nav {
  background: var(--primary);
  padding: 0 2.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: white;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  transition: opacity 0.2s;
}
.nav-brand:hover { opacity: 0.9; }
.nav-brand span { color: var(--accent2); }

.nav-logo-img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(14, 165, 201, 0.5);
  box-shadow: 0 0 12px rgba(8, 145, 178, 0.3);
  transition: box-shadow 0.3s;
}
.nav-brand:hover .nav-logo-img {
  box-shadow: 0 0 20px rgba(8, 145, 178, 0.5);
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.93rem;
  font-weight: 500;
  transition: color 0.2s;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: white;
  border-bottom-color: var(--accent2);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-btn {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 5px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.2s;
}
.lang-btn:hover { background: rgba(255,255,255,0.1); color: white; }

.btn-nav {
  background: var(--accent);
  color: white !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.87rem;
  border-bottom: none !important;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-nav:hover { background: var(--accent2) !important; box-shadow: 0 4px 14px var(--accent-glow) !important; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: linear-gradient(rgba(7,14,22,0.72), rgba(12,48,71,0.82)), url('images/truck1.jpg') center/cover no-repeat;
  color: white;
  padding: 100px 2.5rem 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(8,145,178,0.18) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse 6s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(8,145,178,0.10) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite reverse;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.15); opacity: 0.7; }
}

.hero-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 3px solid rgba(14, 165, 201, 0.5);
  box-shadow: 0 0 40px rgba(8, 145, 178, 0.35);
  animation: logoPulse 4s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(8,145,178,0.3); }
  50%       { box-shadow: 0 0 55px rgba(8,145,178,0.55); }
}

.hero-badge {
  display: inline-block;
  background: rgba(8, 145, 178, 0.15);
  border: 1px solid rgba(14, 165, 201, 0.4);
  color: var(--accent2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 span { color: var(--accent2); }
.hero > p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin: 0 auto 2.8rem;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip {
  background: var(--accent);
  padding: 28px 2.5rem;
}
.stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item {
  color: white;
}
.stat-num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.88;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  box-shadow: 0 4px 14px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent2);
  border-color: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(8,145,178,0.35);
}
.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--primary);
  color: white;
}
.btn-dark:hover { background: var(--primary2); transform: translateY(-1px); }

/* =============================================
   SECTIONS
   ============================================= */
section { padding: 80px 2.5rem; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-title h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.7rem;
}
.section-title p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}
.section-title .line {
  display: block;
  width: 52px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 1rem auto 0;
}
.bg-light { background: var(--light); }
.bg-dark  { background: var(--primary); color: white; }
.bg-dark .section-title h2 { color: white; }
.bg-dark .section-title p  { color: rgba(255,255,255,0.65); }

/* =============================================
   TRUST BADGES
   ============================================= */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 1.8rem;
}
.trust-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--accent);
  transition: transform 0.3s, box-shadow 0.3s;
}
.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.trust-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.trust-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.trust-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.6; }

/* =============================================
   PRODUCT CARDS
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 2rem;
}
.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.product-card-header {
  padding: 2rem 1.6rem 1.4rem;
  color: white;
  position: relative;
  overflow: hidden;
}
.product-card-header::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
}
.product-card-header.czech   { background: linear-gradient(135deg, #0D1B2A, #1B3A5C); }
.product-card-header.ukraine { background: linear-gradient(135deg, #1B2B3A, #2C4A5A); }
.product-card-header.pepsi   { background: linear-gradient(135deg, #8B1A10, #C0392B); }
.product-card-header.choco   { background: linear-gradient(135deg, #3E2010, #5D4037); }
.product-card-header.food    { background: linear-gradient(135deg, #1A3D1F, #2E7D32); }
.product-card-header .cat-badge {
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.5rem;
}
.product-card-header h3 { font-size: 1.2rem; font-weight: 800; }
.product-card-header p  { font-size: 0.87rem; opacity: 0.82; margin-top: 0.3rem; }
.product-card-body { padding: 1.5rem 1.6rem; }
.format-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.format-tag {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 13px;
  font-size: 0.81rem;
  font-weight: 600;
  color: var(--text);
  transition: background 0.2s, border-color 0.2s;
}
.product-card:hover .format-tag {
  background: rgba(8,145,178,0.08);
  border-color: rgba(8,145,178,0.3);
}
.moq-info {
  font-size: 0.81rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 0.9rem;
  margin-top: 0.5rem;
}
.moq-info strong { color: var(--accent); }

/* =============================================
   PRICES TABLE
   ============================================= */
.price-section { margin-bottom: 3.5rem; }
.price-section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.3rem;
}
.price-section-title h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
}
.price-section-title .dot {
  width: 13px; height: 13px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-czech   { background: var(--accent); }
.dot-ukraine { background: #1B2B3A; }
.dot-pepsi   { background: var(--red); }

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.price-table thead tr { background: var(--primary); color: white; }
.price-table thead th { padding: 14px 16px; text-align: left; font-weight: 700; font-size: 0.84rem; letter-spacing: 0.3px; }
.price-table tbody tr { background: white; border-bottom: 1px solid var(--border); transition: background 0.15s; }
.price-table tbody tr:hover { background: #F0F9FF; }
.price-table tbody td { padding: 13px 16px; }
.price-table td:first-child { font-weight: 600; color: var(--primary); }
.price-table .price-cell { font-weight: 700; color: var(--accent); }
.table-note { font-size: 0.81rem; color: var(--muted); margin-top: 0.7rem; font-style: italic; }

/* =============================================
   FORM
   ============================================= */
.form-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
}
.form-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--primary); margin-bottom: 0.4rem; }
.form-card .sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.84rem; font-weight: 600; color: var(--primary); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 7px;
  padding: 11px 14px;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--light);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.form-note { font-size: 0.81rem; color: var(--muted); }

/* =============================================
   CITIES STRIP
   ============================================= */
.cities-strip {
  background: var(--primary2);
  color: white;
  padding: 26px 2.5rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.cities-inner { max-width: 1160px; margin: 0 auto; }
.cities-strip p { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 0.9rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; }
.cities-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; }
.city-pill {
  background: rgba(8, 145, 178, 0.12);
  border: 1px solid rgba(14, 165, 201, 0.3);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent2);
  transition: background 0.2s, border-color 0.2s;
}
.city-pill:hover { background: rgba(8,145,178,0.22); border-color: var(--accent2); }

/* =============================================
   WHY US
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 2rem;
}
.why-item {
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s, border-color 0.3s;
}
.why-item:hover {
  background: rgba(8,145,178,0.1);
  border-color: rgba(14,165,201,0.3);
}
.why-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent2);
  line-height: 1;
  margin-bottom: 0.7rem;
  opacity: 0.85;
}
.why-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.why-item p  { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.contact-method-icon {
  width: 44px; height: 44px;
  background: rgba(8,145,178,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--accent);
  border: 1px solid rgba(8,145,178,0.2);
}
.contact-method-text h4 { font-size: 0.87rem; font-weight: 700; color: var(--primary); margin-bottom: 0.2rem; }
.contact-method-text a,
.contact-method-text p { font-size: 0.9rem; color: var(--muted); }
.contact-method-text a:hover { color: var(--accent); }
.company-legal {
  background: var(--light);
  border-radius: var(--radius);
  padding: 1.3rem 1.6rem;
  margin-top: 1.8rem;
  font-size: 0.82rem;
  color: var(--muted);
  border-left: 3px solid var(--accent);
}
.company-legal strong { color: var(--primary); display: block; margin-bottom: 0.3rem; font-size: 0.85rem; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(rgba(7,14,22,0.72), rgba(12,48,71,0.82)), url('images/truck2.jpg') center/cover no-repeat;
  color: white;
  padding: 60px 2.5rem 54px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(8,145,178,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 800; margin-bottom: 0.6rem; }
.page-hero p  { color: rgba(255,255,255,0.68); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent2); }
.breadcrumb span { margin: 0 6px; }

/* =============================================
   CHOCO FOOD GRID
   ============================================= */
.choco-food-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #060C14;
  color: rgba(255,255,255,0.6);
  padding: 56px 2.5rem 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.8rem;
}
.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid rgba(14,165,201,0.3);
}
.footer-brand { font-size: 1.4rem; font-weight: 800; color: white; margin-bottom: 0.8rem; }
.footer-brand span { color: var(--accent2); }
.footer-desc { font-size: 0.87rem; line-height: 1.75; max-width: 280px; }
.footer-col h4 { color: white; font-size: 0.88rem; font-weight: 700; margin-bottom: 1.1rem; text-transform: uppercase; letter-spacing: 0.8px; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.86rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: var(--accent2); }

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .footer-grid        { grid-template-columns: 1fr 1fr; }
  .contact-grid       { grid-template-columns: 1fr; }
  .choco-food-grid    { grid-template-columns: 1fr; }
  .stats-inner        { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  nav { padding: 0 1.2rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--primary); padding: 1rem 1.5rem; gap: 0; border-top: 1px solid rgba(255,255,255,0.08); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.06) !important; }
  .nav-right .btn-nav { display: none; }
  .hamburger { display: flex; }
  section { padding: 56px 1.2rem !important; }
  .hero { padding: 70px 1.2rem 60px !important; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cities-list { gap: 0.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-num { font-size: 1.6rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 280px; text-align: center; }
}

/* ======== WHATSAPP FLOATING BUTTON ======== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  background: #25D366;
  color: white;
  border-radius: 50px;
  padding: 13px 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
  color: white;
}
@media (max-width: 600px) {
  .wa-float .wa-label { display: none; }
  .wa-float { padding: 15px; border-radius: 50%; }
}
