.elementor-kit-8{--e-global-color-primary:#2563EA;--e-global-color-secondary:#101828;--e-global-color-text:#101828;--e-global-color-accent:#61CE70;--e-global-color-89c60aa:#101010;--e-global-color-7ddb0df:#EFF5FF;--e-global-color-78c03f2:#78869C;--e-global-color-4e507bd:#02010100;--e-global-color-07889b3:#FFFFFF;--e-global-color-997ff81:#3F4855;--e-global-color-270a53b:#FEBE1C;--e-global-color-6efe0c6:#E12323;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;--e-global-typography-ee1f19e-font-family:"Inter";--e-global-typography-ee1f19e-font-size:12px;--e-global-typography-ee1f19e-font-weight:400;--e-global-typography-ee1f19e-text-transform:uppercase;--e-global-typography-715af91-font-family:"Inter";--e-global-typography-715af91-font-size:14px;--e-global-typography-715af91-font-weight:500;--e-global-typography-60b8952-font-family:"Inter";--e-global-typography-60b8952-font-size:16px;--e-global-typography-60b8952-font-weight:400;--e-global-typography-60b8952-line-height:26px;--e-global-typography-7a4a751-font-family:"Inter";--e-global-typography-7a4a751-font-size:35px;--e-global-typography-7a4a751-font-weight:700;--e-global-typography-7a4a751-line-height:40px;}.elementor-kit-8 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-8{--e-global-typography-7a4a751-font-size:30px;--e-global-typography-7a4a751-line-height:40px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ============================================================
   Floating Contact Buttons — Improved
   WhatsApp → fixed left | Call → fixed right
   Mobile-first, fully responsive, production-ready
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  --btn-whatsapp:         #25D366;
  --btn-whatsapp-hover:   #1aad52;
  --btn-call:             #0A84FF;
  --btn-call-hover:       #0066CC;
  --btn-text:             #ffffff;
  --btn-radius:           100px;
  --btn-padding-v:        13px;
  --btn-padding-h:        20px;
  --btn-gap:              10px;
  --btn-icon-size:        22px;
  --btn-font-size:        14px;
  --btn-font-weight:      600;
  --btn-shadow:           0 4px 16px rgba(0, 0, 0, 0.20);
  --btn-shadow-hover:     0 8px 28px rgba(0, 0, 0, 0.26);
  --btn-bottom:           clamp(20px, 4vw, 32px);
  --btn-side:             clamp(16px, 3vw, 28px);
  --btn-transition:       0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Base Button ── */
.float-btn {
  position: fixed;
  bottom: var(--btn-bottom);
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--btn-gap);

  padding: var(--btn-padding-v) var(--btn-padding-h);
  border-radius: var(--btn-radius);
  min-width: 48px;
  min-height: 48px;

  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: 1;
  color: var(--btn-text);
  text-decoration: none;
  white-space: nowrap;

  border: none;
  outline: none;
  box-shadow: var(--btn-shadow);
  overflow: hidden;
  will-change: transform;

  transition:
    transform         var(--btn-transition),
    box-shadow        var(--btn-transition),
    background-color  var(--btn-transition);
}

/* ── Focus ring — keyboard accessibility ── */
.float-btn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

/* ── SVG Icon ── */
.btn-icon {
  width: var(--btn-icon-size);
  height: var(--btn-icon-size);
  flex-shrink: 0;
  display: block;
}

/* ── Label: collapsed → expands on hover/focus ── */
.float-label {
  display: block;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  letter-spacing: 0.015em;
  transition:
    max-width  0.32s cubic-bezier(0.4, 0, 0.2, 1),
    opacity    0.22s ease;
}

.float-btn:hover       .float-label,
.float-btn:focus-visible .float-label {
  max-width: 120px;
  opacity: 1;
}

/* ── Hover & Active states ── */
.float-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--btn-shadow-hover);
}

.float-btn:active {
  transform: translateY(-1px);
  box-shadow: var(--btn-shadow);
  transition-duration: 0.1s;
}

/* ─────────────────────────────────────────
   WhatsApp — Left
───────────────────────────────────────── */
.float-btn.whatsapp {
  left: var(--btn-side);
  background-color: var(--btn-whatsapp);
}

.float-btn.whatsapp:hover {
  background-color: var(--btn-whatsapp-hover);
}

/* ─────────────────────────────────────────
   Call — Right
───────────────────────────────────────── */
.float-btn.call {
  right: var(--btn-side);
  background-color: var(--btn-call);
}

.float-btn.call:hover {
  background-color: var(--btn-call-hover);
}

/* Gentle ring animation on the phone icon */
.float-btn.call .btn-icon {
  animation: ring-pulse 3s ease-in-out infinite;
}

@keyframes ring-pulse {
  0%, 55%, 100% { transform: rotate(0deg);   }
  60%            { transform: rotate(-12deg); }
  65%            { transform: rotate(12deg);  }
  70%            { transform: rotate(-7deg);  }
  75%            { transform: rotate(7deg);   }
  80%            { transform: rotate(0deg);   }
}

/* ── Respect reduced-motion preference ── */
@media (prefers-reduced-motion: reduce) {
  .float-btn,
  .float-btn .btn-icon,
  .float-label {
    animation: none !important;
    transition: none !important;
  }
}

/* ─────────────────────────────────────────
   Responsive Breakpoints
   Mobile-first: base = mobile
───────────────────────────────────────── */

/* ── Tablet: 481px – 768px ── */
@media (min-width: 481px) and (max-width: 768px) {
  :root {
    --btn-padding-v:  12px;
    --btn-padding-h:  18px;
    --btn-icon-size:  21px;
    --btn-font-size:  13.5px;
  }
}

/* ── Mobile: ≤ 480px ── */
@media (max-width: 480px) {
  :root {
    --btn-padding-v:  11px;
    --btn-padding-h:  15px;
    --btn-icon-size:  20px;
    --btn-font-size:  13px;
    --btn-gap:        8px;
  }

  /* Always visible label — no hover on touch */
  .float-label {
    max-width: 100px;
    opacity: 1;
  }

  /* Prevent overlap on narrow screens */
  .float-btn {
    max-width: calc(50vw - 24px);
  }
}

/* ── Very small: ≤ 360px — icon-only circle ── */
@media (max-width: 360px) {
  .float-label {
    display: none;
  }

  .float-btn {
    padding: 13px;
    border-radius: 50%;
    max-width: unset;
  }
}/* End custom CSS */