/* ===========================
   Prime Care Health Solutions
   Bootstrap 5 Custom Theme
   =========================== */

:root {
    --pc-primary:       #002045;
    --pc-secondary:     #0061a5;
    --pc-accent:        #66affe;
    --pc-surface:       #f8f9ff;
    --pc-surface-low:   #eff4ff;
    --pc-surface-cont:  #e5eeff;
    --pc-surface-hi:    #d4e4fc;
    --pc-on-surface:    #0d1c2e;
    --pc-muted:         #43474e;
    --pc-outline:       #74777f;
    --pc-outline-var:   #c4c6cf;
    --pc-error:         #ba1a1a;
    --pc-badge-bg:      rgba(102,175,254,0.18);
    --pc-badge-text:    #004172;
    --transition:       all 0.22s ease;
}

/* Base */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background-color: var(--pc-surface);
    color: var(--pc-on-surface);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4, .display-font {
    font-family: 'DM Serif Display', Georgia, serif;
    color: var(--pc-primary);
}
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

/* Override Bootstrap primary */
.btn-primary {
    background-color: var(--pc-primary);
    border-color: var(--pc-primary);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary:hover, .btn-primary:focus {
    background-color: var(--pc-secondary);
    border-color: var(--pc-secondary);
    color: #fff;
}
.btn-outline-primary {
    border-color: var(--pc-primary);
    color: var(--pc-primary);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-primary:hover {
    background-color: var(--pc-primary);
    border-color: var(--pc-primary);
    color: #fff;
}
.btn-secondary-pc {
    background-color: var(--pc-secondary);
    border-color: var(--pc-secondary);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-secondary-pc:hover {
    background-color: var(--pc-primary);
    border-color: var(--pc-primary);
    color: #fff;
}
.btn-outline-white {
    border: 2px solid rgba(255,255,255,0.7);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    background: transparent;
    transition: var(--transition);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
}

/* Navbar */
.pc-navbar {
    background: #fff;
    border-bottom: 1px solid var(--pc-outline-var);
    padding: 0.75rem 0;
}
.pc-brand {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    color: var(--pc-primary) !important;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-decoration: none;
}
.pc-nav-link {
    color: var(--pc-muted) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem !important;
    border-radius: 6px;
    transition: var(--transition);
}
.pc-nav-link:hover {
    color: var(--pc-secondary) !important;
    background: var(--pc-surface-low);
}
.pc-nav-link.active {
    color: var(--pc-secondary) !important;
    background: var(--pc-badge-bg);
    font-weight: 600;
}

/* Badge / Pill Labels */
.pc-badge {
    display: inline-block;
    background: var(--pc-badge-bg);
    color: var(--pc-badge-text);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 4px 14px;
}
.pc-badge-white {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* Hero Sections */
.pc-hero {
    background: linear-gradient(135deg, var(--pc-surface-low) 0%, var(--pc-surface-cont) 100%);
    padding: 80px 0 80px;
    overflow: hidden;
    position: relative;
}
.pc-hero-dark {
    background: linear-gradient(135deg, var(--pc-primary) 0%, #0a2d5a 100%);
    padding: 80px 0;
    color: #fff;
}
.pc-hero-img {
    border-radius: 16px;
    object-fit: cover;
    width: 100%;
    height: 420px;
    box-shadow: 0 24px 60px rgba(0,32,69,0.18);
}
.pc-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

/* Stat blocks */
.pc-stat-block {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}
.pc-stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    color: #adc7f7;
    line-height: 1;
}
.pc-stat-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9fcaff;
    margin: 8px 0 12px;
}
.pc-stat-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* Cards */
.pc-card {
    background: #fff;
    border: 1px solid var(--pc-outline-var);
    border-radius: 16px;
    padding: 1.75rem;
    transition: var(--transition);
    height: 100%;
}
.pc-card:hover {
    border-color: var(--pc-secondary);
    box-shadow: 0 8px 32px rgba(0,97,165,0.12);
    transform: translateY(-2px);
}
.pc-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--pc-surface-cont);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pc-secondary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    transition: var(--transition);
}
.pc-card:hover .pc-card-icon {
    background: var(--pc-secondary);
    color: #fff;
}
.pc-card h4, .pc-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.pc-card p { color: var(--pc-muted); font-size: 0.9rem; margin: 0; }

/* Section Backgrounds */
.bg-pc-surface    { background: var(--pc-surface); }
.bg-pc-low        { background: var(--pc-surface-low); }
.bg-pc-cont       { background: var(--pc-surface-cont); }
.bg-pc-hi         { background: var(--pc-surface-hi); }
.bg-pc-primary    { background: var(--pc-primary); }
.bg-pc-primary-c  { background: #1a365d; }
.text-pc-primary  { color: var(--pc-primary); }
.text-pc-secondary { color: var(--pc-secondary); }
.text-pc-muted    { color: var(--pc-muted); }

/* Section Headings */
.pc-section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pc-secondary);
    display: block;
    margin-bottom: 0.5rem;
}
.pc-divider {
    width: 48px;
    height: 3px;
    background: var(--pc-secondary);
    border-radius: 2px;
    margin: 0.75rem auto 0;
}

