/* ══════════════════════════════════════════
   NeoBizWorld — Warm Corporate Aesthetic
   Inspired by: Dubai Tour Booking Dribbble
   Cream base + Orange/Coral + Blue accents
   ══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #faf8f5;
  --bg-warm: #f5f0ea;
  --bg-card: #ffffff;
  --bg-dark: #1a1a2e;
  --orange: #F05A28;
  --orange-light: #FF7A48;
  --orange-glow: rgba(240, 90, 40, 0.08);
  --coral: #F05A28;
  --teal: #196D46;
  --blue: #274796;
  --navy: #1B326A;
  --green: #196D46;
  --text-dark: #1B326A;
  --text-body: #4a4a5a;
  --text-muted: #8a8a9a;
  --text-light: #f0f0f5;
  --border: rgba(0,0,0,0.06);
  --border-card: rgba(0,0,0,0.08);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --radius-pill: 50px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.06);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.1);
  --shadow-orange: 0 8px 24px rgba(232,97,45,0.25);
  --transition: 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --max-width: 1440px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); color: var(--text-dark); line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: var(--font-body); }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 clamp(24px,5vw,64px); }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 34px;
  background: var(--orange);
  color: #fff; font-weight: 600; font-size: 0.92rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  font-family: var(--font-body);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(232,97,45,0.35); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 34px;
  border: 2px solid var(--text-dark);
  color: var(--text-dark); font-weight: 600; font-size: 0.92rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  background: transparent;
  font-family: var(--font-body);
}
.btn-outline:hover { background: var(--text-dark); color: #fff; transform: translateY(-3px); }

/* Nav-specific Get Started button - matching btn-primary */
.nav-links a.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 34px;
  background: var(--orange);
  color: #fff; font-weight: 600; font-size: 0.92rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  font-family: var(--font-body);
  box-shadow: var(--shadow-orange);
  white-space: nowrap;
}
.nav-links a.nav-cta:hover {
  background: var(--orange-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(240,90,40,0.35);
  color: #fff;
  text-shadow: none;
}
.nav-links a.nav-cta::after { display: none; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 60px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-body); position: relative; padding: 4px 0;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--orange);
  border-radius: 2px; transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--text-dark); transition: var(--transition); border-radius: 2px; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 140px 0 80px;
  background: var(--bg);
}
.hero .container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px;
  background: var(--orange-glow);
  border: 1px solid rgba(232,97,45,0.15);
  border-radius: var(--radius-pill);
  font-size: 0.82rem; color: var(--orange); font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.8); }
}
.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.08;
  margin-bottom: 20px; letter-spacing: -1px;
  color: var(--text-dark);
}
.hero h1 .highlight {
  color: var(--orange);
  position: relative;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute; bottom: 4px; left: 0; right: 0;
  height: 8px; background: rgba(232,97,45,0.15);
  border-radius: 4px; z-index: -1;
}
.hero p { font-size: 1.08rem; color: var(--text-muted); max-width: 480px; margin-bottom: 36px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-image-main {
  width: 100%; max-width: 600px;
  margin: 0 auto;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(240, 90, 40, 0.15), 0 15px 40px rgba(39, 71, 150, 0.1);
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(240,90,40,0.05) 0%, var(--bg) 100%);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-main:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 40px 90px rgba(240, 90, 40, 0.2), 0 20px 50px rgba(39, 71, 150, 0.15);
}
.hero-image-main::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.5);
  background: radial-gradient(circle at top left, rgba(255,255,255,0.4) 0%, transparent 60%);
  pointer-events: none;
}
.hero-image-main img { 
  width: 90%; height: 90%; 
  object-fit: contain; 
  display: block;
}

/* Decorative shapes */
.hero-decor-circle {
  position: absolute; width: 280px; height: 280px;
  border-radius: 50%;
  background: var(--orange-glow);
  border: 1px dashed rgba(232,97,45,0.2);
  top: -40px; right: -40px; z-index: 1;
  animation: spin-slow 30s linear infinite;
}
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-dots {
  position: absolute; bottom: 20px; left: -30px;
  display: grid; grid-template-columns: repeat(5,8px); gap: 10px; z-index: 1;
}
.hero-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(232,97,45,0.2); }
.hero-dots span:nth-child(3n) { background: var(--orange); }

