
/* ==========================================
   FONT FACE
========================================== */

@font-face {
    font-family: "Nexa";
    src:
        url("/fonts/NexaRegular.woff2") format("woff2"),
        url("/fonts/NexaRegular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Nexa";
    src:
        url("/fonts/NexaBold.woff2") format("woff2"),
        url("/fonts/NexaBold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Nexa";
    src:
        url("/fonts/Nexa-Black.woff2") format("woff2"),
        url("/fonts/Nexa-Black.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ==========================================
   RESET
========================================== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Nexa", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================
   HEADINGS
========================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 20px;
    font-family: "Nexa", Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #111;
}

h1 {
    font-size: 56px;
}

h2 {
    font-size: 44px;
}

h3 {
    font-size: 34px;
}

h4 {
    font-size: 28px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 18px;
}

/* ==========================================
   TEXT
========================================== */

p {
    margin: 0 0 20px;
}

strong,
b {
    font-weight: 700;
}

small {
    font-size: 14px;
}

/* ==========================================
   LINKS
========================================== */

a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: var(--pink);
}

/* ==========================================
   BUTTONS
========================================== */

button,
.btn,
input[type="submit"] {
    font-family: "Nexa", sans-serif;
    font-weight: 700;
    font-size: 16px;
}

/* ==========================================
   FORMS
========================================== */

input,
textarea,
select {
    width: 100%;
    font-family: "Nexa", sans-serif;
    font-size: 16px;
}

/* ==========================================
   LISTS
========================================== */

ul,
ol {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================
   NAVIGATION
========================================== */

nav a {
    font-family: "Nexa", sans-serif;
    font-size: 16px;
    font-weight: 700;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 992px) {
    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 34px;
    }

    h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 20px;
    }
}
.bg-teal {
    background-color: var(--teal);
}
/* ===== TOP BAR ===== */
#topbar {
    background: var(--teal);
    position: relative;
    z-index: 1001;
}
#topbar .inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    flex-wrap: wrap;
}

/* Nav links */
#topbar ul.menu-secondary {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}
#topbar ul.menu-secondary > li {
    position: relative;
    margin-bottom: 0;
}
#topbar ul.menu-secondary > li > a {
    color: #fff;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}
#topbar ul.menu-secondary > li > a svg {
    width: 14px;
    height: 14px;
    fill: #fff;
    transition: transform 0.2s;
}
#topbar ul.menu-secondary > li:hover > a svg {
    transform: rotate(180deg);
}

/* Sub menu */
#topbar ul.menu-secondary > li > .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    border-radius: 0 0 6px 6px;
    z-index: 999;
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
#topbar ul.menu-secondary > li:hover > .sub-menu {
    display: block;
}
#topbar ul.menu-secondary > li > .sub-menu li a {
    display: block;
    color: var(--navy);
    font-size: 1.125rem;
    font-weight: 600;
    padding: 0.4625rem 1.125rem;
    text-decoration: none;
    transition:
        background 0.15s,
        color 0.15s;
}
#topbar ul.menu-secondary > li > .sub-menu li a:hover {
    color: var(--pink);
}

/* Buttons */
.btn-solution {
    background: var(--navy);
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1rem 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: none;
    white-space: nowrap;
    margin-left: 8px;
}
.btn-solution:hover {
    background: var(--pink);
    color: #fff;
}
.btn-contact-top {
    background: #fff;
    color: var(--navy);
    font-weight: 700;
    font-size: 1.125rem;
    padding: 0.9rem 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
    margin-left: 6px;
}
.btn-contact-top:hover {
    background: var(--pink);
    color: #fff;
}
.arrow-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}
.btn-solution .arrow-circle {
    background: #fff;
    color: var(--navy);
}
.btn-contact-top .arrow-circle {
    background: var(--pink);
    color: #fff;
}

/* Phone */
.phone-wrap {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 10px;
}
.phone-wrap i {
    color: #fff;
    font-size: 1.25rem;
}
.phone-wrap a {
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
}

/* ===== MAIN NAV ===== */
/* ==============================
     MAIN NAV WRAPPER
  ============================== */
#mainnav {
    background: #fff;
    position: relative;
    z-index: 1000;
}
#mainnav .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

/* LOGO */
.logo-link {
    display: inline-block;
    flex-shrink: 0;
}
.logo-link img {
    max-width: 210px;
    height: auto;
    display: block;
}

/* HAMBURGER (mobile) */
.menu-btn {
    display: none;
    background: var(--pink);
    color: #fff;
    border: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    border-radius: 2px;
}

/* ==============================
     PRIMARY NAV
  ============================== */
#menu-primary {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
}
#menu-primary > li {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

/* Top-level link */
#menu-primary > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 28px 14px;
    color: var(--navy);
    font-family: "Nexa", sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s;
}
#menu-primary > li > a:hover,
#menu-primary > li:hover > a {
    color: var(--pink);
}

/* Chevron icon */
#menu-primary > li > a svg.chev {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s;
    flex-shrink: 0;
}
#menu-primary > li:hover > a svg.chev {
    transform: rotate(180deg);
}

/* ==============================
     MEGA DROPDOWN
  ============================== */
.mega-drop {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    padding: 28px 32px;
    width: 100%;
    z-index: 999;
}
/* last items: align right so dropdown doesn't overflow */
#menu-primary > li:nth-last-child(-n + 3) .mega-drop {
    left: auto;
    right: 0;
}

#menu-primary > li:hover .mega-drop {
    display: block;
}

.mega-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
}

/* Category columns */
.mega-cols {
    display: flex;
    gap: 36px;
    flex-shrink: 0;
}
.mega-col > a,
.mega-col > span {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2.5px solid var(--teal);
    text-decoration: none;
}
.mega-col > a:hover {
    color: var(--teal);
}
.mega-col > span {
    pointer-events: none;
    color: var(--navy);
}

.mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mega-col ul li {
    margin-bottom: 6px;
}
.mega-col ul li a {
    font-size: 1.125rem;
    color: #555;
    text-decoration: none;
    display: block;
    padding: 1px 0;
    transition: color 0.15s;
}
.mega-col ul li a:hover {
    color: var(--pink);
}

/* Divider between cols and featured */
.mega-featured {
    max-width: 444px;
    padding-left: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    flex-shrink: 0;
}
.feat-card {
    background: #fff;
    border: 1.5px solid var(--blue);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition:
        border-color 0.15s,
        transform 0.15s,
        opacity 0.15s;
}
.feat-card:hover {
    border-color: var(--pink);
    transform: scale(1.03);
    opacity: 0.85;
}
.feat-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--pink);
    color: #fff;
    font-size: 1.025rem;
    font-weight: 600;
    padding: 3px 7px;
    letter-spacing: 0.5px;
    align-self: flex-start;
}
.feat-badge i {
    font-size: 9px;
}
.feat-body {
    padding: 8px 10px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feat-body img {
    width: 180px;
    height: 100%;
    object-fit: cover;
    margin-bottom: 8px;
}
.feat-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    line-height: 1.3;
}
.feat-card:hover .feat-name {
    color: var(--pink);
}

/* Single featured (services) */
.mega-featured.single {
    grid-template-columns: 1fr;
    max-width: 210px;
}
.feat-card-wide {
    border: 1.5px solid var(--blue);
    text-decoration: none;
    transition:
        border-color 0.15s,
        transform 0.15s;
}
.feat-card-wide:hover {
    border-color: var(--pink);
    transform: scale(1.02);
}
.feat-card-wide img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    margin-bottom: 0;
}
.feat-card-wide .feat-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
}
.feat-card-wide:hover .feat-label {
    color: var(--pink);
}

/* ==============================
     DESKTOP: show nav, hide hamburger
  ============================== */
@media (min-width: 992px) {
    .menu-btn {
        display: none !important;
    }
    .nav-container {
        display: flex !important;
        align-items: center;
    }

    /* Mega drop — hover open */
    #menu-primary > li:hover .mega-drop {
        display: block;
    }
}

/* ==============================
     MOBILE / TABLET  <992px
  ============================== */
@media (max-width: 991.98px) {
    /* Hide top bar entirely */
    #topbar {
        display: none;
    }

    /* Main nav inner */
    #mainnav .inner {
        padding: 12px 18px;
        flex-wrap: nowrap;
        gap: 12px;
    }

    /* Logo smaller */
    .logo-link img {
        max-width: 160px;
    }

    /* Show hamburger */
    .menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-left: auto;
    }

    /* Slide-in drawer */
    .nav-container {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        max-width: 88vw;
        height: 100vh;
        overflow-y: auto;
        background: #fff;
        box-shadow: 4px 0 32px rgba(0, 0, 0, 0.15);
        transition: left 0.32s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 10000;
        padding: 80px 20px 32px;
        display: block !important; /* always in DOM, moved via left */
    }
    .nav-container.active {
        left: 0;
    }

    /* Backdrop */
    .menu-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.42);
        z-index: 9999;
    }
    .menu-backdrop.active {
        display: block;
    }

    /* Close × button inside drawer */
    .drawer-close {
        position: absolute;
        top: 20px;
        right: 18px;
        width: 38px;
        height: 38px;
        border: none;
        border-radius: 50%;
        background: #f0f4f6;
        color: var(--navy);
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10001;
    }
    .drawer-close:hover {
        background: var(--pink);
        color: #fff;
    }

    /* Mobile top CTAs */
    .drawer-top-ctas {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
        padding-bottom: 18px;
        border-bottom: 1px solid #eef2f4;
    }
    .drawer-cta-phone {
        display: flex;
        align-items: center;
        gap: 10px;
        background: #f0f8fb;
        border-radius: 12px;
        padding: 11px 14px;
        font-weight: 700;
        font-size: 14px;
        color: var(--navy);
        text-decoration: none;
    }
    .drawer-cta-phone i {
        color: var(--teal);
        font-size: 16px;
    }
    .drawer-cta-row {
        display: flex;
        gap: 8px;
    }
    .drawer-btn {
        flex: 1;
        text-align: center;
        padding: 10px 8px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 700;
        text-decoration: none;
        border: none;
        cursor: pointer;
    }
    .drawer-btn-navy {
        background: var(--navy);
        color: #fff;
    }
    .drawer-btn-outline {
        background: #fff;
        color: var(--navy);
        border: 1.5px solid var(--navy);
    }

    /* Stack primary nav */
    #menu-primary {
        display: block;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    #menu-primary > li {
        display: block;
        border-bottom: 1px solid #eef2f4;
    }
    #menu-primary > li > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 4px;
        font-size: 15px;
        font-weight: 700;
        color: var(--navy);
    }
    #menu-primary > li > a svg.chev {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        transition: transform 0.25s;
    }
    #menu-primary > li.opened > a {
        color: var(--teal);
    }
    #menu-primary > li.opened > a svg.chev {
        transform: rotate(180deg);
    }

    /* Mega drop in mobile = max-height accordion */
    .mega-drop {
        position: static !important;
        width: 100% !important;
        min-width: unset !important;
        border-top: none !important;
        box-shadow: none !important;
        padding: 0 0 8px 12px !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.32s ease;
        display: block !important; /* always block; controlled by max-height */
    }
    .mega-drop.active {
        max-height: 2000px;
    }

    /* Mobile mega inner — stack */
    .mega-inner {
        flex-direction: column;
        gap: 10px;
    }
    .mega-cols {
        flex-direction: column;
        gap: 6px;
    }
    .mega-featured {
        border-left: none;
        padding-left: 0;
        grid-template-columns: 1fr 1fr;
    }
    .mega-featured.single {
        max-width: 100%;
    }

    /* Sub-category links */
    .mega-col > a,
    .mega-col > span {
        font-size: 12px;
        margin-bottom: 4px;
    }
    .mega-col ul li a {
        font-size: 13px;
        padding: 7px 6px;
        border-radius: 8px;
        display: block;
    }
    .mega-col ul li a:hover {
        background: #f0f8fb;
        color: var(--teal);
    }

    /* Hide featured cards on mobile to save space */
    .mega-featured {
        display: none;
    }
}

