/**********
NEU KITCHENS — theme-specific overrides
Loaded after the ported design CSS. Put WordPress-specific fixes and
small tweaks here rather than editing the ported neu-*.css files.
**********/

:root {
    --nuvo-main: #231F20;
}

/* The fixed header cluster is the nav bar PLUS the centred logo below it
   (#logoarea is absolute, ~210px tall total), so content must clear ~210px. */
.nuvo-container > main {
    padding-top: 210px;
}
h1, h2, h3, h4 {
    font-weight: 600;
}

.nuvo-container.accent h2 {
    margin-bottom: 0;
}

li.current-menu-item > a {
    color: var(--nuvo-accent);
}

.neu-sitemap-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

.neu-sitemap-wrap h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.neu-sitemap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.neu-sitemap-col h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--nuvo-accent);
}

.neu-sitemap-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.neu-sitemap-col ul ul {
    padding-left: 1.2rem;
}

.neu-sitemap-col li {
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.neu-sitemap-col a {
    color: var(--nuvo-main);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.neu-sitemap-col a:hover {
    color: var(--nuvo-accent);
}

@media (max-width: 768px) {
    .neu-sitemap-grid { grid-template-columns: 1fr; }
}

.companylogo img {
    filter: drop-shadow(0px 0px 1px rgb(0 0 0 / 0.8));
}

.neu-page-spacer {
    height: 200px;
}

h2 {
    font-size: 24px;
    color: var(--nuvo-slate-dark);
}

/* A full-bleed hero block sits behind the centred logo (as on the live site),
   so it manages its own spacing instead of being pushed down. */
.nuvo-container > main > .homehero:first-child {
    margin-top: -210px;
}

/* Belt-and-braces: the sliding mobile menu is hidden on desktop and only
   revealed by the plugin (.sm_menu_outer.active) at mobile widths. */
@media (min-width: 993px) {
    .mobile_menu { display: none !important; }
}

.home .negativeblock {
    padding-top: 0;
}

main.home {
    background: #fff;
    overflow: hidden;
}

main.home > * {
    clear: both;
}

.minicta {
    float: left;
    width: 100%;
    margin-top: 10px;
}

.minicta a {
    float: left;
    width: auto;
    padding: 12px 15px;
    border: 2px solid var(--nuvo-accent);
    background: var(--nuvo-accent);
    border-radius: 6px;
    color: #fff;
    font-weight: 600;
    line-height: 1;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.negativeblock .textandimage {
    padding: 6rem 0;
}

.textandimage + .textandimage {
    border-top: 1px solid var(--nuvo-accent);
}

.textblock p:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

.pagecontent .textandimage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pagecontent .textandimage.right .insetimage {
    order: 2;
}

.pagecontent .textandimage.left .insetimage {
    order: -1;
}

.pagecontent .textandimage .insetimage {
    min-height: 300px;
    height: calc(100% + 40px);
    overflow: hidden;
    border-radius: 6px;
}

.pagecontent .textandimage .insetimage img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
}

.textandimage .insetimage img {
    border-radius: 6px;
    overflow: hidden;
    padding: 0;
    background: none;
}

.minicta a:hover {
    background: #1d1c23;
    border-color: #1d1c23;
    color: #fff;
}

.featured-block h2 {
    color: var(--nuvo-accent);
}

.featured-block .textblock,
.featured-block .textblock p {
    color: #fff;
}

.featured-block .insetimage.circular img {
    border: 8px solid #fff;
}

.neu-cta-bar {
    background: #ededed;
    padding: 4.5rem 1.5rem;
    width: 100%;
    display: block;
    float: left;
    clear: both;
    border-radius: 6px;
    margin-top: 30px;
}

.neu-cta-inner {
    text-align: center;
}

.neu-cta-heading {
    color: var(--nuvo-main);
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-size: 22px;
}

.neu-cta-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 14px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.neu-cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 0.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 16px;
    color: var(--nuvo-main);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.neu-cta-label {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1;
}

.neu-cta-sub {
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(29,28,35,0.45);
    margin-bottom: 5px;
    line-height: 1;
}

.neu-cta-btn--email {
    font-size: 13px;
    word-break: break-all;
}

.neu-cta-btn:hover {
    border-color: var(--nuvo-accent);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    color: var(--nuvo-main);
}

.neu-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--nuvo-accent);
    border-radius: 50%;
    color: #fff;
    flex-shrink: 0;
}