/* Forms */
.pc-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--pc-muted);
    margin-bottom: 5px;
}
.pc-input {
    border: 1.5px solid var(--pc-outline-var);
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    color: var(--pc-on-surface);
    background: var(--pc-surface);
    transition: var(--transition);
    width: 100%;
}
.pc-input:focus {
    outline: none;
    border-color: var(--pc-secondary);
    box-shadow: 0 0 0 3px rgba(0,97,165,0.12);
    background: #fff;
}
.form-control.pc-input:focus {
    border-color: var(--pc-secondary);
    box-shadow: 0 0 0 3px rgba(0,97,165,0.12);
}

/* HIPAA badge */
.pc-hipaa-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,97,165,0.08);
    border: 1px solid rgba(0,97,165,0.2);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--pc-secondary);
}

/* Step circles */
.pc-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pc-secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Journey cards */
.pc-journey-card {
    background: #fff;
    border-left: 4px solid var(--pc-secondary);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 4px 16px rgba(0,32,69,0.07);
    position: relative;
    height: 100%;
}
.pc-journey-num {
    position: absolute;
    top: -14px;
    left: 16px;
    width: 30px;
    height: 30px;
    background: var(--pc-secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

/* Table */
.pc-table thead th {
    background: var(--pc-primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 14px 16px;
    border: none;
}
.pc-table-secondary thead th {
    background: var(--pc-secondary);
}
.pc-table tbody tr td {
    padding: 14px 16px;
    vertical-align: middle;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--pc-outline-var);
}
.pc-table tbody tr:last-child td { border-bottom: none; }
.pc-table tbody tr:hover { background: var(--pc-surface-low); }

/* Check list */
.pc-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pc-check-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-weight: 500;
    color: var(--pc-primary);
}
.pc-check-list li .material-symbols-outlined {
    color: var(--pc-secondary);
    font-size: 1.1rem;
}

/* Bento grid large card */
.pc-bento-large {
    background: #fff;
    border: 1px solid var(--pc-outline-var);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,32,69,0.06);
}
.pc-bento-accent {
    background: var(--pc-surface-cont);
    border: 1px solid var(--pc-outline-var);
    border-radius: 16px;
    padding: 2rem;
}
.pc-bento-dark {
    background: var(--pc-primary);
    color: #fff;
    border-radius: 16px;
    padding: 2rem;
}

/* Info cards (enrollment page) */
.pc-info-card {
    background: var(--pc-surface-low);
    border: 1px solid rgba(0,32,69,0.08);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

/* CTA Section */
.pc-cta {
    background: var(--pc-surface-hi);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
}

/* Lab result badges */
.pc-lab-badge {
    background: #ffdad6;
    color: #93000a;
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Pill tags */
.pc-pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--pc-outline-var);
    border-radius: 999px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--pc-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Video embed */
.pc-video-wrap {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,32,69,0.2);
}
.pc-video-wrap iframe {
    width: 100%; height: 100%;
    border: none;
}