/* ==============================
     PROMO BANNER
  ============================== */
.promo-banner {
    display: block;
    width: 100%;
    background: var(--pink);
    text-decoration: none;
    transition: background 0.2s;
}
.promo-banner:hover {
    background: var(--blue);
}
.promo-banner span {
    display: block;
    padding: 10px 16px;
    color: #fff;
    font-size: 1.25rem;
    text-align: center;
}

/* ==============================
     HERO WRAPPER
  ============================== */
.hero-wrap {
    position: relative;
    width: 100%;
    min-height: 480px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}
@media (min-width: 992px) {
    .hero-wrap {
        min-height: 560px;
    }
}

/* Dark blue base overlay (bottom layer) */
.hero-overlay-base {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #004f8c;
    opacity: 0.85;
    /* invert matches original: bg-[#004F8C] bg-opacity-[0.85] invert */
    filter: invert(1);
}

/* Video layer (desktop only) */
.hero-video-layer {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 1;
    mix-blend-mode: multiply;
    overflow: hidden;
}
@media (min-width: 992px) {
    .hero-video-layer {
        display: block;
    }
}
.hero-video-layer video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Blue tint overlay (on top of video) */
.hero-overlay-tint {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: #004f8c;
    opacity: 0.3;
}

/* Fallback image (mobile) */
.hero-img-mobile {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    mix-blend-mode: multiply;
}
@media (min-width: 992px) {
    .hero-img-mobile {
        display: none;
    }
}
.hero-img-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

/* ==============================
     HERO CONTENT
  ============================== */
.hero-content-inner {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
    padding: 48px 16px;
    width: 100%;
}
@media (min-width: 992px) {
    .hero-content-inner {
        padding: 80px 0;
    }
}

.hero-text-col {
    width: 40%;
    display: block;
}
@media (max-width: 991px) {
    .hero-text-col {
        width: 60%;
    }
}

.hero-title {
    color: #fff;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: capitalize;
    line-height: 1.1;
    margin-bottom: 16px;
}
@media (min-width: 992px) {
    .hero-title {
        font-size: 80px;
    }
}

.hero-subtitle {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    letter-spacing: 0.03em;
    margin-bottom: 24px;
}
@media (min-width: 992px) {
    .hero-subtitle {
        font-size: 22px;
        margin-bottom: 0;
    }
}

/* CTA Button */
.btn-pink-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--pink);
    color: #fff;
    font-size: 1.11rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    padding: 18px 1rem 17px;
    border-radius: 25px;
    text-decoration: none;
    border: none;
    margin-top: 16px;
    transition: background 0.2s;
}
@media (min-width: 992px) {
    .btn-pink-hero {
        margin-top: 48px;
    }
}
.btn-pink-hero:hover {
    background: var(--navy);
    color: #fff;
}

/* ==============================
     REVIEWS BADGES
  ============================== */
.reviews-badges {
    display: none; /* hidden on mobile, shown xl */
    position: absolute;
    top: 0;
    right: 0;
    z-index: 4;
    align-items: stretch;
    gap: 10px;
    padding: 0 32px;
}
@media (min-width: 1200px) {
    .reviews-badges {
        display: flex;
    }
}

.badge-card {
    background: #fff;
    border-radius: 0 0 10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    text-decoration: none;
    transition: opacity 0.2s;
    flex-direction: column;
    gap: 4px;
    min-width: 120px;
}
.badge-card:hover {
    opacity: 0.8;
}

.badge-card .ti-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #333;
}
.badge-card .ti-logo img {
    height: 16px;
}
.badge-card .stars {
    color: var(--pink);
    font-size: 14px;
    letter-spacing: 1px;
}
.badge-card .review-count {
    font-size: 11px;
    font-weight: 700;
    color: #333;
}

.badge-google img {
    width: 120px;
}

/* ==============================
     SERVICE CARDS SECTION
  ============================== */
#service-cards {
    padding: 32px 0;
}
@media (min-width: 992px) {
    #service-cards {
        padding: 80px 0;
    }
}

/* Card link */
.bucket-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-decoration: none;
    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}
.bucket-card:hover,
.bucket-card:focus {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 79, 140, 0.2);
    outline: none;
}
.bucket-card:focus {
    opacity: 0.8;
}

/* Picture / Image */
.bucket-card picture {
    display: block;
    width: 100%;
    position: relative;
    z-index: 0;
}
.bucket-card picture img {
    display: block;
    width: 100%;
    object-fit: cover;
    opacity: 0.95;
    transition: opacity 0.3s;
}
.bucket-card:hover .bucket-body {
    background: var(--navy, rgba(0, 79, 140, 0.9));
}
.bucket-card:hover picture img,
.bucket-card:focus picture img {
    opacity: 0.75;
}

/* Text body */
.bucket-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    color: #fff;
    padding: 24px;
    position: relative;
    overflow: hidden;
    background: var(--teal);
    flex: 1;
    transition: background 0.3s ease;
}

/* Icon circle */
.bucket-icon {
    position: relative;
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 22px;
    flex-shrink: 0;
}

/* Decorative blobs (exact original) */
.bucket-blobs {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
}
.bucket-blobs .blob-tr {
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    background: #fff;
    border-radius: 50%;
    transform: translate(64px, -64px);
}
.bucket-blobs .blob-bl {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 96px;
    height: 96px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-48px, 48px);
}

.shape {
    position: absolute;
    background: #fff;
    border-radius: 50%;
}

.shape-top {
    width: 128px;
    height: 128px;
    top: 0;
    right: 0;
    transform: translate(64px, -64px);
}

.shape-bottom {
    width: 96px;
    height: 96px;
    bottom: 0;
    left: 0;
    transform: translate(-48px, 48px);
}

/* Title */
.bucket-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1.2;
    position: relative;
    z-index: 10;
    margin-bottom: 10px;
}

/* Description */
.bucket-desc {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #fff;
    position: relative;
    z-index: 10;
    margin: 0;
}

/* CTA row */
.bucket-cta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 1.125rem;
    color: #fff;
    margin-top: 12px;
    position: relative;
    z-index: 10;
}

/* ===== WHY SECTION ===== */
#why {
    padding: 60px 0;
}
.section-eyebrow {
    font-size: 20px;
    margin-bottom: 6px;
}
#why h2 {
    font-size: 70px;
    font-weight: 900;
    color: var(--pink);
}
#why .lead-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000;
}
#why .lead-text b {
    color: var(--teal);
}
.why-item {
    padding: 24px;
    border-radius: 8px;
    transition: background 0.2s;
}
.why-item-top {
    display: flex;
    align-items: center;
    gap: 12px;
}
.why-item-top .why-item-icon {
    font-size: 28px;
    margin-bottom: 0px;
}
.why-item-top h6 {
    color: var(--teal);
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 6px;
}
.why-item.pink h6 {
    color: var(--pink);
}
.why-item.orange h6 {
    color: #f5a623;
}
.why-item p {
    font-size: 1.125rem;
    color: #666;
    text-align: center;
    padding: 0 16px;
}

/* ===== STATS ===== */
#stats {
    background: var(--teal);
    color: #fff;
    padding: 80px 100px;
}
.stat-item {
    text-align: center;
    padding: 0 26px;
}
#stats .num {
    font-size: 3.75rem;
    font-weight: 900;
    line-height: normal;
}
#stats .lbl {
    font-size: 1.75rem;
    line-height: 2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.counter {
    transition: all 0.3s ease;
}

/* ===== CORE VALUES ===== */
#values {
    padding: 60px 200px;
    text-align: center;
}
#values h2 {
    font-size: 70px;
    font-weight: 900;
    color: var(--pink);
}
#values .lead-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000;
}
#values .lead-text b {
    color: var(--teal);
}

.value-item .ico {
    margin-bottom: 12px;
}
.value-item h5 {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
.value-item.sustain h5 {
    color: var(--teal);
}
.value-item.wellness h5 {
    color: var(--pink);
}
.value-item.expertise h5 {
    color: #f5a623;
}
.value-item p {
    font-size: 19px;
    color: #666;
    line-height: 1.6;
}

/* ===== REVIEWS ===== */
#reviews {
    padding: 0 0 50px 0;
}
.review-tabs {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}
.review-tabs span {
    padding-bottom: 10px;
    cursor: pointer;
    color: #888;
}
.review-tabs span.active {
    color: var(--navy);
    border-bottom: 2px solid var(--navy);
}
.review-card {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 16px;
    font-size: 12px;
    height: 100%;
}
.av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}
.write-review {
    background: var(--pink);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 9px 18px;
    font-weight: 700;
    font-size: 13px;
}

.review-section {
    padding: 70px 0;
}

.nav-tabs {
    border-bottom: 1px solid #eee;
}
.nav-tabs .nav-item {
    margin-bottom: -1px;
}
.nav-tabs .nav-link {
    border: none;
    color: #555;
    font-weight: 600;
    padding: 18px 22px;
}

.nav-tabs .nav-link.active {
    border: none;
    border-bottom: 2px solid #000;
    color: #000;
    background: none;
}

.review-btn {
    font-size: 14px;
    background: #eb6893;
    color: var(--navy);
    border: none;
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 600;
}

.review-btn:hover {
    background: var(--navy);
    color: #fff;
}

.rating {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
}

.rating i {
    color: #ffb400;
}


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


.multi-carousel-inner{

    display:flex;
    transition:.5s ease;

}


.multi-carousel-item{

    flex:0 0 25%;
    padding:12px;

}
.review-card {
    padding: 10px 15px;
}

.review-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.avatar.blue {
    background: #0d6efd;
}
.avatar.orange {
    background: #fd7e14;
}
.avatar.green {
    background: #5cb85c;
}
.avatar.gray {
    background: #b5b06c;
}

.user-info {
    margin-left: 12px;
}

.user-info h6 {
    margin: 0;
    font-weight: 700;
}

.user-info small {
    color: #777;
}

.review-card .stars {
    font-size: 18px;
    color: #ffb400;
    margin-bottom: 12px;
}

.review-card p {
    font-size: 1.025rem;
    color: #444;
    line-height: 1.7;
}

.carousel-control-prev,
.carousel-control-next{

    width:45px;
    height:45px;
    background:#000;
    border-radius:50%;
    top:50%;
    transform:translateY(-50%);

}



