/* ============================================================
   EasyMove Tote Rentals – Frontend CSS
   Brand: Navy #1B3A8B | Green #6BBF4E | Yellow #F5C518
   Fonts: Montserrat + Open Sans
   ============================================================ */

:root {
  --em-blue:       #1B3A8B;
  --em-blue-dark:  #0D1F4E;
  --em-green:      #6BBF4E;
  --em-green-dark: #2D7A2D;
  --em-yellow:     #F5C518;
  --em-white:      #FFFFFF;
  --em-light-bg:   #F8FAFF;
  --em-text:       #1a1a2e;
  --em-muted:      #666;
  --em-radius:     12px;
  --em-radius-lg:  20px;
  --em-shadow:     0 4px 24px rgba(27,58,139,.12);
  --em-shadow-lg:  0 12px 48px rgba(27,58,139,.18);
  --em-transition: .3s cubic-bezier(.25,.8,.25,1);
}

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

body { font-family: 'Open Sans', sans-serif; color: var(--em-text); line-height: 1.65; overflow-x: hidden; }
html { overflow-x: hidden; }
h1,h2,h3,h4,h5 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }
a { text-decoration: none; transition: var(--em-transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── Container ── */
.em-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; width: 100%; }

/* ── Section Shared ── */
.em-section-header { text-align: center; margin-bottom: 3rem; }
.em-label { display: inline-block; font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--em-green); margin-bottom: .75rem; }
.em-label--light { color: rgba(255,255,255,.8); }
.em-section-title { font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 900; color: var(--em-blue); margin-bottom: 1rem; }
.em-section-subtitle { font-size: 1.05rem; color: var(--em-muted); max-width: 680px; margin: 0 auto; }
.em-section-subtitle--light { color: rgba(255,255,255,.8); }