/* Alert customization */
.alert-success { background: #d1fadf; border-color: #6ee7b7; color: #065f46; }
.alert-danger   { background: #fee2e2; border-color: #fca5a5; color: #7f1d1d; }

/* Footer */
.pc-footer {
    background: var(--pc-primary);
    color: rgba(255,255,255,0.8);
}
.pc-footer-heading {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9fcaff;
}
.pc-footer-links { margin: 0; padding: 0; list-style: none; }
.pc-footer-links li { margin-bottom: 8px; }
.pc-footer-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}
.pc-footer-links a:hover { color: #fff; text-decoration: underline; }

/* Spinner */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.75;
}
.btn-loading::after {
    content: '';
    display: inline-block;
    width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,0.5);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Responsive tweaks */
@media (max-width: 768px) {
    .pc-hero { padding: 50px 0; }
    .pc-hero-img { height: 260px; }
    .pc-stat-num { font-size: 1.8rem; }
}

/* Utility */
.rounded-xl { border-radius: 16px !important; }
.rounded-2xl { border-radius: 20px !important; }

/* Custom Tab Component for Support Section (Bootstrap 5 native) */
.pc-support-section {
    background-color: var(--pc-surface);
    position: relative;
}
.pc-support-tabs .nav-pills .nav-link {
    color: var(--pc-muted);
    background-color: #ffffff;
    border: 1px solid rgba(0, 32, 69, 0.06);
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 32, 69, 0.02);
}
.pc-support-tabs .nav-pills .nav-link:hover {
    background-color: var(--pc-surface-low);
    color: var(--pc-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 32, 69, 0.05);
}
.pc-support-tabs .nav-pills .nav-link.active {
    background-color: #ffffff;
    color: var(--pc-secondary);
    border: 1.5px solid var(--pc-secondary);
    box-shadow: 0 12px 28px rgba(0, 97, 165, 0.08);
}
.pc-tab-title {
    transition: color 0.3s ease;
}
.pc-tab-subtitle {
    font-size: 0.8rem;
    color: var(--pc-muted);
    margin-top: 2px;
    transition: color 0.3s ease;
}
.pc-support-tabs .nav-pills .nav-link.active .pc-tab-title {
    color: var(--pc-secondary) !important;
}
.pc-support-tabs .nav-pills .nav-link.active .pc-tab-subtitle {
    color: var(--pc-secondary) !important;
    opacity: 0.85;
}
.pc-tab-arrow {
    font-size: 1.25rem;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-5px);
    color: var(--pc-secondary);
}
.pc-support-tabs .nav-pills .nav-link.active .pc-tab-arrow {
    opacity: 1;
    transform: translateX(0);
}

.pc-content-card {
    background: linear-gradient(145deg, #093744 0%, #041c22 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(4, 28, 34, 0.25);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 540px;
    position: relative;
    overflow: hidden;
}
.pc-card-spotlight {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 175, 254, 0.12) 0%, rgba(102, 175, 254, 0) 70%);
    z-index: 0;
    pointer-events: none;
}
.pc-card-inner {
    position: relative;
    z-index: 1;
}
.pc-mockup-wrapper {
    position: relative;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}
.pc-mockup-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}
.pc-mockup-img {
    border-radius: 12px;
    width: 100%;
    height: 270px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}
.pc-content-card:hover .pc-mockup-wrapper {
    transform: translateY(-5px) scale(1.01);
}
.text-white-80 {
    color: rgba(255, 255, 255, 0.85);
}
.btn-white-cta {
    background-color: #ffffff;
    color: #0b3b49; /* Dark Teal text color */
    border: none;
    border-radius: 12px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}
.btn-white-cta:hover {
    background-color: #ffffff;
    color: #051c23;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(102, 175, 254, 0.25);
}
.btn-white-cta:active {
    transform: translateY(0);
}
.pc-badge-white {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(4px);
}

