@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --charcoal: #2a2520;
  --charcoal-soft: #3d3630;
  --sand: #f0e8db;
  --sand-light: #f7f3ec;
  --sand-dark: #d9cebf;
  --bronze: #b08850;
  --bronze-light: #c9a46c;
  --bronze-dark: #8a6a3a;
  --forest: #2d5a3d;
  --forest-light: #3a7550;
  --cream: #faf8f4;
  --text-primary: #1e1a16;
  --text-secondary: #6b5f52;
  --text-light: #9a8e80;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(42, 37, 32, .06);
  --shadow-md: 0 8px 32px rgba(42, 37, 32, .1);
  --shadow-lg: 0 16px 48px rgba(42, 37, 32, .14);
  --radius: 12px;
  --transition: .4s cubic-bezier(.25, .46, .45, .94);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.8;
  direction: rtl;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-user-drag: none;
}

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

ul {
  list-style: none;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4%;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(250, 248, 244, .95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: .7rem 4%;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
}

.navbar-logo img {
  height: 48px;
  width: auto;
  transition: var(--transition);
}

.navbar.scrolled .navbar-logo img {
  height: 40px;
}

.navbar-logo span {
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
  transition: var(--transition);
}

.navbar.scrolled .navbar-logo span {
  color: var(--charcoal);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--bronze-light);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.navbar.scrolled .nav-links a {
  color: var(--text-primary);
}

.nav-cta {
  background: var(--bronze);
  color: var(--white) !important;
  padding: .5rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--bronze-dark);
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}

.navbar.scrolled .mobile-toggle span {
  background: var(--charcoal);
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 5% 4rem 3%;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(176, 136, 80, .15);
  border: 1px solid rgba(176, 136, 80, .3);
  padding: .4rem 1.2rem;
  border-radius: 50px;
  width: fit-content;
  margin-bottom: 1.5rem;
}

.hero-badge span {
  color: var(--bronze-light);
  font-size: .85rem;
  font-weight: 600;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bronze);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.hero h1 .accent {
  color: var(--bronze-light);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .65);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--bronze);
  color: var(--white);
  padding: .9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--bronze-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: transparent;
  color: var(--white);
  padding: .9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  border: 2px solid rgba(255, 255, 255, .25);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--bronze-light);
  color: var(--bronze-light);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.stat-item .stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--bronze-light);
}

.stat-item .stat-label {
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
}

.hero-visual {
  position: relative;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.85);
  animation: heroImageFade 4.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroImageFade {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, transparent 0%, rgba(42, 37, 32, 0.2) 30%, rgba(42, 37, 32, 0.8) 70%, var(--charcoal) 100%);
}

.hero-visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 30%;
  z-index: 1;
  background: linear-gradient(to top, var(--charcoal), transparent);
}

/* ============ SECTION COMMON ============ */
.section-padding {
  padding: 6rem 5%;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--bronze);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: .8rem;
}

.section-tag::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--bronze);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1.3;
  color: var(--charcoal);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-top: .8rem;
}

/* ============ SERVICES BENTO ============ */
.services {
  background: var(--sand-light);
}

.services-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1.2rem;
}

.bento-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  min-height: 280px;
}

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

.bento-item:hover img {
  transform: scale(1.06);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 26, 22, .85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: var(--transition);
}

.bento-item:hover .bento-overlay {
  background: linear-gradient(to top, rgba(30, 26, 22, .92) 0%, rgba(30, 26, 22, .3) 70%);
}

.bento-overlay h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .3rem;
}

.bento-overlay p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.bento-item:hover .bento-overlay p {
  opacity: 1;
  transform: translateY(0);
}

.bento-item:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 420px;
}

.bento-item:nth-child(2) {
  grid-column: span 5;
}

.bento-item:nth-child(3) {
  grid-column: span 5;
}

.bento-item:nth-child(4) {
  grid-column: span 4;
}

.bento-item:nth-child(5) {
  grid-column: span 4;
}

.bento-item:nth-child(6) {
  grid-column: span 4;
}

/* ============ ABOUT SPLIT ============ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.about-visual {
  position: relative;
  overflow: hidden;
}

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

.about-visual .experience-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 2;
  background: var(--bronze);
  color: var(--white);
  padding: 1.2rem 1.8rem;
  border-radius: var(--radius);
  text-align: center;
}

.experience-badge .big {
  font-size: 2.5rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.experience-badge .small {
  font-size: .8rem;
  font-weight: 600;
}

.about-content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}

.about-features {
  margin-top: 2rem;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--sand-dark);
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--sand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.feature-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .2rem;
}

.feature-text p {
  font-size: .85rem;
  color: var(--text-secondary);
}

/* ============ GALLERY MASONRY ============ */
.gallery {
  background: var(--charcoal);
  color: var(--white);
}

.gallery .section-title {
  color: var(--white);
}

.gallery .section-subtitle {
  color: rgba(255, 255, 255, .5);
}

.gallery-grid {
  columns: 3;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .5s ease;
}

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

