/*
Theme Name: Tilly Takano - Breakup Coach
Theme URI: https://www.breakupcoachtilly.com
Author: Tilly Takano
Author URI: https://www.breakupcoachtilly.com
Description: Custom WordPress theme for Tilly Takano - Breakup Support for Moms Abroad
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tilly-takano
Tags: coaching, blog, custom, responsive
*/

/* =========================================================
   CSS CUSTOM PROPERTIES / DESIGN TOKENS
   ========================================================= */
:root {
  --color-primary: rgba(25, 82, 134, 1);
  --color-pink: rgb(160, 6, 117);
  --color-green: rgba(161, 201, 62, 1);
  --color-green-solid: rgb(161, 201, 63);
  --color-text: rgba(35, 73, 89, 1);
  --color-dark: rgba(28, 35, 45, 1);
  --color-grey: rgb(84, 84, 84);
  --color-light-grey: rgba(241, 241, 241, 0.97);
  --color-white: rgba(255, 255, 255, 1);
  --color-bg-warm: rgba(238, 233, 230, 1);
  --font-poppins: 'Poppins', sans-serif;
  --font-lato: 'Lato', sans-serif;
  --font-raleway: 'Raleway', sans-serif;
  --font-opensans: 'Open Sans', sans-serif;
  --font-montserrat: 'Montserrat', sans-serif;
  --font-josefin: 'Josefin Sans', sans-serif;
  --magenta:  rgb(184, 0, 90);
  --magenta2: rgb(184, 0, 90);
  --green:    rgb(161, 201, 62);
  --white:#fff;
  --green-dark:rgb(161, 201, 62);
  --blue: rgb(25, 82, 134);
  --olive:    #7ea010;
  --dark:     #2c2c2c;
  --grey:     #555;
  --light-bg: #f9f9f9;
  --poppins : "Poppins", sans-serif;
  --lato: "Lato", sans-serif; 
  --open-sans : "Open Sans", sans-serif;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  font-family: var(--font-lato);
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  color: var(--dark);
  background-color: var(--color-white);
  overflow-x: hidden;
}


*, *:before, *:after {
  box-sizing: inherit;
}

a { text-decoration: none; }
p { margin: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: normal; }
section h1 { margin: 0; }
button, input { margin: 0; font-family: unset; }
ul { margin: 0; list-style: none; padding: 0; }
img { max-width: 100%; height: auto; display: block; }

/* =========================================================
   GOOGLE FONTS IMPORTS
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&family=Lato:ital,wght@0,400;0,700;1,400&family=Raleway:wght@400;700&family=Open+Sans:wght@400;600;700&family=Montserrat:wght@200;300;400;600;700&family=Josefin+Sans:wght@400&display=swap');

/* =========================================================
   LAYOUT WRAPPERS
   ========================================================= */
.site-wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.site-main { flex: 1; }

.container-full  { max-width: 100%; width: 100%; margin: auto; }
.container-wide  { max-width: 1120px; width: 100%; margin: auto; }
.container-medium{ max-width: 960px; width: 100%; margin: auto; }
.container-small { max-width: 720px; width: 100%; margin: auto; }

.section-row {
  display: grid;
  position: relative;
  justify-content: space-between;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 20px;
}

@media only screen and (max-width: 800px) {
  .section-row {
    display: flex;
    flex-direction: column;
    grid-template-columns: auto;
    column-gap: 0;
  }
  .container-wide,
  .container-medium,
  .container-small { max-width: 100%; }
}

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */
.site-header {
  position: relative;
  padding: 10px 40px;
  background: var(--color-white);
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
}

.site-logo img {
  width: 177px;
  display: block;
}

/* Desktop nav */
.main-navigation { display: flex; align-items: center; }

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-navigation ul li a {
  font-size: 18px;
  color: var(--color-primary);
  font-family: var(--font-raleway);
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
}

.main-navigation ul li a:hover {
  color: var(--color-pink);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 10px;
}

.main-navigation ul li.current-menu-item a,
.main-navigation ul li.current_page_item a {
  color: var(--color-pink);
}

/* Mobile burger */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 33px;
  height: 4px;
  border-radius: 3px;
  background-color: var(--color-pink);
  transition: all 0.3s;
}

