:root {
  --bg: #0a0f1a;
  --card: #0d1526;
  --muted: #0c1322;
  --text: #f5f5f5;
  --text_soft: rgba(245, 245, 245, 0.75);
  --line: rgba(202, 164, 74, 0.2);
  --gold: #d4af37;
  --gold_soft: rgba(212, 175, 55, 0.25);
  --gold_glow: rgba(212, 175, 55, 0.4);
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.5);
  --radius: 16px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, Arial, sans-serif;
  background: 
    radial-gradient(ellipse 1400px 700px at 10% 0%, rgba(212, 175, 55, 0.12), transparent 60%),
    radial-gradient(ellipse 1000px 600px at 90% 10%, rgba(212, 175, 55, 0.08), transparent 50%),
    radial-gradient(ellipse 800px 400px at 50% 100%, rgba(212, 175, 55, 0.06), transparent 50%),
    linear-gradient(180deg, #0a0f1a 0%, #0d1526 50%, #0a0f1a 100%);
  color: var(--text);
  min-height: 100vh;
}

/* Smooth animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

a { color: inherit; text-decoration: none; }

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo styling */
.logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 20px var(--gold_glow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px var(--gold_glow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand_info {
  display: flex;
  flex-direction: column;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(10, 15, 26, 0.98) 0%, rgba(10, 15, 26, 0.92) 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header_grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 12px 0;
}

.brand_name {
  font-weight: 800;
  letter-spacing: 0.5px;
  font-size: 20px;
  background: linear-gradient(135deg, var(--gold) 0%, #f5e6a3 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand_sub {
  font-size: 12px;
  color: var(--text_soft);
  margin-top: 2px;
  letter-spacing: 0.3px;
}

.nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav_link {
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--text_soft);
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.nav_link:hover {
  border-color: var(--gold_soft);
  color: var(--text);
  background: rgba(212, 175, 55, 0.08);
}

.nav_link.active {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
  color: var(--gold);
  font-weight: 600;
}

.lang {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
}

.lang_btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text_soft);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.lang_btn:hover {
  color: var(--text);
  border-color: var(--gold_soft);
  background: rgba(212, 175, 55, 0.08);
}

.lang_btn.is_active {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.1));
  color: var(--gold);
}

/* Hero Section with Image */
.hero {
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/ציון ציונוב הסעות.png') center center / cover no-repeat;
  opacity: 0.08;
  z-index: -1;
}

.hero_grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.hero_text {
  animation: fadeInUp 0.8s ease-out;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  animation: pulse 2s ease-in-out infinite;
}

.pill::before {
  content: '⏰';
}

.h1 {
  margin: 0;
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: 0.5px;
  font-weight: 800;
}

.h1_small {
  display: block;
  margin-top: 14px;
  font-weight: 600;
  font-size: 20px;
  color: var(--gold);
}

.lead {
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text_soft);
  max-width: 55ch;
}

.cta_row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cta_row.center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 24px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.btn.primary {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold) 0%, #c9a227 100%);
  color: #0a0f1a;
  font-weight: 800;
  text-shadow: none;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn.primary:hover {
  background: linear-gradient(135deg, #e5c547 0%, var(--gold) 100%);
  box-shadow: 0 8px 35px rgba(212, 175, 55, 0.5);
}

.btn.secondary {
  border-color: var(--gold_soft);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
  color: var(--gold);
}

.btn.secondary:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1));
}

.btn.ghost {
  color: var(--text_soft);
  border-color: var(--line);
}

.btn.ghost:hover {
  border-color: var(--gold_soft);
  color: var(--gold);
}

.btn.full {
  width: 100%;
}

.hero_card {
  border: 1px solid var(--gold_soft);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 21, 38, 0.95), rgba(10, 15, 26, 0.9));
  box-shadow: var(--shadow), 0 0 40px rgba(212, 175, 55, 0.1);
  padding: 24px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  position: relative;
  overflow: hidden;
}

.hero_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero_card_image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
}

.card_title {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 14px;
  color: var(--gold);
}

.check_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.check_list li {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(10, 15, 26, 0.6);
  color: var(--text);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.check_list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: bold;
}

.check_list li:hover {
  border-color: var(--gold_soft);
  background: rgba(212, 175, 55, 0.08);
}

.mini_note {
  margin-top: 14px;
  color: var(--text_soft);
  font-size: 13px;
  line-height: 1.7;
  padding: 12px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 10px;
  border-right: 3px solid var(--gold);
}

.trust_row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.trust_item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(13, 21, 38, 0.8), rgba(10, 15, 26, 0.6));
  text-align: center;
  transition: all 0.3s ease;
}

.trust_item:hover {
  border-color: var(--gold_soft);
  transform: translateY(-2px);
}

.trust_num {
  font-weight: 900;
  font-size: 28px;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.trust_txt {
  margin-top: 6px;
  font-size: 12px;
  color: var(--text_soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section {
  padding: 50px 0;
}

.section.muted {
  background: linear-gradient(180deg, rgba(13, 21, 38, 0.6) 0%, rgba(10, 15, 26, 0.4) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section_head {
  margin-bottom: 24px;
  text-align: center;
}

.h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sub {
  margin: 12px auto 0;
  color: var(--text_soft);
  line-height: 1.7;
  max-width: 60ch;
}

.grid_cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.svc_card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 21, 38, 0.9), rgba(10, 15, 26, 0.7));
  padding: 0;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.svc_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.svc_card:hover::before {
  opacity: 1;
}

.svc_card:hover {
  transform: translateY(-8px);
  border-color: var(--gold_soft);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

.svc_card_image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.svc_card_content {
  padding: 18px;
}

.svc_title {
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--gold);
}

.svc_desc {
  color: var(--text_soft);
  font-size: 13px;
  line-height: 1.6;
}

.area_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.area_box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 21, 38, 0.8), rgba(10, 15, 26, 0.6));
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.area_box:hover {
  border-color: var(--gold_soft);
  transform: translateY(-4px);
}

.area_box_image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.area_box_content {
  padding: 18px;
}

.area_title {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--gold);
}

