.body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --brand-teal: #0d9e8a;
    --brand-teal-dark: #0a7d6e;
    --brand-teal-glow: rgba(13, 158, 138, .15);
    --hero-bg: #f0faf8;
    --text-primary: #0f2e2a;
    --text-muted: #4a7a74;
    --brand-teal: #0d9e8a;
    --brand-teal-dark: #0a7d6e;
    --brand-teal-glow: rgba(13, 158, 138, .15);
    --text-primary: #0f2e2a;
    --text-muted: #4a7a74;
    --reviews-bg: #0b1f1e;
    --card-bg: #122b28;
    --card-border: rgba(13, 158, 138, .18);
    --star-color: #f5a623;

}

/* ══════════════════════════════
     SECTION SHELL
  ══════════════════════════════ */
.hero-section {
    background: var(--hero-bg);
    min-height: calc(100vh - 108px);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    font-family: 'Outfit', sans-serif;
}

/* Decorative blobs — desktop only */
.hero-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 158, 138, .13) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 158, 138, .09) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ══════════════════════════════
     MOBILE BACKGROUND LAYER
     Sits directly in .hero-section,
     behind everything via z-index.
     Hidden on desktop.
  ══════════════════════════════ */
.hero-bg-layer {
    display: none;
    /* shown only on mobile via media query */
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-layer .bg-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .9s ease;
}

.hero-bg-layer .bg-slide.active {
    opacity: 1;
}

.hero-bg-layer .bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Dark gradient overlay rendered inside this layer */
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top,
            rgba(6, 18, 16, .96) 0%,
            rgba(6, 18, 16, .78) 45%,
            rgba(6, 18, 16, .45) 100%);
}

/* ══════════════════════════════
     INNER GRID
  ══════════════════════════════ */
.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 5;
    /* always above bg layer */
}

/* ══════════════════════════════
     COPY — LEFT COLUMN
  ══════════════════════════════ */
.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--brand-teal-glow);
    border: 1px solid rgba(13, 158, 138, .25);
    color: var(--brand-teal-dark);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .38rem .85rem;
    border-radius: 50px;
    width: fit-content;
    animation: fadeSlideUp .6s ease both;
}

.hero-tag i {
    font-size: .75rem;
}

.hero-heading {
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.12;
    letter-spacing: -.02em;
    animation: fadeSlideUp .6s .1s ease both;
}

.hero-heading .brand-name {
    color: var(--brand-teal);
    position: relative;
    display: inline-block;
}

.hero-heading .brand-name::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-teal), transparent);
    border-radius: 2px;
}

.hero-subheading {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: -.01em;
    animation: fadeSlideUp .6s .18s ease both;
}

.hero-para {
    font-size: clamp(.88rem, 1.3vw, 1rem);
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 480px;
    animation: fadeSlideUp .6s .26s ease both;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    animation: fadeSlideUp .6s .34s ease both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: var(--brand-teal);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: .92rem;
    font-weight: 600;
    padding: .72rem 1.6rem;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .25s, transform .2s, box-shadow .25s;
    box-shadow: 0 4px 16px rgba(13, 158, 138, .3);
}

.btn-hero-primary:hover {
    background: var(--brand-teal-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 158, 138, .4);
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: transparent;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: .92rem;
    font-weight: 600;
    padding: .72rem 1.6rem;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #c5ddd9;
    transition: border-color .25s, color .25s, background .25s, transform .2s;
}

.btn-hero-ghost:hover {
    border-color: var(--brand-teal);
    color: var(--brand-teal);
    background: var(--brand-teal-glow);
    transform: translateY(-2px);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    animation: fadeSlideUp .6s .42s ease both;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .8rem;
    font-weight: 500;
    color: var(--text-muted);
}

.hero-badge i {
    color: var(--brand-teal);
    font-size: .85rem;
}

/* ══════════════════════════════
     VISUAL — RIGHT COLUMN (desktop carousel)
  ══════════════════════════════ */
.hero-visual {
    position: relative;
    animation: fadeSlideUp .7s .15s ease both;
}

