/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 28 2026 | 10:37:30 */
/* ============================================================
   NEIGHBOURHOOD PAINTERS — Exterior Landing Page Styles
   File: exterior-landing.css
   Scope: ALL selectors prefixed with .ep- so zero bleed to
          the rest of the WordPress / Elementor theme.
   Upload via your CSS plugin and link in the HTML widget.
   ============================================================ */

/* ── Brand tokens ────────────────────────────────────────── */
:root {
  --ep-green:       #2d6a4f;   /* primary dark green (matches site) */
  --ep-green-mid:   #40916c;   /* medium green accent               */
  --ep-green-light: #74c69d;   /* highlight / hover                 */
  --ep-white:       #ffffff;
  --ep-off-white:   #f7f9f7;
  --ep-dark:        #1a1a1a;
  --ep-text:        #333333;
  --ep-muted:       #666666;
  --ep-border:      #d8e8df;
  --ep-radius:      8px;
  --ep-shadow:      0 4px 24px rgba(0,0,0,0.10);
  --ep-shadow-lg:   0 8px 40px rgba(0,0,0,0.16);
  --ep-font:        'Poppins', 'Segoe UI', Arial, sans-serif;
  --ep-transition:  0.25s ease;
}

/* ── Reset / base (scoped) ───────────────────────────────── */
.ep-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.ep-section {
  padding: 80px 0;
}

.ep-section__title {
  font-family: var(--ep-font);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--ep-dark);
  text-align: center;
  margin: 0 0 12px;
  line-height: 1.2;
}

.ep-section__title--light {
  color: var(--ep-white);
}

.ep-section__sub {
  font-family: var(--ep-font);
  font-size: 1rem;
  color: var(--ep-muted);
  text-align: center;
  margin: 0 0 48px;
}


/* ── ① HERO ──────────────────────────────────────────────── */
.ep-hero {
  position: relative;
  background-image: url('http://npainters.ca/wp-content/uploads/2025/01/homepage-banner-main-1.png');
  background-size: cover;
  background-position: center 30%;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
}

.ep-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20, 55, 35, 0.88) 0%,
    rgba(20, 55, 35, 0.70) 50%,
    rgba(20, 55, 35, 0.40) 100%
  );
}

.ep-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
}

.ep-hero__left {
  flex: 1 1 0;
  color: var(--ep-white);
}

.ep-hero__eyebrow {
  font-family: var(--ep-font);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ep-white);
  margin: 0 0 14px;
text-shadow: 0 0 10px #00000050;
}

.ep-hero__title {
  font-family: var(--ep-font);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ep-white);
  margin: 0 0 28px;
  text-shadow: 0 0 10px #00000050;
}

.ep-hero__trust {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ep-hero__trust li {
  font-family: var(--ep-font);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.90);
	text-shadow: 0 0 10px #00000050;
}

.ep-hero__trust img.emoji {
    filter: brightness(7);
}

.ep-hero__rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ep-hero__stars {
  color: #f9c74f;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.ep-hero__rating-text {
  font-family: var(--ep-font);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.80);
}

/* Hero form box */
.ep-hero__right {
  flex: 0 0 400px;
  max-width: 400px;
}

.ep-form-box {
  background: #ffffff90;
  border-radius: var(--ep-radius);
  padding: 36px 32px;
  box-shadow: var(--ep-shadow-lg);
}

.ep-form-box__title {
  font-family: var(--ep-font);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ep-green);
  margin: 0 0 6px;
  text-align: center;
}

.ep-form-box__sub {
  font-family: var(--ep-font);
  font-size: 0.88rem;
  color: var(--ep-muted);
  text-align: center;
  margin: 0 0 24px;
}

.ep-form-shortcode-placeholder {
  font-family: var(--ep-font);
  font-size: 0.85rem;
  color: var(--ep-muted);
/*   background: var(--ep-off-white);
  border: 2px dashed var(--ep-border);
  border-radius: var(--ep-radius);
  padding: 32px 16px;
  text-align: center;
  min-height: 220px; */
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ── ② REVIEWS SLIDER ────────────────────────────────────── */
.ep-reviews-section {
  background: var(--ep-off-white);
}

.ep-review-slider {
  position: relative;
  overflow: hidden;
}

.ep-review-track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 0;
}

.ep-review-card {
  flex: 0 0 100%;
  background: var(--ep-white);
  border-radius: var(--ep-radius);
  padding: 36px 40px;
  box-shadow: var(--ep-shadow);
  border-left: 5px solid var(--ep-green);
  box-sizing: border-box;
}