.neu-partners {
    background: var(--nuvo-main);
    padding: 6rem 1.5rem;
    width: 100%;
    text-align: center;
}

.neu-partners-inner {
}

.neu-partners h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 8px;
}

.neu-partners p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.neu-partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.neu-partner-logo {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.neu-partners-slider {
    display: none;
}

.neu-partners-slider .slick-dots {
    bottom: -36px;
}

.neu-partners-slider .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0 3px;
}

.neu-partners-slider .slick-dots li button:before {
    width: 10px;
    height: 10px;
    background-color: #fff;
    opacity: 0.3;
}

.neu-partners-slider .slick-dots li.slick-active button:before {
    background-color: #fff;
    opacity: 1;
}

.neu-partners-slide {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 4px;
}

@media screen and (max-width: 768px) {
    .neu-partners-grid {
        display: none;
    }

    .neu-partners-slider {
        display: block;
    }

    .neu-partners p {
        margin-bottom: 0;
    }
}

.neu-partner-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%) brightness(2);
    opacity: 0.7;
    transition: opacity 0.2s, filter 0.2s;
}

.neu-partner-logo:hover img {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}

/* --- Gallery strip --- */
.neu-gallery-strip {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.neu-gallery-strip {
    flex-wrap: wrap;
}

.neu-gallery-strip img {
    width: calc(100% / 6);
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    section.textandimage {
        gap: 20px;
    }
    .pagecontent .textandimage {
        gap: 2rem;
    }
    .neu-gallery-strip img {
        width: calc(100% / 3);
    }
}

@media (max-width: 767px) {
    .textandimage {
        display: flex !important;
        flex-direction: column !important;
        float: none !important;
    }
    .textandimage .textblock,
    .textandimage .insetimage {
        width: 100% !important;
        float: none !important;
    }
    .textandimage.right {
        flex-direction: column-reverse !important;
    }
    .textandimage.left .textblock {
        order: -1 !important;
    }
    .pagecontent .textandimage {
        display: flex !important;
        flex-direction: column !important;
    }
    .pagecontent .textandimage .insetimage {
        height: auto;
        max-height: 400px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .neu-cta-buttons.neu-cta-buttons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .neu-gallery-strip img {
        width: 50%;
    }
}

/* --- Page sections spacing --- */
.pagecontentwrapper {
    padding: 0;
}

.negativeblock .textandimage,
.pagecontent .textandimage {
    padding: 6rem 0;
}

.pagecontent .textandimage:first-child {
    padding-top: 6rem;
}

.pagecontent .textandimage:last-child {
    padding-bottom: 6rem;
}

/* --- Inner Hero --- */
.inner-hero {
    position: relative;
    background: var(--nuvo-main) center / cover no-repeat;
    padding: 8rem 2rem 4rem;
    text-align: center;
    color: #fff;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

.inner-hero-content {
    position: relative;
    z-index: 1;
}

.inner-hero h1 {
    font-size: 42px;
    font-weight: 600;
    margin: 0 0 1rem;
    color: #fff;
}

.inner-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

.insidewrapper p {
    padding-bottom: 0;
}

.homemain h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

/* --- Intro text (WYSIWYG below heading) --- */
.intro-text {
    font-size: 18px;
    width: 800px;
    margin: 0 auto;
    max-width: 100%;
}

/* --- Footer --- */
.footer {
    display: block;
    position: relative;
    bottom: auto;
    text-align: left;
    font-size: inherit;
    background: var(--nuvo-main);
    color: rgba(255,255,255,0.75);
}

.footer:before {
    position: absolute;
    left: auto;
    width: 50px;
    height: 45px;
    bottom: 33px;
    border: 1px solid #3A3637;
    right: 10px;
    background-position: -4px center;
    background-size: 50px 50px;
    background-color: #231F20;
}

.footer-main {
    padding: 6.5rem 2rem 1.25rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr 1.3fr 1.1fr;
    gap: 2rem;
}

.footer-col--logo {
    display: flex;
    align-items: flex-start;
}

.footer-logo {
    display: inline-block;
    text-decoration: none;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-heading {
    font-size: 12px;
    font-weight: 600;
    color: var(--nuvo-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 0.75rem;
}

.footer-address,
.footer-address-link {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255,255,255,0.75);
    margin: 0;
    display: block;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-address-link:hover {
    color: #fff;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.footer-contact-icon {
    color: var(--nuvo-accent);
    flex-shrink: 0;
    position: relative;
    top: -2px;
}

.footer-contact-label {
    display: none;
    font-size: 10px;
    font-weight: 600;
    color: var(--nuvo-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-contact-list a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-contact-list a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    transition: background 0.2s, color 0.2s;
}

.footer-social-btn:hover {
    background: #d67e06;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2.5rem;
    padding: 1.75rem 2rem 0.6rem;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom .copyright {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

@media screen and (max-width: 575px) {
  .footer-bottom .copyright {
    padding-bottom: 0 !important;
  }

  .footer:before {
    display: none;
  }

  .pagecontentwrapper {
    padding: 20px;
  }
}

@media screen and (max-width: 479px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col--logo {
    justify-content: center;
  }

  .footer-contact-icon {
    display: none;
  }

  .footer-contact-label {
    display: block;
  }

  .footer-col--contact .footer-heading {
    display: none;
  }

  .footer-contact-list li {
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-main {
    padding: 5.5rem 2rem 2.25rem;
  }
}

@media screen and (max-width: 420px) {
  .footer-legal {
    flex-direction: column;
    align-items: center;
    gap: 10px !important;
  }
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 18px;
    line-height: 1;
    padding-bottom: 12px;
}

.footer-legal a {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--nuvo-accent);
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
}

.stellarnav > ul {
    position: relative;
}

.stellarnav > ul > li > a.active {
    color: var(--nuvo-accent) !important;
}

.stellarnav .nav-indicator {
    position: absolute;
    bottom: 0;
    height: 3px;
    background: var(--nuvo-accent);
    transition: left 0.35s ease, width 0.35s ease;
    pointer-events: none;
    border-radius: 2px;
}


::selection {
    background: var(--nuvo-accent);
    color: #fff;
}
::-moz-selection {
    background: var(--nuvo-accent);
    color: #fff;
}

.cuheader .companylogo {
    transition: opacity 240ms ease, visibility 240ms ease;
}

.cuheader.logo-faded .companylogo {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Tabbed Galleries */
.neu-tabbed-galleries { padding: 6rem 0; clear: both; }
.neu-tg-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; justify-content: center; width: 100%; }
.neu-tg-pill {
    padding: 10px 24px;
    border: 1px solid #ccc;
    border-radius: 50px;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}
.neu-tg-pill:hover { border-color: var(--nuvo-accent); background: var(--nuvo-accent); color: #fff; }
.neu-tg-pill.active {
    background: #1d1c23;
    color: #fff;
    border-color: #1d1c23;
}
.neu-tg-panel { display: none; }
.neu-tg-panel.active { display: block; }
.neu-tg-desc {
    text-align: center;
    margin-bottom: 24px;
    font-size: 16px;
    color: #666;
}
.neu-tg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.neu-tg-item { display: block; overflow: hidden; border-radius: 4px; }
.neu-tg-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, opacity 0.5s ease;
}
.neu-tg-item:hover img { transform: scale(1.05); opacity: 0.75; }
@media (max-width: 768px) {
    .neu-tg-grid { grid-template-columns: repeat(2, 1fr); }
    .neu-tg-item img { height: 180px; }
}
@media (max-width: 480px) {
    .neu-tg-grid { grid-template-columns: 1fr; }
}

/* Testimonials page block */
.neu-tp-outer { padding: 6rem 0; clear: both; background-color: #fdf4ed; }
.neu-tp-section-heading { font-size: 32px; font-weight: 600; color: #1d1c23; margin-bottom: 2.5rem; }
.neu-tp-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
}
.neu-tp-card {
    background: #fff;
    border: 1px solid #eee;
    border-left: 3px solid #ff9d17;
    border-radius: 0 12px 12px 0;
    padding: 1.8rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.neu-tp-stars { color: #ff9d17; font-size: 25px; letter-spacing: 2px; margin-bottom: -1px; display: flex; gap: 2px; margin-left: -4px; }
.neu-tp-content { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.neu-tp-headline {
    font-size: 20px;
    font-weight: 600;
    color: #1d1c23;
    line-height: 1.45;
    margin: 0;
    padding-bottom: 0;
    min-height: calc(20px * 1.45 * 2);
}
.neu-tp-body {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin: 0;
    padding-bottom: 0;
}
.neu-tp-author-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid #eee;
}
.neu-tp-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ff9d17;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}
.neu-tp-author-info { display: flex; flex-direction: column; gap: 2px; }
.neu-tp-name { font-size: 13px; font-weight: 600; color: #1d1c23; }
.neu-tp-date { font-size: 11px; color: #999; }
@media (max-width: 900px) { .neu-tp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .neu-tp-grid { grid-template-columns: 1fr; } .neu-tp-card { padding: 1.4rem 1.6rem; } }

/* Gallery block */
.neu-gallery { padding: 6rem 0; clear: both; }
.neu-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
}
.neu-gallery-item { display: block; overflow: hidden; border-radius: 4px; }
.neu-gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, opacity 0.5s ease;
}
.neu-gallery-item:hover img { transform: scale(1.05); opacity: 0.75; }
@media (max-width: 991px) {
    .neu-gallery-item img { height: auto; aspect-ratio: 4 / 3; }
    .neu-page-spacer { height: 100px; }
}
@media (max-width: 768px) {
    .neu-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .neu-gallery-grid { grid-template-columns: 1fr; }
}

/* Contact Info block */
.neu-contact { clear: both; padding: 6rem 0; }
.neu-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    border-radius: 11px;
    overflow: hidden;
}
.neu-contact-left {
    background: #1d1c23;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.neu-contact-heading {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}
.neu-contact-details { display: flex; flex-direction: column; gap: 14px; }
.neu-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.55;
}
.neu-contact-row a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
}
.neu-contact-row a:hover { color: #ff9d17; }
.neu-contact-icon {
    width: 20px;
    flex-shrink: 0;
    color: #ff9d17;
    margin-top: 2px;
    display: flex;
    align-items: flex-start;
}
.neu-contact-icon--w3w {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.4;
}
.neu-contact-section { display: flex; flex-direction: column; gap: 6px; }
.neu-contact-subheading {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ff9d17;
    margin: 0;
}
.neu-contact-section > p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    margin: 0;
    line-height: 1.6;
}
.neu-contact-hours { display: flex; flex-direction: column; gap: 6px; }
.neu-contact-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.neu-contact-hours-day { font-weight: 500; color: #fff; }
.neu-contact-right { position: relative; overflow: hidden; background: #1d1c23; padding: 2rem; }
.neu-contact-map { width: 100%; height: 100%; min-height: 520px; border-radius: 12px; overflow: hidden; }
.neu-contact-map iframe { width: 100%; height: 100%; min-height: 520px; display: block; }
@media (max-width: 900px) {
    .neu-contact-inner { grid-template-columns: 1fr; }
    .neu-contact-left { padding: 3.5rem 2rem; }
    .neu-contact-map, .neu-contact-map iframe { min-height: 360px; }
}

/* Contact Form Section */
/* Contact Form Section */
.neu-form-section {
    padding: 6rem 0;
    background: #f5f5f5;
}
.neu-form-inner {
    max-width: 100%;
    width: 450px;
    margin: 0 auto;
    padding: 0 2rem;
}
.neu-form-heading {
    font-size: 36px;
    font-weight: 700;
    color: #1d1c23;
    margin-bottom: 0.5rem;
    text-align: center;
}
.neu-form-section .gform_wrapper {
    height: auto !important;
    overflow: hidden;
}
.neu-form-section .gform_wrapper form {
    float: none !important;
}
.neu-form-section .gform_wrapper.gravity-theme .gfield_label {
    color: #1d1c23;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-bottom: 0.4rem;
}
.neu-form-section .gform_wrapper.gravity-theme .gfield_required {
    color: var(--nuvo-accent);
    font-size: 0;
}
.neu-form-section .gform_wrapper.gravity-theme .gfield_required .gfield_required_asterisk {
    display: none;
}
.neu-form-section .gform_wrapper.gravity-theme .gfield_required::after {
    content: "*";
    font-size: 1.4rem;
    color: var(--nuvo-accent);
}

.gfield_required.gfield_required_text::after {
    display: none !important;
}
.neu-form-section .gform_wrapper.gravity-theme input[type=text],
.neu-form-section .gform_wrapper.gravity-theme input[type=email],
.neu-form-section .gform_wrapper.gravity-theme input[type=tel],
.neu-form-section .gform_wrapper.gravity-theme input[type=url],
.neu-form-section .gform_wrapper.gravity-theme input[type=number],
.neu-form-section .gform_wrapper.gravity-theme input[type=password],
.neu-form-section .gform_wrapper.gravity-theme select,
.neu-form-section .gform_wrapper.gravity-theme textarea {
    background: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    color: #1d1c23 !important;
    padding: 0.9rem 1rem !important;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.neu-form-section .gform_wrapper.gravity-theme input:focus,
.neu-form-section .gform_wrapper.gravity-theme textarea:focus,
.neu-form-section .gform_wrapper.gravity-theme select:focus {
    border-color: var(--nuvo-accent) !important;
    box-shadow: 0 0 0 3px rgba(255, 157, 23, 0.12) !important;
    outline: none;
}
.neu-form-section .gform_wrapper.gravity-theme textarea {
    min-height: 9rem;
    max-height: 12rem;
    height: 9rem;
    resize: vertical;
}
.neu-form-section .gform_wrapper .gform_footer {
    text-align: center;
    padding-top: 1rem;
}
.neu-form-section .gform_wrapper .gform_footer input.gform_button {
    border: 0 !important;
    color: #fff;
    background: var(--nuvo-accent);
    padding: 1.6rem 0 !important;
    margin-top: -10px;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.neu-form-section .gform_wrapper .gform_footer input.gform_button:hover {
    background: #1d1c23;
}
.neu-form-section .gform_wrapper.gravity-theme .gfield_validation_message,
.neu-form-section .gform_wrapper.gravity-theme .validation_message {
    color: #e74c3c;
}
.neu-form-section .gform_wrapper.gravity-theme .gform_validation_errors {
    border-color: #e74c3c;
}
.neu-form-section .gform_wrapper.gravity-theme .gform_confirmation_message {
    color: #1d1c23;
    text-align: center;
    font-size: 1.1rem;
    padding: 2rem 0;
}
.neu-form-section .gform_wrapper.gravity-theme .gform_fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1.5rem;
}
.neu-form-section .gform_wrapper.gravity-theme .gfield--type-name,
.neu-form-section .gform_wrapper.gravity-theme .gfield--type-textarea,
.neu-form-section .gform_wrapper.gravity-theme .gform_footer {
    grid-column: 1 / -1;
}
@media (max-width: 768px) {
    .neu-form-inner { padding: 0 1.5rem; }
    .neu-form-heading { font-size: 28px; }
    .neu-form-section { padding: 4rem 0; }
    .neu-form-section .gform_wrapper.gravity-theme .gform_fields {
        grid-template-columns: 1fr;
    }
}

/* WYSIWYG block */
.neu-wysiwyg { padding: 4rem 0; clear: both; }
.neu-wysiwyg-content { max-width: 860px; margin: 0 auto; }
.neu-wysiwyg-content h1, .neu-wysiwyg-content h2, .neu-wysiwyg-content h3 { margin-bottom: 1rem; }
.neu-wysiwyg-content p { margin-bottom: 1.2rem; line-height: 1.7; }
.neu-wysiwyg-content ul, .neu-wysiwyg-content ol { margin: 0 0 1.2rem 1.5rem; }
.neu-wysiwyg-content a { color: var(--nuvo-accent, #ff9d17); }
.neu-wysiwyg-content iframe { max-width: 100%; border-radius: 10px; overflow: hidden; }

/* Testimonials grid block */
.neu-testimonials-grid-outer { padding: 6rem 0; clear: both; background: #f8f8f8; }
.neu-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}
.neu-testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 2.4rem 2.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border-top: 3px solid var(--nuvo-accent, #ff9d17);
}
.neu-testimonial-card::before {
    content: '\201C';
    font-size: 7rem;
    line-height: 1;
    color: var(--nuvo-accent, #ff9d17);
    opacity: 0.15;
    position: absolute;
    top: 1rem;
    right: 1.8rem;
    font-family: Georgia, serif;
}
.neu-tc-stars { display: flex; gap: 3px; }
.neu-tc-headline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--nuvo-main, #1d1c23);
    margin: 0 0 0.4rem;
}
.neu-tc-body { font-size: 1.4rem; line-height: 1.7; color: #555; flex: 1; }
.neu-tc-body p { margin: 0; }
.neu-tc-author {
    padding-top: 1.2rem;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.neu-tc-author-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--nuvo-main, #1d1c23);
    letter-spacing: 0.03em;
}
@media (max-width: 900px) {
    .neu-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .neu-testimonials-grid { grid-template-columns: 1fr; }
    .neu-testimonial-card { padding: 2rem; }
}


/* --- Single Post --- */
.neu-post-hero {
    width: 100%;
    height: 540px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
}

.neu-post-header {
    padding: 4rem 2rem 0;
    background: #fff;
    position: relative;
    z-index: 1;
}

.neu-post-header-inner {
    max-width: 860px;
    margin: 0 auto;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    text-align: center;
}

.neu-post-header-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
}

.neu-post-header-cats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.neu-post-cat-pill {
    display: inline-block;
    padding: 5px 14px;
    border: 1px solid var(--nuvo-accent);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--nuvo-accent);
    text-decoration: none;
    line-height: 1;
    margin-bottom: 10px;
    transition: background 0.2s, color 0.2s;
}

.neu-post-cat-pill:hover {
    background: var(--nuvo-accent);
    color: #fff;
}

.neu-post-header-date {
    font-size: 13px;
    color: rgba(0,0,0,0.45);
    letter-spacing: 0.04em;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
}

.neu-post-header-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--nuvo-main);
    margin: 0;
}

.neu-post-content-wrap {
    padding: 4rem 2rem 6rem;
    background: #fff;
    position: relative;
    z-index: 1;
}

.neu-post-content-inner {
    max-width: 860px;
    margin: 0 auto;
}

.neu-post-content-inner p { line-height: 1.75; margin-bottom: 0; }
.neu-post-content-inner h2 { font-size: 28px; font-weight: 600; margin: 2.5rem 0 1rem; }
.neu-post-content-inner h3 { font-size: 22px; font-weight: 600; margin: 2rem 0 0.8rem; }
.neu-post-content-inner img { max-width: 100%; height: auto; border-radius: 6px; margin: 1.5rem 0; }
.neu-post-content-inner ul, .neu-post-content-inner ol { margin: 0 0 1.4rem 0; line-height: 1.75; padding: 0; list-style: none; }
.neu-post-content-inner ul li, .neu-post-content-inner ol li { padding: 0.55rem 0 0.55rem 1.6rem; position: relative; border-bottom: 1px solid rgba(0,0,0,0.06); }
.neu-post-content-inner ul li:first-child, .neu-post-content-inner ol li:first-child { border-top: 1px solid rgba(0,0,0,0.06); }
.neu-post-content-inner ul li::before { content: ''; position: absolute; left: 0px; top: 16px; transform: translateY(-50%); width: 7px; height: 7px; border-radius: 50%; background: var(--nuvo-accent); }
.neu-post-content-inner ol { counter-reset: neu-ol; }
.neu-post-content-inner ol li { counter-increment: neu-ol; }
.neu-post-content-inner ol li::before { content: counter(neu-ol); position: absolute; left: 6px; top: 0.85rem; font-size: 12px; font-weight: 700; color: var(--nuvo-accent); line-height: 1.75; }
.neu-post-content-inner a { color: var(--primary); }
.neu-post-content-inner a:hover { color: var(--primary-alt); }

@media (max-width: 768px) {
    .neu-post-hero { height: 320px; }
    .neu-post-header-title { font-size: 28px; }
    .neu-post-header-meta { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* --- Post Share Bar --- */
.neu-post-share {
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
}

.neu-post-share-label {
    font-size: 22px;
    font-weight: 600;
    color: var(--nuvo-main);
    margin-bottom: -6px !important;
    padding-bottom: 0;
    display: block;
}

.neu-post-share-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.neu-post-share-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid var(--nuvo-accent);
    color: var(--nuvo-accent);
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-family: inherit;
    flex-shrink: 0;
}

.neu-post-share-icon:hover {
    background: var(--nuvo-accent);
    color: #fff;
}

.neu-post-share-icon i {
    color: var(--nuvo-accent) !important;
}

.neu-post-share-icon:hover i,
.neu-post-share-icon:hover i.fas,
.neu-post-share-icon:hover i.fab {
    color: #fff !important;
}

.neu-post-copy-msg {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
    min-height: 1.4em;
}

/* --- Blog Page --- */
.neu-blog-wrap {
    padding: 3rem 2rem 3rem;
    max-width: 1280px;
    margin: 70px auto;
    background: #f7f7f7;
    clear: both;
    border-radius: 8px;
    width: 95%;
}

.neu-blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    width: 100%;
}

.neu-blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s, transform 0.25s;
}

.neu-blog-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.neu-blog-card-img-wrap {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #f0f0f0;
}

.neu-blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.neu-blog-card:hover .neu-blog-card-img-wrap img {
    transform: scale(1.04);
}

.neu-blog-card-img-placeholder {
    width: 100%;
    height: 100%;
    background: #e8e8e8;
}

.neu-blog-card-body {
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.neu-blog-card-cats {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 0.7rem;
}

.neu-blog-card-cat,
.nuvo-container .neu-blog-card-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--nuvo-accent);
    text-decoration: none;
}

.neu-blog-card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 0.7rem;
    color: var(--nuvo-main);
}

.neu-blog-card-title a {
    color: inherit;
    text-decoration: none;
}

.neu-blog-card-title a:hover {
    color: var(--nuvo-accent);
}

.neu-blog-card-excerpt {
    font-size: 13px;
    color: rgba(0,0,0,0.7);
    line-height: 1.6;
    margin: 0 0 1.2rem;
    flex: 1;
}

.neu-blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0,0,0,0.07);
    padding-top: 0.9rem;
    margin-top: auto;
}

.neu-blog-card-date {
    font-size: 11px;
    color: rgba(0,0,0,0.35);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.neu-blog-card-read,
.nuvo-container .neu-blog-card-read {
    font-size: 12px;
    font-weight: 600;
    color: var(--nuvo-accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.neu-blog-card-read:hover,
.nuvo-container .neu-blog-card-read:hover { color: #1d1c23; }

.neu-blog-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.neu-blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.12);
    font-size: 14px;
    font-weight: 600;
    color: var(--nuvo-main);
    line-height: 2;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    padding-top: 4px;
}

.neu-blog-pagination a.next.page-numbers,
.neu-blog-pagination a.prev.page-numbers {
    padding-top: 0;
}

.neu-blog-pagination .page-numbers.current,
.neu-blog-pagination .page-numbers:hover {
    background: var(--nuvo-accent);
    border-color: var(--nuvo-accent);
    color: #fff;
}

@media (max-width: 1100px) {
    .neu-blog-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .neu-blog-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .neu-blog-intro-heading { font-size: 28px; }
}

@media (max-width: 480px) {
    .neu-blog-grid { grid-template-columns: 1fr; }
}
