.elementor-kit-2064{--e-global-color-primary:#0A2342;--e-global-color-secondary:#D7EFFB;--e-global-color-text:#0E1116;--e-global-color-accent:#FF7A00;--e-global-color-75769cc:#D7EFFB;--e-global-color-b2887b8:#E2E8F0;--e-global-typography-primary-font-family:"Poppins";--e-global-typography-primary-font-weight:700;--e-global-typography-secondary-font-family:"Poppins";--e-global-typography-secondary-font-weight:600;--e-global-typography-text-font-family:"Inter";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Poppins";--e-global-typography-accent-font-weight:600;background-color:#64C9F4;font-family:"Inter", Sans-serif;font-size:16px;font-weight:400;line-height:20px;}.elementor-kit-2064 e-page-transition{background-color:#FFBC7D;}.elementor-kit-2064 h1{font-family:"Poppins", Sans-serif;font-size:48px;font-weight:700;line-height:1.4px;}.elementor-kit-2064 h2{font-family:"Poppins", Sans-serif;font-size:36px;font-weight:700;line-height:1.4px;}.elementor-kit-2064 h3{font-family:"Poppins", Sans-serif;font-size:28px;font-weight:700;line-height:1.4px;}.elementor-kit-2064 h4{font-family:"Poppins", Sans-serif;font-weight:600;line-height:1.3px;}.elementor-kit-2064 h5{font-family:"Poppins", Sans-serif;font-size:18px;font-weight:600;line-height:1.4px;}.elementor-kit-2064 h6{font-family:"Poppins", Sans-serif;font-size:16px;line-height:1.4px;}.elementor-kit-2064 button,.elementor-kit-2064 input[type="button"],.elementor-kit-2064 input[type="submit"],.elementor-kit-2064 .elementor-button{font-family:"Poppins", Sans-serif;letter-spacing:0.2px;}.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-kit-2064{font-size:15px;line-height:1.6em;}.elementor-kit-2064 h1{font-size:36px;}.elementor-kit-2064 h2{font-size:28px;}.elementor-kit-2064 h3{font-size:24px;}.elementor-kit-2064 h4{line-height:1.3px;}.elementor-kit-2064 h5{font-size:17px;}.elementor-kit-2064 h6{font-size:15px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-2064{font-size:14px;line-height:1.6em;}.elementor-kit-2064 h1{font-size:28px;}.elementor-kit-2064 h2{font-size:24px;}.elementor-kit-2064 h3{font-size:20px;line-height:1.25px;}.elementor-kit-2064 h5{font-size:16px;}.elementor-kit-2064 h6{font-size:14px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ==========================================================
   MIAMI DROP — ACCORDION (FINAL CLEAN STYLES)
   Works with the MD Accordion JS (Body End).
   Markup per panel:
   <div class="acc-item">
     <div class="acc-header">…title/arrow…</div>
     <div class="acc-content">…content…</div>
   </div>
========================================================== */

/* 1) Neutralize Elementor min-heights and stray backgrounds */
.acc-item,
.acc-item > .e-con-inner,
.acc-content,
.acc-content > .e-con-inner {
  background: transparent !important;
  min-height: 0 !important;
  height: auto !important;
}

/* 2) Base panel: animate the container’s height */
.acc-item {
  overflow: hidden;                 /* trims header image when collapsed */
  transition: height .38s ease;     /* smooth open/close */
  will-change: height;
  border-radius: 14px;
}

/* 3) Clickable header bar — the image is set in Elementor Style tab */
.acc-header {
  position: relative;
  display: flex;
  align-items: flex-end;            /* put headline near the bottom */
  justify-content: space-between;
  width: 100%;
  cursor: pointer;

  /* Closed-state visual height (adjust to taste) */
  padding: 120px 24px 32px;

  /* IMPORTANT: allow Elementor's background IMAGE to show */
  background-color: transparent;            /* <-- was 'background:' which killed the image */
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* Optional dark overlay for legibility over the image */
.acc-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
}
.acc-header > * { position: relative; z-index: 1; }  /* keep text above overlay */

/* 4) Content area: JS controls the container height, so keep it natural */
.acc-content {
  overflow: visible;
  padding: 0;                       /* inner widgets handle spacing */
}

/* Prevent clicking/tabbing into hidden content when collapsed */
.acc-item:not(.is-open) .acc-content { pointer-events: none; }

/* 5) Chevron / arrow rotation (icon has class "acc-toggle") */
.acc-toggle {
  display: inline-block;
  transition: transform .3s ease;
  transform-origin: 50% 50%;
}
.acc-item.is-open .acc-toggle { transform: rotate(180deg); }

/* 6) Keyboard focus (accessibility) */
.acc-header:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* 7) Kill any forced min-heights inside content widgets */
.acc-content [style*="min-height"] { min-height: 0 !important; }

/* 8) Mobile padding tweak for the header */
@media (max-width: 767px) {
  .acc-header { padding: 80px 16px 24px; }
}

/* 9) Safety: disable any legacy hover-accordion link overlays */
.hover-accordion .panel-link { pointer-events: none !important; }
/* Accordion header text styling */
.elementor-accordion .elementor-tab-title {
  background: url("your-image-url.jpg") no-repeat center center/cover;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 20px;
}

/* Add arrow icon to the right */
.elementor-accordion .elementor-tab-title::after {
  content: "▾";
  font-size: 16px;
  margin-left: auto;
  transition: transform 0.3s ease;
}

.elementor-accordion .elementor-tab-title[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

/* Accordion content */
.elementor-accordion .elementor-tab-content {
  background: #fff;
  padding: 20px;
  display: none; /* hidden by default */
}

.elementor-accordion .elementor-tab-content.active {
  display: block;
}/* End custom CSS */