.area_desc {
  color: var(--text_soft);
  font-size: 13px;
  line-height: 1.6;
}

.faq {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq_item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 21, 38, 0.8), rgba(10, 15, 26, 0.6));
  padding: 18px 20px;
  transition: all 0.3s ease;
}

.faq_item[open] {
  border-color: var(--gold_soft);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.faq_item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq_item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq_item[open] summary::after {
  transform: rotate(45deg);
}

.faq_item summary::-webkit-details-marker {
  display: none;
}

.faq_body {
  margin-top: 14px;
  color: var(--text_soft);
  line-height: 1.8;
  font-size: 15px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.contact_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.contact_info {
  animation: fadeInUp 0.6s ease-out;
}

.contact_cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}

.contact_card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 21, 38, 0.8), rgba(10, 15, 26, 0.6));
  padding: 20px;
  transition: all 0.3s ease;
  text-align: center;
}

.contact_card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.contact_label {
  color: var(--text_soft);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact_value {
  font-weight: 900;
  font-size: 18px;
  margin-top: 10px;
  color: var(--gold);
  letter-spacing: 0.3px;
}

.form {
  border: 1px solid var(--gold_soft);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 21, 38, 0.95), rgba(10, 15, 26, 0.9));
  padding: 28px;
  box-shadow: var(--shadow);
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.form_title {
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 18px;
  color: var(--gold);
  text-align: center;
}

.field {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(10, 15, 26, 0.8);
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

input::placeholder {
  color: var(--text_soft);
}

.form_hint {
  margin-top: 14px;
  color: var(--text_soft);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  padding: 10px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 8px;
}

.page_head {
  padding: 50px 0 30px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(13, 21, 38, 0.6), rgba(10, 15, 26, 0.4));
  text-align: center;
}

.svc_sections {
  display: grid;
  gap: 20px;
}

.svc_block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 21, 38, 0.8), rgba(10, 15, 26, 0.6));
  padding: 24px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: start;
  transition: all 0.3s ease;
}

.svc_block:hover {
  border-color: var(--gold_soft);
}

.svc_block_image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.svc_block_content {
  flex: 1;
}

.svc_block .h2 {
  font-size: 24px;
  text-align: right;
}

.tag_list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag_list li {
  border: 1px solid var(--line);
  background: rgba(10, 15, 26, 0.6);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.tag_list li:hover {
  border-color: var(--gold_soft);
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
}

.note_box {
  margin-top: 30px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.04));
}

.note_title {
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--gold);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  background: linear-gradient(180deg, rgba(10, 15, 26, 0.9), rgba(10, 15, 26, 1));
}

.footer_grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.foot_logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.foot_brand {
  font-weight: 900;
  font-size: 18px;
  background: linear-gradient(135deg, var(--gold) 0%, #f5e6a3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.foot_small {
  color: var(--text_soft);
  font-size: 13px;
  margin-top: 4px;
}

.foot_right {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.foot_link {
  color: var(--text_soft);
  border: 1px solid transparent;
  padding: 10px 14px;
  border-radius: 999px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.foot_link:hover {
  border-color: var(--gold_soft);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

/* Watermark */
.watermark {
  text-align: center;
  padding: 16px 0 0;
  margin-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--text_soft);
}

.watermark a {
  color: var(--gold);
  font-weight: 600;
  transition: all 0.3s ease;
  margin-right: 4px;
}

.watermark a:hover {
  color: #f5e6a3;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.he_only { display: block; }
.en_only { display: none; }

/* Responsive Design */
@media (max-width: 980px) {
  .header_grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  
  .brand {
    justify-content: center;
  }
  
  .nav {
    justify-content: center;
  }
  
  .lang {
    justify-content: center;
  }

  .hero_grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero_text {
    order: 1;
  }
  
  .hero_card {
    order: 2;
  }
  
  .lead {
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta_row {
    justify-content: center;
  }

  .grid_cards {
    grid-template-columns: 1fr 1fr;
  }

  .area_grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact_grid {
    grid-template-columns: 1fr;
  }

  .contact_cards {
    grid-template-columns: 1fr;
  }

  .h1 {
    font-size: 36px;
  }
  
  .svc_block {
    grid-template-columns: 1fr;
  }
  
  .svc_block_image {
    height: 180px;
  }
  
  .footer_grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  
  .foot_right {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .grid_cards {
    grid-template-columns: 1fr;
  }
  
  .area_grid {
    grid-template-columns: 1fr;
  }
  
  .h1 {
    font-size: 28px;
  }
  
  .h2 {
    font-size: 24px;
  }
  
  .trust_row {
    grid-template-columns: 1fr;
  }
  
  .logo {
    width: 50px;
    height: 50px;
  }
}

/* Features Section */
.features_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.feature_item {
  background: linear-gradient(180deg, rgba(13, 21, 38, 0.9), rgba(10, 15, 26, 0.7));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
}

.feature_item:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

.feature_icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.feature_title {
  font-weight: 800;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 10px;
}

.feature_desc {
  color: var(--text_soft);
  font-size: 14px;
  line-height: 1.6;
}

/* WhatsApp Floating Button */
.whatsapp_float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s ease-in-out infinite;
}

.whatsapp_float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp_float svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 980px) {
  .features_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .features_grid {
    grid-template-columns: 1fr;
  }
  
  .whatsapp_float {
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
  }
  
  .whatsapp_float svg {
    width: 26px;
    height: 26px;
  }
}
