/* ==========================================================
PALLIATIVE CARE & HOSPICE PAGE — extends homepage design system
========================================================== */

.page-palliative {
    overflow-x: hidden;
}

.page-palliative section {
    padding: 0;
    overflow-x: hidden;
}

/* ----------------------------------------------------------
PAGE BANNER
---------------------------------------------------------- */

.page-palliative .pc-banner {
    position: relative;
    padding: 185px 0 145px;
    overflow: hidden;
    background: none;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.page-palliative .pc-banner-bg {
    position: absolute;
    inset: 0;
    background: url("../images/banner/bethshalom-banner.jpg") center center / cover no-repeat;
    transform: scale(1);
    animation: pcBannerKenBurns 14s ease-out forwards;
    will-change: transform;
}

@keyframes pcBannerKenBurns {
    from { transform: scale(1); }
    to   { transform: scale(1.06); }
}

.page-palliative .pc-banner .banner-overlay {
    background:
        linear-gradient(105deg,
            rgba(18, 30, 46, 0.9) 0%,
            rgba(32, 50, 72, 0.74) 45%,
            rgba(18, 30, 46, 0.86) 100%),
        radial-gradient(ellipse at 22% 28%,
            rgba(132, 147, 15, 0.15) 0%,
            transparent 55%),
        radial-gradient(ellipse at 82% 68%,
            rgba(212, 175, 55, 0.1) 0%,
            transparent 50%);
    z-index: 1;
}

.page-palliative .pc-banner-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        #84930F 20%,
        #D4AF37 50%,
        #84930F 80%,
        transparent 100%);
    z-index: 3;
}

.page-palliative .pc-banner .container {
    position: relative;
    z-index: 2;
}

.page-palliative .pc-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    margin-bottom: 26px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.page-palliative .pc-banner-badge i {
    color: #D4AF37;
    font-size: 11px;
}

.page-palliative .pc-banner h1 {
    font-family: "Cormorant Garamond", serif;
    color: #fff;
    font-size: clamp(36px, 4.8vw, 56px);
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.page-palliative .pc-banner h1 span {
    color: #D4AF37;
}

.page-palliative .pc-banner-divider {
    display: flex;
    justify-content: center;
    margin: 22px 0 24px;
}

.page-palliative .pc-banner-divider span {
    display: block;
    width: 64px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #84930F, #D4AF37, #84930F);
}

.page-palliative .pc-banner p {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(18px, 2.2vw, 24px);
    font-style: italic;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.88);
}

.page-palliative .pc-breadcrumb {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 10px 22px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.page-palliative .pc-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.45);
}

.page-palliative .pc-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-palliative .pc-breadcrumb a:hover {
    color: #D4AF37;
}

.page-palliative .pc-breadcrumb .breadcrumb-item.active {
    color: #D4AF37;
}

.page-palliative .pc-banner-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 72px;
    background: linear-gradient(180deg, #FCFAF6 0%, #F7F3EC 100%);
    clip-path: ellipse(78% 100% at 50% 100%);
    z-index: 2;
}

/* ----------------------------------------------------------
SHARED
---------------------------------------------------------- */

.page-palliative .pc-label {
    display: inline-block;
    padding: 8px 20px;
    margin-bottom: 16px;
    border-radius: 40px;
    background: rgba(132, 147, 15, 0.1);
    border: 1px solid rgba(132, 147, 15, 0.22);
    color: #84930F;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.page-palliative .pc-section-header {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.page-palliative .pc-section-header h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(32px, 3.8vw, 44px);
    color: #243447;
    margin-bottom: 16px;
}

.page-palliative .pc-section-header p {
    font-size: 17px;
    line-height: 1.75;
    color: #5a6a7a;
    margin: 0;
}

.page-palliative .pc-section-divider {
    display: flex;
    justify-content: center;
    margin: 18px 0 20px;
}

.page-palliative .pc-section-divider span {
    display: block;
    width: 56px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #84930F, #D4AF37, #84930F);
}

.page-palliative .pc-block h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(30px, 3.5vw, 40px);
    color: #243447;
    margin-bottom: 20px;
    line-height: 1.15;
}

.page-palliative .pc-block p {
    font-size: 16px;
    line-height: 1.85;
    color: #5a6a7a;
    margin-bottom: 18px;
}

.page-palliative .pc-block p:last-child {
    margin-bottom: 0;
}

.page-palliative .pc-img-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(34, 50, 72, 0.14);
}

.page-palliative .pc-img-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    z-index: 2;
    pointer-events: none;
}