/* ── Buttons ── */
.em-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: .95rem;
  padding: 14px 28px; border-radius: 50px; cursor: pointer; border: none;
  transition: var(--em-transition); white-space: nowrap; text-align: center;
  background: var(--em-green); color: #fff;
}
.em-btn:hover { transform: translateY(-2px); box-shadow: var(--em-shadow-lg); filter: brightness(1.08); color: #fff !important; }
.em-btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.em-btn--full { width: 100%; justify-content: center; }
.em-btn--outline-white { background: transparent; border: 2px solid rgba(255,255,255,.8); color: #fff; }
.em-btn--outline-white:hover { background: rgba(255,255,255,.15); }
.em-btn--header { padding: 10px 22px; font-size: .88rem; }
.em-btn--hero-primary { font-size: 1.05rem; padding: 18px 36px; box-shadow: 0 8px 32px rgba(107,191,78,.4); }
.em-btn--hero-secondary { background: transparent; border: 2px solid rgba(255,255,255,.75); color: #fff; }
.em-btn--hero-secondary:hover { background: rgba(255,255,255,.15); }
.em-btn--mobile-cta { width: auto; max-width: 100%; justify-content: center; margin: 1rem auto 0; align-self: center; }

/* ====================================================
   HEADER
   ==================================================== */
.em-header {
  position: sticky; top: 0; z-index: 1000; width: 100%;
  box-shadow: 0 2px 20px rgba(27,58,139,.25);
}
body.admin-bar .em-header { top: 32px; }
.em-header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 2rem; height: 76px; min-width: 0;
}
.em-logo-link { flex-shrink: 0; display: inline-flex; align-items: center; }
.em-logo { height: auto; max-width: 100%; }
.em-nav { display: flex; gap: 0; margin-left: auto; min-width: 0; }
.em-nav__link {
  padding: 8px 16px; font-family: 'Montserrat',sans-serif; font-weight: 600;
  font-size: .9rem; border-radius: 8px; position: relative; white-space: nowrap;
}
.em-nav__link::after {
  content: ''; position: absolute; bottom: 4px; left: 16px; right: 16px;
  height: 2px; background: var(--em-green); transform: scaleX(0);
  transition: var(--em-transition); border-radius: 2px;
}
.em-nav__link:hover::after { transform: scaleX(1); }
.em-nav__link:hover { color: #6BBF4E !important; }
.em-header-actions { display: flex; align-items: center; gap: 1rem; margin-left: 1rem; flex-shrink: 0; }
.em-header-phone {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Montserrat',sans-serif; font-weight: 600; font-size: .88rem;
}
.em-menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.em-menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--em-transition); }
.em-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.em-menu-toggle.active span:nth-child(2) { opacity: 0; }
.em-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.em-mobile-nav {
  display: none; flex-direction: column; padding: 16px 24px;
  background: var(--em-blue-dark); border-top: 1px solid rgba(255,255,255,.1);
}
.em-mobile-nav.open { display: flex; }
.em-mobile-nav__link { padding: 12px 20px; color: #fff !important; font-family: 'Montserrat',sans-serif; font-weight: 600; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.em-mobile-nav__link:hover { color: #6BBF4E !important; }
.em-mobile-nav__phone { padding: 12px 0; color: rgba(255,255,255,.8) !important; font-size: .95rem; }

/* ====================================================
   HERO
   ==================================================== */
.em-hero {
  position: relative; min-height: 90vh;
  background-size: cover; background-position: center;
  display: flex; flex-direction: column;
}
.em-hero__overlay { position: absolute; inset: 0; z-index: 1; }
.em-hero__inner {
  position: relative; z-index: 2; flex: 1;
  max-width: 1280px; margin: 0 auto; padding: 80px 24px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.em-hero__eyebrow {
  display: inline-block; background: rgba(107,191,78,.25); color: #6BBF4E;
  padding: 6px 16px; border-radius: 50px; font-size: .85rem;
  font-family: 'Montserrat',sans-serif; font-weight: 700; letter-spacing: .05em;
  border: 1px solid rgba(107,191,78,.4); margin-bottom: 1.25rem;
}
.em-hero__headline {
  font-size: clamp(2.5rem,5vw,4.5rem); font-weight: 900; line-height: 1.05;
  color: #fff; margin-bottom: 1.25rem;
}
.em-hero__accent { display: block; font-style: italic; text-shadow: 0 4px 16px rgba(245,197,24,.4); }
.em-hero__sub { font-size: 1.1rem; color: rgba(255,255,255,.88); margin-bottom: 1.75rem; max-width: 480px; }
.em-hero__badge {
  display: inline-block; background: rgba(245,197,24,.2); border: 1px solid rgba(245,197,24,.5);
  color: #F5C518; padding: 6px 16px; border-radius: 50px;
  font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: .9rem; margin-bottom: 1.75rem;
}
.em-hero__btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.em-hero__image-wrap { position: relative; display: flex; align-items: stretch; }
.em-hero__img-frame {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,.45);
    border: none;
    background: transparent;
    line-height: 0;
    /* Fill the entire panel — no white showing */
    display: flex;
    align-items: stretch;
}
.em-hero__img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: center center;
    display: block;
    /* Ensure no white gaps at edges */
    flex: 1;
}
/* No float animation — keeps image crisp against frame */
@keyframes em-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.em-hero__trust-bar {
  position: relative; z-index: 2; background: rgba(27,58,139,.9);
  backdrop-filter: blur(10px); border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; padding: 1.25rem 24px;
}
.em-trust-item { display: flex; align-items: center; gap: 8px; color: #fff; font-family: 'Montserrat',sans-serif; font-weight: 600; font-size: .88rem; }
.em-trust-check { width: 20px; height: 20px; background: rgba(255,255,255,.2); border: 1.5px solid rgba(255,255,255,.6); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .65rem; flex-shrink: 0; }

/* ====================================================
   FEATURES
   ==================================================== */
.em-features { padding: 100px 0; }
.em-features__top { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 4rem; }
.em-features__img-wrap { position: relative; }
.em-features__img { border-radius: var(--em-radius-lg); box-shadow: var(--em-shadow-lg); }
.em-features__img-badge {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--em-blue); color: #fff; padding: 12px 20px;
  border-radius: var(--em-radius); font-family: 'Montserrat',sans-serif;
  font-weight: 700; font-size: .85rem; box-shadow: var(--em-shadow);
}
.em-features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.em-feature-card {
  padding: 2rem; border-radius: var(--em-radius-lg); background: #fff;
  box-shadow: var(--em-shadow); transition: var(--em-transition);
  border: 1px solid rgba(27,58,139,.08);
}
.em-feature-card:hover { transform: translateY(-6px); box-shadow: var(--em-shadow-lg); }
.em-feature-card__icon {
  width: 68px; height: 68px; border-radius: var(--em-radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; border: 2px solid; transition: var(--em-transition);
}
.em-feature-card:hover .em-feature-card__icon { transform: scale(1.1); }
.em-feature-card__title { font-size: 1.05rem; font-weight: 800; margin-bottom: .6rem; }
.em-feature-card__desc  { font-size: .92rem; line-height: 1.6; }

/* ====================================================
   HOW IT WORKS
   ==================================================== */
.em-hiw { padding: 100px 0; }
.em-hiw__header { text-align: center; margin-bottom: 4rem; }
.em-hiw__steps { display: flex; gap: 1rem; align-items: flex-start; justify-content: center; flex-wrap: wrap; }
.em-hiw__step {
  flex: 1; min-width: 200px; max-width: 260px; padding: 2rem 1.5rem;
  border-radius: var(--em-radius-lg); text-align: center;
  backdrop-filter: blur(8px); transition: var(--em-transition);
}
.em-hiw__step:hover { transform: translateY(-6px); }
.em-hiw__step-num { font-family: 'Montserrat',sans-serif; font-size: 3.5rem; font-weight: 900; line-height: 1; margin-bottom: .5rem; opacity: .3; }
.em-hiw__step-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.em-hiw__step-title { font-size: 1.05rem; font-weight: 800; margin-bottom: .75rem; }
.em-hiw__step-desc  { font-size: .9rem; line-height: 1.6; }
.em-hiw__arrow { font-size: 2rem; color: rgba(255,255,255,.4); align-self: center; flex-shrink: 0; padding-top: 2rem; }
.em-hiw__cta { text-align: center; margin-top: 3.5rem; }

/* ====================================================
   PACKAGES
   ==================================================== */
.em-packages { padding: 100px 0; }
.em-duration-switcher {
  display: flex; gap: .5rem; justify-content: center; margin-bottom: 3rem;
  background: #eef2ff; padding: 6px; border-radius: 50px; width: fit-content; margin-left: auto; margin-right: auto;
}
.em-dur-btn {
  padding: 10px 24px; border-radius: 50px; border: none; cursor: pointer;
  font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: .9rem;
  background: transparent; color: var(--em-blue); transition: var(--em-transition);
}
.em-dur-btn.active { background: var(--em-blue); color: #fff; box-shadow: var(--em-shadow); }

.em-packages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.em-pkg-card {
  border-radius: var(--em-radius-lg); padding: 2rem; background: #fff;
  box-shadow: var(--em-shadow); transition: var(--em-transition); position: relative;
  border: 2px solid transparent; border-color: rgba(27,58,139,.1);
  display: flex; flex-direction: column;
}
.em-pkg-card:hover { transform: translateY(-8px); box-shadow: var(--em-shadow-lg); }
.em-pkg-card--popular { transform: scale(1.04); border-color: var(--em-blue); z-index: 2; }
.em-pkg-card--popular:hover { transform: scale(1.04) translateY(-8px); }
.em-pkg-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--em-yellow); color: var(--em-blue-dark);
  padding: 5px 16px; border-radius: 50px;
  font-family: 'Montserrat',sans-serif; font-weight: 800; font-size: .8rem;
  white-space: nowrap;
}
.em-pkg-card__header { text-align: center; margin-bottom: 1.5rem; }
.em-pkg-card__icon { font-size: 2.5rem; display: block; margin-bottom: .5rem; }
.em-pkg-card__name { font-size: 1.2rem; font-weight: 800; margin-bottom: .25rem; }
.em-pkg-card__totes { font-size: .88rem; opacity: .7; font-weight: 600; }
.em-pkg-card__price-wrap { text-align: center; margin-bottom: 1.5rem; }
.em-pkg-price { display: inline-flex; align-items: flex-start; gap: 2px; line-height: 1; }
.em-pkg-price__sign { font-size: 1.5rem; font-family: 'Montserrat',sans-serif; font-weight: 700; margin-top: 6px; }
.em-pkg-price__num  { font-size: 3rem; font-family: 'Montserrat',sans-serif; font-weight: 900; transition: var(--em-transition); }
.em-pkg-price__dur  { display: block; font-size: .85rem; opacity: .65; margin-top: .25rem; font-weight: 600; }
.em-pkg-card__includes { flex: 1; margin-bottom: 1.75rem; }
.em-pkg-card__includes li { padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,.06); font-size: .88rem; display: flex; align-items: center; gap: 8px; }
.em-pkg-card__includes li::before { content: '✓'; color: var(--em-green); font-weight: 900; flex-shrink: 0; }
.em-pkg-card--popular .em-pkg-card__includes li { border-color: rgba(255,255,255,.15); }
.em-pkg-card--popular .em-pkg-card__includes li::before { color: #6BBF4E; }
.em-pkg-card__btn { margin-top: auto; text-align: center; }
.em-packages__note { text-align: center; margin-top: 2.5rem; font-size: .92rem; color: var(--em-muted); }
.em-packages__note a { color: var(--em-blue); font-weight: 600; }
.em-packages__note a:hover { color: var(--em-green); }

/* ====================================================
   TRAILER FEATURE
   ==================================================== */
.em-trailer { padding: 100px 0 0; }
.em-trailer__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.em-trailer__gallery { display: flex; flex-direction: column; gap: 1rem; }
.em-trailer__main-img img { border-radius: var(--em-radius-lg); box-shadow: var(--em-shadow-lg); width: 100%; object-fit: cover; max-height: 380px; }
.em-trailer__thumbs { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.em-trailer__thumb { border-radius: var(--em-radius); box-shadow: var(--em-shadow); cursor: pointer; transition: var(--em-transition); aspect-ratio: 4/3; object-fit: cover; }
.em-trailer__thumb:hover { transform: scale(1.05); box-shadow: var(--em-shadow-lg); }

.em-stats-bar {
  display: grid; grid-template-columns: repeat(4,1fr);
  margin-top: 4rem; padding: 2.5rem 3rem;
}
.em-stat { text-align: center; padding: 1rem; border-right: 1px solid rgba(255,255,255,.12); }
.em-stat:last-child { border-right: none; }
.em-stat__num   { display: block; font-family: 'Montserrat',sans-serif; font-size: 2.5rem; font-weight: 900; color: var(--em-yellow); line-height: 1; margin-bottom: .25rem; }
.em-stat__label { font-size: .88rem; color: rgba(255,255,255,.75); font-weight: 600; letter-spacing: .04em; }

/* ====================================================
   SERVICE AREA
   ==================================================== */
.em-service-area { padding: 100px 0; }
.em-service-area__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.em-cities-grid { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.em-city-chip {
  padding: 10px 20px; border-radius: 50px;
  color: #fff; font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: .9rem;
  backdrop-filter: blur(8px); transition: var(--em-transition);
}
.em-city-chip:hover { background: rgba(255,255,255,.2) !important; transform: translateY(-2px); }
.em-service-area__map { border-radius: var(--em-radius-lg); overflow: hidden; box-shadow: var(--em-shadow-lg); }

/* ====================================================
   TESTIMONIALS
   ==================================================== */
.em-testimonials { padding: 100px 0; }
.em-testimonials__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.em-review-card {
  padding: 2rem; border-radius: var(--em-radius-lg); box-shadow: var(--em-shadow);
  transition: var(--em-transition); border: 1px solid rgba(27,58,139,.08);
}
.em-review-card:hover { transform: translateY(-4px); box-shadow: var(--em-shadow-lg); }
.em-review-card__stars { font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 1rem; }
.em-review-card__text { font-size: .98rem; line-height: 1.75; color: var(--em-text); margin-bottom: 1.5rem; font-style: italic; }
.em-review-card__footer { display: flex; align-items: center; gap: 1rem; }
.em-review-card__avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--em-blue);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.em-review-card__name { display: block; font-weight: 700; font-size: .95rem; color: var(--em-blue); }
.em-review-card__loc  { display: block; font-size: .82rem; color: var(--em-muted); margin-top: 2px; }
.em-review-card__pkg  { display: block; font-size: .8rem; color: var(--em-green); font-weight: 700; margin-top: 4px; }

/* ====================================================
   CTA BANNER
   ==================================================== */
.em-cta {
  position: relative; padding: 100px 0;
  background-size: cover; background-position: center;
}
.em-cta__overlay { position: absolute; inset: 0; }
.em-cta__inner { position: relative; z-index: 2; text-align: center; }
.em-cta__headline { font-size: clamp(2rem,4vw,3.2rem); font-weight: 900; color: #fff; margin-bottom: 1.25rem; }
.em-cta__sub  { font-size: 1.1rem; color: rgba(255,255,255,.85); margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.em-cta__btns { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }

/* ====================================================
   FOOTER
   ==================================================== */
.em-footer { padding: 80px 0 0; }
.em-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.em-footer__logo   { height: 60px; width: auto; margin-bottom: 1rem; }
.em-footer__tagline{ font-family: 'Montserrat',sans-serif; font-size: 1rem; margin-bottom: .75rem; }
.em-footer__desc   { font-size: .88rem; line-height: 1.7; margin-bottom: 1.25rem; }
.em-footer__social { display: flex; gap: .75rem; }
.em-social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff;
  display: flex; align-items: center; justify-content: center; transition: var(--em-transition);
}
.em-social-icon:hover { background: var(--em-green); transform: translateY(-2px); }
.em-footer__heading { font-size: .95rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 1.25rem; }
.em-footer__links ul, .em-footer__services ul { display: flex; flex-direction: column; gap: .6rem; }
.em-footer__links a, .em-footer__services li { font-size: .88rem; transition: var(--em-transition); }
.em-footer__links a:hover { color: var(--em-green) !important; padding-left: 6px; }
.em-footer__contact-list { display: flex; flex-direction: column; gap: .85rem; }
.em-footer__contact-list li { font-size: .88rem; display: flex; align-items: flex-start; gap: .5rem; }
.em-footer__contact-list a:hover { color: var(--em-green) !important; }
.em-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; font-size: .82rem; flex-wrap: wrap; gap: 1rem;
}
.em-footer__bottom-links { display: flex; gap: 1.5rem; }
.em-footer__bottom-links a { transition: var(--em-transition); }
.em-footer__bottom-links a:hover { color: var(--em-green) !important; }

/* ====================================================
   ABOUT PAGES
   ==================================================== */
.em-about-hero { padding: 120px 0; }
.em-about-hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.em-about-hero__badges { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.em-badge { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); color: #fff; padding: 6px 16px; border-radius: 50px; font-size: .85rem; font-weight: 600; }
.em-about-hero__img { border-radius: var(--em-radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,.4); }


.em-about-story__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.em-about-story__images { position: relative;}
.em-about-story__img--main { width: 100%; border-radius: var(--em-radius-lg); box-shadow: var(--em-shadow-lg); }
.em-about-story__img--overlay { position: absolute; bottom: -24px; right: -24px; width: 55%; border-radius: var(--em-radius-lg); box-shadow: var(--em-shadow-lg); border: 5px solid #fff; }
.em-about-story__stats-card {
  position: absolute; top: -24px; left: -24px;
  background: var(--em-blue); border-radius: var(--em-radius-lg);
  padding: 1.25rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  box-shadow: var(--em-shadow-lg);
}
.em-mini-stat { text-align: center; }
.em-mini-stat strong { display: block; font-size: 1.4rem; color: var(--em-yellow); font-family: 'Montserrat',sans-serif; font-weight: 900; }
.em-mini-stat span   { font-size: .72rem; color: rgba(255,255,255,.75); }
.em-about-story__text { line-height: 1.8; }
.em-about-story__text p { margin-bottom: 1rem; color: var(--em-muted); }

/* ====================================================
   CONTACT SECTION
   ==================================================== */
.em-contact-section { padding: 100px 0; }
.em-contact__inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.em-contact__details { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.em-contact__detail {
  display: flex; align-items: center; gap: 1rem; padding: 1.25rem;
  background: #fff; border-radius: var(--em-radius); box-shadow: var(--em-shadow);
  color: var(--em-text); transition: var(--em-transition);
}
.em-contact__detail:hover { transform: translateX(6px); box-shadow: var(--em-shadow-lg); }
.em-contact__detail-icon { font-size: 1.5rem; width: 48px; height: 48px; background: var(--em-light-bg); border-radius: var(--em-radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.em-contact__form-wrap { background: #fff; border-radius: var(--em-radius-lg); padding: 2.5rem; box-shadow: var(--em-shadow-lg); }

/* ====================================================
   BOOKING SECTION
   ==================================================== */
.em-booking-section { padding: 100px 0; }
.em-booking__wrapper { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; }
.em-booking__includes {
  background: var(--em-blue); color: #fff; padding: 2rem;
  border-radius: var(--em-radius-lg); box-shadow: var(--em-shadow-lg);
  position: sticky; top: 100px; align-self: start;
}
.em-booking__includes h3 { font-size: 1.1rem; margin-bottom: 1.5rem; }
.em-booking__includes ul { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 1.75rem; }
.em-booking__includes li { font-size: .92rem; display: flex; align-items: center; gap: .5rem; }
.em-booking__price-note { background: rgba(255,255,255,.1); padding: 1.25rem; border-radius: var(--em-radius); }
.em-booking__price-note strong { font-size: 1.1rem; color: var(--em-yellow); display: block; margin-bottom: .25rem; }
.em-booking__price-note small { opacity: .8; font-size: .82rem; }

/* ====================================================
   COMMERCIAL
   ==================================================== */
.em-commercial { padding: 100px 0; }
.em-commercial__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.em-commercial__features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.em-comm-feat { padding: 1rem; background: rgba(27,58,139,.06); border-radius: var(--em-radius); font-weight: 700; font-size: .9rem; color: var(--em-blue); }
.em-commercial__form-wrap { background: #fff; padding: 2rem; border-radius: var(--em-radius-lg); box-shadow: var(--em-shadow-lg); }
.em-commercial__form-wrap h3 { font-size: 1.2rem; margin-bottom: 1.5rem; }

/* ====================================================
   SINGLE PRODUCT
   ==================================================== */
.em-single-product { padding: 100px 0; }
.em-single-product__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.em-single-product__images { position: relative; }
.em-single-product__main-img { border-radius: var(--em-radius-lg); box-shadow: var(--em-shadow-lg); }
.em-single-product__dolly-img { position: absolute; bottom: -20px; right: -20px; width: 45%; border-radius: var(--em-radius); box-shadow: var(--em-shadow-lg); border: 4px solid #fff; }
.em-single-product__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0 2rem; }
.em-spec { display: flex; flex-direction: column; gap: 4px; }
.em-spec strong { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--em-muted); }
.em-spec span { font-weight: 700; color: var(--em-blue); }

/* ====================================================
   FORMS
   ==================================================== */
.em-form .em-form__row { display: grid; gap: 1.25rem; }
.em-form .em-form__row--2 { grid-template-columns: 1fr 1fr; }
.em-form__field { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem; }
.em-form__field label { font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: .85rem; color: var(--em-blue); }
.em-form__field input:not([type="checkbox"]):not([type="radio"]),
.em-form__field select,
.em-form__field textarea {
  width: 100%; padding: 14px 18px;
  border: 2px solid rgba(27,58,139,.15); border-radius: var(--em-radius);
  font-family: 'Open Sans',sans-serif; font-size: .95rem; color: var(--em-text);
  background: #fff; transition: var(--em-transition);
  outline: none; appearance: none;
}
.em-form__field input:focus,
.em-form__field select:focus,
.em-form__field textarea:focus { border-color: var(--em-blue); box-shadow: 0 0 0 4px rgba(27,58,139,.1); }
.em-form__field textarea { resize: vertical; min-height: 120px; }
.em-form__section-title { font-size: 1rem; font-weight: 800; color: var(--em-blue); margin: 1.75rem 0 1.25rem; padding-bottom: .5rem; border-bottom: 2px solid rgba(27,58,139,.1); }
.em-form__response { padding: 1rem 1.25rem; border-radius: var(--em-radius); margin-top: 1rem; font-weight: 600; font-size: .95rem; }
.em-form__response.success { background: #e8f5e9; color: #2D7A2D; border: 1px solid #a5d6a7; }
.em-form__response.error   { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }
.em-form__disclaimer { font-size: .78rem; color: var(--em-muted); text-align: center; margin-top: .75rem; }

/* ====================================================
   RENTAL TAB
   ==================================================== */
.em-rental-tab { padding: 1.5rem 0; }
.em-rental-table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.em-rental-table th, .em-rental-table td { padding: 12px 16px; border: 1px solid #eee; text-align: left; }
.em-rental-table th { background: var(--em-blue); color: #fff; font-family: 'Montserrat',sans-serif; font-weight: 700; }
.em-rental-table tr:nth-child(even) { background: var(--em-light-bg); }
.em-rental-includes { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.em-rental-includes li { display: flex; align-items: center; gap: 8px; font-size: .9rem; }

/* ====================================================
   WooCommerce checkout note
   ==================================================== */
.em-checkout-note {
  background: linear-gradient(135deg,#e8f5e9,#f0f8ff); border: 1px solid var(--em-green);
  border-radius: var(--em-radius); padding: 1rem 1.5rem; margin-bottom: 1.5rem;
  font-weight: 600; display: flex; gap: 10px; align-items: center; color: var(--em-blue);
}
.em-thankyou-box {
  background: linear-gradient(135deg,var(--em-blue),var(--em-blue-dark));
  color: #fff; padding: 3rem; border-radius: var(--em-radius-lg); text-align: center;
  margin: 2rem 0; box-shadow: var(--em-shadow-lg);
}
.em-thankyou-box h2 { font-size: 2rem; margin-bottom: 1rem; }
.em-thankyou-box a { color: var(--em-yellow); font-weight: 700; }

.em-empty-cart { font-size: 1.1rem; }
.em-empty-cart a { color: var(--em-blue); font-weight: 700; }

/* ====================================================
   Scroll Reveal Animation
   ==================================================== */
[data-em-reveal] {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-em-reveal].revealed { opacity: 1; transform: none; }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1024px) {
  .em-features__grid { grid-template-columns: repeat(2,1fr); }
  .em-packages__grid { grid-template-columns: repeat(2,1fr); }
  .em-footer__grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .em-testimonials__grid { grid-template-columns: 1fr; }
}

@media (max-width: 1200px) {
  .em-header-inner { padding: 0 16px; gap: 1rem; }
  .em-nav__link { padding: 8px 12px; font-size: .85rem; }
  .em-header-phone { font-size: .82rem; }
  .em-btn--header { padding: 10px 18px; }
}

@media (max-width: 1100px) {
  .em-header-inner { justify-content: space-between; gap: .75rem; height: 72px; }
  .em-header-inner .em-nav,
  .em-header-inner .em-header-actions { display: none !important; }
  .em-menu-toggle { display: flex !important; margin-left: auto; flex-shrink: 0; }
  .em-mobile-nav { padding: 16px 20px 20px; }
  .em-mobile-nav__link { padding: 14px 0; }
  .em-mobile-nav__phone { padding: 16px 0 6px; }
  .em-btn--mobile-cta { min-width: 180px; padding: 12px 28px; }
}

@media (max-width: 782px) {
  body.admin-bar .em-header { top: 46px; }
}


@media (max-width: 768px) {
  .em-header-actions .em-header-phone { display: none; }
  .em-nav { display: none; }
  .em-menu-toggle { display: flex; }
  .em-hero__inner    { grid-template-columns: 1fr; text-align: center; }
  .em-hero__btns     { justify-content: center; }
  .em-hero__image-wrap { display: none; }
  .em-hero__trust-bar{ gap: 1rem; }
  .em-features__top  { grid-template-columns: 1fr; }
  .em-features__grid { grid-template-columns: 1fr; }
  .em-hiw__steps     { flex-direction: column; align-items: center; }
  .em-hiw__arrow     { transform: rotate(90deg); padding: 0; }
  .em-packages__grid { grid-template-columns: 1fr; }
  .em-pkg-card--popular { transform: none; }
  .em-trailer__inner    { grid-template-columns: 1fr; }
  .em-service-area__inner { grid-template-columns: 1fr; }
  .em-stats-bar      { grid-template-columns: repeat(2,1fr); }
  .em-contact__inner { grid-template-columns: 1fr; }
  .em-booking__wrapper{ grid-template-columns: 1fr; }
  .em-booking__includes { position: static; }
  .em-commercial__inner { grid-template-columns: 1fr; }
  .em-single-product__inner { grid-template-columns: 1fr; }
  .em-about-hero__inner     { grid-template-columns: 1fr; }
  .em-about-story__inner    { grid-template-columns: 1fr; }
  .em-about-story__img--overlay { display: none; }
  .em-about-story__stats-card   { display: none; }
  .em-footer__grid   { grid-template-columns: 1fr; }
  .em-footer__bottom { flex-direction: column; text-align: center; }
  .em-form__row--2   { grid-template-columns: 1fr; }
  .em-cta__btns      { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .em-container { padding: 0 16px; }
  .em-stats-bar { grid-template-columns: 1fr; padding: 1.5rem; }
  .em-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .em-stat:last-child { border-bottom: none; }
  .em-hero__trust-bar { flex-direction: column; align-items: flex-start; }
  .em-commercial__features { grid-template-columns: 1fr; }
}

/* ====================================================
   SCROLL REVEAL (JS-added classes)
   ==================================================== */
.em-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .65s cubic-bezier(.25,.8,.25,1), transform .65s cubic-bezier(.25,.8,.25,1);
}
.em-revealed {
    opacity: 1 !important;
    transform: none !important;
}

/* Staggered delays for grid children */
.em-features__grid .em-feature-card:nth-child(1),
.em-packages__grid .em-pkg-card:nth-child(1),
.em-hiw__steps .em-step-card:nth-child(1) { transition-delay: .05s; }
.em-features__grid .em-feature-card:nth-child(2),
.em-packages__grid .em-pkg-card:nth-child(2),
.em-hiw__steps .em-step-card:nth-child(2) { transition-delay: .12s; }
.em-features__grid .em-feature-card:nth-child(3),
.em-packages__grid .em-pkg-card:nth-child(3),
.em-hiw__steps .em-step-card:nth-child(3) { transition-delay: .19s; }
.em-features__grid .em-feature-card:nth-child(4),
.em-packages__grid .em-pkg-card:nth-child(4),
.em-hiw__steps .em-step-card:nth-child(4) { transition-delay: .26s; }
.em-features__grid .em-feature-card:nth-child(5),
.em-packages__grid .em-pkg-card:nth-child(5) { transition-delay: .33s; }
.em-features__grid .em-feature-card:nth-child(6),
.em-packages__grid .em-pkg-card:nth-child(6) { transition-delay: .40s; }

/* ====================================================
   FORM MESSAGES (AJAX responses)
   ==================================================== */
.em-form-message {
    display: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: .95rem;
    margin-top: 1rem;
    animation: em-fadeIn .3s ease;
}
.em-form-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1.5px solid #6BBF4E;
}
.em-form-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1.5px solid #f87171;
}
@keyframes em-fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: none; }
}

/* ====================================================
   HEADER SCROLLED STATE
   ==================================================== */
.em-header-wrap {
    transition: box-shadow .3s ease, padding .3s ease;
}
.em-header-wrap.em-header-scrolled .em-header-inner {
    height: 64px;
}
.em-header-wrap.em-header-scrolled {
    box-shadow: 0 4px 32px rgba(27,58,139,.22);
}

/* ====================================================
   HAMBURGER OPEN STATE
   ==================================================== */
.em-hamburger--open .em-hamburger__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.em-hamburger--open .em-hamburger__bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.em-hamburger--open .em-hamburger__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
.em-nav-list--open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--em-blue, #1B3A8B);
    padding: 24px;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,.25);
    z-index: 999;
    animation: em-slideDown .25s ease;
}
@keyframes em-slideDown {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: none; }
}

/* ====================================================
   PACKAGES — Duration Tab Switcher (FIXED)
   ==================================================== */
.em-pkg-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 1.5rem;
    background: rgba(27,58,139,.08);
    border-radius: 50px;
    padding: 6px;
    max-width: 380px;
}
.em-pkg-tab {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    transition: all .25s ease;
    background: transparent;
    color: #555;
    position: relative;
    z-index: 1;
}
.em-pkg-tab--active,
.em-pkg-tab:hover {
    background: var(--tab-active-bg, #1B3A8B);
    color: #fff;
    box-shadow: 0 4px 16px rgba(27,58,139,.25);
}
.em-pkg-duration-label {
    text-align: center;
    font-size: .9rem;
    color: #666;
    margin-bottom: 2.5rem;
    font-family: 'Open Sans', sans-serif;
}
.em-pkg-duration-label strong { color: var(--em-blue, #1B3A8B); }

/* Price flash animation on tab switch */
@keyframes em-price-flash {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.08); color: #6BBF4E; }
    100% { transform: scale(1); }
}
.em-price-flash .em-pkg-price { animation: em-price-flash .3s ease; }

/* Package Cards */
.em-pkg-head { text-align: center; margin-bottom: 1.25rem; }
.em-pkg-icon { font-size: 2.5rem; margin-bottom: .5rem; }
.em-pkg-name { font-family: 'Montserrat',sans-serif; font-weight: 800; font-size: 1.2rem; margin: 0 0 .25rem; }
.em-pkg-totes { font-size: .85rem; opacity: .7; margin: 0; }

.em-pkg-price-wrap { text-align: center; margin: 1rem 0; }
.em-pkg-price {
    display: inline-flex; gap: 2px;
    font-family: 'Montserrat',sans-serif; font-weight: 900;
    transition: all .25s ease;
}
.em-pkg-dollar { font-size: 1.4rem; }
.em-pkg-amount { font-size: 3rem; line-height: 1; }
.em-pkg-per { font-size: .82rem; color: inherit; opacity: .65; margin-top: 4px; }

.em-pkg-savings { min-height: 1.4rem; text-align: center; font-size: .8rem; color: #6BBF4E; font-weight: 700; margin-bottom: .75rem; }
.em-pkg-card--popular .em-pkg-savings { color: #F5C518; }

.em-pkg-features { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.em-pkg-features li { font-size: .9rem; padding-left: .5rem; }
.em-pkg-features li::before { content: '✅ '; }

.em-pkg-badge {
    background: #F5C518; color: #1B3A8B;
    font-family: 'Montserrat',sans-serif; font-weight: 800; font-size: .78rem;
    letter-spacing: .5px; text-transform: uppercase;
    padding: 6px 16px; border-radius: 50px;
    text-align: center; margin-bottom: 1rem;
}

.em-pkg-btn {
    display: block; width: 100%; text-align: center;
    padding: 15px 20px; border-radius: 50px;
    font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: .95rem;
    color: #fff !important; text-decoration: none;
    transition: all .3s ease; margin-top: auto;
    box-shadow: 0 4px 16px rgba(107,191,78,.3);
}
.em-pkg-btn:hover { transform: translateY(-2px); filter: brightness(1.08); }

.em-pkg-note {
    text-align: center; font-size: .9rem; color: #666;
    margin-top: 2rem; padding-top: 1.5rem;
    border-top: 1px solid rgba(27,58,139,.1);
}
.em-pkg-note a { color: #1B3A8B; font-weight: 700; }

/* ====================================================
   PRODUCT GRID WIDGET
   ==================================================== */
.em-product-grid { padding: 80px 0; }

/* How-to-book flow steps */
.em-pgrid-flow {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; flex-wrap: wrap;
    margin: 0 auto 3rem; max-width: 700px;
    background: #f0f4ff; border-radius: 16px;
    padding: 20px 24px;
}
.em-pgrid-step {
    display: flex; align-items: center; gap: 8px;
    font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: .9rem;
}
.em-pgrid-step__num {
    width: 32px; height: 32px; border-radius: 50%;
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: .85rem; font-weight: 800; flex-shrink: 0;
}
.em-pgrid-arrow { color: #999; font-size: 1.2rem; }

/* Product grid */
.em-pgrid__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}
.em-pgrid-card {
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 4px 24px rgba(27,58,139,.08);
    border: 1px solid #e8eef8;
    display: flex; flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}
.em-pgrid-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(27,58,139,.16); }

.em-pgrid-card__img-wrap { position: relative; height: 200px; overflow: hidden; }
.em-pgrid-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.em-pgrid-card:hover .em-pgrid-card__img { transform: scale(1.05); }

.em-pgrid-card__tote-badge {
    position: absolute; top: 12px; right: 12px;
    background: var(--accent, #1B3A8B); color: #fff;
    font-family: 'Montserrat',sans-serif; font-weight: 800; font-size: .82rem;
    padding: 6px 14px; border-radius: 50px;
}
.em-pgrid-card__sold-out {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.5); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat',sans-serif; font-weight: 800; font-size: 1.2rem;
}

.em-pgrid-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.em-pgrid-card__name { font-family: 'Montserrat',sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--accent, #1B3A8B); margin: 0; }
.em-pgrid-card__excerpt { font-size: .9rem; color: #666; margin: 0; }

/* Price tiers */
.em-pgrid-tiers {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 6px; background: #f4f7ff; border-radius: 10px; padding: 12px;
}
.em-pgrid-tier { text-align: center; }
.em-pgrid-tier--mid {
    border-left: 1px solid #dde4f0; border-right: 1px solid #dde4f0;
}
.em-pgrid-tier__dur { font-size: .72rem; color: #888; font-weight: 600; display: block; margin-bottom: 4px; }
.em-pgrid-tier__price { font-family: 'Montserrat',sans-serif; font-weight: 800; font-size: 1.1rem; display: block; }

.em-pgrid-card__perks { list-style: none; padding: 0; margin: 0; font-size: .82rem; color: #555; display: flex; flex-direction: column; gap: 4px; }
.em-pgrid-card__btn { margin-top: auto; }

.em-pgrid-trust {
    text-align: center; font-size: .88rem; color: #666;
    margin-top: 2rem; padding: 1rem 2rem;
    background: #f0f4ff; border-radius: 50px; display: inline-block;
    width: 100%; max-width: 600px; margin-left: auto; margin-right: auto;
    display: block;
}
.em-pgrid-empty { text-align: center; padding: 40px; color: #999; font-size: 1rem; }

/* ====================================================
   SINGLE PRODUCT WIDGET — UNIFIED STUNNING DESIGN
   Covers: .em-sp, .em-sp__*, .em-sp2, .em-sp2__*
   Rental tab tiers, trust strips, dolly hint
==================================================== */

/* ── SECTION WRAPPER ─────────────────────────────── */
.em-sp,
.em-sp2 {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #eef3ff 0%, #e8f0fe 40%, #f2f6ff 100%);
}

.em-sp--empty { padding: 40px 0; }

/* Decorative radial glow */
.em-sp::before,
.em-sp2::before {
    content: '';
    position: absolute;
    top: -180px; right: -180px;
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(107,191,78,.09) 0%, transparent 68%);
    pointer-events: none;
}

.em-sp::after,
.em-sp2::after {
    content: '';
    position: absolute;
    bottom: -120px; left: -120px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(27,58,139,.06) 0%, transparent 68%);
    pointer-events: none;
}

/* ── INNER GRID ───────────────────────────────────── */
.em-sp__inner,
.em-sp2__wrap {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ── IMAGE COLUMN ─────────────────────────────────── */
.em-sp__image-col,
.em-sp2__gallery {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Main image wrapper */
.em-sp__img-wrap,
.em-sp2__main-img-wrap {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(27,58,139,.07),
        0 8px 20px rgba(27,58,139,.08),
        0 24px 72px rgba(27,58,139,.16);
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #eef2ff, #f0f9ff);
    transition: box-shadow .4s ease;
}

.em-sp__img-wrap:hover,
.em-sp2__main-img-wrap:hover {
    box-shadow:
        0 0 0 1px rgba(27,58,139,.09),
        0 12px 28px rgba(27,58,139,.11),
        0 32px 88px rgba(27,58,139,.20);
}

/* Top gradient stripe on gallery */
.em-sp__img-wrap::before,
.em-sp2__main-img-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--em-navy), var(--em-green));
    z-index: 3;
}

.em-sp__img,
.em-sp__img-main,
.em-sp2__main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s cubic-bezier(.25,.46,.45,.94);
}

.em-sp__img-wrap:hover .em-sp__img,
.em-sp__img-wrap:hover .em-sp__img-main,
.em-sp2__main-img-wrap:hover .em-sp2__main-img {
    transform: scale(1.04);
}

/* Tote count badge */
.em-sp__img-badge,
.em-sp2__tote-pill {
    position: absolute;
    top: 16px; right: 16px;
    color: #fff;
    padding: 11px 16px;
    border-radius: 16px;
    text-align: center;
    font-family: var(--em-font-head, 'Montserrat', sans-serif);
    box-shadow: 0 6px 22px rgba(0,0,0,.28);
    backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255,255,255,.25);
    z-index: 4;
    min-width: 72px;
}

.em-sp__img-badge strong,
.em-sp2__tote-pill strong {
    display: block;
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1;
}

.em-sp__img-badge small,
.em-sp2__tote-pill small {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    opacity: .9;
    display: block;
    margin-top: 2px;
}

/* "Popular" badge */
.em-sp2__popular-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: linear-gradient(135deg, var(--em-yellow, #F5C518) 0%, #e6b500 100%);
    color: #1a1a1a;
    font-family: var(--em-font-head, 'Montserrat', sans-serif);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 14px rgba(245,197,24,.40);
    z-index: 4;
}

/* Secondary image */
.em-sp__img-secondary-wrap,
.em-sp2__sec-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(27,58,139,.10);
}

.em-sp__img-secondary,
.em-sp2__sec-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.em-sp__dolly-label {
    position: absolute;
    bottom: 8px; left: 10px;
    background: rgba(0,0,0,.65);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

/* Trust row */
.em-sp__trust-row,
.em-sp2__trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.em-sp__trust-item,
.em-sp2__trust-badge {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 8px;
    text-align: center;
    font-family: var(--em-font-head, 'Montserrat', sans-serif);
    font-size: .72rem;
    font-weight: 800;
    color: #1B3A8B;
    box-shadow: 0 2px 8px rgba(27,58,139,.06);
    transition: transform .2s, box-shadow .2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.em-sp__trust-item:hover,
.em-sp2__trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(27,58,139,.11);
}

/* Dolly hint box */
.em-sp__dolly-hint,
.em-sp2__dolly {
    background: linear-gradient(135deg, #fffbeb 0%, #fff9e0 100%);
    border: 2px solid #F5C518;
    border-radius: 16px;
    padding: 14px 18px;
    font-size: .88rem;
    color: #44380a;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    line-height: 1.5;
    box-shadow: 0 4px 14px rgba(245,197,24,.15);
}

.em-sp__dolly-hint strong,
.em-sp2__dolly strong {
    color: #1B3A8B;
    font-weight: 800;
}

/* ── CONTENT / CARD COLUMN ────────────────────────── */
.em-sp__card,
.em-sp2__content {
    border-radius: 26px !important;
    background: #ffffff;
    box-shadow:
        0 0 0 1px rgba(27,58,139,.06),
        0 8px 24px rgba(27,58,139,.08),
        0 24px 64px rgba(27,58,139,.10) !important;
    border: none !important;
    position: relative;
    overflow: hidden;
}

.em-sp__card {
    padding: 44px 40px !important;
}

.em-sp2__content {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 44px 40px;
}

/* Card top accent bar */
.em-sp__card::before,
.em-sp2__content::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6BBF4E 0%, #1B3A8B 100%);
}

/* Section label */
.em-label,
.em-sp2__label {
    display: inline-block;
    font-family: var(--em-font-head, 'Montserrat', sans-serif);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    background: linear-gradient(135deg, rgba(107,191,78,.12), rgba(107,191,78,.06));
    padding: 5px 14px;
    border-radius: 20px;
    border: 1.5px solid rgba(107,191,78,.28);
    margin-bottom: 14px;
}

/* Product name */
.em-sp__name,
.em-sp2__title {
    font-family: var(--em-font-head, 'Montserrat', sans-serif) !important;
    font-weight: 900 !important;
    font-size: clamp(1.6rem, 3vw, 2.3rem) !important;
    line-height: 1.15 !important;
    letter-spacing: -.05em !important;
    margin: 0 0 16px !important;
}

/* Tote count display */
.em-sp__tote-count,
.em-sp2__tote-count {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid #eef1f8;
}

.em-sp__tote-num {
    font-family: var(--em-font-head, 'Montserrat', sans-serif);
    font-weight: 900;
    font-size: 3rem;
    line-height: 1;
    letter-spacing: -.06em;
}

.em-sp__tote-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
}

/* ── 3-TIER PRICING ───────────────────────────────── */
.em-sp__tiers,
.em-sp2__tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.em-sp__tier,
.em-sp2__tier {
    background: #f8faff;
    border: 2px solid #e2e8f0;
    border-radius: 18px;
    padding: 20px 12px 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
    cursor: pointer;
}

.em-sp__tier:hover,
.em-sp2__tier:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(27,58,139,.12);
    border-color: #b8cdf0;
}

/* Accent bar on each tier */
.em-sp__tier::before,
.em-sp2__tier::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #dde3f0;
    transition: background .25s;
}

/* Middle / best-value tier */
.em-sp__tier--mid,
.em-sp2__tier-best-tag ~ * {
    border-color: var(--em-navy, #1B3A8B) !important;
    background: linear-gradient(160deg, #eff6ff 0%, #f0f9ff 100%) !important;
    box-shadow: 0 10px 36px rgba(27,58,139,.16) !important;
    transform: translateY(-7px) !important;
}

.em-sp__tier--mid::before {
    background: linear-gradient(90deg, var(--em-navy, #1B3A8B), var(--em-green, #6BBF4E)) !important;
    height: 4px !important;
}

.em-sp__tier--mid:hover {
    transform: translateY(-11px) !important;
}

/* "Best Value" ribbon */
.em-sp__tier-ribbon,
.em-sp2__tier-best-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--em-green, #6BBF4E) 0%, #4d9933 100%);
    color: #fff;
    font-family: var(--em-font-head, 'Montserrat', sans-serif);
    font-weight: 800;
    font-size: .65rem;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 0 0 10px 10px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(107,191,78,.35);
}

.em-sp__tier-dur {
    font-family: var(--em-font-head, 'Montserrat', sans-serif);
    font-weight: 800;
    font-size: .95rem;
    color: #0c1a3e;
    margin-bottom: 2px;
    margin-top: 8px;
}

.em-sp__tier-sub {
    font-size: .72rem;
    color: #94a3b8;
    margin-bottom: 10px;
    font-weight: 500;
}

.em-sp__tier-price {
    font-family: var(--em-font-head, 'Montserrat', sans-serif);
    font-weight: 900;
    font-size: 1.9rem;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -.05em;
}

.em-sp__tier-dollar {
    font-size: 1rem;
    vertical-align: super;
    display: inline-block;
    margin-top: 4px;
    letter-spacing: 0;
}

.em-sp__tier-save {
    color: #fff;
    font-family: var(--em-font-head, 'Montserrat', sans-serif);
    font-weight: 700;
    font-size: .68rem;
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
    letter-spacing: .3px;
}

/* ── PERKS LIST ───────────────────────────────────── */
.em-sp__perks {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.em-sp__perk {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .92rem;
    color: #475569;
    padding: 9px 12px;
    border-radius: 10px;
    line-height: 1.45;
    transition: background .15s;
}

.em-sp__perk:hover { background: #f8faff; }

.em-sp__perk::before {
    content: '✓';
    flex-shrink: 0;
    font-size: .85rem;
    font-weight: 900;
    color: var(--em-green, #6BBF4E);
    width: 20px;
    height: 20px;
    background: rgba(107,191,78,.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    line-height: 1;
    padding-left: 1px;
}

.em-sp__perk--tax {
    background: linear-gradient(135deg, #eff6ff, #f4f8ff) !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    color: #1B3A8B !important;
}

.em-sp__perk--tax::before {
    content: '🏛️' !important;
    background: transparent !important;
    font-size: .88rem !important;
}

/* ── CTA BUTTON ───────────────────────────────────── */
.em-sp__btn,
.em-sp2__cta {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 19px 28px !important;
    font-family: var(--em-font-head, 'Montserrat', sans-serif) !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    border-radius: 16px !important;
    margin-bottom: 10px !important;
    box-shadow:
        0 4px 0 #429e28,
        0 8px 28px rgba(107,191,78,.38) !important;
    color: #fff !important;
    letter-spacing: .2px !important;
    transition: all .25s cubic-bezier(.34,1.56,.64,1) !important;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    top: 0;
}

.em-sp__btn::after,
.em-sp2__cta::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
    transition: left .5s ease;
    pointer-events: none;
}

.em-sp__btn:hover::after,
.em-sp2__cta:hover::after {
    left: 150%;
}

.em-sp__btn:hover,
.em-sp2__cta:hover {
    box-shadow:
        0 2px 0 #429e28,
        0 4px 18px rgba(107,191,78,.44) !important;
    transform: translateY(2px) !important;
    top: 2px;
    filter: brightness(1.06) !important;
}

.em-sp__btn:active,
.em-sp2__cta:active {
    box-shadow: 0 0 0 #429e28 !important;
    transform: translateY(4px) !important;
    top: 4px;
}

/* Fine print below button */
.em-sp__fine {
    text-align: center;
    font-size: .78rem;
    color: #94a3b8;
    margin-bottom: 26px;
    font-family: var(--em-font-head, 'Montserrat', sans-serif);
    font-weight: 500;
}

/* ── SPECS GRID ───────────────────────────────────── */
.em-sp__specs,
.em-sp2__specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: linear-gradient(135deg, #f8faff, #f0f4ff);
    border-radius: 18px;
    padding: 22px 20px;
    border: 1.5px solid #e2e8f0;
}

.em-sp__spec,
.em-sp2__spec {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.em-sp__spec-label,
.em-sp2__spec-label {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #94a3b8;
    font-weight: 700;
    font-family: var(--em-font-head, 'Montserrat', sans-serif);
}

.em-sp__spec-val,
.em-sp2__spec-val {
    font-family: var(--em-font-head, 'Montserrat', sans-serif);
    font-weight: 700;
    font-size: .9rem;
}

/* RnB booking wrap */
.em-sp__rnb-wrap,
.em-sp2__rnb-wrap {
    background: linear-gradient(135deg, #f4f7ff, #eff4ff);
    border-radius: 18px;
    padding: 24px;
    border: 2px solid #dde4f8;
    margin: 0 0 20px;
}

.em-sp__rnb-title {
    font-family: var(--em-font-head, 'Montserrat', sans-serif);
    font-weight: 800;
    color: #1B3A8B;
    margin: 0 0 6px;
    font-size: 1.1rem;
}

.em-sp2__rnb-title {
    font-family: var(--em-font-head, 'Montserrat', sans-serif);
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 0 6px;
}

.em-sp__rnb-notice {
    background: linear-gradient(135deg, #fffbeb, #fff9e6);
    border: 1.5px solid #fbbf24;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 14px;
}

.em-sp__rnb-notice p {
    font-size: .88rem;
    margin: 5px 0 0;
    color: #555;
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1100px) {
    .em-sp__inner,
    .em-sp2__wrap {
        gap: 44px;
    }
}

@media (max-width: 960px) {
    .em-sp__inner,
    .em-sp2__wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .em-sp__image-col,
    .em-sp2__gallery {
        position: static;
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }

    .em-sp__tier--mid {
        transform: none !important;
    }

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

@media (max-width: 768px) {
    .em-sp,
    .em-sp2 {
        padding: 56px 0 72px;
    }

    .em-sp__card,
    .em-sp2__content {
        padding: 32px 26px !important;
        border-radius: 22px !important;
    }

    .em-sp__tiers,
    .em-sp2__tiers {
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .em-sp,
    .em-sp2 {
        padding: 44px 0 60px;
    }

    .em-sp__card,
    .em-sp2__content {
        padding: 26px 20px !important;
        border-radius: 18px !important;
    }

    .em-sp__tiers,
    .em-sp2__tiers {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .em-sp__tier--mid {
        order: -1;
        border-width: 2.5px !important;
        box-shadow: 0 8px 24px rgba(27,58,139,.14) !important;
    }

    .em-sp__specs,
    .em-sp2__specs {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .em-sp__trust-row,
    .em-sp2__trust-strip {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .em-sp__trust-item,
    .em-sp2__trust-badge {
        font-size: .68rem;
        padding: 9px 6px;
    }

    .em-sp__btn,
    .em-sp2__cta {
        font-size: .95rem !important;
        padding: 17px 22px !important;
    }

    .em-sp__tote-num { font-size: 2.4rem; }

    .em-sp__name,
    .em-sp2__title {
        font-size: clamp(1.5rem, 7vw, 2rem) !important;
    }
}

/* ====================================================
   RENTAL TAB — 3-TIER PRICING CARDS
   (Canonical styling — applies to both wc tab + widget)
==================================================== */
.em-rental-tab { padding: 4px 0; }

.em-rental-tab h3 {
    font-family: var(--em-font-head, 'Montserrat', sans-serif) !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    color: var(--em-navy, #1B3A8B) !important;
    margin: 0 0 22px !important;
}

.em-rental-tab__tiers {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
    margin: 0 0 30px !important;
}

.em-rental-tab__tier {
    background: #f8faff !important;
    border-radius: 20px !important;
    padding: 28px 16px 22px !important;
    border: 2px solid #e2e8f0 !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    transition: transform .25s ease, box-shadow .25s ease !important;
}

.em-rental-tab__tier:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 14px 36px rgba(27,58,139,.11) !important;
}

.em-rental-tab__tier::before {
    content: '' !important;
    position: absolute !important;
    top: 0; left: 0; right: 0 !important;
    height: 3px !important;
    background: #dde3f0 !important;
}

.em-rental-tab__tier--featured {
    background: linear-gradient(135deg, #eff6ff, #f0f9ff) !important;
    border-color: var(--em-navy, #1B3A8B) !important;
    box-shadow: 0 10px 36px rgba(27,58,139,.15) !important;
    transform: translateY(-7px) !important;
}

.em-rental-tab__tier--featured::before {
    background: linear-gradient(90deg, #1B3A8B, #6BBF4E) !important;
    height: 4px !important;
}

.em-rental-tab__tier--featured:hover {
    transform: translateY(-11px) !important;
}

.em-rental-tab__save {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    background: linear-gradient(135deg, var(--em-green, #6BBF4E), #4d9933) !important;
    color: #fff !important;
    font-family: var(--em-font-head, 'Montserrat', sans-serif) !important;
    font-size: .65rem !important;
    font-weight: 800 !important;
    letter-spacing: .8px !important;
    text-transform: uppercase !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    margin: 0 auto 14px !important;
    box-shadow: 0 3px 10px rgba(107,191,78,.30) !important;
}

.em-rental-tab__dur {
    font-family: var(--em-font-head, 'Montserrat', sans-serif) !important;
    font-weight: 800 !important;
    font-size: 1.05rem !important;
    color: #0c1a3e !important;
    margin-bottom: 3px !important;
    margin-top: 6px !important;
    line-height: 1.2 !important;
}

.em-rental-tab__dur small {
    font-size: .72rem !important;
    color: #94a3b8 !important;
    font-weight: 500 !important;
    display: block !important;
    margin-top: 2px !important;
}

.em-rental-tab__price {
    font-family: var(--em-font-head, 'Montserrat', sans-serif) !important;
    font-weight: 900 !important;
    font-size: 2.8rem !important;
    color: var(--em-navy, #1B3A8B) !important;
    line-height: 1 !important;
    margin: 14px 0 8px !important;
    letter-spacing: -.06em !important;
}

.em-rental-tab__price::before {
    content: '$' !important;
    font-size: 1.3rem !important;
    vertical-align: super !important;
    letter-spacing: 0 !important;
    margin-right: 2px !important;
}

.em-rental-tab__totes {
    font-family: var(--em-font-head, 'Montserrat', sans-serif) !important;
    font-size: .78rem !important;
    color: #64748b !important;
    font-weight: 600 !important;
}

.em-rental-tab__perks {
    list-style: none !important;
    padding: 0 !important;
    margin: 16px 0 0 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
}

.em-rental-tab__perks li {
    font-family: var(--em-font-body, 'Open Sans', sans-serif) !important;
    font-size: .85rem !important;
    color: #475569 !important;
    padding: 9px 12px 9px 34px !important;
    background: #f4f7ff !important;
    border-radius: 10px !important;
    border: 1px solid #e8edf8 !important;
    position: relative !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    border-bottom: 1px solid #e8edf8 !important;
}

.em-rental-tab__perks li::before {
    content: '✓' !important;
    position: absolute !important;
    left: 12px !important; top: 10px !important;
    color: var(--em-green, #6BBF4E) !important;
    font-weight: 900 !important;
    font-size: .82rem !important;
}

/* Rental table fallback */
.em-rental-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(27,58,139,.07);
}

.em-rental-table th,
.em-rental-table td {
    padding: 14px 18px;
    border: 1px solid #e8eef8;
    text-align: left;
    font-size: .9rem;
}

.em-rental-table th {
    background: linear-gradient(135deg, var(--em-navy, #1B3A8B), #2d52b3);
    color: #fff;
    font-family: var(--em-font-head, 'Montserrat', sans-serif);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.em-rental-table tr:nth-child(even) { background: #f4f7ff; }
.em-rental-table tr:hover { background: #eef3ff; }
.em-rental-table td { font-weight: 500; color: #334155; }

@media (max-width: 768px) {
    .em-rental-tab__tiers {
        gap: 10px !important;
    }
    .em-rental-tab__tier {
        padding: 22px 12px 18px !important;
    }
    .em-rental-tab__price {
        font-size: 2.2rem !important;
    }
    .em-rental-tab__perks {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 600px) {
    .em-rental-tab__tiers {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    .em-rental-tab__tier--featured {
        order: -1;
        transform: none !important;
    }
    .em-rental-tab__price {
        font-size: 2.6rem !important;
    }
    .em-rental-tab__perks {
        grid-template-columns: 1fr !important;
    }
}

   THANK YOU BOX — UPDATED
   ==================================================== */
.em-thankyou-box {
    background: linear-gradient(135deg, #1B3A8B, #0D1F4E);
    color: #fff; padding: 3rem; border-radius: 20px;
    text-align: center; margin: 2rem 0; box-shadow: 0 12px 48px rgba(27,58,139,.3);
}
.em-thankyou-box__icon { font-size: 4rem; margin-bottom: 1rem; }
.em-thankyou-box h2 { font-family: 'Montserrat',sans-serif; font-size: 2rem; font-weight: 900; margin-bottom: 1rem; }
.em-thankyou-box__steps { display: flex; gap: 20px; justify-content: center; margin: 2rem 0; flex-wrap: wrap; }
.em-ty-step {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    background: rgba(255,255,255,.1); border-radius: 12px; padding: 20px;
    flex: 1; min-width: 140px; max-width: 180px;
}
.em-ty-step span { font-size: 2rem; }
.em-ty-step strong { font-family: 'Montserrat',sans-serif; font-size: .9rem; font-weight: 700; }
.em-ty-step small { font-size: .78rem; opacity: .75; }
.em-thankyou-box__contact { margin-top: 1.5rem; font-size: .95rem; opacity: .85; }
.em-thankyou-box__contact a { color: #F5C518; font-weight: 700; }

/* ====================================================
   PRICE FROM HTML (product page)
   ==================================================== */
.em-price-from { font-size: .75rem; color: #888; margin-right: 4px; font-weight: 400; }
.em-price-per  { font-size: .8rem; color: #888; margin-left: 4px; }

/* ====================================================
   RESPONSIVE — New Widgets
   ==================================================== */
@media (max-width: 900px) {
    .em-sp__inner { grid-template-columns: 1fr; }
    .em-sp__gallery { position: static; }
    .em-sp__tiers { gap: 8px; }
    .em-rental-tab__tiers { grid-template-columns: 1fr; }
    .em-rental-tab__tier--featured { transform: none; }
}
@media (max-width: 768px) {
    .em-pgrid__grid { grid-template-columns: 1fr; }
    .em-pgrid-flow { gap: 8px; padding: 14px 16px; }
    .em-pgrid-arrow { display: none; }
    .em-thankyou-box__steps { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
    .em-pkg-tabs { max-width: 100%; }
    .em-sp__specs { grid-template-columns: 1fr; }
    .em-sp__tiers { flex-direction: column; }
}

/* ====================================================
   HERO — FROM $99 PRICE BADGE
   ==================================================== */
.em-hero__price-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 14px 24px;
    border-radius: 14px;
    margin: 1.25rem 0 1.5rem;
    box-shadow: 0 6px 24px rgba(0,0,0,.2);
    max-width: 320px;
    position: relative;
    overflow: hidden;
}
.em-hero__price-badge::before {
    content: '🏷️';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    opacity: .25;
}
.em-hero__price-badge__label {
    font-family: 'Montserrat', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .8;
}
.em-hero__price-badge__price {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
}
.em-hero__price-badge__suffix {
    font-family: 'Open Sans', sans-serif;
    font-size: .82rem;
    font-weight: 600;
    opacity: .75;
}

/* Hero side image frame */
.em-hero__img-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
    border: 4px solid rgba(255,255,255,.15);
}
.em-hero__img-pill { display: none !important; }

/* ====================================================
   DOLLY UPSELL — product card accentuation
   Used in WC product grid for the dolly add-on
   ==================================================== */
.em-pgrid-card[data-addon="dolly"] {
    border: 2px solid #F5C518;
    position: relative;
}
.em-pgrid-card[data-addon="dolly"]::before {
    content: '🔥 Add-On';
    position: absolute;
    top: -1px; right: 20px;
    background: #F5C518;
    color: #1B3A8B;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: .72rem;
    letter-spacing: .5px;
    padding: 4px 14px;
    border-radius: 0 0 8px 8px;
}

/* ====================================================
   DOLLY UPSELL CALLOUT
   Small banner on product pages / checkout
   ==================================================== */
.em-dolly-upsell {
    background: linear-gradient(135deg, #FFF9E6, #FFFBF0);
    border: 2px solid #F5C518;
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 1.5rem 0;
}
.em-dolly-upsell__icon { font-size: 2.5rem; flex-shrink: 0; }
.em-dolly-upsell__body { flex: 1; }
.em-dolly-upsell__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #1B3A8B;
    font-size: 1rem;
    margin: 0 0 4px;
}
.em-dolly-upsell__desc { font-size: .88rem; color: #555; margin: 0; }
.em-dolly-upsell__price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    color: #1B3A8B;
    flex-shrink: 0;
}

/* ====================================================
   PACKAGES — Dolly Upsell Banner
   ==================================================== */
.em-pkg-dolly-upsell {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #fffbeb, #fff9e0);
    border: 2px solid #F5C518;
    border-radius: 16px;
    padding: 20px 28px;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.em-pkg-dolly-upsell__icon {
    font-size: 2.8rem;
    flex-shrink: 0;
}
.em-pkg-dolly-upsell__text {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: .93rem;
    color: #444;
}
.em-pkg-dolly-upsell__text strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    color: #1B3A8B;
}
.em-pkg-dolly-upsell__btn {
    background: #F5C518 !important;
    color: #1B3A8B !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800 !important;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(245,197,24,.35) !important;
}
.em-pkg-dolly-upsell__btn:hover {
    background: #e6b800 !important;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .em-pkg-dolly-upsell { flex-direction: column; text-align: center; align-items: center; }
    .em-pkg-dolly-upsell__btn { width: 100%; justify-content: center; }
}

/* ====================================================
   HERO — Image fills frame, no green pill (fixed)
   ==================================================== */
.em-hero__img-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
    border: none;                       /* no border */
    background: transparent;            /* no white gap */
    line-height: 0;                     /* kill inline spacing */
}
.em-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;                     /* fills frame, no gap */
    margin: 0;
    border-radius: 20px;
}
/* Remove the old img-pill rule */
.em-hero__img-pill { display: none !important; }
   LEGAL PAGE WIDGET (TOS + Privacy Policy)
   ==================================================== */
.em-legal-page { padding-bottom: 80px; }

.em-legal-page__header {
    padding: 60px 0 48px;
    text-align: center;
    margin-bottom: 0;
}
.em-legal-page__header-inner { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.em-legal-page__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    margin: 0 0 12px;
}
.em-legal-page__meta {
    color: rgba(255,255,255,.8);
    font-size: .95rem;
    margin: 0;
}

.em-legal-page__body {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}
.em-legal-page__intro {
    background: #f4f7ff;
    border-left: 4px solid #1B3A8B;
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 40px 0 32px;
    font-size: 1rem;
    color: #1B3A8B;
    font-weight: 600;
}

.em-legal-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e8eef8;
}
.em-legal-section:last-child { border-bottom: none; }
.em-legal-section__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.em-legal-section__title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background: #6BBF4E;
    border-radius: 2px;
    flex-shrink: 0;
}
.em-legal-section__body { font-size: .97rem; line-height: 1.8; color: #444; }
.em-legal-section__body ul { padding-left: 20px; margin: 12px 0; }
.em-legal-section__body li { margin-bottom: 8px; }
.em-legal-section__body p  { margin: 0 0 12px; }
.em-legal-section__body strong { color: #1B3A8B; }

.em-legal-page__content { padding: 40px 0 20px; }
.em-legal-page__footer {
    padding: 24px;
    background: #f4f7ff;
    border-radius: 12px;
    text-align: center;
    font-size: .88rem;
    color: #666;
    margin-top: 20px;
}
.em-legal-page__footer a { font-weight: 700; }

/* ====================================================
   ABOUT STORY WIDGET — Enhanced
   ==================================================== */


.em-about-story__hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    margin-bottom: 80px;
}
.em-about-story__images { position: relative; }

.em-about-story__img-main-wrap {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}
.em-about-story__img-main {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(27,58,139,.18);
    display: block;
}
.em-about-story__stats {
    position: absolute;
    bottom: -28px;
    right: -28px;
    border-radius: 16px;
    padding: 20px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    box-shadow: 0 12px 40px rgba(27,58,139,.3);
    z-index: 2;
    min-width: 200px;
}
.em-about-story__stat { text-align: center; }
.em-about-story__stat strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: #F5C518;
}
.em-about-story__stat span {
    font-size: .72rem;
    color: rgba(255,255,255,.8);
    font-weight: 600;
    letter-spacing: .03em;
}

.em-about-story__img-secondary-wrap {
    margin-top: 20px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(27,58,139,.12);
}
.em-about-story__img-secondary {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.em-about-story__img-secondary-wrap:hover .em-about-story__img-secondary { transform: scale(1.03); }

.em-about-story__copy { padding-bottom: 28px; }
.em-about-story__body {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-top: 20px;
}
.em-about-story__body p { margin-bottom: 16px; }
.em-about-story__body strong { color: #1B3A8B; }

/* Values grid */
.em-about-story__values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 20px;
}
.em-about-story__value-card {
    background: #f8faff;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid #e8eef8;
    transition: transform .3s ease, box-shadow .3s ease;
}
.em-about-story__value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(27,58,139,.12);
    border-color: #1B3A8B;
}
.em-about-story__value-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
    display: block;
}
.em-about-story__value-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    margin: 0 0 10px;
}
.em-about-story__value-text {
    font-size: .85rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .em-about-story__values { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .em-about-story__hero { grid-template-columns: 1fr; gap: 48px; }
    .em-about-story__stats { position: static; margin-top: 20px; width: 100%; }
}
@media (max-width: 600px) {
    .em-about-story__values { grid-template-columns: 1fr; }
    .em-about-story__stats { grid-template-columns: repeat(4, 1fr); gap: 8px; }
}

   HERO — Fill image panel completely
   ==================================================== */
.em-hero__image-wrap {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 460px;
}
.em-hero__img-frame {
    display: flex;
    align-items: stretch;
    width: 100%;
}
/* Remove any white border/background from hero section */
.em-hero {
    overflow: hidden;
}

/* ====================================================
   ABOUT STORY — enhanced animations
   ==================================================== */
.em-about-story__value-card {
    position: relative;
    overflow: hidden;
}
.em-about-story__value-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1B3A8B, #6BBF4E);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.em-about-story__value-card:hover::after { transform: scaleX(1); }

/* ====================================================
   BOOKING FORM — TOS Checkbox (above Book Now button)
   Flow: Select package → Enter info → ☑ Checkbox → Book Now
   ==================================================== */
.em-form-tos {
    background: linear-gradient(135deg, #f8faff, #eff4ff);
    border: 2px solid #1B3A8B;
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 20px;
}

.em-form-tos--error {
    border-color: #ef4444;
    background: linear-gradient(135deg, #fff8f8, #fef2f2);
    animation: em-tos-shake 0.4s ease;
}

@keyframes em-tos-shake {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-6px); }
    40%       { transform: translateX(6px); }
    60%       { transform: translateX(-4px); }
    80%       { transform: translateX(4px); }
}

.em-form-tos__label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    margin-bottom: 14px;
}

/* Hide native checkbox visually but keep it functional */
.em-form-tos__checkbox {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: 0;
    cursor: pointer;
    /* NO pointer-events:none — must stay clickable via label */
}

/* Custom checkmark box */
.em-form-tos__checkmark {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border: 2.5px solid #1B3A8B;
    border-radius: 6px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, border-color .2s ease;
    margin-top: 1px;
}

.em-form-tos__checkbox:checked + .em-form-tos__checkmark {
    background: #1B3A8B;
    border-color: #1B3A8B;
}

.em-form-tos__checkbox:checked + .em-form-tos__checkmark::after {
    content: '';
    display: block;
    width: 6px;
    height: 11px;
    border: 2.5px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
}

.em-form-tos--error .em-form-tos__checkmark {
    border-color: #ef4444;
}

.em-form-tos__text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .92rem;
    color: #1B3A8B;
    line-height: 1.55;
}

.em-form-tos__link {
    color: #6BBF4E;
    font-weight: 700;
    text-decoration: underline;
}
.em-form-tos__link:hover { color: #1B3A8B; }

/* Key terms mini-summary */
.em-form-tos__summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px;
    padding: 12px 0;
    border-top: 1px solid rgba(27,58,139,.12);
    border-bottom: 1px solid rgba(27,58,139,.12);
    margin-bottom: 10px;
}

.em-form-tos__summary span {
    font-size: .8rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 5px;
}

.em-form-tos__read {
    display: inline-block;
    font-size: .8rem;
    color: #1B3A8B;
    font-weight: 600;
    text-decoration: none;
}
.em-form-tos__read:hover { color: #6BBF4E; }

@media (max-width: 600px) {
    .em-form-tos { padding: 16px; }
    .em-form-tos__summary { grid-template-columns: 1fr; }
}

/* ====================================================
   RESPONSIVE OVERHAUL — Mobile First Fixes
   Fixes: hero image, all sections, mobile menu
   ==================================================== */

/* ── MOBILE MENU — ensure toggle button works ──────── */
@media (max-width: 768px) {

    /* Show hamburger */
    .em-menu-toggle { display: flex !important; }

    /* Hide desktop nav */
    .em-header-inner .em-nav { display: none !important; }

    /* Mobile nav — hidden by default, shown when .open or .em-nav--open */
    .em-mobile-nav {
        display: none !important;
        flex-direction: column;
        width: 100%;
        padding: 12px 0;
        background: #1B3A8B;
        border-top: 1px solid rgba(255,255,255,.12);
    }
    .em-mobile-nav.open,
    .em-mobile-nav.em-nav--open {
        display: flex !important;
    }

    /* Force white text on all mobile nav links */
    .em-mobile-nav .em-mobile-nav__link,
    .em-mobile-nav a {
        color: #fff !important;
        padding-left: 20px;
        padding-right: 20px;
    }
    .em-mobile-nav .em-mobile-nav__link:hover,
    .em-mobile-nav a:hover {
        color: #6BBF4E !important;
    }
    .em-mobile-nav .em-mobile-nav__phone {
        color: rgba(255,255,255,.8) !important;
    }

    /* Hamburger animation classes */
    .em-menu-toggle.active span:nth-child(1),
    .em-menu-toggle.em-hamburger--open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg) !important;
    }
    .em-menu-toggle.active span:nth-child(2),
    .em-menu-toggle.em-hamburger--open span:nth-child(2) {
        opacity: 0 !important;
    }
    .em-menu-toggle.active span:nth-child(3),
    .em-menu-toggle.em-hamburger--open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg) !important;
    }

    /* ── HERO — image visible & responsive on mobile ── */
    .em-hero__image-wrap {
        display: flex !important; /* Was display:none — now shows on mobile */
        width: 100%;
        min-height: 250px;
        max-height: 320px;
        margin-top: 24px;
    }
    .em-hero__img-frame {
        width: 100%;
        border-radius: 14px;
    }
    .em-hero__img {
        width: 100%;
        height: 100%;
        min-height: 220px;
        max-height: 320px;
        object-fit: cover;
    }
    .em-hero__inner {
        grid-template-columns: 1fr;
        padding: 48px 16px 32px;
        gap: 0;
    }
    .em-hero__headline { font-size: clamp(2rem, 8vw, 3rem); }
    .em-hero__sub      { font-size: 1rem; }
    .em-hero__btns     { flex-direction: column; align-items: stretch; }
    .em-hero__btns .em-btn { text-align: center; justify-content: center; }
    .em-hero__price-badge { max-width: 100%; }

    /* ── SECTION CONTAINERS ── */
    .em-container { padding: 0 16px; }
    section { overflow-x: hidden; }

    /* ── PACKAGES ── */
    .em-packages__grid { grid-template-columns: 1fr; gap: 16px; }
    .em-pkg-tabs { max-width: 100%; }

    /* ── PRODUCT GRID ── */
    .em-pgrid__grid { grid-template-columns: 1fr; }
    .em-pgrid-flow  { flex-direction: column; align-items: flex-start; gap: 8px; }
    .em-pgrid-arrow { display: none; }

    /* ── SINGLE PRODUCT ── */
    .em-sp__inner       { grid-template-columns: 1fr; gap: 28px; }
    .em-sp__image-col   { position: static; }
    .em-sp__tiers       { grid-template-columns: 1fr; gap: 8px; }
    .em-sp__tier--mid   { transform: none; }
    .em-sp__card        { padding: 20px 16px; }
    .em-sp__specs       { grid-template-columns: 1fr; }

    /* ── ABOUT STORY ── */
    .em-about-story__hero   { grid-template-columns: 1fr; gap: 24px; }
    .em-about-story__values { grid-template-columns: 1fr 1fr; gap: 12px; }
    .em-about-story__stats  { position: static; margin-top: 12px; border-radius: 12px; }
    .em-about-story__img-secondary-wrap { height: 100px; }

    /* ── TRAILER ── */
    .em-trailer__inner { grid-template-columns: 1fr; }

    /* ── FOOTER ── */
    .em-footer__grid   { grid-template-columns: 1fr; gap: 32px; }
    .em-footer__bottom { flex-direction: column; text-align: center; gap: 8px; }

    /* ── BOOKING FORM ── */
    .em-booking__wrapper { grid-template-columns: 1fr; }
    .em-form__row--2     { grid-template-columns: 1fr; }
    .em-booking__includes { position: static; }

    /* ── TOS CHECKBOX ── */
    .em-form-tos__summary { grid-template-columns: 1fr; }

    /* ── WC CHECKOUT ── */
    .woocommerce-checkout #customer_details,
    .woocommerce-account .woocommerce { flex-direction: column; }
    .woocommerce-MyAccount-navigation { width: 100%; }
    .em-tos-summary { grid-template-columns: 1fr; }

    /* ── DOLLY UPSELL ── */
    .em-dolly-upsell { flex-wrap: wrap; }
    .em-pkg-dolly-upsell { flex-direction: column; text-align: center; }

    /* ── THANK YOU ── */
    .em-thankyou-box__steps { flex-direction: column; }
}

/* ── TABLET (769px – 1024px) ─────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
    .em-container { padding: 0 20px; }

    .em-hero__inner { padding: 60px 20px 40px; gap: 2rem; }
    .em-hero__headline { font-size: clamp(2rem, 5vw, 3.5rem); }

    .em-packages__grid { grid-template-columns: repeat(2, 1fr); }
    .em-pgrid__grid    { grid-template-columns: repeat(2, 1fr); }
    .em-sp__tiers      { gap: 8px; }
    .em-sp__tier--mid  { transform: translateY(-2px); }

    .em-about-story__hero   { gap: 32px; }
    .em-about-story__values { grid-template-columns: repeat(2, 1fr); }

    .em-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ── EXTRA SMALL (< 480px) ──────────────────────── */
@media (max-width: 480px) {
    .em-hero { min-height: auto; }
    .em-hero__inner { padding: 36px 16px 24px; }
    .em-hero__price-badge { padding: 12px 16px; }
    .em-hero__price-badge__price { font-size: 2.2rem; }

    .em-about-story__values { grid-template-columns: 1fr; }
    .em-sp__card { padding: 16px 12px; }
    .em-pkg-tabs { padding: 4px; }
    .em-pkg-tab { font-size: .8rem; padding: 10px 12px; }

    /* Stack all 2-col grids to 1 col */
    [class*="__grid"] { grid-template-columns: 1fr !important; }
    .em-rental-tab__tiers { flex-direction: column; }

    /* WC checkout easier on small screens */
    .woocommerce-billing-fields .form-row,
    .woocommerce-shipping-fields .form-row { width: 100% !important; float: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   CLIENT UPDATE v1.3.0 — April 2026
   ═══════════════════════════════════════════════════════════════ */

/* ── Packages: Dollar sign aligned to top of price number ──── */
.em-pkg-dollar {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    vertical-align: top;
    margin-top: 2px;
    display: inline-block;
}
.em-pkg-amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

/* ── Features: Old Way vs New Way two-column comparison ─────── */
.em-features__comparison-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    align-items: flex-start;
    margin-top: .5rem;
}
.em-features__comparison-col {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.em-features__comparison-label {
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    padding: .4rem .9rem;
    border-radius: 30px;
    letter-spacing: .02em;
}
.em-features__comparison-label--old {
    background: #fff0f0;
    color: #c0392b;
    border: 2px solid #f5c6c2;
}
.em-features__comparison-label--new {
    background: #f0fff4;
    color: #2D7A2D;
    border: 2px solid #b8f0c8;
}
.em-features__img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    max-height: 260px;
    box-shadow: 0 6px 24px rgba(0,0,0,.10);
}

/* ── Testimonials: placeholder card ────────────────────────── */
.em-testimonials__placeholder {
    color: #444;
}

/* ── Responsive: comparison stacks on mobile ────────────────── */
@media (max-width: 768px) {
    .em-features__comparison-wrap {
        grid-template-columns: 1fr;
    }
    .em-features__top {
        flex-direction: column;
    }
}

/* ── FAQ Widget ──────────────────────────────────────────────── */
.em-faq {
    padding: 80px 0;
}
.em-faq__body {
    max-width: 820px;
    margin: 0 auto;
}
.em-faq__group {
    margin-bottom: 2.5rem;
}
.em-faq__group-title {
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 0 0 .75rem;
    padding-bottom: .5rem;
    border-bottom: 3px solid currentColor;
    opacity: .9;
}
.em-faq__item {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: .5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.em-faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.4rem;
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    color: #1a1a2e;
    transition: background .2s;
}
.em-faq__question:hover {
    background: #1b3a8b;
}
.em-faq__question--open {
    background: #1b3a8b !important;
    color: #fff;
}
.em-faq__chevron {
    font-size: .7rem;
    transition: transform .25s ease;
    flex-shrink: 0;
    opacity: .7;
}
.em-faq__question--open .em-faq__chevron {
    transform: rotate(180deg);
}
.em-faq__answer {
    border-top: 1px solid #e8edf8;
}
.em-faq__answer-inner {
    padding: 1.1rem 1.4rem;
    font-size: .97rem;
    line-height: 1.7;
    color: #444;
}
.em-faq__answer-inner ul,
.em-faq__answer-inner ol {
    padding-left: 1.4rem;
    margin: .5rem 0;
}
.em-faq__answer-inner li {
    margin-bottom: .3rem;
}
.em-faq__answer-inner strong {
    color: #1B3A8B;
}
.em-faq__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.8rem 2.4rem;
    border-radius: 16px;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.em-faq__cta-text {
    color: #fff;
    font-size: 1.05rem;
}
.em-faq__cta-btn {
    white-space: nowrap;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    transition: opacity .2s;
}
.em-faq__cta-btn:hover { opacity: .88; }

@media (max-width: 600px) {
    .em-faq__cta { flex-direction: column; text-align: center; }
    .em-faq__cta-btn { width: 100%; text-align: center; }
}

/* ── Client update: selected package + booking add-on ───────── */
.em-pkg-card--selected {
    box-shadow: 0 0 0 3px rgba(27,58,139,.16), 0 18px 40px rgba(27,58,139,.12);
    transform: translateY(-4px);
}
.em-booking-addon {
    margin: .25rem 0 .5rem;
}
.em-booking-addon__label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #1B3A8B;
}
.em-booking-addon__label input,
.em-booking-addon__checkbox {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 4px;
    appearance: auto !important;
    -webkit-appearance: checkbox !important;
    accent-color: var(--em-green, #6BBF4E);
    background: transparent !important;
    box-shadow: none !important;
    cursor: pointer;
    flex-shrink: 0;
}
.em-booking-addon__label {
    cursor: pointer;
    user-select: none;
}
/* ============================================================
   CLIENT UPDATES – April 2026
   ============================================================ */

/* ── Service Area: Photo replaces map ── */
.em-service-area__photo {
    flex: 1 1 420px;
    min-width: 280px;
}
.em-service-area__photo img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    max-height: 440px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.28);
}

/* ── Package Card: Photo header ── */
.em-pkg-photo {
    margin: -1.5rem -1.5rem 1.25rem;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}
.em-pkg-photo img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    border-radius: 12px 12px 0 0;
    transition: transform .4s ease;
}
.em-pkg-card:hover .em-pkg-photo img {
    transform: scale(1.04);
}

/* ── Booqable embed wrapper ── */
.em-booqable-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(27,58,139,.10);
    min-height: 400px;
}


/* ── Client update: hero poster + bullet service area + about single image ── */
.em-hero--poster {
  background: transparent !important;
  padding: 0 !important;
}
.em-hero__poster-wrap {
  max-width: 1280px;
  padding: 0;
}
.em-hero__poster-img {
  display: block;
  width: 100%;
  height: auto;
}
.em-service-area--bullets .em-service-area__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: center;
}
.em-service-area__content--light .em-label,
.em-service-area__content--light .em-section-title,
.em-service-area__content--light .em-section-subtitle {
  color: #1e293b;
}
.em-service-bullets {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .9rem;
}
.em-service-bullets li {
  position: relative;
  padding-left: 1.4rem;
  color: #334155;
  line-height: 1.7;
  font-size: 1rem;
}
.em-service-bullets li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #6BBF4E;
  font-weight: 800;
}
.em-about-story__hero--single {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.em-about-story__images--single .em-about-story__img-main-wrap {
  margin-bottom: 0;
}
.em-commercial__plain-list {
  margin: 1.25rem 0 0;
  padding-left: 1.1rem;
  color: #334155;
  line-height: 1.8;
}
@media (max-width: 900px) {
  .em-service-area--bullets .em-service-area__inner,
  .em-about-story__hero--single {
    grid-template-columns: 1fr;
  }
}