/* Animations for Tab Panes */
.pc-support-tabs .tab-content .tab-pane {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    transform: translateY(12px);
    opacity: 0;
}
.pc-support-tabs .tab-content .tab-pane.active {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive tweaks for Tab section */
@media (max-width: 991.98px) {
    .pc-support-tabs .nav-pills {
        flex-direction: row !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        padding: 4px 12px 16px !important;
        margin-bottom: 8px;
        scrollbar-width: none; /* Hide scrollbar Firefox */
        gap: 12px !important;
    }
    .pc-support-tabs .nav-pills::-webkit-scrollbar {
        display: none; /* Hide scrollbar Chrome/Safari/Opera */
    }
    .pc-support-tabs .nav-pills .nav-link {
        flex: 0 0 auto;
        width: auto;
        padding: 10px 20px;
        margin-bottom: 0;
        border-radius: 20px;
        background: #ffffff;
        border: 1px solid rgba(0, 32, 69, 0.08);
        box-shadow: 0 4px 12px rgba(0, 32, 69, 0.02);
    }
    .pc-support-tabs .nav-pills .nav-link:hover {
        transform: none;
    }
    .pc-support-tabs .nav-pills .nav-link.active {
        background-color: var(--pc-secondary);
        border-color: var(--pc-secondary);
        color: #ffffff !important;
        box-shadow: 0 8px 20px rgba(0, 97, 165, 0.18);
    }
    .pc-support-tabs .nav-pills .nav-link.active .pc-tab-title,
    .pc-support-tabs .nav-pills .nav-link.active .pc-tab-subtitle {
        color: #ffffff !important;
    }
    .pc-support-tabs .nav-pills .nav-link .pc-tab-subtitle {
        font-size: 0.75rem;
    }
    .pc-support-tabs .nav-pills .nav-link .pc-tab-arrow {
        display: none;
    }
    .pc-content-card {
        min-height: auto;
        border-radius: 24px;
    }
}
.shadow-pc { box-shadow: 0 8px 32px rgba(0,32,69,0.1); }

/* Premium Redesign Extensions */
.pc-hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 32, 69, 0.82) 0%, rgb(4 28 34 / 0%) 100%);
    z-index: 0;
    pointer-events: none;
}
.pc-hero-glass-card {
    /* background: rgba(255, 255, 255, 0.04); */
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgb(255 255 255 / 0%);
    border-radius: 32px;
    padding: 3.5rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}
.pc-hero-glass-card::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102, 175, 254, 0.15) 0%, rgba(102, 175, 254, 0) 70%);
    pointer-events: none;
}
.btn-gradient-primary {
    background: linear-gradient(135deg, var(--pc-secondary) 0%, #00aaff 100%);
    color: #ffffff !important;
    border: none;
    border-radius: 12px;
    padding: 14px 30px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 97, 165, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    display: inline-block;
}
.btn-gradient-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 32px rgba(0, 97, 165, 0.45);
    background: linear-gradient(135deg, var(--pc-secondary) 10%, #00bcff 100%);
}
.btn-glass-outline {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 14px 30px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    display: inline-block;
}
.btn-glass-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
}
.pc-card {
    background: #ffffff;
    border: 1px solid rgba(0, 32, 69, 0.05);
    border-radius: 24px;
    padding: 2.25rem 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 32, 69, 0.02);
}
.pc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 32, 69, 0.08);
    border-color: rgba(0, 97, 165, 0.15);
}
.pc-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 97, 165, 0.06);
    color: var(--pc-secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.pc-card:hover .pc-card-icon {
    background: var(--pc-secondary);
    color: #ffffff;
    transform: scale(1.05);
}
.inquiry-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(0, 32, 69, 0.05);
    box-shadow: 0 30px 60px rgba(0, 32, 69, 0.08);
    padding: 2.5rem;
}
.pc-input {
    border-radius: 12px;
    border: 1.5px solid rgba(0, 32, 69, 0.1);
    padding: 12px 16px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}
.pc-input:focus {
    border-color: var(--pc-secondary) !important;
    box-shadow: 0 0 0 4px rgba(0, 97, 165, 0.12) !important;
    background-color: #ffffff !important;
}

@media (max-width: 767.98px) {
    .pc-hero-glass-card {
        padding: 2rem 1.5rem;
        background: transparent;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
    }
    .inquiry-card {
        padding: 1.5rem;
    }
}

/* GLP-1 Plan Section */
.pc-glp1-card {
    background: #ffffff;
    border: 1px solid rgba(0, 32, 69, 0.05);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 32, 69, 0.02);
}
.pc-glp1-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--pc-secondary) 0%, var(--pc-accent) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.pc-glp1-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 97, 165, 0.12);
    border-color: rgba(0, 97, 165, 0.15);
}
.pc-glp1-card:hover::before {
    opacity: 1;
}
.pc-glp1-icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(0, 97, 165, 0.06);
    color: var(--pc-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.pc-glp1-card:hover .pc-glp1-icon-wrap {
    background: linear-gradient(135deg, var(--pc-secondary) 0%, var(--pc-accent) 100%);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 97, 165, 0.2);
}