.gallery-item::after {
  content: 'اضغط للتكبير';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: .8rem;
  text-align: center;
  background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent);
  color: var(--bronze-light);
  font-size: .8rem;
  font-weight: 600;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

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

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--sand-dark);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--bronze);
}

.why-card .why-number {
  position: absolute;
  top: -8px;
  left: 10px;
  font-size: 5rem;
  font-weight: 900;
  color: var(--sand);
  line-height: 1;
  pointer-events: none;
}

.why-card:hover .why-number {
  color: rgba(176, 136, 80, .12);
}

.why-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: .5rem;
  position: relative;
  z-index: 1;
}

.why-card p {
  font-size: .9rem;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-soft) 100%);
  padding: 5rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(176, 136, 80, .08);
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, .6);
  max-width: 500px;
  margin: 0 auto 2rem;
  position: relative;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-2px);
}

.btn-call {
  background: transparent;
  color: var(--white);
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  border: 2px solid rgba(255, 255, 255, .2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  transition: var(--transition);
}

.btn-call:hover {
  border-color: var(--bronze-light);
  color: var(--bronze-light);
}

/* ============ FOOTER ============ */
.footer {
  background: #1a1612;
  color: rgba(255, 255, 255, .6);
  padding: 4rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: .9rem;
  line-height: 1.8;
  max-width: 360px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--bronze);
  margin-top: .4rem;
}

.footer-col ul li {
  margin-bottom: .6rem;
}

.footer-col ul li a {
  font-size: .88rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--bronze-light);
  padding-right: .3rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .82rem;
}

/* ============ FLOATING BUTTONS ============ */
.floating-whatsapp {
  position: fixed;
  bottom: 1.8rem;
  left: 1.8rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: var(--transition);
  cursor: pointer;
  animation: float-btn-whatsapp 3s ease-in-out infinite, pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-3px);
}

.floating-call {
  position: fixed;
  bottom: 6.2rem;
  left: 1.8rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bronze);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(176, 136, 80, .4);
  transition: var(--transition);
  cursor: pointer;
  animation: float-btn-call 3s ease-in-out infinite 0.5s, pulse-call 2s infinite 0.5s;
}

.floating-call:hover {
  transform: scale(1.1) translateY(-3px);
  background: var(--bronze-dark);
}

@keyframes float-btn-whatsapp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes float-btn-call {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 4px 20px rgba(37, 211, 102, .4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 4px 20px rgba(37, 211, 102, .4);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 4px 20px rgba(37, 211, 102, .4);
  }
}

@keyframes pulse-call {
  0% {
    box-shadow: 0 0 0 0 rgba(176, 136, 80, 0.7), 0 4px 20px rgba(176, 136, 80, .4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(176, 136, 80, 0), 0 4px 20px rgba(176, 136, 80, .4);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(176, 136, 80, 0), 0 4px 20px rgba(176, 136, 80, .4);
  }
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, .92);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}

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

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

/* ============ MOBILE MENU ============ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: var(--charcoal);
  z-index: 1500;
  padding: 5rem 2rem 2rem;
  transition: right .4s cubic-bezier(.77, 0, .175, 1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--bronze-light);
  padding-right: .5rem;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 1499;
  display: none;
}

.mobile-overlay.active {
  display: block;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    height: 50vh;
  }

  .hero-visual::before {
    background: linear-gradient(to top, var(--charcoal) 20%, transparent 80%);
  }

  .hero-content {
    padding: 2rem 5% 4rem;
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

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

  .about-visual {
    height: 50vh;
  }

  .services-bento {
    grid-template-columns: repeat(6, 1fr);
  }

  .bento-item:nth-child(1) {
    grid-column: span 6;
    min-height: 300px;
  }

  .bento-item:nth-child(2),
  .bento-item:nth-child(3) {
    grid-column: span 3;
  }

  .bento-item:nth-child(4),
  .bento-item:nth-child(5),
  .bento-item:nth-child(6) {
    grid-column: span 2;
  }

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

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

  .mobile-toggle {
    display: flex;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-item .stat-number {
    font-size: 1.5rem;
  }

  .gallery-grid {
    columns: 2;
  }

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

  .services-bento {
    grid-template-columns: 1fr 1fr;
  }

  .bento-item:nth-child(1) {
    grid-column: span 2;
    min-height: 250px;
  }

  .bento-item:nth-child(2),
  .bento-item:nth-child(3),
  .bento-item:nth-child(4),
  .bento-item:nth-child(5),
  .bento-item:nth-child(6) {
    grid-column: span 1;
    min-height: 200px;
  }

  .about-content {
    padding: 3rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .section-padding {
    padding: 4rem 4%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .gallery-grid {
    columns: 1;
  }

  .floating-whatsapp {
    bottom: 1.2rem;
    left: 1.2rem;
    width: 54px;
    height: 54px;
  }

  .floating-call {
    bottom: 5.2rem;
    left: 1.2rem;
    width: 54px;
    height: 54px;
  }
}