/* ============================================
   VISI Health Care Pvt Ltd — Stylesheet
   style.css
   ============================================ */

/* ── RESET & ROOT ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:       #0d1b3e;
  --navy-mid:   #162550;
  --red:        #c0202a;
  --red-light:  #e03040;
  --blue:       #1a3fa8;
  --blue-light: #2d5bc4;
  --cream:      #f8f5ef;
  --white:      #ffffff;
  --text:       #1e293b;
  --muted:      #64748b;
  --border:     rgba(26, 63, 168, 0.18);
  /* accent used throughout */
  --accent:     #c0202a;
  --accent-alt: #1a3fa8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

/* ============================================
   HEADER
   ============================================ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5vw;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid rgba(192, 32, 42, 0.2);
  transition: background 0.4s, box-shadow 0.4s;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text { color: var(--navy); }

.logo-text strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1;
  color: var(--navy);
}

.logo-text span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
}

/* Nav */
nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  color: var(--navy);
  text-decoration: none;
  font-size: 13.5px;
  letter-spacing: 0.5px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.25s;
}

nav a:hover { color: var(--red); }
nav a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--red-light) !important; }
.nav-cta::after { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: rgba(13,27,62,0.98);
  padding: 24px 5vw;
  gap: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 15px;
}

.mobile-menu a:last-child {
  border-bottom: none;
  color: #ff9999;
}

/* ============================================
   HERO
   ============================================ */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #0d1f40 100%);
  display: flex;
  align-items: center;
  padding: 120px 5vw 80px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,32,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: 5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,63,168,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,32,42,0.15);
  border: 1px solid rgba(192,32,42,0.4);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ff9999;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ff9999;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero-title em { font-style: italic; color: #ff9999; }
.hero-title strong { font-weight: 600; }

.hero-desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: var(--red-light); transform: translateY(-1px); }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}

.btn-outline:hover { border-color: #ff9999; background: rgba(192,32,42,0.08); }

.btn-brochure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75);
  padding: 14px 24px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-brochure svg { flex-shrink: 0; opacity: 0.7; transition: opacity 0.2s, transform 0.2s; }
.btn-brochure:hover {
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
  background: rgba(255,255,255,0.05);
}
.btn-brochure:hover svg { opacity: 1; transform: translateY(2px); }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeUp 0.8s 0.4s ease both;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.stat-num span { color: #ff9999; }

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(192,32,42,0.1), rgba(13,27,62,0.7));
  border: 1px solid rgba(192,32,42,0.2);
}

.hero-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.hero-image-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,0.3);
}

.hero-image-placeholder svg { opacity: 0.3; }

.hero-card {
  position: absolute;
  bottom: -20px; left: -20px;
  background: rgba(13,27,62,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(192,32,42,0.3);
  border-radius: 10px;
  padding: 16px 20px;
}

.hero-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-card strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--white);
  display: block;
}

.hero-card em { color: #ff9999; font-style: normal; }

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
section { padding: 100px 5vw; }

.section-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}

.section-title strong { font-weight: 600; }
.section-title em { font-style: italic; color: var(--red); }

.section-desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 580px;
}

.section-center { text-align: center; }
.section-center .section-desc { margin: 0 auto; }

/* ============================================
   ABOUT
   ============================================ */
#about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.feat-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feat-card:hover {
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(192,32,42,0.08);
}

.feat-icon {
  width: 40px; height: 40px;
  background: rgba(192,32,42,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--red);
}

.feat-card h4 { font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.feat-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

.about-visual { position: relative; }

.about-img-main {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--navy) 0%, #1a2a60 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
}

.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-badge-float {
  position: absolute;
  top: 30px; right: -20px;
  background: var(--red);
  color: var(--white);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(192,32,42,0.35);
}

.about-badge-float strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  display: block;
  line-height: 1;
}

.about-badge-float span { font-size: 11px; letter-spacing: 0.5px; opacity: 0.9; }

/* ============================================
   PRODUCTS
   ============================================ */
#products { background: var(--cream); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.product-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(13,27,62,0.12);
}

.product-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2a60 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-img img { width: 100%; height: 100%; object-fit: cover; }

.product-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.25);
  font-size: 13px;
}

.product-tag {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(192,32,42,0.9);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.product-body { padding: 20px; }

.product-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.product-body p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }

.product-link {
  font-size: 13px;
  color: var(--red);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.product-link:hover { gap: 10px; }

/* ============================================
   WHY US
   ============================================ */
#why {
  background: var(--navy);
  padding: 100px 5vw;
}

#why .section-title { color: var(--white); }
#why .section-desc { color: rgba(255,255,255,0.55); }
#why .section-label { color: #ff9999; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 60px auto 0;
}

.why-list { display: flex; flex-direction: column; gap: 24px; }

.why-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.2s, background 0.2s;
}

.why-item:hover {
  border-color: rgba(192,32,42,0.4);
  background: rgba(192,32,42,0.05);
}

.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--red);
  opacity: 0.6;
  line-height: 1;
  flex-shrink: 0;
}

.why-content h4 { font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 8px; }
.why-content p { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.7; }

.why-visual { position: relative; }

.why-visual-card {
  background: linear-gradient(135deg, rgba(192,32,42,0.12) 0%, rgba(26,63,168,0.08) 100%);
  border: 1px solid rgba(192,32,42,0.2);
  border-radius: 12px;
  padding: 40px;
}

.why-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 24px;
}

.why-quote em { color: #ff9999; font-style: normal; }

.why-author {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.why-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.metric {
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  text-align: center;
}

.metric-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.metric-val em { color: #ff9999; font-style: normal; }
.metric-label { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 6px; }

/* ============================================
   CONTACT
   ============================================ */
#contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.contact-item:last-child { border-bottom: none; }

.contact-ico {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(192,32,42,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}

.contact-item h5 { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-item p { font-size: 14.5px; color: var(--text); line-height: 1.6; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.5px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,32,42,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.3px;
}

.form-submit:hover { background: var(--red); }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--navy);
  padding: 60px 5vw 30px;
  color: rgba(255,255,255,0.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.footer-brand strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.footer-brand span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff9999;
  display: block;
  margin-bottom: 16px;
}

.footer-brand p { font-size: 13.5px; line-height: 1.7; max-width: 280px; }

.footer-col h5 { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: #ff9999; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.whatsapp-btn {
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  z-index: 2;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}

.whatsapp-btn svg { width: 28px; height: 28px; fill: white; }

.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: waPulse 2s ease-out infinite;
}

.whatsapp-label {
  position: absolute;
  right: 68px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.whatsapp-label::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--navy);
}

.whatsapp-float:hover .whatsapp-label { opacity: 1; transform: translateX(0); }

@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: none; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 20px; }
  .about-features { grid-template-columns: 1fr; }
  .whatsapp-float { bottom: 20px; right: 20px; }
  .whatsapp-btn { width: 52px; height: 52px; }
}
