/* ============================================================
   صرواح البنيان لمواد البناء — style.css
   Mobile First | RTL | Modern Premium Design
   ============================================================ */

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

:root {
  --gold:      #D69C2F;
  --gold-dark: #b8821e;
  --dark:      #222222;
  --dark2:     #1a1a1a;
  --bg:        #F8F9FA;
  --bg2:       #FFFFFF;
  --wa:        #25D366;
  --wa-dark:   #1da851;
  --text:      #333333;
  --text-muted:#666666;
  --border:    #e5e5e5;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.14);
  --radius:    12px;
  --radius-lg: 20px;
  --transition:0.3s cubic-bezier(0.4,0,0.2,1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

.gold { color: var(--gold); }

/* ==================== SCROLL ANIMATIONS ==================== */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.cards-grid .fade-up:nth-child(2) { transition-delay: 0.1s; }
.cards-grid .fade-up:nth-child(3) { transition-delay: 0.2s; }
.cards-grid .fade-up:nth-child(4) { transition-delay: 0.3s; }

.products-grid .fade-up:nth-child(2) { transition-delay: 0.08s; }
.products-grid .fade-up:nth-child(3) { transition-delay: 0.16s; }
.products-grid .fade-up:nth-child(4) { transition-delay: 0.24s; }
.products-grid .fade-up:nth-child(5) { transition-delay: 0.32s; }
.products-grid .fade-up:nth-child(6) { transition-delay: 0.40s; }

.timeline-item:nth-child(2) { transition-delay: 0.15s; }
.timeline-item:nth-child(3) { transition-delay: 0.3s; }

.reviews-grid .fade-up:nth-child(2) { transition-delay: 0.12s; }
.reviews-grid .fade-up:nth-child(3) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==================== SECTION COMMON ==================== */
.section {
  padding: 72px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(214,156,47,0.1);
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.3;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 50px;
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  border: none;
}

.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}

.btn-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}

.btn-call {
  background: var(--dark);
  color: #fff;
}

.btn-call:hover {
  background: #333;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* ==================== HEADER ==================== */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}

.site-header.scrolled {
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 1.8rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
}

.logo-sub {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links .nav-wa {
  background: var(--wa);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
}

.nav-links .nav-wa:hover {
  background: var(--wa-dark);
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px,5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px,-5px);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(26,26,26,0.98);
  padding: 16px 24px 24px;
  gap: 4px;
}

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

.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--gold);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  /*
    *** مكان تغيير صورة الخلفية ***
    أضف أو غيّر السطر التالي:
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
  */

  background: linear-gradient(
    135deg,
    #1a1a1a 0%,
    #2c2417 40%,
    #1a1208 100%
  );
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      ellipse 80% 80% at 60% 40%,
      rgba(214,156,47,0.13) 0%,
      transparent 60%
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.02) 60px,
      rgba(255,255,255,0.02) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.02) 60px,
      rgba(255,255,255,0.02) 61px
    );
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 0 80px;
  opacity: 1;
  transform: none;
  animation: heroIn 0.9s ease both;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(214,156,47,0.18);
  color: var(--gold);
  border: 1px solid rgba(214,156,47,0.4);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}

.hero-title {
  font-size: clamp(1.9rem, 6vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.hero-btns .btn {
  width: 100%;
  max-width: 320px;
  justify-content: center;
  font-size: 1.05rem;
  padding: 16px 28px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  animation: scrollBounce 1.8s ease infinite;
}

@keyframes scrollBounce {
  0%,100% {
    transform: translateY(0);
    opacity: 0.6;
  }

  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

@media (min-width: 600px) {
  .hero-btns {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-btns .btn {
    width: auto;
    max-width: none;
  }
}

/* ==================== WHY US ==================== */
.why-us {
  background: var(--bg2);
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.card-feature {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.card-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(214,156,47,0.3);
}

.card-feature:hover::before {
  opacity: 1;
}

.card-icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
  display: block;
}

.card-feature h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.card-feature p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

@media (min-width: 500px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==================== PRODUCTS ==================== */
.products {
  background: var(--bg);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.product-card {
  background: var(--bg2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: #e8e0d0;
  position: relative;
  overflow: hidden;
}

.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #d4c5a9 25%,
    #c4b090 50%,
    #d4c5a9 75%
  );
  background-size: 400% 400%;
  animation: shimmer 1.8s ease infinite;
}

.product-img[style*="url("]::after {
  display: none;
}

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

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.product-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.5) 0%,
    transparent 60%
  );
  z-index: 1;
}

.product-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--wa);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  z-index: 2;
}