.hero-carousel {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: 0 24px 64px rgba(13, 158, 138, .18), 0 4px 16px rgba(0, 0, 0, .1);
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .9s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.hero-carousel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(to top, rgba(11, 31, 30, .55), transparent);
    pointer-events: none;
    border-radius: 0 0 24px 24px;
}

.carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background .3s, transform .3s;
}

.carousel-dot.active {
    background: #fff;
    transform: scale(1.25);
}

/* Floating cards */
.hero-card {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: .7rem 1rem;
    display: flex;
    align-items: center;
    gap: .65rem;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
    z-index: 10;
    font-family: 'Outfit', sans-serif;
    animation: floatCard 4s ease-in-out infinite;
}

.hero-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--brand-teal-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-teal);
    font-size: .95rem;
    flex-shrink: 0;
}

.hero-card-label {
    font-size: .72rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1;
    margin-bottom: .2rem;
}

.hero-card-value {
    font-size: .88rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.hero-card-consultation {
    top: 22px;
    right: -28px;
    animation-delay: 0s;
}

.hero-card-hours {
    bottom: 48px;
    left: -28px;
    animation-delay: 2s;
}

/* ══════════════════════════════
     ANIMATIONS
  ══════════════════════════════ */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

/* ══════════════════════════════
     MOBILE
  ══════════════════════════════ */
@media (max-width: 900px) {

    /* Section becomes a full-viewport dark container */
    .hero-section {
        min-height: 100svh;
        background: #061210;
        align-items: flex-end;
    }

    .hero-section::before,
    .hero-section::after {
        display: none;
    }

    /* Show the dedicated background layer */
    .hero-bg-layer {
        display: block;
    }

    /* Desktop visual column: completely hidden */
    .hero-visual {
        display: none;
    }

    /* Grid: single column, anchored to bottom */
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 2.5rem 1.25rem 4rem;
        min-height: 100svh;
        align-items: flex-end;
    }

    /* White text on dark bg */
    .hero-tag {
        background: rgba(13, 158, 138, .2);
        border-color: rgba(13, 158, 138, .4);
        color: #9de8de;
    }

    .hero-heading {
        color: #ffffff;
        font-size: clamp(1.75rem, 7vw, 2.4rem);
    }

    .hero-subheading {
        color: #9de8de;
    }

    .hero-para {
        color: rgba(255, 255, 255, .75);
        max-width: 100%;
    }

    .hero-copy {
        gap: 1rem;
    }

    .hero-badge {
        color: rgba(255, 255, 255, .65);
    }

    .btn-hero-ghost {
        border-color: rgba(255, 255, 255, .35);
        color: #fff;
        background: rgba(255, 255, 255, .08);
    }

    .btn-hero-ghost:hover {
        border-color: var(--brand-teal);
        color: var(--brand-teal);
        background: var(--brand-teal-glow);
    }
}

@media (max-width: 480px) {
    .hero-inner {
        padding: 2rem 1.1rem 3.5rem;
    }

    .btn-hero-primary,
    .btn-hero-ghost {
        font-size: .84rem;
        padding: .62rem 1.2rem;
    }

    .hero-badges {
        gap: .75rem;
    }

    .hero-badge {
        font-size: .75rem;
    }
}

/* ══════════════════════════════
     TRUST BAR
  ══════════════════════════════ */
.trust-bar {
    background: var(--topbar-bg);
    padding: .85rem 0;
    font-family: 'Outfit', sans-serif;
}

.trust-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .55rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, .07);
    flex: 1;
    min-width: 160px;
}

.trust-item:last-child {
    border-right: none;
}

.trust-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(13, 158, 138, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-teal);
    font-size: .9rem;
    flex-shrink: 0;
}

.trust-item-title {
    font-size: .82rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.trust-item-sub {
    font-size: .72rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.2;
    margin-top: .1rem;
}

@media (max-width: 640px) {
    .trust-bar-inner {
        gap: .5rem;
    }

    .trust-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
        padding: .6rem 1rem;
        min-width: 45%;
        flex: 1 1 45%;
    }

    .trust-item:last-child {
        border-bottom: none;
    }
}

/* ══════════════════════════════
     CATEGORY SECTION
  ══════════════════════════════ */
