/* 
   Branding Horse - Boostim Digital Agency Design System
   Color Palette:
   - Primary Dark (Hero & Cards): #0a0b0d, #121418, #1a1d24
   - Primary Accent: #8df026 (Boostim Neon Lime)
   - Secondary Accent: #00e676 / #10b981 (Emerald Spark)
   - Text Colors: #0f172a (Light Bg Text), #f8fafc (Dark Bg Text), #64748b (Muted)
   - Background Light: #f7f9fb, #ffffff
   - Border Color: rgba(255, 255, 255, 0.12) / rgba(0, 0, 0, 0.08)
*/

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

:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --bg-dark: #FAF5E5;
  --bg-dark-card: #FFFFFF;
  --bg-dark-card-hover: #F4EFE0;
  --bg-light: #F4EFE0;
  --bg-white: #ffffff;
  
  --accent-lime: #1E40AF;
  --accent-blue: #1E40AF;
  --accent-blue-vibrant: #2563EB;
  --accent-blue-hover: #1D4ED8;
  --accent-midnight: #0A2540;
  
  --text-main: #0F172A;
  --text-muted: #4A4A4A;
  --text-light: #0F172A;
  --text-light-muted: #4A4A4A;
  
  --border-light: rgba(15, 23, 42, 0.12);
  --border-dark: rgba(15, 23, 42, 0.18);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.08);
  --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.2);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #1a1a1a;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6rem 0;
}

.text-center {
  text-align: center;
}

