/* ============================================
   Olga Cleaner Services — Design System
   ============================================ */

:root {
  --color-primary: #2d4f32;
  --color-primary-dark: #1e3622;
  --color-accent: #769e6f;
  --color-accent-light: #a8c4a0;
  --color-bg: #f9f9f7;
  --color-bg-warm: #f3f1ec;
  --color-white: #ffffff;
  --color-text: #2a2f2a;
  --color-text-muted: #5c665c;
  --color-border: rgba(45, 79, 50, 0.1);

  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "DM Sans", system-ui, sans-serif;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 12px rgba(45, 79, 50, 0.06);
  --shadow-md: 0 8px 32px rgba(45, 79, 50, 0.08);
  --shadow-lg: 0 16px 48px rgba(45, 79, 50, 0.1);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --topbar-height: 34px;
  --header-height: 72px;
  --site-header-height: calc(var(--topbar-height) + var(--header-height));
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--site-header-height);
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: normal;
  line-height: 1.35;
  text-align: center;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:focus-visible,
.nav__link:focus-visible,
.logo:focus-visible,
.nav-drawer__close:focus-visible,
.nav-drawer__contact-link:focus-visible,
.nav-drawer__cta:focus-visible,
.nav-drawer__whatsapp:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.menu-toggle:focus-visible,
.whatsapp-fab:focus-visible,
.footer__nav a:focus-visible,
.footer__contact a:focus-visible,
.top-bar__lang-btn:focus-visible,
.top-bar__phone:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(118, 158, 111, 0.25);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 18px rgba(45, 79, 50, 0.22);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 8px 28px rgba(45, 79, 50, 0.32);
}