.category-section {
    background: #fff;
    padding: 5rem 0 4rem;
    font-family: 'Outfit', sans-serif;
}

.category-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--brand-teal);
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 1.5px;
    background: var(--brand-teal);
    border-radius: 2px;
    opacity: .5;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -.02em;
    line-height: 1.15;
    margin: 0;
}

.section-sub {
    font-size: .95rem;
    color: var(--text-muted);
    max-width: 460px;
    margin: 0;
    line-height: 1.65;
}

/* Category grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.1rem;
}

/* Individual card */
.cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .9rem;
    padding: 1.75rem 1rem 1.5rem;
    border: 1.5px solid var(--card-border);
    border-radius: 16px;
    text-decoration: none;
    background: #fff;
    transition: border-color .25s, box-shadow .25s, transform .22s, background .25s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Hover teal glow shimmer */
.cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(13, 158, 138, .07) 0%, transparent 70%);
    opacity: 0;
    transition: opacity .3s;
}

.cat-card:hover::before {
    opacity: 1;
}

.cat-card:hover {
    border-color: var(--brand-teal);
    box-shadow: 0 8px 28px rgba(13, 158, 138, .14);
    transform: translateY(-4px);
    background: #fafffe;
}

.cat-card:hover .cat-icon-wrap {
    background: var(--brand-teal);
}

.cat-card:hover .cat-icon-wrap i {
    color: #fff;
}

/* Icon circle */
.cat-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--brand-teal-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s;
    flex-shrink: 0;
}

.cat-icon-wrap i {
    font-size: 1.3rem;
    color: var(--brand-teal);
    transition: color .25s;
}

.cat-name {
    font-size: .9rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
}

.cat-desc {
    font-size: .75rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: -.3rem;
}

/* "View All" link */
.category-footer {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: 'Outfit', sans-serif;
    font-size: .88rem;
    font-weight: 600;
    color: var(--brand-teal);
    text-decoration: none;
    border: 1.5px solid var(--brand-teal);
    padding: .6rem 1.6rem;
    border-radius: 50px;
    transition: background .2s, color .2s;
}

.btn-view-all:hover {
    background: var(--brand-teal);
    color: #fff;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .category-section {
        padding: 3.5rem 0 3rem;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .85rem;
    }

    .cat-card {
        padding: 1.4rem .85rem 1.2rem;
    }

    .cat-icon-wrap {
        width: 50px;
        height: 50px;
    }

    .cat-icon-wrap i {
        font-size: 1.1rem;
    }

    .cat-name {
        font-size: .84rem;
    }

    .cat-desc {
        font-size: .72rem;
    }
}

@media (max-width: 360px) {
    .category-grid {
        grid-template-columns: 1fr 1fr;
        gap: .65rem;
    }
}


:root {
    --brand-teal: #0d9e8a;
    --brand-teal-dark: #0a7d6e;
    --brand-teal-glow: rgba(13, 158, 138, .12);
    --text-primary: #0f2e2a;
    --text-muted: #4a7a74;
    --card-border: #e2eeec;
}

/* ══════════════════════════════
     SECTION WRAPPER
  ══════════════════════════════ */
.featured-section {
    background: #f7fdfb;
    padding: 5rem 0 4.5rem;
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Subtle background blob */
.featured-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 158, 138, .07) 0%, transparent 70%);
    pointer-events: none;
}

.featured-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════
     SECTION HEADER
  ══════════════════════════════ */
.featured-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.featured-header-left {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.featured-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--brand-teal);
}

.featured-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--brand-teal);
    border-radius: 2px;
    opacity: .6;
}

.featured-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -.02em;
    line-height: 1.15;
    margin: 0;
}

.featured-subtitle {
    font-size: .9rem;
    color: var(--text-muted);
    margin: 0;
}

.btn-see-all {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: 'Outfit', sans-serif;
    font-size: .84rem;
    font-weight: 600;
    color: var(--brand-teal);
    text-decoration: none;
    border: 1.5px solid var(--brand-teal);
    padding: .5rem 1.3rem;
    border-radius: 50px;
    white-space: nowrap;
    transition: background .2s, color .2s;
    flex-shrink: 0;
}