.page-palliative .pc-img-frame img {
    width: 100%;
    display: block;
    border-radius: 24px;
}

/* ----------------------------------------------------------
SECTION BACKGROUNDS
---------------------------------------------------------- */

.page-palliative .pc-about {
    padding: 110px 0;
    background: linear-gradient(180deg, #FCFAF6 0%, #F7F3EC 100%);
}

.page-palliative .pc-services {
    padding: 110px 0 120px;
    background: linear-gradient(180deg, #fff 0%, #FAF8F4 55%, #F7F3EC 100%);
    position: relative;
    overflow: hidden;
}

.page-palliative .pc-services-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        #84930F 20%,
        #D4AF37 50%,
        #84930F 80%,
        transparent 100%);
    z-index: 2;
}

.page-palliative .pc-services-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.page-palliative .pc-services-glow--left {
    width: 400px;
    height: 400px;
    top: -140px;
    left: -140px;
    background: radial-gradient(circle, rgba(132, 147, 15, 0.07) 0%, transparent 70%);
}

.page-palliative .pc-services-glow--right {
    width: 360px;
    height: 360px;
    bottom: -120px;
    right: -120px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
}

.page-palliative .pc-services .container {
    position: relative;
    z-index: 1;
}

.page-palliative .pc-philosophy {
    padding: 110px 0;
    background: #fff;
}

.page-palliative .pc-capacity {
    padding: 110px 0 120px;
    background: linear-gradient(180deg, #FCFAF6 0%, #F7F3EC 55%, #FAF8F4 100%);
    position: relative;
    overflow: hidden;
}

.page-palliative .pc-capacity-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        #84930F 20%,
        #D4AF37 50%,
        #84930F 80%,
        transparent 100%);
    z-index: 2;
}

.page-palliative .pc-capacity-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.page-palliative .pc-capacity-glow--left {
    width: 420px;
    height: 420px;
    top: -140px;
    left: -160px;
    background: radial-gradient(circle, rgba(132, 147, 15, 0.08) 0%, transparent 70%);
}

.page-palliative .pc-capacity-glow--right {
    width: 380px;
    height: 380px;
    bottom: -140px;
    right: -140px;
    background: radial-gradient(circle, rgba(67, 102, 145, 0.08) 0%, transparent 70%);
}

.page-palliative .pc-capacity .container {
    position: relative;
    z-index: 1;
}

.page-palliative .pc-capacity-track {
    display: none;
    position: relative;
    height: 2px;
    margin: 8px auto 36px;
    max-width: 720px;
}

.page-palliative .pc-capacity-track-line {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg,
        rgba(132, 147, 15, 0.2) 0%,
        #D4AF37 50%,
        rgba(67, 102, 145, 0.25) 100%);
}

@media (min-width: 768px) {
    .page-palliative .pc-capacity-track {
        display: block;
    }
}

.page-palliative .pc-capacity-grid {
    position: relative;
    z-index: 1;
}

.page-palliative .pc-capacity-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 40px 28px 30px;
    border: 1px solid rgba(67, 102, 145, 0.08);
    box-shadow: 0 14px 40px rgba(34, 50, 72, 0.07);
    text-align: center;
    height: 100%;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.45s ease,
                border-color 0.35s ease;
    overflow: hidden;
}

.page-palliative .pc-capacity-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #436691, #84930F, #D4AF37);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.page-palliative .pc-capacity-card::after {
    content: "";
    position: absolute;
    inset: auto -40% -55% -40%;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(132, 147, 15, 0.06) 0%, transparent 70%);
    pointer-events: none;
    transition: opacity 0.4s ease;
    opacity: 0.7;
}

.page-palliative .pc-capacity-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 60px rgba(34, 50, 72, 0.14);
    border-color: rgba(132, 147, 15, 0.28);
}

.page-palliative .pc-capacity-card:hover::before {
    opacity: 1;
}

.page-palliative .pc-capacity-card:hover::after {
    opacity: 1;
}

.page-palliative .pc-capacity-step {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: rgba(132, 147, 15, 0.35);
    transition: color 0.35s ease;
}

.page-palliative .pc-capacity-card:hover .pc-capacity-step {
    color: #84930F;
}

.page-palliative .pc-capacity-icon {
    position: relative;
    z-index: 1;
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(67, 102, 145, 0.1), rgba(132, 147, 15, 0.14));
    color: #84930F;
    font-size: 26px;
    transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

