.elementor-kit-5{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */:root{
  /* COLORS */
  --primary: #0B6F5B;
  --primary-dark: #095548;
  --accent: #F6F8F5;
  --text: #111827;
  --muted: #6B7280;
  --success: #16A34A;

  /* TYPOGRAPHY */
  --font-sys: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --body-size: 14px;
  --h1-size: 24px;
  --h2-size: 18px;
  --h3-size: 16px;
  --radius: 8px;
  --shadow-soft: 0 6px 18px rgba(16,24,40,0.06);
}

/* GLOBAL BODY */
body {
  font-family: var(--font-sys);
  font-size: var(--body-size);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing:antialiased;
}

/* HERO */
.hero-section {
  padding: 20px 16px;
  text-align: center;
}
.hero-section .hero-headline {
  font-size: var(--h1-size);
  font-weight: 600;
  margin: 8px 0 6px;
}
.hero-section .hero-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
}

/* BUTTON PRIMARY (full width mobile) */
.btn-primary {
  display: inline-block;
  width: 100%;
  min-height: 44px;
  line-height: 44px;
  background: var(--primary);
  color: #ffffff;
  text-align: center;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary-dark);
  text-decoration: none;
  outline: none;
}

/* FEATURE CARD */
.feature-card {
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 12px;
  display: flex;
  gap:12px;
  align-items: center;
}
.feature-card .icon {
  width:44px;
  height:44px;
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--accent);
  flex-shrink:0;
}

/* IMAGE CAROUSEL IMAGES */
.img-carousel img {
  border-radius: 8px;
  width:100%;
  height:auto;
  display:block;
}

/* SPEC CARD */
.specs-card {
  background: #fff;
  padding: 12px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.specs-card ul {
  margin:0;
  padding:0 0 0 14px;
  list-style: disc;
  color:var(--muted);
}

/* ICON ROW SCROLL (for mobile horizontal scroll) */
.icon-row {
  display:flex;
  gap:12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom:8px;
}
.icon-row .item {
  flex:0 0 auto;
  min-width:72px;
  text-align:center;
}

/* MAP PLACEHOLDER (lazy-load idea) */
.map-placeholder {
  position:relative;
  border-radius:8px;
  overflow:hidden;
}
.map-placeholder .open-map-btn {
  position:absolute;
  bottom:10px;
  left:10px;
  right:10px;
  text-align:center;
}

/* STICKY CTA (bottom) */
.sticky-cta {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 9999;
  display:flex;
  gap:8px;
  pointer-events:auto;
}
.sticky-cta .cta-btn {
  flex:1;
}

/* FORM STYLING */
.form-card {
  background:#ffffff;
  padding:12px;
  border-radius:8px;
  box-shadow: var(--shadow-soft);
}
.form-card label { font-size:13px; color:var(--muted); }
.form-card input, .form-card select, .form-card textarea {
  width:100%;
  padding:10px;
  border-radius:6px;
  border:1px solid #E6E6E6;
  margin-top:6px;
  box-sizing:border-box;
}

/* RESPONSIVE TYPOGRAPHY TWEAK (bigger on tablet/desktop) */
@media (min-width: 768px) {
  :root { --h1-size:32px; --body-size:16px; }
  .hero-section { padding:36px 24px; }
  .btn-primary { width:auto; padding:12px 24px; min-height:48px; line-height:normal; }
}/* End custom CSS */