@media(max-width:991px){

    .multi-carousel-item{

        flex:0 0 50%;

    }

}



@media(max-width:575px){

    .multi-carousel-item{

        flex:0 0 100%;

    }

}


@media (max-width: 991px) {
    .review-card {
        margin-bottom: 25px;
    }
}



/* ===== CONTENT SECTIONS ===== */
.content-sec {
    padding: 60px 0;
}
.content-sec h2 {
    color: var(--teal);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0px;
}
.content-sec p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}
.content-sec a {
    color: var(--teal);
}
.content-sec img {
    border-radius: 8px;
    width: 100%;
    object-fit: cover;
}
.deco-icons img {
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ===== CASE STUDY ===== */
#casestudy .cs-img {
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
}
.cs-box {
    background: var(--navy);
    color: #fff;
    padding: 40px;
    border-radius: 0 8px 8px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.cs-box h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 14px;
}
.cs-box p {
    font-size: 13px;
    color: #b0bec5;
    margin-bottom: 22px;
}
.liberty-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #fff;
    color: var(--navy);
    font-weight: 700;
    font-size: 12px;
    padding: 8px 14px;
    border-radius: 4px;
    letter-spacing: 2px;
}

/* ===== CONTACT FORM ===== */
#contact {
    background: var(--teal);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
#contact h2 {
    color: #fff;
    font-size: 3.75rem;
    font-weight: 900;
    margin-bottom: 0;
}
#contact .sub {
    color: #d0eaf0;
    font-size: 1.25rem;
}
.contact-card {
    background: #fff;
    padding: 34px;
    max-width: 900px;
    margin: 0 auto;
}
.contact-card label {
    font-size: 1rem;
    font-weight: 500;
    color: #20313c;
}
.contact-card .form-control{
    border: 1px solid var(--teal);
    background: #f5f8fa;
    font-size: 18px;
    border-radius: 10px;
    padding: 1.25rem;
}

.contact-card .form-check {
    color: var(--teal);
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-card .form-check .form-check-input {
    border: 1.5px solid var(--teal);
    border-radius: 50%;
}
.contact-card .form-check-input:checked {
    background-color: var(--teal);
    border-color: var(--teal);
}
.contact-card input:focus,
.contact-card textarea:focus {
    border: 1px solid var(--pink) ;
    box-shadow: none;
}
.deco-blob {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}
.deco-blob.b1 {
    width: 320px;
    height: 320px;
    left: -120px;
    top: 40%;
}
.deco-blob.b2 {
    width: 240px;
    height: 240px;
    right: -80px;
    bottom: -60px;
}
.contact-logo {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.contact-logo span {
    color: #fff;
    font-size: 19px;
    font-weight: 700;
}
.btn-pink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pink);
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 1.5rem;
    white-space: nowrap;
}
.btn-pink i {
    font-size: 1.5rem;
}
.btn-pink:hover {
    background: var(--navy);
    color: #fff;
}

@media (max-width: 768px) {
    .btn-pink {
        font-size: .875rem;
        padding:  1rem;
    }
}

.btn-outline-pink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--pink);
    color: var(--pink);
    font-size: 1rem;
    font-weight: 700;
    padding: 13px 1rem .75rem;
}
.btn-outline-pink:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.btn-outline-teal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--teal);
    color: var(--teal);
    font-size: 1rem;
    font-weight: 700;
    padding: 13px 1rem .75rem;
}
.btn-outline-teal:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}
.breadcrumb-bar {
    color: hsl(195.46deg 41.63% 54.31% / 70%);
}
.breadcrumb-bar a {
    color: var(--teal);
}
.breadcrumb-bar a:hover {
    color: var(--pink);
}
.breadcrumb-bar span {
    color: var(--pink);
}
/* ===== FOOTER ===== */
#footer {
    background: var(--teal);
    color: #fff;
    padding: 0;
}
.footer-logo {
    width: 260px;
}
#footer h5 {
    color: #fff;
    font-weight: 900;
    margin-bottom: 16px;
}
#footer ul {
    list-style: none;
    padding: 0;
}
#footer ul li {
    font-size: 12px;
    margin-bottom: 7px;
    opacity: 0.9;
}
#footer .contact-p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 3px;
}
.excellent-box {
    background: #fff;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    margin: 12px 0;
}
.social-ico {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
    color: #fff;
}
.social-ico i {
    font-size: 26px;
}
.social-ico:hover {
    color: var(--pink);
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
    }
    .reviews-float {
        display: none;
    }
    #topbar .d-flex {
        flex-wrap: wrap;
        justify-content: center !important;
        gap: 10px !important;
    }
}

/* ===========================
   RESPONSIVE — handled above
=========================== */
/* ============================================================
   MOBILE OVERLAY MENU — exact Nu Vending style
   (full-height, teal bg, pink header, flat list, red × btn)
============================================================ */

/* Hide nav-container on mobile — we use the overlay instead */
@media (max-width: 1024px) {
    #navContainer {
        display: none !important;
    }
    .menu-btn {
        display: flex !important;
    }
}
@media (min-width: 1025px) {
    .menu-btn {
        display: none !important;
    }
    #navContainer {
        display: flex !important;
        align-items: center;
    }
    #mobileOverlay {
        display: none !important;
    }
}

/* Overlay container — right-side drawer, 70px gap on left */
#mobileOverlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 70px; /* 70px gap on the left */
    z-index: 99999;
    display: flex;
    flex-direction: column;
    background: var(--teal);
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    width: auto; /* fills from left:70px to right:0 */
}
#mobileOverlay.active {
    transform: translateX(0);
}

/* Pink header bar */
.mob-overlay-header {
    background: var(--pink);
    padding: 18px 24px;
    text-align: center;
    flex-shrink: 0;
}
.mob-overlay-header span {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

/* Scrollable nav area */
.mob-overlay-nav {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* List */
.mob-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mob-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* Row — both <a> and <button> share same look */
.mob-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 22px;
    background: none;
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s;
}
.mob-nav-row:hover,
.mob-nav-item.opened > .mob-nav-row {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Chevron */
.mob-chev {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: rgba(255, 255, 255, 0.7);
    transition: transform 0.25s;
}
.mob-nav-item.opened > .mob-nav-toggle .mob-chev {
    transform: rotate(180deg);
}

/* Sub-list accordion */
.mob-sub-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.08);
}
.mob-sub-link {
    display: block;
    padding: 12px 22px 12px 36px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition:
        background 0.12s,
        color 0.12s;
}
.mob-sub-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Red × close button — bottom-left, matches screenshot */
.mob-close-btn {
    position: fixed;
    left: 18px;
    bottom: 22px;
    z-index: 100000;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #e53e3e;
    color: #fff;
    border: none;
    font-size: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4);
    transition: background 0.2s;
}
.mob-close-btn:hover {
    background: #c53030;
}
#mobileOverlay.active .mob-close-btn {
    display: flex;
}

/* //extra css */

#footer ul li a {
    color: #ffffff !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
    font-size: 18px;
}

#footer ul li a:hover,
#footer ul li a:focus,
#footer ul li a:active {
    color: #0e0d0d !important;
    text-decoration: none !important;
    font-size: 18px;
}

.bg-black {
    --tw-bg-opacity: 1;
    background-color: rgba(32, 49, 60, var(--tw-bg-opacity)) !important;
}

/* product */
.product-card {
    transition: all .35s ease;
    overflow: hidden;
    border: 0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: drop-shadow(0 4px 24px rgba(38,40,43,.25));
}

.product-image {
    max-width: 260px;
    width: 100%;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--teal);
    transition: .3s;
    letter-spacing: 0.03em;
}

.product-card:hover .product-title {
    color: var(--pink);
}

/* Ribbon */

.product-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 110px;
    padding: 15px;
    color: #fff;
    background: #e91e63;
    clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 2;
    transition: .3s;
}

.product-ribbon h6{
    line-height:1.3;
}

.product-card:hover .product-ribbon{
    background:#d81b60;
}

.btn-outline-danger:hover{
    color:#fff;
}

@media (max-width:768px){

    .product-ribbon{
        width:65%;
        height:95px;
    }

    .product-title{
        font-size:1.1rem;
    }

}

/* ==========
  RESPONSIVE — handled above

/* Responsive Styles */
@media (max-width: 1499.98px) {
    #topbar ul.menu-secondary > li > a {
        font-size: .875rem;
        padding: .575rem;
    }
    .logo-link img {
        max-width: 180px;
    }
    #menu-primary > li > a {
        font-size: .875rem;
    }
    .btn-solution {
        font-size: 0.875rem;
        padding: 8px 14px;
    }
    .btn-contact-top {
        font-size: 0.875rem;
        padding: 8px 14px;
    }
    .phone-wrap a {
        font-size: .875rem;
    }
    .phone-wrap i {
        font-size: .875rem;
    }
    #stats {
        padding: 60px 80px;
    }
    #stats .num {
        font-size: 2.5rem;
    }
    #stats .lbl {
        font-size: 1.25rem;
    }
    #values {
        padding: 60px 20px;
    }
    #values h2 {
        font-size: 2.5rem;
    }
    .bucket-title {
        font-size: 1.25rem;
    }
    .bucket-desc {
        font-size: 1rem;
    }
    .why-item-top h6 {
        font-size: 1.25rem;
    }

}
@media (max-width: 1399.98px) {
    #topbar ul.menu-secondary > li > a {
        font-size: .875rem;
        padding: .575rem;
    }
    .logo-link img {
        max-width: 180px;
    }
    #menu-primary > li > a {
        font-size: .875rem;
    }
    .btn-solution {
        font-size: 0.875rem;
        padding: 8px 14px;
    }
    .btn-contact-top {
       font-size: 0.875rem;
        padding: 8px 14px;
    }
    .phone-wrap a {
        font-size: .875rem;
    }
    .phone-wrap i {
        font-size: .875rem;
    }
    .multi-carousel-item {
        flex: 0 0 33%;
    }
}

@media (max-width: 1200px) {
    #menu-primary > li > a {
        font-size: 14px;
    }
    .btn-solution {
        font-size: 0.875rem;
        padding: 8px 14px;
    }
    .btn-contact-top {
       font-size: 0.875rem;
        padding: 8px 14px;
    }
    .phone-wrap a {
        font-size: .875rem;
    }
    .phone-wrap i {
        font-size: .875rem;
    }
}
@media (max-width: 991px) {

    #stats {
        padding: 60px 20px;
    }
    .stat-item {
        padding: 0 12px;
    }
    #stats .num {
        font-size: 2.5rem;
    }
    #stats .lbl {
        font-size: 1.25rem;
    }
    #values {
        padding: 60px 20px;
    }
    #values h2 {
        font-size: 2.5rem;
    }
    .bucket-title {
        font-size: 1.25rem;
    }
    .bucket-desc {
        font-size: 1rem;
    }
    .bucket-cta {
        font-size: .875rem;
    }
    .bucket-cta i {
        margin-top: 2px;
        font-size: .675rem;
    }

    #why h2 {
        font-size: 2.5rem;
    }
    #why .lead-text {
        font-size: 1rem;
    }
    .why-item {
        padding: 0 12px;
    }
    .why-item-top {
        text-align: start;
    }
    .multi-carousel-item {
        flex: 0 0 50%;
    }
    .review-section {
        padding: 0px 20px;
    }

    .rating {
        font-size: 16px;
        align-items: start;
        flex-direction: column;
    }

    .review-btn {
        padding: 5px 20px;
        font-size: 0.9rem;
    }

    .nav-tabs .nav-link {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
    .content-sec {
        padding: 40px 20px;
    }
    .content-sec h2 {
        font-size: 1.875rem;
    }
    #contact {
        padding: 40px 20px;
    }
    #contact h2 {
        font-size: 2.5rem;
    }
    #contact .sub {
        font-size: 1rem;
    }
    #footer {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .why-item-top {
        flex-direction: column;
        text-align: center;
    }
}