.ep-review-stars {
  color: #f9c74f;
  font-size: 1.3rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.ep-review-text {
  font-family: var(--ep-font);
  font-size: 1.05rem;
  color: var(--ep-text);
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 20px;
}

.ep-review-author {
  font-family: var(--ep-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ep-green);
  margin: 0;
}

.ep-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.ep-slider-btn {
  background: var(--ep-green);
  color: var(--ep-white);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background var(--ep-transition), transform var(--ep-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.ep-slider-btn:hover {
  background: var(--ep-green-mid);
  transform: scale(1.08);
}

.ep-slider-dots {
  display: flex;
  gap: 8px;
}

.ep-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ep-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--ep-transition);
}

.ep-slider-dot.is-active {
  background: var(--ep-green);
}


/* ── ③ WE PROMISE ────────────────────────────────────────── */
.ep-promise-section {
  background: var(--ep-white);
}

.ep-promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.ep-promise-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.ep-promise-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.ep-promise-label {
  font-family: var(--ep-font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ep-dark);
  margin: 0;
  line-height: 1.4;
}


/* ── ④ BEFORE / AFTER PROJECTS ───────────────────────────── */
.ep-projects-section {
  background: var(--ep-off-white);
}

.ep-ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.ep-ba-wrap {
  border-radius: var(--ep-radius);
  overflow: hidden;
  box-shadow: var(--ep-shadow);
  background: var(--ep-dark);
}

/* The draggable before/after component */
.ep-ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  touch-action: pan-y;
}

.ep-ba-after,
.ep-ba-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ep-ba-before-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;   /* JS will update this */
  height: 100%;
  overflow: hidden;
}

.ep-ba-before-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;  /* percentage keeps image full-width inside clip */
  height: 100%;
  object-fit: cover;
}

.ep-ba-handle {
  position: absolute;
  top: 0;
  left: 50%;    /* JS updates */
  transform: translateX(-50%);
  width: 44px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  pointer-events: none;
  z-index: 10;
}

.ep-ba-handle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--ep-white);
  opacity: 0.85;
}

.ep-ba-arrow {
  width: 36px;
  height: 36px;
  background: var(--ep-green);
  color: var(--ep-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  line-height: 1;
}

.ep-ba-labels {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--ep-green);
}

.ep-ba-label {
  font-family: var(--ep-font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ep-white);
}


/* ── ⑤ BOTTOM CTA + FORM ─────────────────────────────────── */
.ep-bottom-form-section {
  background: var(--ep-white);
}

.ep-bottom-form__inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.ep-bottom-form__left {
  flex: 1 1 0;
}

.ep-bottom-form__title {
  font-family: var(--ep-font);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--ep-green);
  margin: 0 0 16px;
  line-height: 1.2;
}

.ep-bottom-form__body {
  font-family: var(--ep-font);
  font-size: 1rem;
  color: var(--ep-text);
  line-height: 1.7;
  margin: 0 0 24px;
}

.ep-bottom-form__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ep-bottom-form__bullets li {
  font-family: var(--ep-font);
  font-size: 0.95rem;
  color: var(--ep-text);
}

.ep-bottom-form__right {
  flex: 0 0 420px;
  max-width: 420px;
}

.ep-form-box--dark {
  background: var(--ep-green);
}

.ep-form-box--dark .ep-form-box__title {
  color: var(--ep-white);
}

/* .ep-form-box--dark .ep-form-shortcode-placeholder {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.65);
} */


/* ── ⑥ GOOGLE REVIEWS ────────────────────────────────────── */
.ep-google-section {
  background: var(--ep-green);
  padding: 80px 0;
}

.ep-google-section__inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.ep-google-section__left {
  flex: 0 0 280px;
}

.ep-google-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 16px 0 8px;
}

.ep-google-stars {
  color: #f9c74f;
  font-size: 1.4rem;
  letter-spacing: 3px;
}

.ep-google-score {
  font-family: var(--ep-font);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ep-white);
  line-height: 1;
}

.ep-google-count {
  font-family: var(--ep-font);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  width: 100%;
}

.ep-google-powered {
  font-family: var(--ep-font);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.ep-google-section__right {
  flex: 1 1 0;
}

.ep-reviews-shortcode-placeholder {
  font-family: var(--ep-font);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
  border: 2px dashed rgba(255,255,255,0.25);
  border-radius: var(--ep-radius);
  padding: 40px 20px;
  text-align: center;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ── RESPONSIVE ──────────────────────────────────────────── */

/* Tablet: 1024px */
@media (max-width: 1024px) {
  .ep-promise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ep-ba-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ep-ba-grid .ep-ba-wrap:last-child {
    grid-column: span 2;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* Mobile: 768px */
@media (max-width: 768px) {
  .ep-section {
    padding: 56px 0;
  }

  /* Hero stacks */
  .ep-hero__inner {
    flex-direction: column;
    gap: 32px;
  }

  .ep-hero__right {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  /* Bottom form stacks */
  .ep-bottom-form__inner {
    flex-direction: column;
    gap: 40px;
  }

  .ep-bottom-form__right {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  /* Google section stacks */
  .ep-google-section__inner {
    flex-direction: column;
    gap: 32px;
  }

  .ep-google-section__left {
    flex: none;
  }

  /* Promise 2 cols */
  .ep-promise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* BA grid: 1 col */
  .ep-ba-grid {
    grid-template-columns: 1fr;
  }

  .ep-ba-grid .ep-ba-wrap:last-child {
    grid-column: span 1;
    max-width: 100%;
  }
}

/* Small mobile: 480px */
@media (max-width: 480px) {
  .ep-hero {
    padding: 60px 0 40px;
    min-height: auto;
  }

  .ep-form-box {
    padding: 28px 20px;
  }
	.ep-hero__title{
		font-size:42px !important;
	}

  .ep-review-card {
    padding: 28px 24px;
  }
}