.page-palliative .pc-capacity-card:hover .pc-capacity-icon {
    transform: scale(1.06);
    background: linear-gradient(135deg, #436691, #84930F);
    color: #fff;
    box-shadow: 0 12px 28px rgba(132, 147, 15, 0.28);
}

.page-palliative .pc-capacity-stage {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 16px;
    padding: 7px 16px;
    border-radius: 40px;
    background: rgba(132, 147, 15, 0.1);
    border: 1px solid rgba(132, 147, 15, 0.18);
    color: #84930F;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.page-palliative .pc-capacity-figure {
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
}

.page-palliative .pc-capacity-number {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 7vw, 68px);
    font-weight: 600;
    line-height: 0.95;
    color: #243447;
    background: linear-gradient(135deg, #243447 0%, #436691 55%, #84930F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-palliative .pc-capacity-unit {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #84930F;
}

.page-palliative .pc-capacity-card h4 {
    position: relative;
    z-index: 1;
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
    font-weight: 600;
    color: #243447;
    margin-bottom: 12px;
    line-height: 1.25;
}

.page-palliative .pc-capacity-card p {
    position: relative;
    z-index: 1;
    font-size: 15px;
    color: #5a6a7a;
    line-height: 1.75;
    margin: 0 0 22px;
}

.page-palliative .pc-capacity-meter {
    position: relative;
    z-index: 1;
    height: 6px;
    border-radius: 6px;
    background: rgba(67, 102, 145, 0.08);
    overflow: hidden;
}

.page-palliative .pc-capacity-meter-fill {
    display: block;
    height: 100%;
    width: var(--pc-fill, 25%);
    border-radius: 6px;
    background: linear-gradient(90deg, #436691, #84930F, #D4AF37);
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-palliative .pc-capacity-card--featured {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 18px 48px rgba(34, 50, 72, 0.11),
                0 0 0 1px rgba(212, 175, 55, 0.14);
    background: linear-gradient(180deg, #fff 0%, #FFFCF5 100%);
}

.page-palliative .pc-capacity-card--featured::before {
    opacity: 1;
    background: linear-gradient(90deg, #D4AF37, #84930F);
}

.page-palliative .pc-capacity-card--featured .pc-capacity-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(132, 147, 15, 0.16));
    color: #6C5A1A;
}

.page-palliative .pc-capacity-card--featured:hover .pc-capacity-icon {
    background: linear-gradient(135deg, #D4AF37, #84930F);
    color: #243447;
}

.page-palliative .pc-capacity-card--featured .pc-capacity-stage {
    background: rgba(212, 175, 55, 0.16);
    border-color: rgba(212, 175, 55, 0.35);
    color: #8A7020;
}

.page-palliative .pc-capacity-card--vision .pc-capacity-icon {
    background: linear-gradient(135deg, rgba(67, 102, 145, 0.14), rgba(54, 82, 113, 0.12));
    color: #365271;
}

.page-palliative .pc-capacity-card--vision:hover .pc-capacity-icon {
    background: linear-gradient(135deg, #365271, #84930F);
    color: #fff;
}

.page-palliative .pc-capacity-card--vision .pc-capacity-stage {
    background: rgba(54, 82, 113, 0.1);
    border-color: rgba(54, 82, 113, 0.2);
    color: #365271;
}

.page-palliative .pc-block a {
    color: #84930F;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(132, 147, 15, 0.35);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-palliative .pc-block a:hover {
    color: #6d7c0d;
    border-bottom-color: #6d7c0d;
}

.page-palliative .pc-verse {
    padding: 90px 0;
    background: linear-gradient(135deg, #365271 0%, #293E56 55%, #1E2D3E 100%);
    position: relative;
    overflow: hidden;
}

.page-palliative .pc-future {
    padding: 110px 0;
    background: linear-gradient(180deg, #FCFAF6 0%, #F7F3EC 100%);
}

.page-palliative .pc-cta-wrap {
    padding: 100px 0 110px;
    background: linear-gradient(180deg, #F7F3EC 0%, #FCFAF6 100%);
}

/* ----------------------------------------------------------
SERVICE CARDS
---------------------------------------------------------- */

.page-palliative .pc-service-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 32px 22px 28px;
    border: 1px solid rgba(67, 102, 145, 0.08);
    box-shadow: 0 10px 32px rgba(34, 50, 72, 0.06);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
    height: 100%;
    text-align: center;
    overflow: hidden;
}

.page-palliative .pc-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #436691, #84930F, #D4AF37);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.page-palliative .pc-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(34, 50, 72, 0.12);
    border-color: rgba(132, 147, 15, 0.22);
}

.page-palliative .pc-service-card:hover::before {
    opacity: 1;
}

.page-palliative .pc-service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(67, 102, 145, 0.1), rgba(132, 147, 15, 0.14));
    color: #84930F;
    font-size: 26px;
    transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

.page-palliative .pc-service-card:hover .pc-service-icon {
    transform: scale(1.06);
    background: linear-gradient(135deg, #436691, #84930F);
    color: #fff;
    box-shadow: 0 10px 24px rgba(132, 147, 15, 0.28);
}

.page-palliative .pc-service-card h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 19px;
    font-weight: 600;
    color: #243447;
    margin-bottom: 10px;
    line-height: 1.25;
}

.page-palliative .pc-service-card p {
    font-size: 14px;
    color: #5a6a7a;
    line-height: 1.7;
    margin: 0;
}

/* ----------------------------------------------------------
FUTURE CARDS
---------------------------------------------------------- */

.page-palliative .pc-future-card {
    background: #fff;
    border-radius: 22px;
    padding: 36px 28px;
    border: 1px solid rgba(67, 102, 145, 0.08);
    box-shadow: 0 12px 38px rgba(34, 50, 72, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    height: 100%;
    text-align: center;
}

.page-palliative .pc-future-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(34, 50, 72, 0.12);
    border-color: rgba(212, 175, 55, 0.28);
}

.page-palliative .pc-future-card .pc-future-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(67, 102, 145, 0.1), rgba(132, 147, 15, 0.14));
    color: #84930F;
    font-size: 28px;
    transition: background 0.35s ease, color 0.35s ease;
}

.page-palliative .pc-future-card:hover .pc-future-icon {
    background: linear-gradient(135deg, #436691, #84930F);
    color: #fff;
}

.page-palliative .pc-future-card h4 {
    color: #243447;
    font-size: 19px;
    margin-bottom: 12px;
}

.page-palliative .pc-future-card p {
    font-size: 15px;
    color: #5a6a7a;
    line-height: 1.75;
    margin: 0;
}

/* ----------------------------------------------------------
SCRIPTURE
---------------------------------------------------------- */

.page-palliative .pc-verse h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(22px, 2.8vw, 30px);
    font-style: italic;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    max-width: 720px;
    margin: 0 auto 16px;
}

.page-palliative .pc-verse span {
    display: block;
    color: #D4AF37;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ----------------------------------------------------------
CTA & CONTACT
---------------------------------------------------------- */

.page-palliative .pc-cta-box {
    margin: 0;
}

.page-palliative .pc-cta-box h3 {
    font-size: clamp(26px, 3.5vw, 34px);
    line-height: 1.25;
}

.page-palliative .pc-cta-box p {
    margin-bottom: 20px;
}

.page-palliative .pc-cta-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.65;
}

.page-palliative .pc-cta-address i {
    color: #D4AF37;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.page-palliative .pc-cta-phones {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.page-palliative .pc-cta-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.page-palliative .pc-cta-phone:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(212, 175, 55, 0.45);
    color: #fff;
    transform: translateY(-2px);
}

.page-palliative .pc-cta-phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.18);
    color: #D4AF37;
    flex-shrink: 0;
}

.page-palliative .pc-cta-phone-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.page-palliative .pc-cta-phone-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.page-palliative .pc-cta-phone-number {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.3px;
}

.page-palliative .pc-cta-btn {
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    border-color: rgba(255, 255, 255, 0.35);
}

.page-palliative .pc-cta-wrap .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

/* ----------------------------------------------------------
RESPONSIVE
---------------------------------------------------------- */

@media (max-width: 991px) {
    .page-palliative .pc-banner {
        padding: 155px 0 120px;
        min-height: 460px;
    }

    .page-palliative .pc-about,
    .page-palliative .pc-services,
    .page-palliative .pc-philosophy,
    .page-palliative .pc-capacity,
    .page-palliative .pc-future {
        padding: 80px 0;
    }

    .page-palliative .pc-cta-phones {
        flex-direction: column;
    }

    .page-palliative .pc-cta-phone {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .page-palliative .pc-banner {
        padding: 135px 0 105px;
    }

    .page-palliative .pc-banner-curve {
        height: 48px;
    }

    .page-palliative .pc-about,
    .page-palliative .pc-services,
    .page-palliative .pc-philosophy,
    .page-palliative .pc-capacity,
    .page-palliative .pc-future {
        padding: 64px 0;
    }

    .page-palliative .pc-cta-wrap {
        padding: 70px 0 80px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-palliative .pc-banner-bg {
        animation: none;
    }

    .page-palliative .pc-service-card,
    .page-palliative .pc-capacity-card,
    .page-palliative .pc-future-card {
        transition: none;
    }
}
