/* ════════════════════════════════
   PAGE HERO SECTION — Contact
   Brand: #E3362E (red) | #86B413 (green)
════════════════════════════════ */

.page-hero-section {
    width: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 92px;

    /* gradient: soft peach-left → soft pink-right matching reference */
    background: linear-gradient(
        120deg,
        #fde8e8 0%,
        #fce4f0 40%,
        #f8e0f5 70%,
        #f0e4fc 100%
    );
}

/* dotted pattern overlay — top right like reference */
.page-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background-image: radial-gradient(
        circle,
        rgba(227, 54, 46, 0.15) 1.2px,
        transparent 1.2px
    );
    background-size: 18px 18px;
    pointer-events: none;
    z-index: 0;
}

/* red accent bar — right edge like reference */
.page-hero-section::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    width: 5px;
    height: 70%;
    background: #e3362e;
    border-radius: 4px 0 0 4px;
    z-index: 1;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 48px 24px;
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    color: #86b413;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.page-hero-title span {
    color: #e3362e;
}

/* Breadcrumb */
.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14.5px;
    font-weight: 500;
}

.page-hero-breadcrumb a {
    color: #e3362e;
    text-decoration: none;
    transition: color 0.2s;
}
.page-hero-breadcrumb a:hover {
    color: #86b413;
}

.breadcrumb-sep {
    color: #888;
    font-size: 13px;
}

.breadcrumb-current {
    color: #1a3a6b;
    font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .page-hero-section {
        min-height: 170px;
    }
    .page-hero-inner {
        padding: 36px 20px;
    }
    .page-hero-section::before {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .page-hero-section {
        min-height: 150px;
        margin-top: 79px;
    }
    .page-hero-title {
        font-size: 1.75rem;
    }
}
.reviews-section {
    padding: 80px 0;
    background: #fff;
}
.global-styles,
[class*="elfsight-owner"],
[class*="eapps-widget-toolbar"] {
    display: none !important;
}
