.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-fbdc3e0:#000000;--e-global-color-0748e46:#8E793E;--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;}.elementor-kit-6 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{padding-inline-end:0px;padding-inline-start:0px;}@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-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* =========================
  HEADER NAVIGATION
   ========================= */
   
/* Base: visible on load */
.header_v3 {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  z-index: 99999;
  box-sizing: border-box;
  background: transparent !important;

  /* Visible by default */
  transform: translateY(0);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* We only "arm" the slide behavior after threshold */
.header_v3.v3_armed {
  transform: translateY(-110%);
}

/* When revealed (after threshold), slide into view */
.header_v3.v3_armed.v3_on {
  transform: translateY(0);
}

/* Dark glass blur layer (OFF by default) */
.header_v3::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;

  backdrop-filter: blur(26px) saturate(175%);
  -webkit-backdrop-filter: blur(26px) saturate(175%);
  background: rgba(14, 14, 18, 0.74);

  opacity: 0;
  transition: opacity 220ms ease;
}

/* Sheen + border (OFF by default) */
.header_v3::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.10) 0%,
    rgba(255,255,255,0.04) 45%,
    rgba(255,255,255,0.00) 100%
  );
  border-bottom: 1px solid rgba(255,255,255,0.10);

  opacity: 0;
  transition: opacity 220ms ease;
}

/* Glass turns ON only when active */
.header_v3.v3_on::before,
.header_v3.v3_on::after {
  opacity: 1;
}

/* Ensure header contents sit above pseudo layers */
.header_v3 > * {
  position: relative;
  z-index: 1;
}

.apple-black-glass {
  background: linear-gradient(
    to bottom,
    rgba(20, 20, 20, 0.75),
    rgba(0, 0, 0, 0.85)
  );

  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);

  border: 1px solid rgba(255, 255, 255, 0.12);

  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  border-radius: 2px; /* almost sharp edge */
}

.apple-black-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;

  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02) 40%,
    transparent 60%
  );
}

/* =========================================
   Elementor Floating Labels (Robust)
   Enabled only on groups marked by JS: .fl-enabled
   Applies only to input/textarea (NOT selects)
   ========================================= */

.float-label .elementor-field-group.fl-enabled{
  position: relative;
}

/* Make room for label inside the field */
.float-label .elementor-field-group.fl-enabled input.elementor-field,
.float-label .elementor-field-group.fl-enabled textarea.elementor-field{
  padding-top: 20px;
  padding-left: 16px; /* indent like placeholder */
  box-sizing: border-box;
  width: 100%;
}

/* Label: sit inside field by default */
.float-label .elementor-field-group.fl-enabled .elementor-field-label{
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 !important;
  pointer-events: none;
  opacity: 0.75;
  transition: all 180ms ease;
  z-index: 2;
}

/* Float label when focused OR filled */
.float-label .elementor-field-group.fl-enabled.is-focused .elementor-field-label,
.float-label .elementor-field-group.fl-enabled.is-filled  .elementor-field-label{
  top: -10px;
  left: 10px;
  transform: translateY(0);
  opacity: 1;
}

/* Hide placeholder option from dropdown list */
.float-label select.elementor-field option[value=""] {
  display: none;
}

/* Make empty state text slightly muted (optional aesthetic) */
.float-label select.elementor-field:invalid {
  color: #888;
}

/* Restore normal color when real option selected */
.float-label select.elementor-field:valid {
  color: inherit;
}/* End custom CSS */