.btn-see-all:hover {
    background: var(--brand-teal);
    color: #fff;
}

/* ══════════════════════════════
     POSTS GRID
  ══════════════════════════════ */
.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* ══════════════════════════════
     POST CARD
  ══════════════════════════════ */
.post-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1.5px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: border-color .25s, box-shadow .25s, transform .22s;
    position: relative;
}

.post-card:hover {
    border-color: var(--brand-teal);
    box-shadow: 0 12px 36px rgba(13, 158, 138, .13);
    transform: translateY(-4px);
}

/* Image */
.post-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #e8f5f3;
    transition: transform .4s ease;
}

.post-card:hover .post-card-img {
    transform: scale(1.03);
}

/* Image wrapper clips the zoom */
.post-card-img-wrap {
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

/* Placeholder when no image */
.post-card-img-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #e0f5f1 0%, #c8ede8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-teal);
    font-size: 2.5rem;
    opacity: .4;
}

/* Category tag overlaid on image */
.post-card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--brand-teal);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: .28rem .75rem;
    border-radius: 50px;
    z-index: 2;
}

/* Body */
.post-card-body {
    padding: 1.4rem 1.5rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: .7rem;
    flex: 1;
}

.post-card-meta {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .74rem;
    color: var(--text-muted);
}

.post-card-meta i {
    font-size: .7rem;
    color: var(--brand-teal);
}

.post-card-meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--card-border);
    flex-shrink: 0;
}

.post-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card:hover .post-card-title {
    color: var(--brand-teal);
}

.post-card-preview {
    font-size: .84rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card-cta {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--brand-teal);
    margin-top: auto;
    padding-top: .3rem;
    transition: gap .2s;
}

.post-card:hover .post-card-cta {
    gap: .65rem;
}

/* ══════════════════════════════
     EMPTY STATE (no posts yet)
  ══════════════════════════════ */
.featured-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
    font-size: .9rem;
}

.featured-empty i {
    font-size: 2rem;
    color: var(--card-border);
    margin-bottom: .75rem;
    display: block;
}

/* ══════════════════════════════
     RESPONSIVE
  ══════════════════════════════ */
@media (max-width: 700px) {
    .featured-section {
        padding: 3.5rem 0 3rem;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .featured-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .post-card-body {
        padding: 1.1rem 1.1rem 1.3rem;
    }

    .post-card-title {
        font-size: .95rem;
    }
}

.carousel-control {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-control i {
    color: white;
}

.carousel-control-next {
    margin-right: 1.4rem;
}

.carousel-control-prev {
    margin-left: 1.4rem;
}

.carousel-image {
    border-radius: 20px;
}

/* Search Container Styles */
.search-input-wrapper {
    position: relative;
    flex: 1;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.suggestion-item {
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.2s;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #333;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover,
.suggestion-item.active {
    background-color: #007bff;
    color: white;
}

.suggestion-item.no-results {
    cursor: default;
    color: #6c757d;
    text-align: center;
}

.suggestion-item.no-results:hover {
    background-color: white;
    color: #6c757d;
}

/* New Arrivals Section */
.new-arrivals-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.section-header h3 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
}

.see-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border: 2px solid #1a1a1a;
    border-radius: 50px;
    background-color: transparent;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.see-all-btn:hover {
    background-color: #1a1a1a;
    color: white;
    text-decoration: none;
    transform: translateX(5px);
}

.see-all-btn i {
    transition: transform 0.3s ease;
}

.see-all-btn:hover i {
    transform: translateX(5px);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    /* padding: 0 20px; */
}

.card {
    border-radius: 10px;
    overflow: hidden;
    max-width: 18rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #dc3545;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.product-card-img {
    height: 200px;
    width: 100%;
    object-fit: contain;
    background-color: #ffffff;
    padding: 10px;
}

.card-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
    min-height: 2.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.personal-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
}

.product-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 12px;
}

.product-meta {
    flex-grow: 0;
}

.price-section {
    margin-bottom: 4px;
}

.original-price {
    font-size: 0.8rem;
    color: #888;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.discounted-price,
.pricing {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.card-actions {
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    box-sizing: border-box;
    padding: 0px 4px;
}

.card-actions button,
.card-actions a {
    width: 100%;
    padding: 8px 12px;
    font-size: 0.85rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

:root {
    --brand-teal: #0d9e8a;
    --brand-teal-dark: #0a7d6e;
    --brand-teal-glow: rgba(13, 158, 138, .15);
    --text-primary: #0f2e2a;
    --text-muted: #4a7a74;
    --reviews-bg: #0b1f1e;
    --card-bg: #122b28;
    --card-border: rgba(13, 158, 138, .18);
    --star-color: #f5a623;
}

/* ══════════════════════════════
     SECTION
  ══════════════════════════════ */
.reviews-section {
    background: var(--reviews-bg);
    padding: 5.5rem 0 5rem;
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Background texture dots */
.reviews-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(13, 158, 138, .07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Teal glow top-left */
.reviews-section::after {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 158, 138, .1) 0%, transparent 65%);
    pointer-events: none;
}

.reviews-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════
     HEADER
  ══════════════════════════════ */
.reviews-header {
    text-align: center;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}

.reviews-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--brand-teal);
}

.reviews-eyebrow::before,
.reviews-eyebrow::after {
    content: '';
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--brand-teal);
    border-radius: 2px;
    opacity: .5;
}

.reviews-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1.15;
    margin: 0;
}