.highlight-lime {
  color: var(--accent-blue);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background-color: rgba(30, 64, 175, 0.1);
  color: #1E40AF;
  border: 1px solid rgba(30, 64, 175, 0.25);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-pill.dark {
  background-color: rgba(10, 37, 64, 0.08);
  color: #1E40AF;
  border-color: rgba(30, 64, 175, 0.25);
}

/* Header & Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(250, 245, 229, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(74, 74, 74, 0.15);
  transition: var(--transition);
}

.navbar .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-brand img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: brightness(0);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0F172A;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.nav-link:hover, .nav-link.active {
  color: #1E40AF;
}

.nav-link i {
  font-size: 0.75rem;
  transition: var(--transition);
}

.nav-item:hover .nav-link i {
  transform: rotate(180deg);
}

.mobile-cta-wrapper {
  display: none;
}

/* Mega Dropdowns */
.dropdown-menu {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  display: block;
  pointer-events: none;
  background-color: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  padding: 1.5rem;
  min-width: 650px;
  z-index: 1100;
  transition: all 0.25s ease-in-out;
}

.dropdown-menu.single-col {
  min-width: 260px;
  left: 0;
  transform: translateY(10px);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-item:hover .dropdown-menu.single-col {
  transform: translateY(0);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 1.5rem;
}

.dropdown-banner {
  background-color: #F4EFE0;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.dropdown-banner h4 {
  font-size: 1.1rem;
  color: #0F172A;
  margin-bottom: 0.5rem;
}

.dropdown-banner p {
  font-size: 0.85rem;
  color: #4A4A4A;
  margin-bottom: 1rem;
}

.btn-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1E40AF;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.btn-link:hover {
  color: #0F172A;
  transform: translateX(3px);
}

.dropdown-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.dropdown-link-item {
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: block;
}

.dropdown-link-item:hover {
  background-color: rgba(30, 64, 175, 0.08);
}

.dropdown-link-item .title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0F172A;
  display: block;
}

.dropdown-link-item .sub {
  font-size: 0.78rem;
  color: #4A4A4A;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Pill CTA Buttons */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary-lime {
  background-color: #1E40AF;
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(30, 64, 175, 0.3);
}

.btn-primary-lime:hover {
  background-color: #1D4ED8;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.45);
}

.btn-dark {
  background-color: #0A2540;
  color: #FFFFFF;
  border: 1px solid #0A2540;
}

.btn-dark:hover {
  background-color: #1E40AF;
  color: #FFFFFF;
  border-color: #1E40AF;
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-light:hover {
  border-color: var(--text-light);
  background-color: rgba(255, 255, 255, 0.05);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF !important;
  border: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* =========================================================
   HERO SECTION - ROOT BACKGROUND IMAGE & CLEAN LAYOUT
   ========================================================= */
.hero-section {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: clamp(520px, 56.25vw, 850px);
  background: #0B0F19 url('background.png') no-repeat center 80px / contain;
  color: #FFFFFF;
  padding-top: 140px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-container {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  width: 100%;
}

.hero-content {
  max-width: 620px;
  text-align: left;
}

.hero-content .badge-pill {
  background: rgba(11, 15, 25, 0.7);
  color: #60A5FA;
  border: 1px solid rgba(96, 165, 250, 0.4);
  margin-bottom: 1.5rem;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.hero-content h1 {
  color: #FFFFFF !important;
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.9), 0 2px 6px rgba(0, 0, 0, 1);
  text-align: left;
}

.hero-content h1 .highlight-blue {
  color: #60A5FA !important;
}

.hero-content p {
  color: #F1F5F9 !important;
  font-size: 1.2rem;
  line-height: 1.65;
  max-width: 580px;
  margin: 0 0 2.5rem 0;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9), 0 1px 4px rgba(0, 0, 0, 1);
  font-weight: 500;
  text-align: left;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
}

.hero-cta-group .btn-primary-lime {
  background-color: #2563EB;
  color: #FFFFFF !important;
  padding: 0.95rem 2.4rem;
  font-size: 1.05rem;
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.6);
}

.hero-cta-group .btn-whatsapp {
  padding: 0.95rem 2.4rem;
  font-size: 1.05rem;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* Hero Boostim-style Visual Grid */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  padding: 12px;
  background: #FFFFFF;
  border: 1px solid rgba(74, 74, 74, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: #F5EFE0;
}

.alive-horse-card {
  background: radial-gradient(circle, rgba(30, 64, 175, 0.15) 0%, rgba(245, 239, 224, 0.96) 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(30, 64, 175, 0.25);
  box-shadow: inset 0 0 60px rgba(30, 64, 175, 0.12), 0 10px 40px rgba(0, 0, 0, 0.08);
}

.alive-hero-horse {
  width: 90%;
  height: 380px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 18px #1E40AF) drop-shadow(0 0 35px rgba(30, 64, 175, 0.75)) drop-shadow(0 0 60px rgba(37, 99, 235, 0.5));
  animation: horseAlivePulse 3.8s ease-in-out infinite alternate;
  transform-origin: center center;
}

@keyframes horseAlivePulse {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
    filter: drop-shadow(0 0 12px #1E40AF) drop-shadow(0 0 30px rgba(30, 64, 175, 0.6)) drop-shadow(0 0 50px rgba(37, 99, 235, 0.4));
  }
  50% {
    transform: translateY(-8px) scale(1.03) rotate(1deg);
    filter: drop-shadow(0 0 25px #1E40AF) drop-shadow(0 0 50px rgba(30, 64, 175, 0.9)) drop-shadow(0 0 80px rgba(37, 99, 235, 0.7));
  }
  100% {
    transform: translateY(-14px) scale(1.05) rotate(-1deg);
    filter: drop-shadow(0 0 20px #1E40AF) drop-shadow(0 0 40px rgba(30, 64, 175, 0.8)) drop-shadow(0 0 70px rgba(37, 99, 235, 0.6));
  }
}

.hero-image-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* Floating Boostim Stat Cards */
.floating-stat-card {
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(74, 74, 74, 0.15);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 10;
  animation: floatAnim 4s ease-in-out infinite alternate;
}

.floating-stat-card .stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #1E40AF;
  line-height: 1;
}

.floating-stat-card .stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #4a4a4a;
  max-width: 140px;
}

.floating-card-bottom {
  position: absolute;
  bottom: -25px;
  left: -20px;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  color: #1a1a1a;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(74, 74, 74, 0.15);
  border-left: 4px solid #1E40AF;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  z-index: 10;
  max-width: 310px;
  animation: floatAnim 4s ease-in-out infinite alternate-reverse;
}

.floating-card-bottom h4 {
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 0.4rem;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.floating-card-bottom p {
  font-size: 0.88rem;
  font-weight: 500;
  color: #4a4a4a;
  line-height: 1.45;
}

@keyframes floatAnim {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* =========================================================
   CLIENT MARQUEE SECTION (s1 - s14 images)
   ========================================================= */
.marquee-section {
  background-color: var(--bg-main);
  padding: 3rem 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
  position: relative;
}

.marquee-label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1E40AF;
  margin-bottom: 2rem;
}

.marquee-wrapper {
  display: flex;
  width: 100%;
  padding: 0.75rem 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: scrollMarquee 35s linear infinite;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 180px;
  padding: 0.75rem 1.25rem;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.marquee-item:hover {
  transform: translateY(-4px);
  border-color: #1E40AF;
  box-shadow: 0 10px 25px rgba(30, 64, 175, 0.12);
}

.marquee-item img {
  max-height: 52px;
  max-width: 145px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   BOOSTIM SERVICE / FEATURES SECTION
   ========================================================= */
.services-section {
  background-color: var(--bg-dark);
}

.section-header {
  max-width: 680px;
  margin: 0 auto 4rem auto;
}

.section-header.left-aligned {
  margin-left: 0;
}

.section-header h2 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin: 1rem 0;
  color: #0F172A;
}

.section-header p {
  font-size: 1.1rem;
  color: #4A4A4A;
}

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

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

.service-card {
  background-color: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  color: #0F172A;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border-color: #1E40AF;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background-color: #F4EFE0;
  color: #1E40AF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #0F172A;
}

.service-card p {
  color: var(--text-light-muted);
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
}

.service-card .card-footer {
  margin-top: auto;
}

/* Dark Card Accent (Boostim 920+ finish superbly style) */
.dark-feature-card {
  background-color: var(--bg-dark-card);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  border: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}

.dark-feature-card h3 {
  font-size: 2.4rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.dark-feature-card .subtitle {
  color: var(--text-light-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-group img, .avatar-initial-sm {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark-card);
  margin-left: -12px;
  object-fit: cover;
}

.avatar-group img:first-child, .avatar-initial-sm:first-child {
  margin-left: 0;
}

.avatar-initial-sm {
  background: linear-gradient(135deg, #1E40AF 0%, #2563EB 100%);
  color: #FFFFFF !important;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-group .more-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #1E40AF;
  color: #FFFFFF !important;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-left: -12px;
  border: 2px solid #FFFFFF;
}

/* How We Work Image Card with Green Play Button */
.video-preview-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.video-preview-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.video-play-btn {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #1E40AF;
  color: #FFFFFF !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.5);
  border: none;
}

.video-play-btn:hover {
  transform: scale(1.15);
  background-color: #FFFFFF;
  color: #1E40AF !important;
}

.video-preview-title {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 2;
  color: #FFFFFF !important;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* =========================================================
   PORTFOLIO / CASE STUDY FILTER SECTION (Boostim Style)
   ========================================================= */
.portfolio-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.filter-pills-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-pill);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-light-muted);
  border: 1px solid var(--border-dark);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.3);
}

.filter-btn.active {
  background-color: #1E40AF;
  color: #FFFFFF !important;
  border-color: #1E40AF;
  font-weight: 700;
}

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

.portfolio-card {
  background-color: var(--bg-dark-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: #1E40AF;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.portfolio-img-box {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
}

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

.portfolio-card:hover .portfolio-img-box img {
  transform: scale(1.06);
}

.portfolio-info {
  padding: 1.5rem;
}

.portfolio-tag {
  font-size: 0.8rem;
  color: var(--text-light-muted);
  margin-bottom: 0.4rem;
}

.portfolio-info h4 {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

/* =========================================================
   FAQ ACCORDION SECTION (Boostim Style)
   ========================================================= */
.faq-section {
  background-color: var(--bg-dark);
}

.faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.faq-item {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 1rem;
}

.faq-question {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0F172A;
}

.faq-toggle-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #F4EFE0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  flex-shrink: 0;
  color: #1E40AF;
}

.faq-item.active .faq-toggle-icon {
  background-color: #1E40AF;
  color: #FFFFFF;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
  color: #4A4A4A;
  font-size: 0.98rem;
}

.faq-item.active .faq-body {
  max-height: 300px;
  margin-top: 1rem;
}

/* =========================================================
   TESTIMONIALS SLIDER SECTION (Boostim Style)
   ========================================================= */
.testimonial-section {
  background-color: var(--bg-dark);
}

.testimonial-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 4rem 3.5rem;
  border: 1px solid rgba(15, 23, 42, 0.15);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  color: #0F172A;
}

.testimonial-quote {
  font-size: 1.6rem;
  line-height: 1.45;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 2.5rem;
  font-family: var(--font-heading);
}

.testimonial-author-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img, .testimonial-initials {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-initials {
  background: linear-gradient(135deg, #1E40AF 0%, #2563EB 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 900;
  box-shadow: 0 5px 15px rgba(30, 64, 175, 0.3);
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.author-info h5 {
  font-size: 1.1rem;
  color: #0F172A;
}

.author-info p {
  font-size: 0.88rem;
  color: #4A4A4A;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #F4EFE0;
  border: 1px solid rgba(15, 23, 42, 0.15);
  color: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-btn:hover {
  background-color: #1E40AF;
  color: #FFFFFF;
}

.slider-counter {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1E40AF;
}

/* =========================================================
   CONTACT CTA & FOOTER
   ========================================================= */
.cta-banner {
  background-color: #FFFFFF;
  color: #0F172A;
  border-radius: var(--radius-lg);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.15);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
}

.cta-banner h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #0F172A;
}

.cta-banner p {
  font-size: 1.15rem;
  color: #4A4A4A;
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
}

.footer {
  background-color: var(--bg-dark);
  color: #4A4A4A;
  padding-top: 5rem;
  padding-bottom: 2rem;
  border-top: 1px solid var(--border-dark);
}

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

.footer-brand img {
  height: 50px;
  margin-bottom: 1.25rem;
  filter: none;
}

.footer-brand p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: #1E40AF;
  color: #FFFFFF !important;
}

.footer-col h4 {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  font-size: 0.92rem;
}

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

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
}

/* Contact Page Form Components */
.contact-form-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: #1E40AF;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

/* Modal Video / Quote Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 640px;
  position: relative;
  color: var(--text-light);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-light-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--accent-lime);
}

/* =========================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================= */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

@media (max-width: 992px) {
  .nav-container {
    height: 72px;
    padding: 0 1.25rem;
  }

  .nav-brand span {
    font-size: 1rem;
  }

  .nav-brand img {
    height: 38px;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 0;
  }

  .nav-actions .btn-pill {
    display: none !important;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    position: relative;
    background: transparent;
    border: none;
    color: #1a1a1a;
    font-size: 1.6rem;
    cursor: pointer;
    padding: 0.4rem;
    width: 40px;
    height: 40px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    padding-top: 85px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 2.5rem;
    background-color: #FAF5E5;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-top: 1px solid rgba(74, 74, 74, 0.15);
    flex-direction: column;
    align-items: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9999;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-item {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .nav-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1rem;
    font-size: 1.15rem;
    border-radius: var(--radius-sm);
    color: #1a1a1a;
  }

  .mobile-cta-wrapper {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-dark);
  }

  .nav-actions .btn-pill {
    display: none;
  }

  /* Mobile Dropdown Menu Clean Expand Fix */
  .dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    display: none;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.03);
    margin-top: 0.35rem;
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    border: 1px solid var(--border-dark);
  }

  .nav-item.open .dropdown-menu {
    display: block;
  }

  /* Hide heavy banner text on mobile to show less and keep clean */
  .dropdown-banner {
    display: none !important;
  }

  /* Single column clean list for links */
  .dropdown-grid {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    min-width: 0 !important;
    gap: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
  }

  .dropdown-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.35rem !important;
    width: 100% !important;
  }

  .dropdown-link-item {
    display: flex !important;
    align-items: center !important;
    padding: 0.65rem 0.85rem !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border-radius: var(--radius-sm) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    margin-bottom: 0.25rem !important;
    transition: background 0.2s ease !important;
  }

  .dropdown-link-item:hover,
  .dropdown-link-item:active {
    background: rgba(30, 64, 175, 0.08) !important;
    border-color: rgba(30, 64, 175, 0.3) !important;
  }

  .dropdown-link-item .title {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: var(--text-light) !important;
  }

  /* Hide sub-description on mobile to show less clutter */
  .dropdown-link-item .sub {
    display: none !important;
  }

  /* =========================================================
     BRANDING & DIGITAL MARKETING PAGES - MOBILE RESPONSIVE FIXES
     ========================================================= */
  .services-section {
    padding-top: 90px !important;
    padding-bottom: 3rem !important;
  }

  .section-header h2 {
    font-size: 1.75rem !important;
    line-height: 1.3 !important;
  }

  .section-header p {
    font-size: 0.92rem !important;
    line-height: 1.5 !important;
    margin-top: 0.5rem !important;
  }

  .services-section .container > div[style*="flex-direction: column"] {
    margin-top: 2rem !important;
    gap: 1.75rem !important;
    width: 100% !important;
  }

  .dark-feature-card {
    display: flex !important;
    flex-direction: column !important;
    padding: 1.5rem 1.25rem !important;
    gap: 1.25rem !important;
    border-radius: var(--radius-md) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
  }

  /* Force Text Content FIRST (Order 1), Visual Feature Card SECOND (Order 2) for 100% consistent vertical alignment */
  .dark-feature-card > div:not([style*="text-align: center"]) {
    order: 1 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Identity Engineering & Feature Highlight Cards come symmetrically under pillar data */
  .dark-feature-card > div[style*="text-align: center"] {
    order: 2 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-top: 0.5rem !important;
    padding: 1.5rem 1.25rem !important;
    border-radius: var(--radius-md) !important;
    background: #F5EFE0 !important;
    border: 1px solid rgba(74, 74, 74, 0.18) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
  }

  .dark-feature-card > div[style*="text-align: center"] i {
    font-size: 2.6rem !important;
    margin-bottom: 0.75rem !important;
    color: var(--accent-lime) !important;
  }

  .dark-feature-card > div[style*="text-align: center"] h4 {
    font-size: 1.2rem !important;
    color: #1a1a1a !important;
    margin-bottom: 0.4rem !important;
  }

  .dark-feature-card > div[style*="text-align: center"] p {
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
    margin-bottom: 0 !important;
    color: #4a4a4a !important;
  }

  .dark-feature-card h3 {
    font-size: 1.4rem !important;
    line-height: 1.35 !important;
    margin: 0.75rem 0 0.85rem !important;
  }

  .dark-feature-card p {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1.25rem !important;
  }

  .dark-feature-card ul {
    gap: 0.65rem !important;
    margin-bottom: 1.35rem !important;
  }

  .dark-feature-card li {
    font-size: 0.88rem !important;
    line-height: 1.4 !important;
  }

  .dark-feature-card .btn-pill {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .dark-feature-card > div[style*="text-align: center"] i {
    font-size: 2.5rem !important;
    margin-bottom: 0.75rem !important;
  }

  .dark-feature-card > div[style*="text-align: center"] h4 {
    font-size: 1.15rem !important;
  }

  .grid-3, .grid-2, .portfolio-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-section {
    aspect-ratio: auto !important;
    min-height: auto !important;
    padding-top: 110px !important;
    padding-bottom: 3.5rem !important;
    background: #0B0F19 url('background.png') no-repeat center 80px / cover !important;
  }

  .hero-container {
    padding: 0 1.25rem !important;
  }

  .hero-content {
    max-width: 100% !important;
    text-align: left !important;
  }

  .hero-content h1 {
    font-size: 2.2rem !important;
    line-height: 1.18 !important;
    margin-bottom: 1rem !important;
    text-align: left !important;
  }

  .hero-content p {
    font-size: 1rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1.75rem !important;
    text-align: left !important;
  }

  .hero-cta-group {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.85rem !important;
  }

  .hero-cta-group .btn-pill {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.85rem 1.5rem !important;
  }

  /* Mobile Hero Image Horse - Prevent Clipping/Cutting */
  .hero-image-card {
    height: auto;
    max-height: 480px;
    border-radius: var(--radius-md);
    background: transparent;
  }

  .hero-image-card img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    display: block;
  }

  .floating-stat-card {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 1.25rem;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 1rem;
  }

  .floating-stat-card .stat-label {
    max-width: 100%;
    margin-top: 0.4rem;
    font-size: 0.88rem;
    text-align: center;
  }

  .floating-card-bottom {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 1.25rem 1.25rem;
  }

  .floating-card-bottom h4 {
    font-size: 1rem;
    line-height: 1.35;
  }

  .floating-card-bottom p {
    font-size: 0.85rem;
    margin-top: 0.35rem;
  }

  /* Testimonial Mobile Layout Fix */
  .testimonial-card {
    padding: 2.25rem 1.5rem;
    border-radius: var(--radius-md);
  }

  .testimonial-quote {
    font-size: 1.15rem;
    line-height: 1.5;
    margin-bottom: 1.75rem;
  }

  .testimonial-author-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .testimonial-author {
    width: 100%;
  }

  .author-info h5 {
    font-size: 1rem;
  }

  .author-info p {
    font-size: 0.82rem;
  }

  .slider-controls {
    width: 100%;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
  }

  /* FAQ Section Mobile */
  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .faq-left h2 {
    font-size: 2rem !important;
  }

  .faq-question {
    font-size: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* =========================================================
   SCROLL REVEAL ANIMATIONS SUITE (LUXURY 3D BUILDING EFFECT)
   ========================================================= */
.reveal, .reveal-fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-from-left, .reveal-fade-left {
  opacity: 0;
  transform: perspective(1000px) translateX(-90px) rotateY(15deg) scale(0.92);
  filter: blur(3px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s ease;
  will-change: opacity, transform, filter;
}

.reveal-from-right, .reveal-fade-right {
  opacity: 0;
  transform: perspective(1000px) translateX(90px) rotateY(-15deg) scale(0.92);
  filter: blur(3px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s ease;
  will-change: opacity, transform, filter;
}

.reveal-building-3d {
  opacity: 0;
  transform: perspective(1000px) translateY(70px) rotateX(18deg) scale(0.88);
  filter: blur(4px);
  transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1), transform 0.95s cubic-bezier(0.16, 1, 0.3, 1), filter 0.95s ease;
  will-change: opacity, transform, filter;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.88);
  filter: blur(3px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), filter 0.85s ease;
  will-change: opacity, transform, filter;
}

.reveal-active {
  opacity: 1 !important;
  transform: perspective(1000px) translate(0, 0) rotateX(0deg) rotateY(0deg) scale(1) !important;
  filter: blur(0) !important;
}

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }

/* =========================================================
   OUR PARTNERS INFINITE MARQUEE STYLES
   ========================================================= */
.partners-marquee-box {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3.5rem;
  overflow: hidden;
}

.partners-marquee-row {
  display: flex;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  padding: 0.5rem 0;
}

.partner-logo-card {
  flex-shrink: 0;
  width: 280px;
  height: 140px;
  margin: 0 1rem;
  background: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-logo-card:hover {
  border-color: #1E40AF;
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 16px 40px rgba(30, 64, 175, 0.25);
}

.partner-logo-card img {
  max-width: 96%;
  max-height: 94%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: all 0.3s ease;
}

.partner-logo-card:hover img {
  transform: scale(1.06);
}

/* ==================== WHATSAPP FLOATING ACTION BUTTON (FAB) ==================== */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.65);
  color: #ffffff;
}

.whatsapp-fab::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: waPulse 2s infinite;
  pointer-events: none;
}

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