.about-hero{
    min-height: 520px;
    background: #111;
}

.about-hero-bg{
    position: absolute;
    inset: 0;
}

.about-hero-content h1{
    font-size: 4.5rem;
}

.about-hero-bg img{
    object-fit: cover;
}

.about-hero-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.20) 100%);
}

.min-vh-75{
    min-height: 75vh;
}

.about-feature-icon{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f6f6f6;
    font-size: 1.4rem;
    color: #e83e8c;
}

.about-steps{
    background: linear-gradient(180deg, #5ea6c4 0%, #4f9cbc 100%);
}

.step-number{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: #e83e8c;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-text p{
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #444;
}

@media (max-width: 991.98px){
    .about-hero{
        min-height: 420px;
    }

    .about-hero-content h1{
        font-size: 2.25rem;
    }
}

/* Page breadcrumb */

.custom-breadcrumb{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
    font-size:20px;
    font-weight:600;
}

.custom-breadcrumb a{
    color:#2F98C7;
    text-decoration:none;
    transition:.3s;
}

.custom-breadcrumb a:hover{
    color:#1f7fa8;
}

.custom-breadcrumb .separator{
    color:#777;
    font-weight:700;
}

.custom-breadcrumb .current{
    color:#222;
    font-weight:500;
}

@media (max-width:768px){
    .custom-breadcrumb{
        font-size:16px;
        gap:6px;
    }
}

/* latest news */
 .nv-top-strip {
        height: 6px;
        background: var(--pink);
        width: 100%;
    }

    /* ===== Hero Banner ===== */
    .nv-news-hero {
        background: var(--teal);
        border-radius: 4px;
        position: relative;
        overflow: hidden;
        padding: 48px 40px;
        margin-top: 28px;
        min-height: 310px;
    }

    .nv-news-hero .nv-icons {
        font-size: 2.1rem;
        color: #fff;
        opacity: .9;
        letter-spacing: 8px;
        margin-bottom: 18px;
    }

    .nv-news-hero h1 {
        color: #fff;
        font-weight: 800;
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .nv-news-hero p {
        color: #e8f3f6;
        font-size: 1rem;
        margin-bottom: 0;
    }

    .nv-hero-graphic {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 45%;
        opacity: .55;
        pointer-events: none;
    }

    /* ===== News Card ===== */
    .nv-news-card {
        background: #fff;
        border-radius: 4px;
        overflow: visible;
        box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .nv-news-card .nv-thumb {
        position: relative;
        overflow: hidden;
        border-radius: 4px 4px 0 0;
    }

    .nv-news-card .nv-thumb img {
        width: 100%;
        height: 236px;
        object-fit: cover;
        display: block;
        transition: transform .35s ease;
    }

    .nv-news-card:hover .nv-thumb img {
        transform: scale(1.06);
    }

    .nv-badge {
        position: absolute;
        top: 14px;
        left: 0;
        background: var(--pink);
        color: #fff;
        font-size: .7rem;
        font-weight: 600;
        padding: 5px 14px;
        border-radius: 0 3px 3px 0;
        text-transform: uppercase;
        letter-spacing: .3px;
    }

    .nv-news-body {
        padding: 18px 20px 30px;
        position: relative;
        flex: 1;
        display: flex;
        flex-direction: column;
        background: #fff;
        border-radius: 0 0 4px 4px;
    }

    .nv-news-body h3 {
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.35;
        margin-bottom: 10px;
    }

    .nv-news-body h3 a {
        color: var(--teal);
        text-decoration: none;
        transition: color .2s ease;
    }

    .nv-news-body h3 a:hover {
        color: var(--pink);
    }

    .nv-news-date {
        font-size: .78rem;
        color: #9aa9ae;
        margin-top: auto;
        padding-top: 6px;
    }

    .nv-arrow-btn {
        position: absolute;
        right: 16px;
        bottom: 14px;
        width: 38px;
        height: 38px;
        border-radius: 6px;
        background: var(--pink);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 1rem;
        box-shadow: 0 4px 10px rgba(230, 51, 122, .35);
        transition: background .2s ease, transform .2s ease;
    }

    .nv-arrow-btn:hover {
        background: var(--pink);
        color: #fff;
        transform: translateX(2px);
    }

    /* ===== Sidebar Categories ===== */
    .nv-sidebar-box {
        background: var(--teal);
        border-radius: 4px;
        padding: 26px 24px;
    }

    .nv-sidebar-box h4 {
        color: #fff;
        font-weight: 700;
        font-size: 1.15rem;
        margin-bottom: 16px;
    }

    .nv-sidebar-box ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .nv-sidebar-box ul li {
        border-bottom: 1px solid rgba(255, 255, 255, .18);
    }

    .nv-sidebar-box ul li:last-child {
        border-bottom: none;
    }

    .nv-sidebar-box ul li a {
        display: block;
        color: #eaf4f7;
        text-decoration: none;
        font-size: .88rem;
        padding: 10px 2px;
        transition: color .2s ease, padding-left .2s ease;
    }

    .nv-sidebar-box ul li a:hover {
        color: #fff;
        padding-left: 6px;
        font-weight: 600;
    }

    /* ===== Pagination ===== */
    .nv-pagination {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-top: 10px;
    }

    .nv-pagination .page-num {
        width: 34px;
        height: 34px;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--teal-light);
        color: #fff;
        font-size: .82rem;
        font-weight: 600;
        text-decoration: none;
        transition: background .2s ease;
    }

    .nv-pagination .page-num.active,
    .nv-pagination .page-num:hover {
        background: var(--teal);
    }

    .nv-pagination .page-sep {
        color: #c6d8dd;
        padding: 0 2px;
    }

    .nv-next-btn {
        background: var(--pink);
        color: #fff;
        border: none;
        padding: 9px 26px;
        border-radius: 20px;
        font-size: .85rem;
        font-weight: 600;
        text-decoration: none;
        transition: background .2s ease;
    }

    .nv-next-btn:hover {
        background: var(--pink);
        color: #fff;
    }

    @media (max-width: 767px) {
        .nv-news-hero h1 {
            font-size: 1.8rem;
        }

        .nv-news-hero {
            padding: 34px 24px;
        }

        .nv-hero-graphic {
            display: none;
        }
    }

    .nv-top-strip{
  height:6px;
  background:var(--pink);
  width:100%;
}

/* ===== Hero Banner (shared pattern) ===== */
.nv-hero{
  background:var(--teal);
  justify-content:center;
  border-radius:4px;
  position:relative;
  overflow:hidden;
  padding:48px 40px;
  margin-top:28px;
  min-height: 420px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.nv-hero .nv-icons{
  font-size: 2.875rem;
  line-height: 2.25rem;
  color:#fff;
  opacity:.9;
  letter-spacing:8px;
  margin-bottom:18px;
}
.nv-hero h1{
  color:#fff;
  font-weight:800;
  font-size:2.5rem;
  margin-bottom:10px;
}
.nv-hero p{
  color:#e8f3f6;
  font-size:1rem;
  margin-bottom:0;
}
.nv-hero-graphic{
  position:absolute;
  right:0;
  top:0;
  height:100%;
  width:45%;
  opacity:.55;
  pointer-events:none;
}

/* ===== Case Study Card ===== */
.cs-card{
  background:#fff;
  border-radius:4px;
  overflow:visible;
  box-shadow:0 1px 3px rgba(0,0,0,.08);
  height:100%;
  display:flex;
  flex-direction:column;
}
.cs-thumb{
  position:relative;
  overflow:hidden;
  border-radius:4px 4px 0 0;
}
.cs-thumb img{
  width:100%;
  height:319px;
  object-fit:cover;
  display:block;
  transition:transform .35s ease;
}
.cs-card:hover .cs-thumb img{
  transform:scale(1.06);
}
.cs-featured-badge{
  position:absolute;
  top:14px;
  left:0;
  background:var(--pink);
  color:#fff;
  font-size:.7rem;
  font-weight:600;
  padding:5px 14px;
  border-radius:0 3px 3px 0;
  text-transform:uppercase;
  letter-spacing:.3px;
  display:flex;
  align-items:center;
  gap:5px;
}
.cs-featured-badge::before{
  content:"★";
  font-size:.72rem;
}

/* Logo badge overlapping image bottom / body top */
.cs-logo{
  position:absolute;
  left:16px;
  bottom:-20px;
  background:#fff;
  padding:8px 14px;
  border-radius:4px;
  box-shadow:0 3px 8px rgba(0,0,0,.15);
  display:flex;
  align-items:center;
  gap:6px;
  font-weight:800;
  font-size:.85rem;
  color:var(--navy);
  letter-spacing:.3px;
  max-width:80%;
}
.cs-logo img{
  height:18px;
  width:auto;
  object-fit:contain;
}

.cs-body{
  padding:34px 20px 22px;
  position:relative;
  flex:1;
  display:flex;
  flex-direction:column;
  border-radius:0 0 4px 4px;
}
.cs-body h3{
  font-size:1.15rem;
  font-weight:700;
  margin-bottom:10px;
}
.cs-body h3 a{
  text-decoration:none;
  color:inherit;
}
.cs-body p{
  font-size:.85rem;
  line-height:1.55;
  margin-bottom:30px;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* Default (non-featured) variant */
.cs-card.cs-default .cs-body{
  background:#fff;
}
.cs-card.cs-default .cs-body h3{
  color:var(--teal);
}
.cs-card.cs-default .cs-body h3 a:hover{
  color:var(--pink);
}
.cs-card.cs-default .cs-body p{
  color:#7b8e94;
}

/* Featured variant */
.cs-card.cs-featured .cs-body{
  background:var(--teal);
}
.cs-card.cs-featured .cs-body h3{
  color:#fff;
}
.cs-card.cs-featured .cs-body h3 a:hover{
  color:#eaf4f7;
  opacity:.85;
}
.cs-card.cs-featured .cs-body p{
  color:#e3f0f3;
}

.cs-arrow-btn{
  position:absolute;
  right:16px;
  bottom:16px;
  width:38px;
  height:38px;
  border-radius:6px;
  background:var(--pink);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:1rem;
  box-shadow:0 4px 10px rgba(230,51,122,.35);
  transition:background .2s ease, transform .2s ease;
}
.cs-arrow-btn:hover{
  filter:brightness(0.88);
  color:#fff;
  transform:translateX(2px);
}

/* ============ FULL RESPONSIVE ============ */

/* Hero heading scales fluidly between mobile and desktop */
.nv-hero h1{
  font-size:clamp(1.6rem, 4.5vw, 2.5rem);
}
.nv-hero p{
  font-size:clamp(.85rem, 2vw, 1rem);
}

/* Tablets (≤991px) */
@media (max-width: 1024px){
  .container{ max-width:100%; padding-left:20px; padding-right:20px; }
  .nv-hero{ padding:38px 30px; }
  .cs-thumb img{ height:180px; }
}

@media (max-width: 991px){
  .container{ max-width:100%; padding-left:20px; padding-right:20px; }
  .nv-hero{ padding:38px 30px; }
  .cs-thumb img{ height:170px; }
}

/* Small tablets / large phones (≤767px) */
@media (max-width: 767px){
  .nv-hero{ padding:30px 22px; margin-top:18px; }
  .nv-hero .nv-icons{ font-size:.9rem; letter-spacing:5px; margin-bottom:12px; }
  .nv-hero-graphic{ width:60%; opacity:.35; }
  .cs-body{ padding:32px 16px 20px; }
  .cs-body p{ font-size:.82rem; }
}

/* Phones (≤575px) */
@media (max-width: 575px){
  .nv-hero{ padding:26px 18px; border-radius:0; }
  .nv-hero-graphic{ display:none; }
  .cs-thumb img{ height:200px; }
  .cs-logo{ font-size:.78rem; padding:6px 10px; bottom:-16px; }
  .cs-arrow-btn{ width:34px; height:34px; font-size:.9rem; }
}

.nv-top-strip{
  height:6px;
  background:var(--pink);
  width:100%;
}

/* ============ HERO (image banner) ============ */
.vsf-hero{
  position:relative;
  border-radius:4px;
  overflow:hidden;
  margin-top:28px;
  min-height:260px;
  display:flex;
  align-items:flex-end;
  background-image:
    linear-gradient(90deg, rgba(15,30,38,.72) 0%, rgba(15,30,38,.35) 55%, rgba(15,30,38,.15) 100%),
    url('https://images.unsplash.com/photo-1521017432531-fbd92d768814?w=1400&h=500&fit=crop');
  background-size:cover;
  background-position:center;
}
.vsf-hero-body{
  padding:36px 40px;
  width:100%;
  min-height: 420px;
}
.vsf-hero-body h1{
  color:#fff;
  font-weight:800;
  font-size:clamp(1.7rem, 4vw, 2.6rem);
  margin-bottom:8px;
}
.vsf-hero-body p{
  color:#f1f6f7;
  font-size:clamp(.85rem, 1.8vw, 1rem);
  margin-bottom:0;
}

/* Review badges top-right */
.vsf-badges{
  position:absolute;
  top:18px;
  right:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.vsf-badge{
  background:#fff;
  border-radius:6px;
  padding:8px 14px;
  display:flex;
  align-items:center;
  gap:6px;
  font-size:.78rem;
  font-weight:600;
  color:#2b2b2b;
  box-shadow:0 2px 6px rgba(0,0,0,.15);
  white-space:nowrap;
}
.vsf-badge .stars{
  color:#f5a623;
  font-size:.75rem;
  letter-spacing:1px;
}
.vsf-badge .check{
  color:#2ecc71;
  font-size:.85rem;
}
.vsf-badge .chev{
  color:#9aa5aa;
  margin-left:2px;
}
.vsf-badge-google{
  font-weight:700;
}
.vsf-badge-google small{
  display:block;
  font-weight:500;
  font-size:.68rem;
  color:#6b7075;
}

/* ============ FINDER SECTION (full-bleed teal) ============ */
.vsf-finder{
  background:var(--teal);
  padding:60px 0 70px;
}
.vsf-finder h2{
  color:#fff;
  font-weight:800;
  font-size:clamp(1.6rem, 4vw, 2.2rem);
  text-align:center;
  margin-bottom:18px;
}
.vsf-finder > .container-fluid > p{
  color:#eaf4f7;
  text-align:center;
  max-width:780px;
  margin:0 auto 40px;
  font-size:.95rem;
  line-height:1.7;
}
.vsf-question{
  color:#fff;
  font-weight:700;
  text-align:center;
  font-size:1rem;
  margin-bottom:18px;
}
.vsf-group{
  margin-bottom:40px;
}

/* Option cards */
.vsf-option{
  background:color-mix(in srgb, var(--teal) 55%, #ffffff 20%);
  border:2px solid transparent;
  border-radius:6px;
  padding:22px 12px;
  text-align:center;
  cursor:pointer;
  transition:background .2s ease, border-color .2s ease, transform .15s ease;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
}
.vsf-option:hover{
  background:color-mix(in srgb, var(--teal) 40%, #ffffff 30%);
  transform:translateY(-2px);
}
.vsf-option.is-selected{
  border-color:#fff;
  background:color-mix(in srgb, var(--teal) 35%, #ffffff 35%);
}
.vsf-option-icon{
  width:44px;
  height:44px;
  border-radius:50%;
  background:#fff;
  color:var(--pink);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.15rem;
  flex-shrink:0;
}
.vsf-option-label{
  color:#fff;
  font-size:.85rem;
  font-weight:600;
  line-height:1.3;
}

.vsf-submit-wrap{
  text-align:center;
  margin-top:10px;
}
.vsf-submit-btn{
  background:#fff;
  color:var(--teal);
  border:none;
  padding:13px 34px;
  border-radius:30px;
  font-weight:700;
  font-size:.9rem;
  text-decoration:none;
  display:inline-block;
  transition:filter .2s ease, transform .15s ease;
}
.vsf-submit-btn:hover{
  filter:brightness(0.95);
  transform:translateY(-1px);
  color:var(--teal);
}

/* ============ FULL RESPONSIVE ============ */

/* Tablets (≤991px) */
@media (max-width: 991px){
  .vsf-hero-body{ padding:30px 30px; }
  .vsf-finder{ padding:48px 0 56px; }
}

/* Small tablets / large phones (≤767px) */
@media (max-width: 767px){
  .vsf-hero{ min-height:auto; align-items:stretch; flex-direction:column; }
  .vsf-badges{
    position:static;
    padding:14px 16px 0;
    justify-content:flex-start;
  }
  .vsf-hero-body{ padding:20px 20px 26px; }
  .vsf-finder{ padding:40px 0 46px; }
  .vsf-finder > .container-fluid > p{ margin-bottom:30px; }
  .vsf-group{ margin-bottom:30px; }
  .vsf-option{ padding:16px 8px; }
  .vsf-option-icon{ width:38px; height:38px; font-size:1rem; }
  .vsf-option-label{ font-size:.78rem; }
}

/* Phones (≤575px) */
@media (max-width: 575px){
  .vsf-hero{ border-radius:0; margin-top:18px; }
  .vsf-badge{ padding:6px 10px; font-size:.7rem; }
  .vsf-question{ font-size:.9rem; }
  .vsf-submit-btn{ width:100%; }
}

.nv-top-strip{
  height:6px;
  background:var(--pink);
  width:100%;
}

/* ============ HERO ============ */
.ctc-hero{
  background:var(--teal);
  border-radius:4px;
  position:relative;
  overflow:hidden;
  padding:48px 40px;
  margin-top:28px;
  min-height: 420px;
  justify-content: center;

}
.ctc-hero .nv-icons{
  font-size:2.8rem;
  color:#fff;
  opacity:.9;
  letter-spacing:8px;
  margin-bottom:18px;
}
.ctc-hero h1{
  color:#fff;
  font-weight:800;
  font-size:clamp(1.7rem, 4.5vw, 2.5rem);
  margin-bottom:10px;
}
.ctc-hero p{
  color:#e8f3f6;
  font-size:clamp(.85rem, 1.8vw, 1rem);
  margin-bottom:0;
}
.ctc-hero-graphic{
  position:absolute;
  right:0;
  top:0;
  height:100%;
  width:45%;
  opacity:.55;
  pointer-events:none;
}

/* ============ BREADCRUMB ============ */
.ctc-breadcrumb{
  font-size:.82rem;
  margin:22px 0 6px;
}
.ctc-breadcrumb a{
  color:var(--teal);
  text-decoration:none;
}
.ctc-breadcrumb a:hover{ text-decoration:underline; }
.ctc-breadcrumb .sep{
  color:#a9b7bc;
  margin:0 6px;
}
.ctc-breadcrumb .current{
  color:#8a9aa0;
}

/* ============ GET IN TOUCH ============ */
.ctc-heading{
  color:var(--teal);
  font-weight:800;
  font-size:clamp(1.5rem, 3.5vw, 2rem);
  margin-bottom:12px;
}
.ctc-intro{
  font-size:.88rem;
  line-height:1.7;
  max-width:820px;
  margin-bottom:22px;
}
.ctc-intro a{
  color:var(--teal);
}

/* Tabs */
.ctc-tabs{
  display:flex;
  gap:10px;
  margin-bottom:0;
}
.ctc-tab-btn{
  border:none;
  padding:10px 22px;
  border-radius:9999px;
  font-size:1rem;
  font-weight:500;
  letter-spacing: .025em;
  cursor:pointer;
  background:var(--navy);
  color:#fff;
  transition:filter .2s ease, transform .15s ease;
}
.ctc-tab-btn.active{
  background:var(--teal);
}
.ctc-tab-btn:hover{
  filter:brightness(1.08);
}

/* ============ FORM PANEL ============ */
.ctc-form-panel{
  background:var(--teal);
  border-radius:6px;
  padding:34px 32px 30px;
  margin-top:20px;
  font-size: 18px;
  border-radius: 10px;
  padding: 3rem;
}

.ctc-form-panel h3{
  color:#fff;
  font-weight:800;
  font-size:x3rem;
  margin-bottom:22px;
}
.ctc-field{
  margin-bottom:16px;
}
.ctc-field label{
  color:#fff;
  font-size: 1.125rem;
  font-weight:600;
  margin-bottom:6px;
  display:block;
}
.ctc-field .form-control{
  border:none;
  border-radius:4px;
  padding: 1.25rem;
  font-size: 18px;
  border-radius: 10px;
  background:#fbfcfc;
}

.ctc-field .form-control:focus{
  box-shadow:0 0 0 3px rgba(255,255,255,.35);
}
.ctc-field textarea.form-control{
  min-height:110px;
  resize:vertical;
}
.ctc-submit-btn{
  background:var(--pink);
  color:#fff;
  border:none;
  border-radius:4px;
  padding:11px 24px;
  font-size:.85rem;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:filter .2s ease, transform .15s ease;
}
.ctc-submit-btn:hover{
  filter:brightness(0.92);
  color:#fff;
  transform:translateY(-1px);
}

/* ============ SIDEBAR ============ */
.ctc-side-card{
  background:#f4f6f7;
  border-radius:6px;
  padding:22px 24px;
  margin-top:22px;
}
.ctc-side-card h4{
  color:var(--teal);
  font-weight:800;
  font-size:1.1rem;
  margin-bottom:14px;
}
.ctc-side-card p{
  font-size:.85rem;
  margin-bottom:6px;
  color:#4a5b61;
}
.ctc-side-card a{
  color:#4a5b61;
  text-decoration:none;
}
.ctc-side-card a:hover{ color:var(--teal); }
.ctc-social{
  display:flex;
  gap:10px;
  margin-top:14px;
}
.ctc-social a{
  width:30px;
  height:30px;
  border-radius:50%;
  background:var(--navy);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.85rem;
  transition:background .2s ease;
}
.ctc-social a:hover{
  background:var(--teal);
  color:#fff;
}

.ctc-map-wrap{
  margin-top:16px;
  border-radius:6px;
  overflow:hidden;
  box-shadow:0 1px 4px rgba(0,0,0,.1);
}
.ctc-map-wrap iframe{
  width:100%;
  height:260px;
  border:0;
  display:block;
}

/* ============ FULL RESPONSIVE ============ */

/* Tablets (≤991px) */
@media (max-width: 991px){
  .ctc-hero{ padding:38px 30px; }
  .ctc-form-panel{ padding:28px 24px 24px; }
}

/* Small tablets / phones (≤767px) */
@media (max-width: 767px){
  .ctc-hero{ padding:30px 22px; margin-top:18px; }
  .ctc-hero .nv-icons{ font-size:.9rem; letter-spacing:5px; margin-bottom:12px; }
  .ctc-hero-graphic{ width:60%; opacity:.35; }
  .ctc-tabs{ flex-wrap:wrap; }
  .ctc-tab-btn{ flex:1; text-align:center; }
  .ctc-side-card{ margin-top:16px; }
}

/* Phones (≤575px) */
@media (max-width: 575px){
  .ctc-hero{ padding:26px 18px; border-radius:0; }
  .ctc-hero-graphic{ display:none; }
  .ctc-form-panel{ padding:22px 16px 20px; }
  .ctc-submit-btn{ width:100%; justify-content:center; }
}


a{ color:var(--teal); }

/* ============ HERO ============ */
.mm-hero{
  position:relative;
  overflow:hidden;
  min-height:420px;
  display:flex;
  align-items:center;
  background-image:
    linear-gradient(90deg, rgba(10,20,26,.72) 0%, rgba(10,20,26,.42) 55%, rgba(10,20,26,.15) 100%),
    url('https://images.unsplash.com/photo-1556740758-90de374c12ad?w=1600&h=800&fit=crop');
  background-size:cover;
  background-position:center;
}
.mm-hero-inner{
  position:relative;
  width:100%;
  padding:60px 0;
}
.mm-hero h1{
  color:#fff;
  font-weight:800;
  font-size:clamp(2rem, 5vw, 3.2rem);
  margin-bottom:14px;
}
.mm-hero p{
  color:#f1f6f7;
  font-size:clamp(.9rem, 1.8vw, 1.1rem);
  margin-bottom:26px;
  max-width:520px;
}
.mm-hero-btn{
  background:var(--pink);
  color:#fff;
  border:none;
  padding:13px 26px;
  border-radius:4px;
  font-weight:600;
  font-size:.9rem;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:filter .2s ease, transform .15s ease;
}
.mm-hero-btn:hover{
  filter:brightness(0.92);
  color:#fff;
  transform:translateY(-1px);
}

/* review + partner badges top-right */
.mm-badges{
  position:absolute;
  top:22px;
  right:22px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
  z-index:2;
}
.mm-badge{
  background:#fff;
  border-radius:6px;
  padding:8px 14px;
  display:flex;
  align-items:center;
  gap:6px;
  font-size:.78rem;
  font-weight:600;
  color:#2b2b2b;
  box-shadow:0 2px 6px rgba(0,0,0,.15);
  white-space:nowrap;
}
.mm-badge .stars{ color:#f5a623; font-size:.75rem; letter-spacing:1px; }
.mm-badge .check{ color:#2ecc71; font-size:.85rem; }

/* partner logo bottom-right */
.mm-partner-badge{
  position:absolute;
  bottom:22px;
  right:22px;
  background:#fff;
  border-radius:6px;
  padding:14px 22px;
  box-shadow:0 3px 10px rgba(0,0,0,.18);
  font-weight:800;
  font-size:1rem;
  color:var(--teal);
  z-index:2;
}

/* ============ SOLUTIONS CARDS ============ */
.mm-solutions{
  margin-top:36px;
}
.mm-sol-card{
  position:relative;
  border-radius:4px;
  overflow:hidden;
  height:100%;
}
.mm-sol-card img{
  width:100%;
  height:310px;
  object-fit:cover;
  display:block;
  transition:transform .35s ease;
}
.mm-sol-card:hover img{
  transform:scale(1.06);
}
.mm-sol-body{
  background:var(--teal);
  padding:18px 20px 20px;
}
.mm-sol-icon{
  width:38px;
  height:38px;
  border-radius:4px;
  background:#fff;
  color:var(--teal);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.1rem;
  margin-bottom:12px;
  margin-top:-38px;
  position:relative;
  z-index:1;
}
.mm-sol-body h3{
  color:#fff;
  font-weight:700;
  font-size: 1.875rem;
  line-height: 2.25rem;
  margin-bottom:10px;
}
.mm-sol-body a{
  color:#eaf4f7;
  font-size:.9rem;
  text-decoration:none;
  font-weight:600;
}
.mm-sol-body a:hover{
  color:#fff;
  text-decoration:none;
}

/* ============ BREADCRUMB ============ */
.mm-breadcrumb{
  font-size:.82rem;
  margin:40px 0 14px;
}
.mm-breadcrumb a{ text-decoration:none; }
.mm-breadcrumb a:hover{ text-decoration:underline; }
.mm-breadcrumb .sep{ color:#a9b7bc; margin:0 6px; }
.mm-breadcrumb .current{ color:#8a9aa0; }

/* ============ INTRO SECTION ============ */
.mm-intro-heading{
  color:var(--teal);
  font-weight:800;
  font-size:clamp(1.5rem, 3.5vw, 2rem);
  margin-bottom:16px;
}
.mm-intro p{
  font-size:.88rem;
  line-height:1.75;
  margin-bottom:16px;
}
.mm-intro img{
  width:100%;
  height:100%;
  min-height:280px;
  object-fit:cover;
  border-radius:4px;
}
.mm-feature-list{
  list-style:none;
  padding:0;
  margin:0 0 18px;
}
.mm-feature-list li{
  display:flex;
  gap:10px;
  margin-bottom:12px;
  font-size:.86rem;
  line-height:1.6;
}
.mm-feature-list li i{
  color:var(--teal);
  margin-top:3px;
  flex-shrink:0;
}
.mm-feature-list li strong{
  color:var(--navy);
}

/* ============ MICRO MARKET VENDING SECTION ============ */
.mm-vending{
  margin-top:20px;
}
.mm-vending img{
  width:100%;
  height:100%;
  min-height:320px;
  object-fit:cover;
  border-radius:4px;
}
.mm-vending h2{
  color:var(--teal);
  font-weight:800;
  font-size:clamp(1.4rem, 3.2vw, 1.9rem);
  margin-bottom:16px;
}
.mm-vending p{
  font-size:.88rem;
  line-height:1.75;
  margin-bottom:16px;
}

/* ============ LIBERTY LONDON FEATURE CARD ============ */
.mm-liberty{
  margin-top:50px;
  border-radius:4px;
  overflow:hidden;
  box-shadow:0 2px 10px rgba(0,0,0,.08);
}
.mm-liberty-left{
  background:var(--navy);
  padding:44px 40px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  height:100%;
}
.mm-liberty-left h3{
  color:#fff;
  font-weight:800;
  font-size:clamp(1.3rem, 3vw, 1.7rem);
  margin-bottom:14px;
}
.mm-liberty-left p{
  color:#c9d3d8;
  font-size:.85rem;
  line-height:1.6;
  margin-bottom:22px;
}
.mm-liberty-btn{
  background:var(--pink);
  color:#fff;
  border:none;
  padding:11px 24px;
  border-radius:4px;
  font-weight:600;
  font-size:.85rem;
  text-decoration:none;
  display:inline-block;
  align-self:flex-start;
  transition:filter .2s ease, transform .15s ease;
}
.mm-liberty-btn:hover{
  filter:brightness(0.92);
  color:#fff;
  transform:translateY(-1px);
}
.mm-liberty-right{
  position:relative;
  min-height:260px;
}
.mm-liberty-right img{
  width:100%;
  height:100%;
  min-height:260px;
  object-fit:cover;
  display:block;
}
.mm-liberty-logo{
  position:absolute;
  right:20px;
  bottom:20px;
  background:#fff;
  padding:10px 18px;
  border-radius:4px;
  font-weight:800;
  font-size:1rem;
  color:#1a1a1a;
  box-shadow:0 2px 8px rgba(0,0,0,.2);
}

/* ============ FULL RESPONSIVE ============ */

/* Tablets (≤991px) */
@media (max-width: 991px){
  .mm-hero{ min-height:380px; }
  .mm-badges{ top:16px; right:16px; }
  .mm-partner-badge{ bottom:16px; right:16px; padding:10px 16px; font-size:.85rem; }
  .mm-liberty-left{ padding:36px 30px; }
}

/* Small tablets / phones (≤767px) */
@media (max-width: 767px){
  .mm-hero{ min-height:auto; padding-top:120px; }
  .mm-badges{
    position:static;
    padding:16px 16px 0;
    justify-content:flex-start;
  }
  .mm-hero-inner{ padding:20px 0 40px; }
  .mm-partner-badge{
    position:static;
    display:inline-block;
    margin:16px 16px 0;
  }
  .mm-sol-body{ padding:16px 16px 18px; }
  .mm-intro img, .mm-vending img{ min-height:220px; margin-bottom:20px; }
  .mm-liberty-left{ padding:30px 22px; }
  .mm-liberty-right{ min-height:220px; }
}

/* Phones (≤575px) */
@media (max-width: 575px){
  .mm-hero{ padding-top:0; }
  .mm-hero-inner{ padding:16px 0 30px; }
  .mm-hero h1{ font-size:1.9rem; }
  .mm-badge{ padding:6px 10px; font-size:.7rem; }
  .mm-hero-btn{ width:100%; justify-content:center; }
  .mm-sol-card img{ height:180px; }
}

.nv-top-strip{
  height:6px;
  background:var(--pink);
  width:100%;
}

/* ============ BREADCRUMB ============ */
.faq-breadcrumb{
  font-size:.82rem;
  margin:22px 0 14px;
}
.faq-breadcrumb a{
  color:var(--teal);
  text-decoration:none;
}
.faq-breadcrumb a:hover{ text-decoration:underline; }
.faq-breadcrumb .sep{
  color:#a9b7bc;
  margin:0 6px;
}
.faq-breadcrumb .current{
  color:#8a9aa0;
}

/* ============ HEADING ============ */
.faq-heading{
  color:var(--teal);
  font-weight:800;
  font-size:clamp(1.5rem, 3.5vw, 2rem);
  margin-bottom:14px;
}
.faq-intro{
  font-size:.85rem;
  line-height:1.7;
  max-width:820px;
  margin-bottom:6px;
}
.faq-intro.small-note{
  color:var(--teal);
  margin-bottom:20px;
}
.faq-intro.small-note a{
  color:var(--teal);
  font-weight:600;
}

/* ============ CATEGORY FILTER ============ */
.faq-filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:30px;
}
.faq-filter-btn{
  border:none;
  background:var(--teal);
  color:#fff;
  font-size:.8rem;
  font-weight:600;
  padding:9px 18px;
  border-radius:4px;
  cursor:pointer;
  transition:filter .2s ease, transform .15s ease;
}
.faq-filter-btn:hover{
  filter:brightness(1.08);
}
.faq-filter-btn.active{
  background:var(--navy);
}

/* ============ ACCORDION LIST ============ */
.faq-list{
  border-top:1px solid #e6ebed;
}
.faq-item{
  border-bottom:1px solid #e6ebed;
  margin-bottom: 15px;
}
.faq-item.d-none{ display:none !important; }

.faq-question{
  width:100%;
  background:#fff;
  border:none;
  text-align:left;
  padding:18px 10px;
  font-size:1.1rem;
  font-weight:500;
  color:var(--navy);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  cursor:pointer;
  transition:background .2s ease, color .2s ease, padding .2s ease;
}
.faq-question .chev{
  color:var(--teal);
  transition:transform .25s ease, color .2s ease;
  flex-shrink:0;
}
.faq-question:hover{
    background:var(--pink);
    color:#fff;
}

/* Open / active state */
.faq-item.is-open .faq-question{
  background:var(--pink);
  color:#fff;
  padding:14px 18px;
  border-radius:2px;
}
.faq-item.is-open .faq-question .chev{
  color:#fff;
  transform:rotate(180deg);
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
  background:#f6f8f9;
}
.faq-item.is-open .faq-answer{
  max-height:400px;
}
.faq-answer-inner{
  padding:16px 18px;
  font-size:1rem;
  font-weight: 400;
  line-height:1.6;
  color:#202224;
}

/* ============ FULL RESPONSIVE ============ */

/* Tablets (≤991px) */
@media (max-width: 991px){
  .faq-filters{ gap:8px; }
  .faq-filter-btn{ padding:8px 14px; font-size:.78rem; }
}

/* Small tablets / phones (≤767px) */
@media (max-width: 767px){
  .faq-question{ font-size:.85rem; padding:16px 2px; }
  .faq-item.is-open .faq-question{ padding:12px 14px; }
  .faq-answer-inner{ padding:14px; font-size:.8rem; }
}

/* Phones (≤575px) */
@media (max-width: 575px){
  .faq-filters{ flex-direction:column; }
  .faq-filter-btn{ width:100%; text-align:center; }
  .faq-question{ align-items:flex-start; }
}

/* thoughtful-coffee */

a{ color:var(--navy); }

.tc-script{
  font-family:'Fredoka', sans-serif;
}

/* ============ HERO ============ */
/* =========================
   HERO SECTION
========================= */
.tc-hero {
    position: relative;
    height: 470px;
    overflow: hidden;
    background: #ddd;
}

.tc-hero-row {
    position: relative;
    width: 100%;
    height: 470px;
}

/* Full width hero image */
.tc-hero-imgwrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 470px;
    z-index: 1;
}

.tc-hero-imgwrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

/* Dark overlay */
.tc-hero-imgwrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(20, 25, 30, 0.38) 0%,
        rgba(20, 25, 30, 0.20) 32%,
        rgba(20, 25, 30, 0.03) 62%,
        rgba(20, 25, 30, 0) 100%
    );
    z-index: 2;
}

/* =========================
   HERO CONTENT
========================= */
.tc-hero-text {
    position: absolute;
    z-index: 5;

    left: 17.7%;
    top: 50%;
    transform: translateY(-50%);

    width: 570px;
    max-width: 42vw;

    padding: 0;
}

.tc-hero-text h1 {
    margin: 0 0 18px;

    font-family: "Fraunces", serif;
    font-size: clamp(2.5rem, 4.2vw, 4.2rem);
    font-weight: 700;
    font-style: normal;
    line-height: 0.98;

    color: #fff;

    letter-spacing: -1.5px;
}

.tc-hero-text p {
    margin: 0 0 27px;

    color: #fff;

    font-size: 17px;
    line-height: 1.5;
    font-weight: 400;
}

.tc-hero-text p b {
    font-weight: 700;
}

/* Button */
.tc-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 17px 10px 15px;

    background: #f1d1c0;
    color: #06245d;

    border-radius: 25px;

    font-size: 13px;
    font-weight: 700;
    text-decoration: none;

    transition: all 0.2s ease;
}

.tc-hero-btn i {
    font-size: 13px;
}

.tc-hero-btn:hover {
    background: #fff;
    color: #06245d;
    transform: translateY(-1px);
}

/* =========================
   BUTTERFLY
========================= */
.tc-butterfly {
    position: absolute;

    top: 0;
    left: 29.5%;

    width: 72px;
    height: 68px;

    z-index: 6;

    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, .2));

    animation: tc-flutter 3.2s ease-in-out infinite;
}

@keyframes tc-flutter {
    0%, 100% {
        transform: rotate(-5deg) scale(1);
    }

    50% {
        transform: rotate(5deg) scale(1.04);
    }
}

/* =========================
   WHITE CURVED WAVE
========================= */
.tc-hero-wave {
    position: absolute;

    left: 0;
    right: 0;
    bottom: -1px;

    height: 135px;

    z-index: 10;

    line-height: 0;
}

.tc-hero-wave svg {
    display: block;

    width: 100%;
    height: 100%;
}

/* =========================
   DONATION / SUPPORT BAR
========================= */
.tc-support {
    min-height: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 20px 30px;
}

.tc-support-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.tc-support-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1029e8;
    white-space: nowrap;
}

.tc-support-logo-icon {
    width: 48px;
    height: 48px;
    border: 2px solid #1738ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.tc-support-logo-text {
    line-height: 1.05;
}

.tc-support-logo-text small {
    display: block;
    font-size: 9px;
    font-weight: 500;
    margin-bottom: 3px;
}

.tc-support-logo-text strong {
    display: block;

    font-size: 19px;
    font-weight: 700;
}

.tc-support-logo-text span {
    display: block;
    margin-top: 3px;
    font-size: 8px;
    color: #1029e8;
}

.tc-support-text {
    color: #10295f;
    font-size: 1.5rem;
    line-height: 1.4;
}

.tc-support-text strong {
    font-weight: 700;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {

    .tc-hero,
    .tc-hero-row,
    .tc-hero-imgwrap {
        height: 430px;
    }

    .tc-hero-text {
        left: 8%;
        max-width: 55vw;
    }

    .tc-hero-text h1 {
        font-size: 3rem;
    }

    .tc-hero-text p {
        font-size: 15px;
    }

    .tc-support-inner {
        gap: 25px;
    }

    .tc-support-text {
        font-size: 14px;
    }
}

@media (max-width: 767px) {

    .tc-hero,
    .tc-hero-row,
    .tc-hero-imgwrap {
        height: 500px;
    }

    .tc-hero-imgwrap img {
        object-position: 60% center;
    }

    .tc-hero-text {
        left: 25px;
        right: 25px;
        top: 42%;
        width: auto;
        max-width: none;
    }

    .tc-hero-text h1 {
        font-size: 2.7rem;
    }

    .tc-hero-text p {
        font-size: 15px;
        max-width: 380px;
    }

    .tc-hero-wave {
        height: 90px;
    }

    .tc-support {
        padding: 25px 20px;
    }

    .tc-support-inner {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }

    .tc-support-logo {
        justify-content: center;
    }
}

/* ============ SECTION HEADERS (shared) ============ */
.tc-section-head{
  text-align:center;
  margin-bottom:40px;
}
.tc-sun{
  font-size:1.6rem;
  color:var(--tc-coral);
  margin-bottom:10px;
}
.tc-section-head h2{
  font-family:'Fredoka', sans-serif;
  font-weight:700;
  color:var(--navy);
  font-size:clamp(1.6rem, 4vw, 2.3rem);
  letter-spacing:.5px;
  margin-bottom:10px;
}
.tc-section-head p{
  font-size:.88rem;
  color:var(--tc-text);
  margin:0;
}

/* ============ OUR COFFEE ============ */
/* =========================================
   OUR COFFEE SECTION
========================================= */

.tc-coffee-section {
    background: #f7f9fb;
    padding: 75px 0 70px;
    overflow: hidden;
}


/* =========================================
   SECTION HEADER
========================================= */

.tc-section-head {
    text-align: center;
    margin-bottom: 92px;
}

.tc-sun {
    width: 100px;
    height: 65px;
    margin: 0 auto 25px;

    position: relative;

    color: #e99575;
    font-size: 0;
}

/* Sun rays */
.tc-sun::before {
    content: "";
    position: absolute;

    width: 136px;
    height: 64px;

    left: 50%;
    top: 0;

    transform: translateX(-50%);

    background:
        linear-gradient(90deg, transparent 0 8%, #e99575 8% 15%, transparent 15% 22%),
        linear-gradient(90deg, transparent 22% 30%, #e99575 30% 37%, transparent 37% 45%),
        linear-gradient(90deg, transparent 45% 53%, #e99575 53% 60%, transparent 60% 68%),
        linear-gradient(90deg, transparent 68% 75%, #e99575 75% 82%, transparent 82% 90%);

    clip-path: polygon(
        0 100%,
        5% 78%,
        13% 84%,
        18% 48%,
        27% 70%,
        35% 27%,
        45% 65%,
        50% 0,
        55% 65%,
        65% 27%,
        73% 70%,
        82% 48%,
        87% 84%,
        95% 78%,
        100% 100%
    );
}

.tc-section-head h2 {
    margin: 0;

    color: #0c5594;

    font-family: Arial, sans-serif;
    font-size: 58px;
    font-weight: 700;

    letter-spacing: 2px;
    line-height: 1.1;
}

.tc-section-head p {
    margin: 15px 0 0;

    color: #082e68;

    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
}


/* =========================================
   PRODUCT GRID
========================================= */

.tc-coffee-section .row {
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
    row-gap: 70px;
}


/* =========================================
   PRODUCT
========================================= */

.tc-product {
    display: flex;
    align-items: center;

    gap: 78px;

    min-height: 285px;

    margin: 0 auto;

    max-width: 760px;
}


/* =========================================
   PRODUCT IMAGE AREA
========================================= */

.tc-product-imgwrap {
    position: relative;

    width: 260px;
    height: 260px;

    flex: 0 0 260px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: visible;
}


/* Coffee bag */
.tc-product-imgwrap img {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 255px;

    max-width: none;

    object-fit: contain;

    display: block;

    border-radius: 0;

    box-shadow: none;

    background: transparent;
}


/* Certification badge */
.tc-cert-badge {
    position: absolute;

    left: -18px;
    bottom: 5px;

    width: 72px;
    height: 72px;

    border-radius: 50%;

    background: #fff;

    border: 3px solid #123d53;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 5;

    font-size: 27px;

    box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
}


.tc-product-imgwrap img {
    flex-shrink: 0;
}

/* Product */
.tc-product {
    display: flex;
    align-items: center;

    gap: 65px;

    min-height: 270px;

    margin-bottom: 50px;
}


/* =========================================
   PRODUCT CONTENT
========================================= */

.tc-product-body {
    width: 320px;
    flex: 0 0 320px;
}

.tc-product-body h3 {
    color: #0b3269;

    font-size: 20px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 2px;

    line-height: 1.2;

    margin: 0 0 18px;
}

.tc-product-body p {
    color: #0b3269;

    font-size: 16px;

    line-height: 1.45;

    margin: 0 0 20px;

    min-height: 47px;
}


/* =========================================
   STRENGTH BAR
========================================= */

.tc-strength {
    width: 320px;

    height: 35px;

    display: flex;
    align-items: center;

    justify-content: space-between;

    background: #1b3768;

    border-radius: 20px;

    padding: 0 13px;

    margin-bottom: 16px;
}

.tc-strength span.label {
    color: #fff;

    font-size: 15px;

    font-weight: 500;

    white-space: nowrap;
}

.tc-strength .dots {
    display: flex;

    align-items: center;

    gap: 5px;
}

.tc-strength .dots i {
    width: 23px;
    height: 23px;

    border-radius: 50%;

    display: block;

    background: transparent;

    border: 1px solid #fff;
}

.tc-strength .dots i.filled {
    background: #e99575;

    border-color: #fff;

    box-shadow:
        inset 0 0 0 4px #1b3768;
}


/* =========================================
   ORDER BUTTON
========================================= */

.tc-order-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    background: #f0d0c0;

    color: #0b3269;

    padding: 11px 20px;

    min-width: 148px;

    border-radius: 28px;

    font-size: 16px;

    font-weight: 700;

    text-decoration: none;

    transition:
        transform .2s ease,
        background .2s ease;
}

.tc-order-btn:hover {
    background: #e9c2ae;

    color: #0b3269;

    transform: translateY(-2px);
}


/* =========================================
   PRODUCT BACKGROUND CIRCLES
========================================= */

/* Signature */
.tc-product-imgwrap[style*="#e79066"] {
    background: #e79066 !important;
}

/* Arabica */
.tc-product-imgwrap[style*="#7fa88a"] {
    background: #7fa88a !important;
}

/* Rich Crema */
.tc-product-imgwrap[style*="#a4506b"] {
    background: #a4506b !important;
}

/* Golden Roast */
.tc-product-imgwrap[style*="#d9a441"] {
    background: #d9a441 !important;
}

/* Decaf */
.tc-product-imgwrap[style*="#3b7fa6"] {
    background: #3b7fa6 !important;
}


/* =========================================
   DESKTOP: 2 PRODUCTS PER ROW
========================================= */

@media (min-width: 992px) {

    .tc-coffee-section .col-md-6 {
        display: flex;
        justify-content: center;
    }

    .tc-product {
        width: 100%;
    }
}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1400px) {

    .tc-product {
        max-width: 780px;
        gap: 90px;
    }

    .tc-product-imgwrap {
        width: 270px;
        height: 270px;
        flex-basis: 270px;
    }

    .tc-product-imgwrap img {
        width: 100%;
        height: 275px;
    }

    .tc-product-body {
        width: 325px;
        flex-basis: 325px;
    }

    .tc-section-head {
        margin-bottom: 100px;
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {

    .tc-product {
        gap: 35px;
    }

    .tc-product-imgwrap {
        width: 220px;
        height: 220px;
        flex-basis: 220px;
    }

    .tc-product-imgwrap img {
        width: 140px;
        height: 220px;
    }

    .tc-product-body {
        width: 280px;
        flex-basis: 280px;
    }

    .tc-strength {
        width: 280px;
    }

    .tc-section-head h2 {
        font-size: 48px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .tc-coffee-section {
        padding: 55px 0;
    }

    .tc-section-head {
        margin-bottom: 65px;
    }

    .tc-section-head h2 {
        font-size: 38px;
        letter-spacing: 1px;
    }

    .tc-section-head p {
        font-size: 15px;

        padding: 0 20px;
    }

    .tc-sun {
        margin-bottom: 18px;
        transform: scale(.8);
    }

    .tc-product {
        flex-direction: column;

        gap: 25px;

        text-align: center;

        min-height: auto;

        margin-bottom: 60px;
    }

    .tc-product-imgwrap {
        width: 240px;
        height: 240px;

        flex-basis: 240px;
    }

    .tc-product-imgwrap img {
        width: 150px;
        height: 240px;
    }

    .tc-cert-badge {
        left: -8px;
        bottom: 0;
    }

    .tc-product-body {
        width: 100%;
        max-width: 330px;
    }

    .tc-product-body p {
        min-height: auto;
    }

    .tc-strength {
        width: 100%;
    }

    .tc-order-btn {
        margin-top: 2px;
    }
}

/* ============ WHAT MAKES US THOUGHTFUL ============ */
.tc-thoughtful{
  background:#fff;
  padding:60px 0 50px;
}
.tc-value{
  text-align:center;
  padding:0 12px;
}
.tc-value-icon{
  width:64px;
  height:64px;
  border-radius:50%;
  background:var(--tc-gray-bg);
  color:var(--tc-coral);
  font-size:1.5rem;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 14px;
}
.tc-value h4{
  color:var(--navy);
  font-weight:700;
  font-size:.88rem;
  text-transform:uppercase;
  letter-spacing:.4px;
  margin-bottom:6px;
}
.tc-value p{
  font-size:.8rem;
  margin:0;
  color:var(--tc-text);
}

/* ============ BREADCRUMB ============ */
.tc-breadcrumb{
  font-size:1.125rem;
  margin:14px 0 26px;
}
.tc-breadcrumb a{ color:var(--navy); text-decoration:none; }
.tc-breadcrumb a:hover{ text-decoration:underline; }
.tc-breadcrumb .sep{ color:#a9b7bc; margin:0 6px; }
.tc-breadcrumb .current{ color:#8a9aa0; }

/* ============ CONTENT ROWS (wholesale / recycling / supplier) ============ */
.tc-content-row{
  margin-bottom:56px;
  align-items:center;
}
.tc-content-row h2{
  color:var(--navy);
  font-weight:400;
  font-size: 2.25rem;
  margin-bottom:16px;
  text-transform:uppercase;
}
.tc-content-row p{
  font-size: 1.125rem;
  line-height:1.75;
  margin-bottom:16px;
}
.tc-content-row p a{ color:var(--navy); font-weight:600; }
.tc-content-row img{
  width:100%;
  height:100%;
  min-height:280px;
  object-fit:cover;
  border-radius:20px;
}
.tc-outline-btn{
  background:var(--tc-coral);
  color:#fff;
  border:none;
  padding:11px 22px;
  border-radius:4px;
  font-weight:600;
  font-size:.82rem;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.tc-outline-btn:hover{
  filter:brightness(0.94);
  color:#fff;
}

/* ============ REVIEWS ============ */
.tc-reviews{
  padding:10px 0 50px;
}
.tc-reviews-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:20px;
}
.tc-reviews-tabs{
  display:flex;
  gap:16px;
  font-size:.8rem;
  color:#9aa6ac;
  flex-wrap:wrap;
}
.tc-reviews-tabs span.active{
  color:var(--navy);
  font-weight:700;
  border-bottom:2px solid var(--tc-coral);
  padding-bottom:4px;
}
.tc-reviews-score{
  font-size:.82rem;
  color:var(--tc-text);
}
.tc-reviews-score b{ color:var(--navy); }
.tc-reviews-score .stars{ color:#f5a623; }
.tc-write-review{
  background:var(--tc-coral);
  color:#fff;
  border:none;
  padding:9px 20px;
  border-radius:20px;
  font-size:.78rem;
  font-weight:600;
  text-decoration:none;
}
.tc-review-card{
  background:#fff;
  border:1px solid #eceff0;
  border-radius:6px;
  padding:18px;
  height:100%;
}
.tc-review-card .stars{ color:#f5a623; font-size:.8rem; margin-bottom:8px; }
.tc-review-card .who{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
}
.tc-review-avatar{
  width:32px; height:32px; border-radius:50%;
  background:var(--navy);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:.75rem; font-weight:700;
}
.tc-review-card .name{ font-size:.82rem; font-weight:700; color:var(--navy); }
.tc-review-card .date{ font-size:.7rem; color:#9aa6ac; }
.tc-review-card p{
  font-size:.78rem;
  line-height:1.5;
  margin:0;
  color:var(--tc-text);
}

/* ============ ORDER FORM (main brand teal — matches site root) ============ */
.tc-order-section{
  background:var(--teal);
  padding:60px 20px;
  position:relative;
  overflow:hidden;
}
.tc-order-card{
  background:#fff;
  border-radius:8px;
  max-width:680px;
  margin:0 auto;
  padding:40px 36px;
  position:relative;
  z-index:2;
}
.tc-order-card .tc-section-head h2{ color:var(--navy); }
.tc-order-field{ margin-bottom:14px; }
.tc-order-field label{
  font-size:.78rem;
  font-weight:600;
  color:var(--navy);
  margin-bottom:5px;
  display:block;
}
.tc-order-field .form-control{
  border:1px solid #e2e6e8;
  border-radius:4px;
  padding:10px 14px;
  font-size:.85rem;
  background:var(--tc-gray-bg);
}
.tc-order-submit{
  background:var(--tc-coral);
  color:#fff;
  border:none;
  padding:11px 26px;
  border-radius:4px;
  font-weight:600;
  font-size:.85rem;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.tc-order-submit:hover{ filter:brightness(0.94); color:#fff; }

.tc-supplied-by{
  text-align:center;
  color:#eaf4f7;
  font-size:.8rem;
  margin-top:30px;
  position:relative;
  z-index:2;
}
.tc-supplied-by .brand{
  font-weight:800;
  color:#fff;
  font-size:1rem;
  margin-top:6px;
}

/* ============ FULL RESPONSIVE ============ */
@media (max-width: 991px){
  .tc-butterfly{ top:16px; left:16px; width:36px; height:36px; }
  .tc-hero-text{
    position:static !important;
    padding:30px 20px;
    max-width:100%;
    background:linear-gradient(180deg, rgba(20,30,40,.75), rgba(20,30,40,.45));
  }
  .tc-hero-imgwrap img{ min-height:320px; }
  .tc-hero-row{ flex-direction:column; min-height:auto; }
  .tc-product-imgwrap{ width:100px; height:100px; }
}

@media (max-width: 767px){
  .tc-coffee-section, .tc-thoughtful, .tc-order-section{ padding:40px 0; }
  .tc-product{ flex-direction:column; align-items:flex-start; gap:14px; }
  .tc-value{ margin-bottom:26px; }
  .tc-order-card{ padding:28px 20px; }
  .tc-charity{ text-align:center; justify-content:center; }
}

@media (max-width: 575px){
  .tc-hero-text h1{ font-size:1.9rem; }
  .tc-hero-btn{ width:100%; justify-content:center; }
  .tc-order-submit{ width:100%; justify-content:center; }
  .tc-reviews-header{ flex-direction:column; align-items:flex-start; }
}