.reviews-subtitle {
    font-size: .92rem;
    color: rgba(255, 255, 255, .45);
    margin: 0;
}

/* Aggregate rating row */
.reviews-aggregate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0 3rem;
    flex-wrap: wrap;
}

.agg-score {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.agg-right {
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.agg-stars {
    display: flex;
    gap: 3px;
    color: #fff700
}

.agg-stars i {
    color: #fff700;
    font-size: 1rem;
}

.agg-label {
    font-size: .78rem;
    color: rgba(255, 255, 255, .4);
}

.agg-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, .1);
    flex-shrink: 0;
}

.agg-badges {
    display: flex;
    gap: .65rem;
    flex-wrap: wrap;
}

.agg-badge {
    display: flex;
    align-items: center;
    gap: .4rem;
    background: rgba(13, 158, 138, .12);
    border: 1px solid rgba(13, 158, 138, .25);
    border-radius: 50px;
    padding: .32rem .85rem;
    font-size: .75rem;
    font-weight: 600;
    color: var(--brand-teal);
}

.agg-badge i {
    font-size: .7rem;
}

/* ══════════════════════════════
     CAROUSEL TRACK
  ══════════════════════════════ */
.reviews-carousel-wrap {
    position: relative;
    /* Fade edges */
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: scrollReviews 32s linear infinite;
    cursor: grab;
}

.reviews-track:active {
    cursor: grabbing;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes scrollReviews {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ══════════════════════════════
     REVIEW CARD
  ══════════════════════════════ */
.review-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 1.6rem 1.5rem;
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: -8px;
    right: 16px;
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(13, 158, 138, .08);
    font-family: Georgia, serif;
    pointer-events: none;
}

.review-card:hover {
    border-color: rgba(13, 158, 138, .45);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .3);
}

/* Card top: avatar + name + stars */
.review-card-top {
    display: flex;
    align-items: center;
    gap: .85rem;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    text-transform: uppercase;
    border: 2px solid rgba(13, 158, 138, .4);
}

.review-name-wrap {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.review-name {
    font-size: .88rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.review-stars {
    display: flex;
    gap: 2px;
    color: #fff700
}

.review-stars i {
    font-size: .72rem;
}

/* Quote */
.review-quote {
    font-size: .85rem;
    color: rgba(255, 255, 255, .62);
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

/* ══════════════════════════════
     CTA BANNER
  ══════════════════════════════ */
.cta-banner {
    position: relative;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
    background: #0a7d6e;
}

/* Layered background */
.cta-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, .07) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 0, 0, .15) 0%, transparent 55%),
        linear-gradient(135deg, #0d9e8a 0%, #0a7d6e 50%, #085e52 100%);
}

/* Decorative circle shapes */
.cta-banner-bg::before {
    content: '';
    position: absolute;
    top: -80px;
    right: 8%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .07);
}

.cta-banner-bg::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 5%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .06);
}