/* Mobile side menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  background-color: var(--color-white);
  overflow-y: auto;
  z-index: 200;
  transition: width 0.2s ease-in-out;
  flex-direction: column;
}

.mobile-menu.open { width: 280px; display: flex; }

.mobile-menu ul {
  margin-top: 60px;
  padding: 10px;
  list-style: none;
}

.mobile-menu ul li { margin-bottom: 20px; }

.mobile-menu ul li a {
  font-size: 18px;
  color: var(--color-primary);
  font-family: var(--font-raleway);
  font-weight: 400;
  line-height: 32px;
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 150;
}

.menu-overlay.open { display: block; }

@media only screen and (max-width: 800px) {
  .site-header { padding: 5px 15px; }
  .site-logo img { width: 165px; }
  .main-navigation ul { display: none; }
  .menu-toggle { display: flex; }
}

/* =========================================================
   HERO SECTION (Home)
   ========================================================= */
   .hero-section {
      min-height: 440px;
      display: flex;
      align-items: stretch;
      background: #fff;
      overflow: hidden;
      position: relative;
    }
    .hero-left {
      flex: 0 0 50%;
      padding: 70px 50px 50px 80px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .hero-caption{position: absolute;left: 10%;top: 50%;transform: translateY(-50%);text-align: center;z-index: 2;}
    .hero-caption h1 {
      font-family: var(--poppins);
      font-size: 62px;
      font-weight: 700;
      color: var(--magenta);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 60px;
    }
    .hero-caption .subtitle {
      font-family: 'Lato', sans-serif;
      font-size: 35px;
      font-weight: 700;
      color: var(--blue);
      margin-bottom: 35px;
      line-height: 1.3;
    }
    .hero-caption .subtitle span {
      color: var(--green-dark);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .hero-caption .tagline {
      font-size: 20px;
      color: var(--blue);
      font-style: italic;
      font-weight: 400;
      margin-bottom: 30px;
      font-family: var(--lato);
    }
    .hero-section{height: 1088px;}
    .btn-hero {
      display: inline-block;
      margin-top: 100px;
      font-family: var(--poppins);
      background: var(--green);
      color: #fff !important;
      font-size: 35px;
      font-weight: 400;
      letter-spacing: 1px;
      padding: 10px 65px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      width: fit-content;
      transition: background .2s;
    }
    .btn-hero:hover { background: var(--green-dark); }

    .hero-right {
      flex: 0 0 50%;
      position: relative;
      background: #e8e0d4;
      overflow: hidden;
      background-size: cover !important;
    }
    .hero-right img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
    }
    .hero-right .hero-photo-placeholder {
      width: 100%;
      height: 100%;
      min-height: 440px;
      background: linear-gradient(135deg, #d4c8b8 0%, #c8b89a 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-right .hero-photo-placeholder svg {
      width: 200px;
      opacity: 0.3;
    }

  /* =========================================================
   MY APPROACH (White section with content)
   ========================================================= */
.my-approach-section { padding: 40px; }

.section-heading-pink {
  font-size: 40px;
  color: var(--color-pink);
  font-family: var(--font-raleway);
  font-weight: 400;
  text-align: center;
  line-height: 75px;
  margin: 20px 0 50px;
}

.approach-highlight {
  font-size: 25px;
  color: var(--color-white);
  font-family: var(--font-opensans);
  text-align: center;
  line-height: 60px;
  padding: 0 50px;
  background: var(--color-green);
}

.approach-body {
  font-size: 25px;
  color: var(--color-text);
  font-family: var(--font-opensans);
  text-align: center;
  line-height: 40px;
  padding: 30px 100px;
}

.approach-footer-text {
  font-size: 25px;
  color: rgb(84,84,84);
  font-family: var(--font-opensans);
  text-align: center;
  line-height: 40px;
  padding: 0 50px;
  background: var(--color-white);
}

hr.section-divider {
  border: none;
  border-top: 1px solid var(--color-green-solid);
}

@media only screen and (max-width: 800px) {
  .section-heading-pink { font-size: 20px; line-height: 43px; font-family: var(--font-poppins); font-weight: 500; }
  .approach-highlight { padding: 0; font-size: 18px; line-height: 23px; }
  .approach-body { padding: 0; font-size: 15px; line-height: 20px; }
}

    /* ── 3. GREEN CALLOUT BANNER ──────────────────────────────── */
    .callout-banner {
      background: var(--green);

      display: flex;
      align-items: stretch;
      min-height: 100px;
      padding: 50px 0px;
    }
    .callout-img {
      width: 200px;
      min-width: 120px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .callout-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .callout-img .img-placeholder {
      width: 120px;
      height: 100%;
      min-height: 100px;
      background: linear-gradient(135deg, #e07030 0%, #f08040 40%, #c06000 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .callout-img .img-placeholder svg {
      width: 48px;
      opacity: .6;
      fill: #fff;
    }
    .callout-text {
      padding: 22px 40px;
      text-align: center;
    }
    .callout-text_allignment{height: 100%;display: flex;align-items: center;}
    .callout-text h3 {
      font-family: var(--poppins);
      font-size: 26px;
      font-weight: 400;
      color: #fff;
      margin-bottom: 4px;
      margin-bottom: 50px;
    }
    .callout-text p {
      font-size: 20px;
      font-family: var(--open-sans);
      color: rgba(255,255,255,.9);
      margin: 0;
    }
    .callout-dots {
      margin-left: auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
    }
    .callout-dot {
      width: 28px;
      height: 28px;
      background: rgba(255,255,255,.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }
    .callout-dot svg { width:14px; fill:#fff; }

    /* ── 4. MY APPROACH ──────────────────────────────────────── */
    .approach-section {
      background: #fff;
      padding: 60px 20px;
      text-align: center;
    }
    .approach-section h2 {
      font-family: 'Lato', sans-serif;
      font-size: 40px;
      font-weight: 900;
      color: var(--magenta);
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 50px;
    }
    .approach-pill {
      display: inline-block;
      background: var(--green);
      font-family: var(--poppins);
      color: #fff;
      font-size: 25px;
      font-weight: 400;
      padding: 10px 30px;
      margin-bottom: 30px;
      width: 100%;
    }
    .approch_sec_sty p{font-size: 25px;font-family: var(--open-sans);}
    .approach-body {
      margin: 0 auto;
      line-height: 1.85;
      color: #444;
    }
    .approach-divider {
      border: none;
      border-top: 2px solid var(--green);
      margin: 28px auto;
    }
    .approach-closing {
      margin: 0 auto;
      font-size: 14.5px;
      color: #555;
      line-height: 1.7;
    }

/* =========================================================
   TESTIMONIALS / CAROUSEL
   ========================================================= */
.testimonials-section {
  background: var(--color-pink);
  padding: 20px 40px;
}

.testimonials-heading {
  font-size: 30px;
  color: rgba(241, 241, 241, 0.97);
  font-family: var(--font-poppins);
  font-weight: 400;
  text-align: center;
  line-height: 38.4px;
  padding: 10px 0 15px;
  font-style: italic;
}

.testimonials-heading em strong { font-weight: bold; }

.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-slide {
  min-width: 100%;
  padding: 20px 0;
}

.testimonial-text {
  font-size: 20px;
  color: rgba(241, 241, 241, 0.97);
  font-family: var(--font-opensans);
  font-weight: 400;
  text-align: center;
  line-height: 30px;
  padding: 0 300px;
}

.testimonial-author {
  color: rgba(241, 241, 241, 0.97);
  font-style: italic;
  font-weight: bold;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255,255,255,0.4);
  border: none;
  padding: 0;
}

.carousel-dot.active { background: var(--color-white); }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
  padding: 10px;
}

.carousel-arrow.next { right: 15px; }
.carousel-arrow.prev { left: 15px; }

@media only screen and (max-width: 800px) {
  .testimonial-text { padding: 0; font-size: 16px; line-height: 24px; }
  .testimonials-section { padding: 5px; }
  .carousel-arrow { display: none; }
}

    /* heading */
    .testimonials-section .section-heading {
      font-family: var(--poppins);
      font-size: 30px;
      font-weight: 400;
      font-style: italic;
      color: var(--white);
      margin-bottom: 40px;
      line-height: 1.3;
    }
    .testimonials-section .section-heading strong {
      font-style: normal;
      font-weight: 700;
    }

    /* ── each slide ── */
    .testimonial-item {
      padding: 0 20px 10px;
    }
    .testimonial-quote {
      max-width: 650px;
      font-family: 'Open Sans', sans-serif;
      margin: 0 auto 24px;
      font-size: 20px;
      line-height: 1.75;
      color: var(--white);
      font-style: italic;
    }
    .testimonial-author {
      font-family: 'Open Sans', sans-serif;
      font-size: 20px;
      font-style: italic;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0;
    }

    /* ── Owl Dots ── */
    .owl-theme .owl-dots {
      margin-top: 22px !important;
    }
    .owl-theme .owl-dots .owl-dot span {
      width: 11px;
      height: 11px;
      background: var(--white-60) !important;
      margin: 0 5px;
      border-radius: 50%;
      transition: background .25s;
      border: 1px solid #fff;
    }
    .owl-theme .owl-dots .owl-dot.active span,
    .owl-theme .owl-dots .owl-dot:hover span {
      background: var(--white) !important;
    }

    /* ── Owl Nav (prev / next arrows) ── */
    .owl-theme .owl-nav {
      margin: 0;
    }
    .owl-theme .owl-nav [class*='owl-'] {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      margin: 0;
      padding: 0;
      background: var(--white-20) !important;
      border-radius: 50%;
      width: 42px;
      height: 42px;
      display: flex !important;
      align-items: center;
      justify-content: center;
      color: var(--white) !important;
      font-size: 22px;
      line-height: 1;
      transition: background .25s, transform .2s;
      border: none;
    }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: rgba(255,255,255,.35) !important;
    }
    .owl-theme .owl-nav [class*='owl-']:active {
      transform: translateY(-50%) scale(.94);
    }
    .owl-theme .owl-nav .owl-prev {
      left: 24px;
    }
    .owl-theme .owl-nav .owl-next {
      right: 24px;
    }

    /* custom arrow SVG — override default icon */
    .owl-theme .owl-nav .owl-prev span,
    .owl-theme .owl-nav .owl-next span {
      display: none; /* hide default text */
    }
    .owl-theme .owl-nav .owl-prev::after,
    .owl-theme .owl-nav .owl-next::after {
      font-family: sans-serif;
      font-size: 24px;
      color: var(--white);
      line-height: 1;
    }
    .owl-theme .owl-nav .owl-prev::after { content: '';position: absolute; background: url('../images/left_btn.png') no-repeat center;background-size: cover !important;width: 25px; height: 25px; }
    .owl-theme .owl-nav .owl-next::after { content: '';position: absolute; background: url('../images/right_btn.png') no-repeat center;background-size: cover !important;width: 25px; height: 25px;  }

    /* disabled state */
    .owl-theme .owl-nav .owl-prev.disabled,
    .owl-theme .owl-nav .owl-next.disabled {
      opacity: .35;
      pointer-events: none;
    }

    /* Make owl-stage-outer NOT clip the nav buttons */
    .owl-carousel.owl-theme {
      position: relative;
    }



    /* ── 6. UPCOMING EVENTS ──────────────────────────────────── */
    .events-section {
      background: #fff;
      padding: 50px 0px;
      display: flex;
      align-items: stretch;
      min-height: 220px;
      overflow: hidden;
    }
    .events-left {
      flex: 0 0 55%;
      padding: 46px 50px 40px 80px;
      text-align: center;
    }
    .events-left h2 {
      font-family: var(--poppins);
      font-size: 50px;
      font-weight: 400;
      color: var(--magenta);
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .events-left p {
      font-size: 20px;
      font-family: var(--open-sans);
      color: #555;
      line-height: 1.7;
      margin-bottom: 22px;
      font-weight: 400;
    }
    .btn-events {
      display: inline-block;
      margin-top: 25px;
      font-family: var(--poppins);
      background: var(--green);
      color: #fff !important;
      font-size: 18px;
      font-weight: 400;
      letter-spacing: 1px;
      padding: 20px 65px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      width: fit-content;
      transition: background .2s;
      border-radius: 5px;
    }
    .btn-events:hover { background: var(--green-dark); }
    .events-right {
      flex: 0 0 45%;
      overflow: hidden;
    }
    .events-right img {
      width: 100%;
      height: 310px;
      object-fit: cover;
      display: block;
    }
    .events-right .event-photo-ph {
      width: 100%;
      height: 100%;
      min-height: 220px;
      background: linear-gradient(135deg, #b8c870 0%, #8aae30 50%, #a8c060 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .events-right .event-photo-ph svg {
      width: 80px;
      opacity: .4;
      fill: #fff;
    }

    /* ── 7. LEAD CAPTURE ──────────────────────────────────────── */
    .leadcap-section {
      position: relative;
      min-height: 340px;
      display: flex;
      align-items: stretch;
      overflow: hidden;
      background-size: cover !important;
      padding: 50px 0px;
    }
    .leadcap-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #1a1a1a 0%, #2d2520 50%, #1e1812 100%);
      z-index: 0;
    }
    .leadcap-bg-texture {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 20% 60%, rgba(80,50,20,.6) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 90%, rgba(100,60,20,.4) 0%, transparent 60%);
      z-index: 1;
    }
    .leadcap-left {
      flex: 0 0 50%;
      position: relative;
      z-index: 2;
      display: flex;
      align-items: flex-end;
      padding: 30px 20px 30px 30px;
    }
    /* Faux wallet/leather object using CSS */
    .wallet-obj {
      width: 160px;
      height: 120px;
      background: linear-gradient(145deg, #a03018 0%, #c04020 40%, #8a2010 100%);
      border-radius: 6px;
      box-shadow: 4px 6px 20px rgba(0,0,0,.5);
      transform: rotate(-15deg) translateY(10px);
      position: relative;
    }
    .wallet-obj::after {
      content:'';
      position: absolute;
      inset: 6px;
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 3px;
    }
    .leadcap-right {
      position: relative;
      z-index: 2;

    }
    .leadcap-box {
      background: rgba(255, 255, 255, 0.74);;
      padding: 28px 26px;
      width: 100%;
    }
    .leadcap-box h3 {
      font-family: 'Lato', sans-serif;
      font-size: 23px;
      color: rgb(160, 6, 117);
      line-height: 1.35;
      margin-bottom: 4px;
      font-weight: 900;
    text-align: center;
    padding: 0px 40px 20px 40px;
    }
    .leadcap-box h3 strong { display: block; font-size: 18px; }
    .leadcap-box .sub-title {
      font-size: 18px;
      color: var(--blue);
      margin-bottom: 14px;
      font-weight: 400;
text-align: center;
    }
    .leadcap-box input[type=text],
    .leadcap-box input[type=email] {
      width: 100%;
      border: 1px solid #ccc;
      padding: 8px 12px;
      margin-bottom: 8px;
      outline: none;
      color: #555;
          width: 100%;
    outline: none;
    text-indent: 10px;
    text-align: left;
    appearance: none;
    font-size: 16px;
    font-family: "Open Sans";
    padding: 12px 0px;
    border-radius: 5px;
    border-style: solid;
    border-width: 1px;
    background-color: rgb(255, 255, 255);
    line-height: 20px;
    margin: 12px 0px;
    }
    .leadcap-box input::placeholder { color: #aaa; }
    .leadcap-checkbox {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 11px;
      color: #666;
      margin-bottom: 14px;
      line-height: 1.4;
    }
    .newsletter_form{width: 100%;}
    .leadcap-checkbox label{font-family: var(--open-sans);font-size: 14px;font-weight: 400;}
    .leadcap-checkbox input { margin-top: 2px; flex-shrink: 0; }
    .btn-leadcap {
      background: var(--green);
      color: #fff;
      border: none;
      padding: 10px;
      display: inline-block;
      padding: 10px 50px;
      border-radius: 5px;
      font-size: 20px;
      font-weight: 400;
      letter-spacing: 1px;
      cursor: pointer;
      transition: background .2s;
      font-family: var(--open-sans);
    }
    .btn-leadcap:hover { background: var(--green-dark); }
.btn_allign{display: flex;justify-content: center;}
    /* side dots */
    .side-dots {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 8px;
      z-index: 10;
    }
    .side-dot {
      width: 24px; height: 24px;
      background: rgba(255,255,255,.25);
      border-radius: 50%;
      cursor: pointer;
    }
/* =========================================================
   NEWSLETTER / CHECKLIST SECTION
   ========================================================= */
.newsletter-section {
  padding: 38px 40px 17px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.newsletter-box {
  background: rgba(255, 255, 255, 0.74);
  padding: 10px;
}

.newsletter-box-inner { padding: 13px 20px; }

.newsletter-title {
  font-size: 23px;
  color: var(--color-pink);
  font-family: var(--font-poppins);
  font-weight: 400;
  text-align: center;
  line-height: 35px;
  font-weight: bold;
}

.newsletter-subtitle {
  font-size: 18px;
  color: var(--color-primary);
  font-family: var(--font-opensans);
  text-align: center;
  line-height: 42px;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  width: 100%;
  padding: 12px 10px;
  border: 1px solid rgba(176, 186, 202, 1);
  border-radius: 5px;
  font-size: 16px;
  background: var(--color-white);
  margin-bottom: 10px;
  outline: none;
}

.newsletter-form input[type="checkbox"] {
  margin-right: 8px;
}

.newsletter-checkbox-label {
  font-size: 16px;
  color: var(--color-text);
  font-family: var(--font-opensans);
  text-align: left;
  line-height: 19px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 10px 0;
}

.btn-submit {
  background: rgba(161, 201, 48, 0.85);
  color: var(--color-white);
  font-family: var(--font-opensans);
  font-weight: 400;
  font-size: 20px;
  padding: 9px 45px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  line-height: 30px;
  transition: background 0.3s;
  width: 100%;
  margin-top: 10px;
}

.btn-submit:hover { background: var(--color-pink); }

@media only screen and (max-width: 800px) {
  .newsletter-section { padding: 20px 10px; background-size: cover; background-attachment: fixed; }
  .newsletter-title { font-size: 18px; line-height: 26px; }
  .newsletter-subtitle { font-size: 14px; line-height: 50px; }
  .btn-submit { font-size: 15px; padding: 8px 5px; }
}
   

    /* ── RESPONSIVE HELPERS ──────────────────────────────────── */
    @media (max-width: 768px) {
      .hero-section { flex-direction: column; }
      .hero-left { flex: 1; padding: 40px 24px; }
      .hero-right { flex: 0 0 260px; min-height: 260px; }
      .events-section { flex-direction: column; }
      .events-left { flex: 1; padding: 36px 24px; }
      .events-right { flex: 0 0 200px; min-height: 200px; }
      .leadcap-section { flex-direction: column; }
      .leadcap-left { flex: 0 0 150px; justify-content: center; }
      .leadcap-right { flex: 1; padding: 20px; }
      .footer-cols { gap: 30px; }
      .newsletter-bar { flex-direction: column; }
      .newsletter-left { border-right: none; border-bottom: 1px solid #eee; flex: 1; }
      .callout-banner { flex-wrap: wrap; }
      .hero-left { padding: 40px 30px 30px 30px; }
    }





        /* ─── FOOTER WRAPPER ─────────────────────────── */
    footer {
      background: var(--magenta);
      color: var(--white);
    }

    /* ═══════════════════════════════════════════════
       FOOTER TOP
    ═══════════════════════════════════════════════ */
    .footer_top {
      padding: 56px 0 40px;
      border-bottom: 1px solid var(--white-30);
    }

    /* ── Logo area ── */
    .footer_top_logo_area {
      text-align: center;
      margin-bottom: 24px;
    }
    .footer_top_logo_area img{width: 250px;}
    .footer_logo_circle {
      width: 130px;
      height: 130px;
      border: 2px solid var(--white-70);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      background: transparent;
      transition: border-color .3s;
    }
    .footer_logo_circle:hover { border-color: var(--white); }
    .footer_logo_circle svg  { width: 80px; height: 80px; }

    .footer_about_heading {
      font-family: var(--open-sans);
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 1.5px;
      color: var(--white);
      margin-bottom: 10px;
      margin: 25px 0px;
    }
    .footer_about_desc {
      font-size: 16px;
      color: var(--white-70);
      font-family: var(--open-sans);
      line-height: 1.7;
      margin: 0;
    }

    /* ── Column area (3 cols) ── */
    .footer_top_column_area {
      margin-top: 40px;
      margin-bottom: 0;
    }
    .footer_col_title,.footer_legal_title {
      font-family: var(--open-sans);
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
      text-align: center;
      margin-bottom: 20px;
    }
    .footer_col_links {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: center;
    }
    .footer_col_links li {
      margin-bottom: 10px;
    }
    .footer_col_links li a,
    .footer_col_links li span {
      font-size: 15px;
      color: var(--white-70);
      text-decoration: none;
      line-height: 1.6;
      transition: color .2s;
      display: inline-block;
    }
    .footer_col_links li a:hover { color: var(--white); }

    /* Contact column special styling */
    .footer_contact_line {
      font-size: 13px;
      color: var(--white-70);
      text-align: center;
      line-height: 1.8;
      margin: 0;
    }
    .footer_contact_line a {
      color: rgb(161, 201, 63);;
      text-decoration: none;
      transition: color .2s;
      font-family: var(--open-sans);
      
    }
    .footer_contact_line p{font-size: 16px;}
    .footer_contact_line a:hover { color: var(--white); text-decoration: underline; }

    /* column dividers on desktop */
    @media (min-width: 992px) {
      .footer_col_divider {
        border-left: 1px solid var(--white-30);
      }
    }

    /* ── Legal area ── */
    .footer_top_legal_area {
      text-align: center;
      margin-top: 44px;
    }

    .footer_legal_links {
      font-size: 13px;
      color: var(--white-70);
    }
    .footer_legal_links a {
      color: var(--white-70);
      text-decoration: none;
      transition: color .2s;
      font-size: 15px;
      font-family: var(--open-sans);
    }
    .footer_legal_links a:hover { color: var(--white); }
    .footer_legal_links .dot-sep {
      margin: 0 10px;
      color: var(--white-50);
    }
    .footer_copyright {
      margin-top: 14px;
      font-size: 12.5px;
      color: var(--white-50);
      font-size: 15px;
      font-family: var(--open-sans);
    }

.btn-submit:hover { background: var(--color-pink); }

@media only screen and (max-width: 800px) {
  .newsletter-section { padding: 20px 10px; background-size: cover; background-attachment: fixed; }
  .newsletter-title { font-size: 18px; line-height: 26px; }
  .newsletter-subtitle { font-size: 14px; line-height: 50px; }
  .btn-submit { font-size: 15px; padding: 8px 5px; }
}

/* =========================================================
   SOLUTIONS PAGE
   ========================================================= */
.solutions-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 10px 40px 150px;
  min-height: 400px;
}

.solutions-hero-title {
  font-size: 35px;
  color: var(--color-pink);
  font-family: var(--font-raleway);
  font-weight: 700;
  text-align: center;
  line-height: 35.6px;
  margin: 45px -220px 15px 60px;
}

.solutions-banner {
  background: var(--color-pink);
  padding: 20px 40px;
}

.solutions-banner-text {
  font-size: 21px;
  color: var(--color-white);
  font-family: var(--font-lato);
  text-align: center;
  line-height: 40px;
}

.btn-start {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(162, 216, 103, 1);
  color: var(--color-white);
  font-family: var(--font-opensans);
  font-weight: 400;
  font-size: 20px;
  padding: 15px 25px;
  border-radius: 3px;
  border: 3px solid rgba(1, 77, 130, 0);
  border-bottom-width: 3px;
  cursor: pointer;
  text-decoration: none;
  line-height: 17px;
  transition: background 0.3s;
  margin: 10px 10px 0;
}

.btn-start:hover { background: var(--color-primary); color: var(--color-white); }

/* Solutions Cards */
.solutions-cards-section {
  padding: 40px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 500px;
}

.solution-card {
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(190, 211, 195, 1);
  padding: 30px 25px;
  text-align: center;
}

.solution-card-title {
  font-size: 20px;
  color: rgba(160, 23, 123, 1);
  font-family: var(--font-lato);
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 33.6px;
  margin-bottom: 15px;
  font-weight: bold;
}

.solution-card img {
  max-width: 253px;
  margin: 0 auto 15px;
}

.solution-card-badge {
  font-size: 16px;
  color: rgba(160, 23, 123, 1);
  font-family: var(--font-montserrat);
  text-align: center;
  line-height: 23px;
  background: rgba(161, 201, 48, 0.3);
  padding: 4px 0;
  margin-bottom: 15px;
}

.solution-card-desc {
  font-size: 16px;
  color: var(--color-text);
  font-family: var(--font-montserrat);
  text-align: center;
  line-height: 25px;
  margin-bottom: 15px;
}

.btn-solution {
  display: block;
  width: 100%;
  background: rgba(160, 23, 123, 1);
  color: var(--color-white);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 18px;
  padding: 10px 30px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 26px;
  text-align: center;
  transition: background 0.3s;
}

.btn-solution:hover { background: var(--color-primary); color: var(--color-white); }

@media only screen and (max-width: 800px) {
  .solutions-hero { padding: 5px 5px 90px; }
  .solutions-hero-title { font-size: 22px; line-height: 26.4px; margin: 80px 0 0; }
  .solutions-cards-section { padding: 25px 15px 30px; }
  .btn-start { width: 100%; display: flex; justify-content: center; padding: 5px 5px; font-size: 20px; margin: 15px 0; }
}

/* =========================================================
   EVENTS PAGE
   ========================================================= */
.events-hero {
  background: var(--color-pink);
  padding: 90px 40px 180px;
}

.events-hero-title {
  font-size: 85px;
  color: rgba(246, 246, 246, 1);
  font-family: var(--font-josefin);
  font-weight: 400;
  text-align: center;
  line-height: 90px;
  margin-bottom: 30px;
}

.events-content {
  background: rgba(243, 243, 243, 1);
  padding: 0 40px 30px;
}

.events-content-inner {
  background: var(--color-white);
  padding: 90px 90px 120px;
  box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2);
  margin-top: -90px;
}

.events-coming-soon {
  font-size: 20px;
  color: var(--color-green-solid);
  font-family: var(--font-opensans);
  text-align: center;
  line-height: 30px;
  font-weight: bold;
  margin-bottom: 60px;
}

/* Dynamic events loop */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.event-card {
  background: var(--color-white);
  border: 1px solid rgba(190, 211, 195, 1);
  padding: 20px;
  border-radius: 4px;
}

.event-card-title {
  font-size: 22px;
  color: var(--color-primary);
  font-family: var(--font-poppins);
  font-weight: 500;
  margin-bottom: 10px;
}

.event-card-meta {
  font-size: 14px;
  color: var(--color-grey);
  margin-bottom: 15px;
}

.event-card-excerpt {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 15px;
}

.btn-event {
  display: inline-block;
  background: var(--color-pink);
  color: var(--color-white);
  padding: 10px 25px;
  font-size: 14px;
  font-family: var(--font-opensans);
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.3s;
}

.btn-event:hover { background: var(--color-primary); color: var(--color-white); }

@media only screen and (max-width: 800px) {
  .events-hero { padding: 45px 30px 45px; }
  .events-hero-title { font-size: 45px; line-height: 60px; }
  .events-content { padding: 0; }
  .events-content-inner { padding: 45px 30px; margin-top: 0; }
  .events-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   BLOG PAGE
   ========================================================= */
.blog-header-section {
  padding: 50px 0 40px;
  background: rgba(238, 233, 230, 0);
}

.blog-logo img { max-width: 304px; margin: 0 auto; }

/* Blog navigation */
.blog-nav { display: flex; justify-content: center; gap: 42px; margin: 12px 0; }

.blog-nav a {
  font-size: 16px;
  color: var(--color-pink);
  font-family: var(--font-lato);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-nav a:hover,
.blog-nav a.current {
  color: var(--color-pink);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 10px;
}

/* Blog welcome */
.blog-welcome-section { padding: 40px; }

.blog-welcome-title {
  font-size: 24px;
  color: var(--color-pink);
  font-family: var(--font-lato);
  font-weight: 400;
  text-align: left;
  line-height: 28.8px;
  margin: 45px 50px 30px;
  font-weight: bold;
}

.blog-welcome-text {
  font-size: 18px;
  color: var(--color-grey);
  font-family: var(--font-lato);
  text-align: left;
  line-height: 30px;
  margin: 0 50px;
}

/* Blog post listing */
.blog-posts-section {
  background: rgba(241, 241, 241, 0.97);
  padding: 40px 0;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 30px;
  max-width: 1120px;
  margin: 0 auto;
}

.blog-post-card {
  background: var(--color-white);
  overflow: hidden;
}

.blog-post-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.blog-post-card-body { padding: 15px; }

.blog-post-categories {
  font-size: 18px;
  color: var(--color-green-solid);
  font-family: var(--font-lato);
  margin: 7px 0;
}

.blog-post-title {
  font-size: 29px;
  color: var(--color-pink);
  font-family: var(--font-lato);
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 1px;
  margin: 7px 0;
}

.blog-post-title a { color: inherit; text-decoration: none; }
.blog-post-title a:hover { text-decoration: underline; }

.blog-post-excerpt {
  font-size: 18px;
  color: var(--color-grey);
  font-family: var(--font-lato);
  line-height: 24px;
  margin: 5px 0;
}

/* Latest posts carousel */
.latest-posts-carousel { padding: 40px 0; }

.carousel-post-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding: 20px 0;
}

.carousel-post-image { width: 300px; flex-shrink: 0; }
.carousel-post-image img { width: 100%; }

.carousel-post-category {
  font-size: 18px;
  color: var(--color-green-solid);
  font-family: var(--font-lato);
  margin: 50px 0 0 10px;
}

.carousel-post-title {
  font-size: 25px;
  color: var(--color-pink);
  font-family: var(--font-lato);
  margin: 5px 0 5px 10px;
}

.carousel-post-title a { color: inherit; text-decoration: none; }

.carousel-post-desc {
  font-size: 15px;
  color: rgba(100, 101, 126, 1);
  font-family: var(--font-lato);
  margin: 5px 0 5px 10px;
  line-height: 1.5;
}

.carousel-post-date {
  font-size: 15px;
  color: var(--color-pink);
  font-family: var(--font-lato);
  font-style: italic;
  margin: 10px 0 10px 10px;
}

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 30px 0;
}

.blog-pagination a,
.blog-pagination span {
  font-size: 16px;
  color: var(--color-grey);
  font-family: var(--font-lato);
  padding: 8px 14px;
  text-decoration: none;
  border: 1px solid rgba(200,200,200,0.5);
}

.blog-pagination a:hover,
.blog-pagination span.current {
  background: var(--color-pink);
  color: var(--color-white);
  border-color: var(--color-pink);
}

@media only screen and (max-width: 800px) {
  .blog-posts-grid { grid-template-columns: 1fr; padding: 0; }
  .blog-welcome-title { margin: 0; font-size: 17px; }
  .blog-welcome-text { margin: 0; font-size: 14px; line-height: 20px; }
  .carousel-post-item { flex-direction: column; }
  .carousel-post-image { width: 100%; }
  .blog-nav { gap: 15px; }
}

/* =========================================================
   SINGLE BLOG POST
   ========================================================= */
.single-post-wrapper {
  max-width: 720px;
  margin: 60px auto;
  padding: 0 20px;
}

.single-post-title {
  font-size: 36px;
  color: var(--color-dark);
  font-family: var(--font-lato);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.single-post-meta {
  font-size: 14px;
  color: var(--color-grey);
  font-family: var(--font-lato);
  margin-bottom: 30px;
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.single-post-featured img {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 2px;
}

.single-post-content {
  font-size: 18px;
  color: var(--color-grey);
  font-family: var(--font-lato);
  line-height: 1.8;
}

.single-post-content h2 { font-size: 28px; color: var(--color-primary); margin: 30px 0 15px; font-weight: 700; }
.single-post-content h3 { font-size: 22px; color: var(--color-primary); margin: 25px 0 12px; font-weight: 700; }
.single-post-content p { margin-bottom: 20px; }
.single-post-content a { color: var(--color-green-solid); }
.single-post-content ul, .single-post-content ol { padding-left: 25px; margin-bottom: 20px; }
.single-post-content li { margin-bottom: 8px; }
.single-post-content blockquote {
  border-left: 4px solid var(--color-pink);
  padding: 15px 20px;
  background: rgba(238,233,230,0.5);
  font-style: italic;
  margin: 20px 0;
}

.single-post-back {
  display: inline-block;
  margin-top: 40px;
  color: var(--color-pink);
  font-family: var(--font-lato);
  font-size: 16px;
  text-decoration: none;
}

.single-post-back:hover { text-decoration: underline; }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-welcome {
  background: var(--color-pink);
  padding: -30px 40px 20px;
}

.about-welcome-title {
  font-size: 42px;
  color: rgba(241, 241, 241, 0.97);
  font-family: var(--font-lato);
  font-weight: 400;
  text-align: center;
  line-height: 55px;
  margin-bottom: 40px;
  font-weight: bold;
}

.about-welcome-text {
  font-size: 22px;
  color: rgba(241, 241, 241, 0.97);
  font-family: var(--font-lato);
  text-align: center;
  line-height: 35px;
  margin-bottom: 30px;
}

.about-quote-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 40px;
}

.about-quote {
  font-size: 37px;
  color: rgba(241, 241, 241, 0.97);
  font-family: var(--font-lato);
  font-weight: 400;
  text-align: center;
  line-height: 48px;
  margin-bottom: 20px;
  font-weight: bold;
}

.about-quote-author {
  font-size: 20px;
  color: var(--color-white);
  font-family: var(--font-lato);
  text-align: center;
  font-style: italic;
}

.about-author-section { padding: 80px 40px; }

.about-author-label {
  font-size: 31px;
  color: var(--color-pink);
  font-family: var(--font-lato);
  font-weight: 400;
  text-align: center;
  line-height: 39px;
  font-weight: bold;
  margin-bottom: 0;
}

.about-author-photo img {
  width: 353px;
  max-width: 100%;
  margin: 0 auto 15px;
}

.about-author-name {
  font-size: 32px;
  color: var(--color-pink);
  font-family: var(--font-lato);
  text-align: center;
  line-height: 38.4px;
  font-weight: bold;
  margin: 15px 0;
}

.about-author-bio {
  font-size: 20px;
  color: var(--color-grey);
  font-family: var(--font-lato);
  text-align: center;
  line-height: 25px;
  margin: 20px 0;
}

@media only screen and (max-width: 800px) {
  .about-welcome-title { font-size: 35px; line-height: 56px; }
  .about-welcome-text { font-size: 15px; line-height: 21px; }
  .about-quote { font-size: 25px; line-height: 33px; }
  .about-author-section { padding: 40px 15px 120px; }
  .about-author-photo img { width: 200px; }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-section {
  background: rgb(84, 84, 84);
  padding: 40px;
}

.contact-form-wrapper {
  background: var(--color-green-solid);
  padding: 10px;
}

.contact-form-inner {
  max-width: 600px;
  margin: 0 240px;
}

.contact-title {
  font-size: 40px;
  color: var(--color-pink);
  font-family: var(--font-lato);
  font-weight: 700;
  text-align: center;
  line-height: 48px;
  margin: 54px 0;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  font-size: 18px;
  color: rgba(27, 26, 23, 1);
  padding: 20px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.4);
  border-radius: 1px;
  border: 0px solid rgba(221,221,221,1);
  background: rgba(241, 241, 241, 0.97);
  outline: none;
  margin-bottom: 25px;
  font-family: var(--font-lato);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(27, 26, 23, 1);
}

.contact-form textarea {
  height: 200px;
  resize: vertical;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.btn-contact {
  background: var(--color-pink);
  color: rgba(241, 241, 241, 0.97);
  font-family: var(--font-lato);
  font-weight: 700;
  font-size: 25px;
  padding: 15px 70px;
  border-radius: 1px;
  border: none;
  box-shadow: 0 1px 5px rgba(0,0,0,0.4);
  cursor: pointer;
  transition: background 0.3s;
  align-self: flex-start;
}

.btn-contact:hover { background: var(--color-primary); }

@media only screen and (max-width: 800px) {
  .contact-section { padding: 0; background: transparent; }
  .contact-form-inner { margin: 0; }
  .contact-title { font-size: 30px; line-height: 36px; margin: 45px 0 33px; }
  .contact-form-row { grid-template-columns: 1fr; }
  .btn-contact { width: 100%; font-size: 22px; padding: 10px; margin: 11px 0; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--color-pink);
  padding: 40px;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
}

.footer-logo img {
  max-width: 331px;
  margin: 0 auto 20px;
  box-shadow: none;
}

.footer-about {
  font-size: 16px;
  color: rgba(246, 246, 246, 0.97);
  font-family: var(--font-opensans);
  text-align: center;
  line-height: 24px;
  margin-bottom: 20px;
}

.footer-about strong { font-weight: bold; }

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column-title {
  font-size: 18px;
  color: rgba(246, 246, 246, 0.97);
  font-family: var(--font-opensans);
  font-weight: bold;
  text-align: center;
  line-height: 42px;
  margin-bottom: 5px;
}

.footer-links li { margin-bottom: 3px; }

.footer-links a {
  font-size: 15px;
  color: var(--color-white);
  font-family: var(--font-opensans);
  text-decoration: none;
  text-align: center;
  display: block;
  line-height: 24px;
}

.footer-links a:hover { text-decoration: underline; }

.footer-contact-info {
  font-size: 15px;
  color: rgba(246, 246, 246, 0.97);
  font-family: var(--font-opensans);
  text-align: center;
  line-height: 24px;
}

.footer-contact-info a { color: var(--color-green-solid); text-decoration: none; }
.footer-contact-info a:hover { text-decoration: underline; }

.footer-legal {
  text-align: center;
  margin: 20px 0 10px;
}

.footer-legal a {
  font-size: 15px;
  color: rgba(241, 241, 241, 0.97);
  font-family: var(--font-opensans);
  text-decoration: none;
}

.footer-legal a:hover { text-decoration: underline; }

.footer-legal .separator { color: rgba(241, 241, 241, 0.97); margin: 0 5px; }

.footer-copyright {
  font-size: 15px;
  color: var(--color-white);
  font-family: var(--font-opensans);
  text-align: center;
  line-height: 30px;
}

/* Newsletter footer section */
.footer-newsletter-section {
  background: var(--color-pink);
  padding: 40px;
}

.footer-newsletter-inner {
  max-width: 960px;
  margin: 0 auto;
}

.footer-newsletter-title {
  font-size: 32px;
  color: rgba(241, 241, 241, 0.97);
  font-family: var(--font-lato);
  font-weight: bold;
  font-style: italic;
  text-align: center;
  line-height: 38.4px;
  margin-bottom: 10px;
}

.footer-newsletter-text {
  font-size: 20px;
  color: rgba(241, 241, 241, 0.97);
  font-family: var(--font-lato);
  text-align: center;
  line-height: 30px;
  margin-bottom: 25px;
}

.footer-subscribe-form { display: flex; gap: 0; max-width: 600px; margin: 0 auto; }

.footer-subscribe-form input[type="email"] {
  flex: 1;
  padding: 15px 20px;
  border: none;
  font-size: 16px;
  font-family: var(--font-lato);
  outline: none;
}

.btn-subscribe {
  background: var(--color-green-solid);
  color: var(--color-white);
  font-family: var(--font-lato);
  font-weight: 700;
  font-size: 20px;
  padding: 15px 90px;
  border: 3px solid transparent;
  border-bottom-color: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.3s;
}

.btn-subscribe:hover { background: var(--color-primary); }

@media only screen and (max-width: 800px) {
  .site-footer { padding: 0; }
  .footer-inner { padding: 15px; }
  .footer-columns { grid-template-columns: 1fr; gap: 15px; }
  .footer-logo img { max-width: 192px; }
  .footer-newsletter-section { padding: 5px; }
  .footer-subscribe-form { flex-direction: column; }
  .btn-subscribe { width: 100%; padding: 5px; font-size: 20px; }
}

/* =========================================================
   PAGE TEMPLATES - GENERIC
   ========================================================= */
.page-content-wrapper {
  max-width: 960px;
  margin: 60px auto;
  padding: 0 20px;
}

.page-title {
  font-size: 42px;
  color: var(--color-primary);
  font-family: var(--font-poppins);
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.3;
}

.page-content {
  font-size: 18px;
  color: var(--color-text);
  font-family: var(--font-opensans);
  line-height: 1.8;
}

/* =========================================================
   POPUP MODAL
   ========================================================= */
.popup-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 300;
  justify-content: center;
  align-items: center;
}

.popup-overlay.active { display: flex; }

.popup-box {
  background: var(--color-green-solid);
  border: 3px solid var(--color-primary);
  border-radius: 6px;
  max-width: 600px;
  width: 90%;
  padding: 30px;
  position: relative;
  box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2);
  max-height: 90vh;
  overflow-y: auto;
}

.popup-close {
  position: absolute;
  right: 15px; top: 15px;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 30px; height: 30px;
  font-size: 20px;
  color: var(--color-primary);
}

.popup-title {
  font-size: 32px;
  color: rgba(39, 51, 41, 1);
  font-family: var(--font-raleway);
  font-weight: 600;
  text-align: center;
  line-height: 45px;
  margin-bottom: 10px;
}

.popup-subtitle {
  font-size: 20px;
  color: rgba(39, 51, 41, 1);
  font-family: var(--font-opensans);
  font-weight: 600;
  text-align: center;
  line-height: 26px;
  margin-bottom: 15px;
}

.popup-form input[type="email"],
.popup-form input[type="text"] {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(176, 186, 202, 1);
  border-radius: 5px;
  font-size: 15px;
  background: var(--color-white);
  margin-bottom: 10px;
  font-family: var(--font-lato);
  outline: none;
}

.popup-note {
  font-size: 15px;
  color: rgba(39, 51, 41, 1);
  font-family: var(--font-opensans);
  font-weight: 600;
  text-align: center;
  margin-top: 10px;
}

.btn-popup-register {
  width: 100%;
  background: var(--color-pink);
  color: var(--color-white);
  font-family: var(--font-raleway);
  font-weight: 600;
  font-size: 24px;
  padding: 6px 100px 7px;
  border: none;
  cursor: pointer;
  line-height: 24px;
  transition: background 0.3s;
  margin-top: 15px;
}

.btn-popup-register:hover { background: var(--color-primary); }

/* =========================================================
   SOS RESET KIT POPUP (Home popup)
   ========================================================= */
.popup-sos-title {
  font-size: 18px;
  color: var(--color-pink);
  font-family: var(--font-poppins);
  font-weight: 400;
  text-align: center;
  line-height: 27.4px;
  margin-bottom: 15px;
}

.btn-popup-start {
  width: 100%;
  background: var(--color-pink);
  color: var(--color-white);
  font-family: var(--font-lato);
  font-weight: 400;
  font-size: 24px;
  padding: 15px 100px;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: background 0.3s;
  margin-top: 15px;
}

.btn-popup-start:hover { background: var(--color-primary); color: var(--color-white); }

/* =========================================================
   UTILITIES
   ========================================================= */
.text-center { text-align: center; }
.text-pink { color: var(--color-pink); }
.text-primary { color: var(--color-primary); }
.text-white { color: var(--color-white); }
.text-green { color: var(--color-green); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none; }

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* =========================================================
   WORDPRESS CORE CLASSES
   ========================================================= */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 14px; color: var(--color-grey); text-align: center; margin-top: 5px; }
.alignleft { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }
.aligncenter { display: block; margin: 0 auto; }
.wp-block-image { margin: 20px 0; }
.has-text-align-center { text-align: center; }