.btn--gradient {
  background: linear-gradient(135deg, #2d4f32 0%, #4a7350 55%, #769e6f 100%);
  color: var(--color-white);
  border: none;
  box-shadow: 0 4px 16px rgba(45, 79, 50, 0.2);
}

.btn--gradient:hover {
  background: linear-gradient(135deg, #1e3622 0%, #3d6344 55%, #6a9163 100%);
  color: var(--color-white);
  box-shadow: 0 6px 22px rgba(45, 79, 50, 0.26);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(45, 79, 50, 0.06);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 6px 20px rgba(45, 79, 50, 0.2);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
  min-height: 48px;
}

.top-bar__location {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-primary);
  min-width: 0;
  overflow: hidden;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 0;
}

.logo__icon {
  display: block;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  object-fit: contain;
  align-self: center;
  margin-top: 0.125rem;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo__name {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.logo__tagline {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.logo--footer .logo__icon {
  width: 38px;
  height: 38px;
  margin-top: 0.15rem;
}

.logo--footer .logo__name {
  color: var(--color-white);
  font-size: 1.58rem;
}

.logo--footer .logo__tagline {
  color: var(--color-accent-light);
  font-size: 0.72rem;
}

/* Site Header + Top Bar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.top-bar {
  height: var(--topbar-height);
  background: #faf9f5;
  border-bottom: 1px solid rgba(45, 79, 50, 0.08);
}

.top-bar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--topbar-height);
  gap: 1rem;
}

.top-bar__location span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-bar__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--color-accent);
}

.top-bar__lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.top-bar__lang-btn {
  background: none;
  border: none;
  padding: 0.125rem 0.25rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #8a928a;
  cursor: pointer;
  position: relative;
  transition: color 0.25s ease;
}

.top-bar__lang-btn:hover {
  color: var(--color-primary);
}

.top-bar__lang-btn--active {
  color: var(--color-primary);
  font-weight: 600;
}

.top-bar__lang-btn--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1.5px;
  background: var(--color-primary);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.top-bar__lang-sep {
  font-size: 0.75rem;
  color: rgba(45, 79, 50, 0.2);
  user-select: none;
}

.top-bar__phone {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-primary);
  min-width: 0;
  transition: color 0.25s ease;
}

.top-bar__phone:hover {
  color: var(--color-accent);
}

.top-bar__phone:hover .top-bar__phone-number {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.top-bar__phone-text {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  min-width: 0;
}

.top-bar__phone-number {
  transition: color 0.25s ease, text-decoration-color 0.25s ease;
  white-space: nowrap;
}

/* Header */
.header {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  z-index: 1;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.header__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(249, 249, 247, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--transition), box-shadow var(--transition);
}

.header--scrolled {
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header--scrolled .header__backdrop {
  background: rgba(255, 255, 255, 0.98);
}

.header--menu-open {
  border-color: var(--color-border);
}

.header--menu-open .header__backdrop {
  background: var(--color-white);
}

.header__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
  min-width: 0;
}

.nav {
  display: none;
}

.nav__list {
  display: flex;
  gap: 2.5rem;
}

.nav__link {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
  position: relative;
  white-space: nowrap;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-primary);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.header__cta {
  display: none;
  flex-shrink: 0;
  min-height: 44px;
  max-width: 12rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  white-space: nowrap;
}

.menu-toggle {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.menu-toggle:hover {
  background: var(--color-bg-warm);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.menu-toggle--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Header language switcher (mobile) */
.header__lang {
  display: none;
}

/* Nav overlay & mobile drawer */
.nav-overlay {
  display: none;
}

.nav-drawer__only {
  display: none;
}

.nav-drawer__close,
.nav-drawer__header,
.nav-drawer__divider,
.nav-drawer__section,
.nav-drawer__cta,
.nav-drawer__whatsapp {
  display: none;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Hero */
.hero {
  padding: calc(var(--site-header-height) + 2.5rem) 0 4rem;
  overflow: hidden;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero__content {
  min-width: 0;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero__title em {
  font-style: normal;
  color: var(--color-accent);
}

.hero__subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 520px;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.hero__actions .btn--hero-primary,
.hero__actions .btn--hero-secondary {
  min-height: 52px;
  padding: 0.9375rem 1.5rem;
  font-size: 1rem;
  line-height: 1.35;
  text-align: center;
  justify-content: center;
}

.hero__actions .btn--hero-secondary {
  background: var(--color-white);
  color: var(--color-primary);
  border: 1px solid #d8d4cc;
  box-shadow: none;
}

.hero__actions .btn--hero-secondary:hover {
  background: var(--color-white);
  color: var(--color-primary-dark);
  border-color: #c5c0b6;
  box-shadow: 0 2px 8px rgba(45, 79, 50, 0.06);
  transform: translateY(-2px);
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.625rem;
  padding: 0.6875rem 1.25rem;
  background: var(--color-bg-warm);
  color: var(--color-primary);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid #e8e4dc;
  border-radius: var(--radius-pill);
  line-height: 1.3;
  white-space: nowrap;
}

.hero__chip svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--color-accent);
}

.hero__visual {
  position: relative;
  width: 100%;
  min-width: 0;
}

.hero__arc {
  position: absolute;
  top: -10%;
  right: -20%;
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(118, 158, 111, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero__composition {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  background: var(--color-white);
  border: 1px solid #e8e4dc;
  border-radius: 26px;
  box-shadow: 0 10px 36px rgba(45, 79, 50, 0.06);
  overflow: hidden;
}

.hero__image-wrap {
  overflow: hidden;
  border-radius: 16px;
}

.hero__image-wrap--main img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.hero__gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
}

.hero__gallery-item {
  overflow: hidden;
  border-radius: 14px;
}

.hero__gallery-item img {
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section__desc {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.section__desc--secondary {
  margin-top: 1rem;
}

.section__header .section__desc--secondary {
  margin-top: 1rem;
}

.quote__guide {
  margin-top: 2.25rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  opacity: 0.9;
}

/* Cards */
.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  min-width: 0;
}

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

.card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.625rem;
  text-wrap: balance;
}

.card__text {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Services */
.services {
  background: var(--color-white);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.service-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card .card__text {
  flex-grow: 1;
}

.service-card__icon {
  width: 77px;
  height: 77px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(118, 158, 111, 0.12);
  border-radius: 50%;
  color: var(--color-primary);
}

.service-card__icon svg {
  width: 43px;
  height: 43px;
}

/* Why Choose Us */
.why__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.why__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.why__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(118, 158, 111, 0.15);
  border-radius: 50%;
  color: var(--color-primary);
  margin-top: 0.125rem;
}

.why__check svg {
  width: 16px;
  height: 16px;
}

.why__item strong {
  display: block;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.why__item p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.why__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.why__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--color-white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.why__badge-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.why__badge-text {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Quote */
.quote {
  background: var(--color-bg-warm);
}

.quote__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.quote-card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.quote-card--featured {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.quote-card--featured:hover {
  transform: translateY(-8px);
}

.quote-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: normal;
  text-align: center;
  max-width: calc(100% - 2rem);
  line-height: 1.35;
}

.quote-card__header {
  margin-bottom: 1.25rem;
}

.quote-card__desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.quote-card__includes {
  flex: 1;
  margin-bottom: 1.5rem;
}

.quote-card__includes-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.quote-card__features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.quote-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
}

.quote-card .btn {
  margin-top: auto;
  align-self: stretch;
  white-space: normal;
  line-height: 1.35;
  min-height: 48px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Testimonials */
.testimonials {
  background: var(--color-white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.testimonial {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial__star {
  width: 18px;
  height: 18px;
  color: #c9a227;
}

.testimonial__text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(118, 158, 111, 0.2);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial__name {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.9375rem;
}

.testimonial__location {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* Contact */
.contact {
  background: var(--color-white);
  padding-bottom: 6rem;
}

.contact__form-intro {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.contact__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact__info,
.contact__form {
  min-width: 0;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact__details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(118, 158, 111, 0.12);
  border-radius: 50%;
  color: var(--color-primary);
  margin-top: 0.125rem;
}

.contact__icon svg {
  width: 22px;
  height: 22px;
}

.contact__details strong {
  display: block;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.125rem;
}

.contact__details a {
  color: var(--color-accent);
  font-weight: 500;
}

.contact__details a:hover {
  color: var(--color-primary);
}

.contact__form .card:hover {
  transform: none;
}

/* Form */
.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(118, 158, 111, 0.15);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #c0392b;
}

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

.form__note {
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-align: center;
  font-style: italic;
}

.form__privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.875rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: #8a928a;
  text-align: left;
}

.form__privacy-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 0.125rem;
  color: #9aa39a;
}

.form__success {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(118, 158, 111, 0.15);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  font-weight: 500;
  text-align: center;
  animation: fadeIn 0.4s ease;
}

.form__error {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(192, 57, 43, 0.08);
  color: #a93226;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  animation: fadeIn 0.4s ease;
}

/* CTA Banner */
.cta-banner {
  background: rgba(118, 158, 111, 0.1);
  padding: 4rem 0 5rem;
}

.cta-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.cta-banner__content {
  text-align: center;
  max-width: 560px;
  min-width: 0;
}

.cta-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(1.625rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 1.125rem;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.cta-banner__text {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.125rem;
}

.cta-banner__btn {
  gap: 0.625rem;
  min-height: 48px;
  max-width: 100%;
}

.cta-banner__btn-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-banner__btn:hover .cta-banner__btn-icon {
  transform: translateX(3px);
}

.cta-banner__trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cta-banner__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #8a928a;
}

.cta-banner__trust-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  color: var(--color-accent);
}

.cta-banner__visual {
  width: 100%;
  max-width: 720px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-banner__visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (hover: hover) {
  .cta-banner__visual:hover img {
    transform: scale(1.03);
  }
}

/* Trust Bar */
.trust-bar {
  padding: 4rem 0;
  background: rgba(118, 158, 111, 0.08);
  border-top: 1px solid var(--color-border);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.trust-bar__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  min-width: 0;
}

.trust-bar__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.trust-bar__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(118, 158, 111, 0.12);
  border-radius: 50%;
  color: var(--color-primary);
}

.trust-bar__icon svg {
  width: 22px;
  height: 22px;
}

.trust-bar__item > div {
  min-width: 0;
  flex: 1;
}

.trust-bar__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
  line-height: 1.3;
  text-wrap: balance;
}

.trust-bar__text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* WhatsApp FAB */
.whatsapp-fab-wrap {
  position: fixed;
  bottom: 3rem;
  right: 1.25rem;
  z-index: 900;
  width: 66px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: bottom var(--transition);
}

.whatsapp-fab {
  position: relative;
  flex-shrink: 0;
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 6px 28px rgba(45, 79, 50, 0.22);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-fab svg {
  width: 32px;
  height: 32px;
}

.whatsapp-fab:hover {
  transform: scale(1.05);
  background: var(--color-primary-dark);
  box-shadow: 0 8px 32px rgba(45, 79, 50, 0.28);
}

.whatsapp-fab__tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  min-width: 12rem;
  max-width: 15rem;
  white-space: normal;
  line-height: 1.32;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.4375rem 1.125rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-fab__tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--color-primary);
}

.whatsapp-fab-wrap:hover .whatsapp-fab__tooltip,
.whatsapp-fab-wrap:focus-within .whatsapp-fab__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

@keyframes whatsapp-fab-pulse {
  0% {
    box-shadow: 0 6px 28px rgba(45, 79, 50, 0.22);
  }
  50% {
    box-shadow: 0 6px 28px rgba(45, 79, 50, 0.22), 0 0 0 10px rgba(45, 79, 50, 0.08);
  }
  100% {
    box-shadow: 0 6px 28px rgba(45, 79, 50, 0.22);
  }
}

.whatsapp-fab--pulse {
  animation: whatsapp-fab-pulse 1.4s ease-out;
}

.whatsapp-fab-wrap--raised {
  bottom: 7.25rem;
}

@media (max-width: 767px) {
  :root {
    --topbar-height: 0px;
    --header-height: 56px;
    --site-header-height: var(--header-height);
  }

  .top-bar {
    display: none;
  }

  .header__lang {
    display: flex;
    margin-left: auto;
    margin-right: 0.625rem;
  }

  .header__inner {
    gap: 0.625rem;
  }

  .logo__icon {
    width: 30px;
    height: 30px;
    margin-top: 0.1rem;
  }

  .logo__name {
    font-size: 1.25rem;
  }

  .logo__tagline {
    font-size: 0.5625rem;
  }

  .menu-toggle {
    flex-shrink: 0;
  }

  .header--menu-open .menu-toggle {
    z-index: 1110;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1090;
    background: rgba(0, 0, 0, 0.32);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-overlay--visible {
    opacity: 1;
    visibility: visible;
  }

  .nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, calc(100vw - 2rem));
    max-width: 320px;
    height: 100%;
    height: 100dvh;
    z-index: 1100;
    background: var(--color-white);
    box-shadow: -10px 0 48px rgba(45, 79, 50, 0.1);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
  }

  .nav--open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-drawer {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0 1.5rem 1.5rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    --nav-drawer-divider: rgba(45, 79, 50, 0.05);
    --nav-drawer-gap: 1.125rem;
  }

  .nav-drawer__header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    height: var(--header-height);
    margin: 0 -1.5rem 0.25rem;
    padding: 0 0.625rem 0 1.5rem;
    border-bottom: 1px solid rgba(45, 79, 50, 0.06);
  }

  .nav-drawer__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    border-radius: var(--radius-sm);
    color: var(--color-primary);
    cursor: pointer;
    transform: translateY(5px);
    transition: background var(--transition);
  }

  .nav-drawer__close svg {
    width: 22px;
    height: 22px;
  }

  .nav-drawer__close:hover {
    background: var(--color-bg-warm);
  }

  .nav-drawer__only,
  .nav-drawer__header,
  .nav-drawer__divider,
  .nav-drawer__section,
  .nav-drawer__cta,
  .nav-drawer__whatsapp {
    display: block;
  }

  .nav-drawer__cta,
  .nav-drawer__whatsapp {
    display: inline-flex;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .nav .nav__link {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.0625rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--color-primary);
    border-bottom: 1px solid var(--nav-drawer-divider);
    white-space: normal;
  }

  .nav .nav__link::after {
    display: none;
  }

  .nav .nav__link--active {
    font-weight: 600;
    color: var(--color-accent);
  }

  .nav .nav__list li:last-child .nav__link {
    border-bottom: none;
  }

  .nav-drawer__divider {
    flex-shrink: 0;
    width: 100%;
    height: 1px;
    margin: 0;
    border: none;
    background: var(--nav-drawer-divider);
  }

  .nav__list + .nav-drawer__divider {
    margin-bottom: var(--nav-drawer-gap);
  }

  .nav-drawer__cta + .nav-drawer__divider {
    margin-top: var(--nav-drawer-gap);
    margin-bottom: var(--nav-drawer-gap);
  }

  .nav-drawer__section + .nav-drawer__divider {
    margin: var(--nav-drawer-gap) 0;
  }

  .nav-drawer__contact-row {
    display: grid;
    grid-template-columns: 18px 1fr;
    column-gap: 0.75rem;
    align-items: start;
    width: 100%;
  }

  .nav-drawer__contact-link {
    color: var(--color-primary);
    transition: color var(--transition);
  }

  .nav-drawer__contact-link:hover {
    color: var(--color-accent);
  }

  .nav-drawer__contact-icon {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
  }

  .nav-drawer__contact-body {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    min-width: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--color-text-muted);
  }

  .nav-drawer__contact-link .nav-drawer__contact-body {
    gap: 0.125rem;
  }

  .nav-drawer__contact-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-muted);
    line-height: 1.4;
  }

  .nav-drawer__phone-number {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.4;
  }

  .nav-drawer__cta {
    min-height: 48px;
    margin: 0;
    width: 100%;
  }

  .nav-drawer__whatsapp {
    min-height: 42px;
    padding-top: 0.6875rem;
    padding-bottom: 0.6875rem;
    white-space: nowrap;
    font-size: 0.875rem;
    width: 100%;
  }

  @keyframes navDrawerItemIn {
    from {
      opacity: 0;
      transform: translateY(6px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav--open .nav__list li,
  .nav--open .nav-drawer__cta,
  .nav--open .nav-drawer__section,
  .nav--open .nav-drawer__whatsapp {
    opacity: 0;
    animation: navDrawerItemIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .nav--open .nav__list li:nth-child(1) { animation-delay: 50ms; }
  .nav--open .nav__list li:nth-child(2) { animation-delay: 100ms; }
  .nav--open .nav__list li:nth-child(3) { animation-delay: 150ms; }
  .nav--open .nav__list li:nth-child(4) { animation-delay: 200ms; }
  .nav--open .nav__list li:nth-child(5) { animation-delay: 250ms; }
  .nav--open .nav-drawer__cta { animation-delay: 300ms; }
  .nav--open .nav-drawer__section:nth-of-type(1) { animation-delay: 350ms; }
  .nav--open .nav-drawer__section:nth-of-type(2) { animation-delay: 400ms; }
  .nav--open .nav-drawer__whatsapp { animation-delay: 450ms; }

  .hero {
    padding-top: calc(var(--site-header-height) + 2rem);
  }

  .whatsapp-fab-wrap {
    bottom: 2.75rem;
    right: 1rem;
  }

  .whatsapp-fab__tooltip {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .top-bar__inner {
    gap: 0.75rem;
  }

  .top-bar__location span,
  .top-bar__phone-text {
    font-size: 0.8125rem;
  }
}

/* Footer */
.footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 3.5rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer__about {
  margin-top: 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  max-width: 28rem;
}

.footer__about + .footer__about {
  margin-top: 0.625rem;
}

.footer__nav h4,
.footer__contact h4 {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer__nav ul,
.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__nav a,
.footer__contact a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.footer__nav a:hover,
.footer__contact a:hover {
  color: var(--color-white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__copyright {
  margin: 0;
  line-height: 1.5;
}

.footer__version {
  color: rgba(255, 255, 255, 0.38);
  font-weight: 400;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal--delay { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }

/* ============================================
   Responsive — Tablet & Desktop
   ============================================ */

@media (min-width: 480px) {
  .hero__actions {
    display: grid;
    grid-template-columns: repeat(2, 12.5rem);
    width: fit-content;
    max-width: 100%;
  }

  .hero__actions .btn--hero-primary,
  .hero__actions .btn--hero-secondary {
    width: 100%;
    min-width: 0;
    white-space: nowrap;
  }
}

@media (max-width: 479px) {
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn--hero-primary,
  .hero__actions .btn--hero-secondary {
    width: 100%;
  }

  .hero__chip {
    white-space: normal;
    min-height: 2.625rem;
  }

  .cta-banner__btn {
    width: 100%;
  }
}

@media (min-width: 640px) {
  .hero__chips {
    gap: 0.875rem;
  }

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

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

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

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

  .testimonials__grid .testimonial:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

  .form-row {
    flex-direction: row;
    gap: 1rem;
  }

  .form-row .form-group {
    flex: 1;
  }

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

@media (min-width: 768px) and (max-width: 1199px) {
  .nav__list {
    gap: 1.25rem;
  }

  .nav__link {
    font-size: 0.9375rem;
  }

  .header__cta {
    font-size: 0.875rem;
    max-width: 10.5rem;
    padding: 0.75rem 1.125rem;
  }

  .logo__name {
    font-size: 1.25rem;
  }

  .logo__tagline {
    font-size: 0.5625rem;
  }
}

@media (min-width: 768px) {
  .nav {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    height: var(--header-height);
    z-index: 2;
  }

  .nav-drawer {
    display: contents;
  }

  .nav .nav__list {
    display: flex;
  }

  .header__cta {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .why__inner {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }

  .why__content {
    flex: 1;
    min-width: 0;
  }

  .why__visual {
    flex: 0 0 45%;
  }

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

  .contact__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }

  .contact__info {
    flex: 1;
  }

  .contact__form {
    flex: 1;
  }

  .contact {
    padding-bottom: 4.5rem;
  }
}

@media (min-width: 992px) {
  .hero__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
  }

  .hero__content {
    flex: 1 1 48%;
    min-width: 0;
  }

  .hero__visual {
    flex: 1 1 52%;
    min-width: 0;
    transform: scale(1.02);
    transform-origin: center right;
  }

  .cta-banner__inner {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }

  .cta-banner__content {
    flex: 1;
    text-align: left;
    max-width: none;
  }

  .cta-banner__actions {
    align-items: flex-start;
  }

  .cta-banner__trust {
    align-items: flex-start;
  }

  .cta-banner__visual {
    flex: 1;
    max-width: none;
  }

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

  .service-card:last-child {
    grid-column: 2;
  }

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

  .testimonials__grid .testimonial:last-child {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }

  .trust-bar__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .services__grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .service-card:last-child {
    grid-column: auto;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .btn:hover,
  .card:hover {
    transform: none;
  }

  .btn:focus-visible,
  .nav__link:focus-visible {
    outline-width: 3px;
  }

  .whatsapp-fab:hover,
  .trust-bar__item:hover {
    transform: none;
  }

  .whatsapp-fab--pulse {
    animation: none;
  }

  .cta-banner__visual:hover img {
    transform: none;
  }

  .cta-banner__btn:hover .cta-banner__btn-icon {
    transform: none;
  }

  .nav {
    transition: none;
  }

  .nav-overlay {
    transition: none;
  }

  .nav--open .nav__list li,
  .nav--open .nav-drawer__cta,
  .nav--open .nav-drawer__section,
  .nav--open .nav-drawer__whatsapp {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