.product-body {
  padding: 22px 20px;
}

.product-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.product-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.btn-inquire {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.btn-inquire:hover {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
  padding-right: 4px;
}

@media (min-width: 600px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==================== HOW TO ORDER ==================== */
.how-order {
  background: var(--bg2);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
}

.timeline-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(214,156,47,0.4);
}

.timeline-connector {
  position: absolute;
  top: 44px;
  right: 22px;
  width: 2px;
  height: calc(100% + 8px);
  background: linear-gradient(
    to bottom,
    var(--gold),
    rgba(214,156,47,0.1)
  );
}

.timeline-connector.last {
  display: none;
}

.timeline-body {
  padding: 0 0 48px;
}

.timeline-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.timeline-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.timeline-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.how-cta {
  text-align: center;
  margin-top: 16px;
}

/* ==================== CONTRACTORS ==================== */
.contractors {
  position: relative;
  background: var(--dark2);
  overflow: hidden;
  padding: 80px 0;
}

.contractors-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 20% 50%,
      rgba(214,156,47,0.12) 0%,
      transparent 60%
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 30px,
      rgba(255,255,255,0.015) 30px,
      rgba(255,255,255,0.015) 31px
    );
}

.contractors-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.contractors-text .section-label.light {
  background: rgba(214,156,47,0.15);
  color: var(--gold);
}

.contractors-text h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin: 12px 0 18px;
}

.contractors-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 24px;
}

.contractors-list {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contractors-list li {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 600;
}

/* ==================== GALLERY ==================== */
.gallery-section {
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: #e0d9ce;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-overlay span {
  font-size: 2rem;
  opacity: 0;
  transform: scale(0.6);
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(0,0,0,0.45);
}

.gallery-item:hover .gallery-overlay span {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.93);
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  animation: lbIn 0.25s ease;
}

@keyframes lbIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.25);
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* ==================== REVIEWS ==================== */
.reviews {
  background: var(--bg2);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(214,156,47,0.12);
  line-height: 1;
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--gold),
    var(--gold-dark)
  );
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 700;
}

.review-author span {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--dark2);
  color: rgba(255,255,255,0.8);
  padding-top: 64px;
  padding-bottom: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-main {
  color: #fff;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 340px;
}

.footer-contact h4,
.footer-links h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  margin-bottom: 12px;
  transition: color var(--transition);
  font-weight: 600;
}

.footer-contact .footer-wa {
  color: var(--wa);
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: color var(--transition);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding: 18px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ==================== CODRIQ LINK ==================== */
/* رابط CODRIQ في أسفل الموقع */
.footer-bottom a {
  color: #4da3ff;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.footer-bottom a:hover {
  color: #7cc4ff;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* ==================== FLOATING BUTTONS ==================== */
.float-btns {
  position: fixed;
  bottom: 24px;
  left: 20px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.float-wa,
.float-call {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  transition: var(--transition);
}

.float-wa {
  background: var(--wa);
  color: #fff;
  position: relative;
}

.float-wa::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--wa);
  opacity: 0.5;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%,100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.18);
    opacity: 0;
  }
}

.float-wa:hover {
  background: var(--wa-dark);
  transform: scale(1.08);
}

.float-call {
  background: var(--dark);
  color: #fff;
  width: 50px;
  height: 50px;
}

.float-call:hover {
  background: #333;
  transform: scale(1.08);
}