.hero-stats {
  display: flex; gap: 48px; margin-top: 56px;
  padding-top: 36px; border-top: 1px solid var(--border);
}
.hero-stat h3 { font-size: 2.2rem; font-weight: 800; color: var(--orange); font-family: var(--font-body); }
.hero-stat p { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

/* ─── SECTION COMMON ─── */
.section { padding: clamp(80px,12vw,120px) 0; position: relative; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--orange); margin-bottom: 12px;
}
.section-label::before {
  content: ''; width: 32px; height: 2px; background: var(--orange); border-radius: 2px;
}
.section-header h2 {
  font-size: clamp(2rem,3.8vw,2.8rem); margin-bottom: 14px; letter-spacing: -0.5px;
}
.section-header p { color: var(--text-muted); font-size: 1rem; }

/* ─── SERVICES ─── */
#services {
  position: relative;
  background: var(--bg-warm);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.service-card-premium {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  transition: var(--transition); position: relative; overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.service-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.card-img-wrapper {
  width: 100%; height: 200px; overflow: hidden;
}
.card-img-wrapper img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service-card-premium:hover .card-img-wrapper img {
  transform: scale(1.08);
}
.card-body {
  padding: 30px 24px; display: flex; flex-direction: column; flex-grow: 1;
}
.service-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 18px;
}
.icon-orange { background: linear-gradient(135deg, #FF6B00 0%, #FFA03A 100%); color: #fff; box-shadow: 0 6px 15px rgba(255,107,0,0.25); }
.icon-blue { background: linear-gradient(135deg, #1B326A 0%, #4D76DD 100%); color: #fff; box-shadow: 0 6px 15px rgba(27,50,106,0.25); }
.icon-teal { background: linear-gradient(135deg, #0F766E 0%, #2DD4BF 100%); color: #fff; box-shadow: 0 6px 15px rgba(15,118,110,0.25); }
.icon-green { background: linear-gradient(135deg, #196D46 0%, #4ADE80 100%); color: #fff; box-shadow: 0 6px 15px rgba(25,109,70,0.25); }

.service-card-premium h3 { font-size: 1.15rem; margin-bottom: 12px; font-weight: 700; font-family: var(--font-body); color: var(--text-dark); }
.service-card-premium p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; flex-grow: 1; margin-bottom: 20px; }
.service-card-premium .arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--orange); font-weight: 600; font-size: 0.95rem;
  transition: var(--transition); margin-top: auto;
}
.service-card-premium:hover .arrow-link { color: var(--text-dark); gap: 12px; }

/* ─── PRODUCTS (dark section) ─── */
.section-dark {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.section-dark .section-header h2, .section-dark .section-header p,
.section-dark h2 { color: var(--text-light); }
.section-dark .section-header p { color: rgba(240,240,245,0.6); }
.section-dark::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,97,45,0.06) 0%, transparent 70%);
}
.section-dark::after {
  content: ''; position: absolute; bottom: -150px; left: -150px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.05) 0%, transparent 70%);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.product-card {
  display: block; text-decoration: none; color: inherit;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 28px 22px;
  transition: var(--transition); text-align: center;
}
.product-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(232,97,45,0.3);
  transform: translateY(-6px);
}
.product-icon {
  width: 60px; height: 60px; margin: 0 auto 16px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; background: rgba(232,97,45,0.1);
  color: var(--orange); border: 1px solid rgba(232,97,45,0.15);
}
.product-card h3 { font-size: 1rem; color: var(--text-light); margin-bottom: 6px; font-family: var(--font-body); font-weight: 600; }
.product-card p { font-size: 0.82rem; color: rgba(240,240,245,0.5); }

/* ─── ABOUT ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.1); }
.about-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); }
.about-image-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--orange); color: #fff;
  padding: 16px 24px; border-radius: var(--radius);
  font-weight: 700; font-size: 1.3rem;
  box-shadow: var(--shadow-orange);
}
.about-image-badge span { display: block; font-size: 0.75rem; font-weight: 400; opacity: 0.9; }

.about-content .section-label { justify-content: flex-start; }
.about-content h2 { font-size: clamp(1.8rem,3vw,2.4rem); margin-bottom: 18px; }
.about-content > p { color: var(--text-muted); margin-bottom: 20px; font-size: 0.98rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.about-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 500; color: var(--text-body);
}
.about-feature .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--orange-glow); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; flex-shrink: 0;
}

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info h2 { font-size: clamp(1.8rem,3vw,2.4rem); margin-bottom: 14px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--orange-glow); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item h4 { font-size: 0.92rem; margin-bottom: 2px; font-family: var(--font-body); font-weight: 600; color: var(--text-dark); }
.contact-item p { font-size: 0.88rem; color: var(--text-muted); }
.contact-item a { color: var(--orange); }
.contact-item a:hover { color: var(--orange-light); }

.contact-form {
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-lg); padding: 44px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.03);
}
.contact-form h3 { font-size: 1.3rem; margin-bottom: 24px; font-family: var(--font-body); font-weight: 700; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--text-body); margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px;
  background: var(--bg); border: 1px solid var(--border-card);
  border-radius: var(--radius-sm); color: var(--text-dark);
  font-size: 0.92rem; font-family: var(--font-body);
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%; padding: 16px;
  background: var(--orange); color: #fff;
  font-weight: 700; font-size: 0.95rem;
  border-radius: var(--radius-pill); transition: var(--transition);
  margin-top: 8px; box-shadow: var(--shadow-orange);
}
.form-submit:hover { background: var(--orange-light); transform: translateY(-2px); }

/* ─── FOOTER ─── */
.footer { background: var(--bg-dark); padding: 64px 0 0; color: var(--text-light); }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
}
.footer-brand img { height: 60px; margin-bottom: 12px; }
.footer-brand p { color: rgba(240,240,245,0.55); font-size: 0.88rem; margin: 12px 0 20px; line-height: 1.7; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.06); display: flex;
  align-items: center; justify-content: center;
  color: rgba(240,240,245,0.6); font-size: 0.9rem; transition: var(--transition);
}
.footer-socials a:hover { background: var(--orange); color: #fff; transform: translateY(-3px); }
.footer-col h4 { font-size: 0.92rem; margin-bottom: 18px; font-weight: 700; color: var(--text-light); font-family: var(--font-body); }
.footer-col a {
  display: block; font-size: 0.85rem; color: rgba(240,240,245,0.5);
  padding: 4px 0; transition: var(--transition);
}
.footer-col a:hover { color: var(--orange); transform: translateX(4px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0; display: flex;
  justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(240,240,245,0.4); }

/* ─── WAVY DIVIDERS ─── */
.wave-divider {
  position: relative;
  width: 100%;
  height: 60px;
  overflow: hidden;
  margin-top: -1px;
  margin-bottom: -1px;
}
.wave-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  display: block;
}
.wave-divider.flip { transform: scaleY(-1); }
.wave-cream svg path { fill: var(--bg); }
.wave-warm svg path { fill: var(--bg-warm); }
.wave-dark svg path { fill: var(--bg-dark); }

/* ─── DOT GRID TEXTURE ─── */
.dot-grid {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(6, 6px);
  gap: 12px;
  opacity: 0.4;
  z-index: 0;
}
.dot-grid span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.dot-grid.muted span { background: rgba(0,0,0,0.1); }
.dot-grid.muted span:nth-child(3n+1) { background: var(--orange); opacity: 0.5; }

/* ─── BRUSH UNDERLINE ─── */
.brush-underline {
  position: relative;
  display: inline-block;
}
.brush-underline::after {
  content: '';
  position: absolute;
  bottom: -2px; left: -4px; right: -4px;
  height: 12px;
  background: rgba(232,97,45,0.15);
  border-radius: 40% 60% 50% 40% / 60% 40% 60% 40%;
  z-index: -1;
  transform: rotate(-1deg);
}

/* ─── FLOATING BADGE ─── */
.float-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-dark);
  z-index: 5;
  animation: float-gentle 4s ease-in-out infinite;
}
.float-badge i { color: var(--orange); font-size: 1.1rem; }
@keyframes float-gentle {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(35px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media(max-width:1024px) {
  .hero .container, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:768px) {
  .nav-links {
    display: none; position: fixed; inset: 0;
    background: rgba(250,248,245,0.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 24px; z-index: 999;
  }
  .nav-links.active { display: flex; }
  .nav-links a { font-size: 1.15rem; }
  .hamburger { display: flex; z-index: 1001; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
  .hero-stats { flex-direction: column; gap: 16px; }
  .services-grid, .products-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ─── WHATSAPP FLOATING BUTTON ─── */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse-wa 2s infinite;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  background-color: #128c7e;
  color: #FFF;
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
  line-height: 1;
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media screen and (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 25px;
    right: 25px;
    font-size: 28px;
  }
}