/* Inner layout — two panels */
.cta-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0;
    min-height: 260px;
}

/* Divider line */
.cta-divider {
    background: rgba(255, 255, 255, .12);
    align-self: stretch;
    margin: 2.5rem 0;
}

/* Each panel */
.cta-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 3rem;
    gap: 1rem;
}

/* Icon circle */
.cta-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-bottom: .25rem;
}

.cta-panel-title {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.01em;
    line-height: 1.2;
    margin: 0;
}

.cta-panel-text {
    font-size: .88rem;
    color: rgba(255, 255, 255, .72);
    line-height: 1.7;
    max-width: 340px;
    margin: 0;
}

/* CTA buttons row */
.cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    justify-content: center;
    margin-top: .25rem;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #fff;
    color: #0a7d6e;
    font-family: 'Outfit', sans-serif;
    font-size: .86rem;
    font-weight: 700;
    padding: .62rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
}

.btn-cta-white:hover {
    background: #f0faf8;
    color: #085e52;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: .86rem;
    font-weight: 600;
    padding: .62rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, .45);
    transition: background .2s, border-color .2s, transform .2s;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .75);
    color: #fff;
    transform: translateY(-2px);
}

/* Small trust note under buttons */
.cta-trust-note {
    font-size: .72rem;
    color: rgba(255, 255, 255, .4);
    display: flex;
    align-items: center;
    gap: .35rem;
    margin-top: -.15rem;
}

.cta-trust-note i {
    font-size: .65rem;
    color: rgba(255, 255, 255, .5);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .cta-banner-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .cta-divider {
        width: 60%;
        height: 1px;
        margin: 0 auto;
        background: rgba(255, 255, 255, .12);
        align-self: auto;
    }

    .cta-panel {
        padding: 2.5rem 1.25rem;
    }

    .cta-panel:first-child {
        padding-bottom: 1.5rem;
    }

    .cta-panel:last-child {
        padding-top: 1.5rem;
    }
}

/* Footer: verified + date */
.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: .75rem;
    border-top: 1px solid rgba(255, 255, 255, .06);
    font-size: .72rem;
    color: rgba(255, 255, 255, .28);
}

.review-verified {
    display: flex;
    align-items: center;
    gap: .35rem;
    color: var(--brand-teal);
    font-weight: 600;
    font-size: .72rem;
}

.review-verified i {
    font-size: .65rem;
}

/* ══════════════════════════════
     RESPONSIVE
  ══════════════════════════════ */
@media (max-width: 640px) {
    .reviews-section {
        padding: 3.5rem 0 3rem;
    }

    .review-card {
        width: 272px;
        padding: 1.3rem 1.2rem;
    }

    .agg-divider {
        display: none;
    }

    .agg-badges {
        justify-content: center;
    }

    .reviews-aggregate {
        gap: .75rem;
    }
}

/* Mobile optimization */
@media (max-width: 576px) {
    .card {
        max-width: 100%;
    }

    .product-card-img {
        height: 200px;
    }

    .card-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .card-actions button,
    .card-actions a {
        padding: 8px 10px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 74px;
        max-height: 40px;
    }
}

/* Tablet and smaller desktop */
@media (max-width: 768px) {
    .card {
        max-width: 100%;
    }
}

/* FAQ Section */

.faq-section {
    background-color: #eef1ec;
    padding: 80px 0;
}

.faq-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background-color: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question-text {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-icon i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    background-color: #1a1a1a;
    transform: rotate(180deg);
}

.faq-item.active .faq-icon i {
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

.faq-answer-content {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 15px;
    }

    .faq-icon {
        width: 25px;
        height: 25px;
    }

    .faq-icon i {
        font-size: 14px;
    }

    .faq-answer-content {
        font-size: 14px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .section-header h3 {
        font-size: 24px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-details .left {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }
}

@media only screen and (max-width: 992px) {
    .hero-container-grid {
        gap: 1.6rem;
        grid-template-columns: 1fr;
        padding: 30px 20px 30px 20px;
    }

    .hero-img {
        display: none;
    }

    .explainer-text {
        text-align: justify;
    }

    .search-container {
        align-self: self-start;
    }
}