/**
 * HCP Clinic Finder Page Wrapper Styles
 *
 * This file contains all CSS for the HCP Clinic Finder page (/hcp/clinic-finder/)
 * Uses --rx-* design tokens from redux-design-tokens plugin
 *
 * Created: December 26, 2025
 * Purpose: Separate page wrapper CSS from Elementor to enable easy updates
 */

/* ===========================================
   HCP PAGE WRAPPER
   =========================================== */

.hcf-page {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--rx-charcoal);
    line-height: 1.6;
}

.hcf-page * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ===========================================
   HERO SECTION
   =========================================== */

.hcf-hero {
    background: var(--rx-charcoal);
    padding: 30px 20px 30px;
    position: relative;
    overflow: hidden;
}

/* ===========================================
   ANIMATED ORBS
   =========================================== */

.hcf-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hcf-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--rx-blue);
    opacity: 0.4;
    top: -100px;
    right: -50px;
    animation: hcfPulse1 8s ease-in-out infinite;
}

.hcf-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--rx-blue-light);
    opacity: 0.3;
    bottom: -100px;
    left: -50px;
    animation: hcfPulse2 10s ease-in-out infinite;
}

.hcf-orb-3 {
    width: 250px;
    height: 250px;
    background: var(--rx-blue);
    opacity: 0.25;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: hcfPulse3 12s ease-in-out infinite;
}

@keyframes hcfPulse1 {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.2) translate(-20px, 20px); opacity: 0.5; }
}

@keyframes hcfPulse2 {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.15) translate(15px, -15px); opacity: 0.4; }
}

@keyframes hcfPulse3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.25; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.35; }
}

/* ===========================================
   CONTAINER
   =========================================== */

.hcf-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.hcf-header {
    text-align: center;
    margin-bottom: 24px;
}

.hcf-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: var(--rx-white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hcf-header h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--rx-white);
}

.hcf-header h1 span {
    background: linear-gradient(135deg, var(--rx-blue-light) 0%, var(--rx-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hcf-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================================
   FINDER CONTAINER
   =========================================== */

.hcf-finder {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 24px;
}

/* ===========================================
   LEGEND
   =========================================== */

.hcf-legend {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hcf-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
}

.hcf-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.hcf-legend-dot.pro {
    background: var(--rx-blue);
}

.hcf-legend-dot.ultra {
    background: var(--rx-blue-light);
}

/* ===========================================
   INFO CARDS
   =========================================== */

.hcf-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.hcf-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.hcf-info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.hcf-info-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--rx-white);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hcf-info-card h3 .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hcf-info-card h3 .dot.pro {
    background: var(--rx-blue);
}

.hcf-info-card h3 .dot.ultra {
    background: var(--rx-blue-light);
}

/* Info Card trademark styling (v4.1.5) */
.hcf-info-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* ===========================================
   LEARN MORE LINKS
   =========================================== */

.hcf-info-card .hcf-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--rx-blue-light);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hcf-info-card .hcf-link:hover {
    color: var(--rx-white);
    gap: 10px;
}

.hcf-info-card .hcf-link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
}

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

@media (max-width: 768px) {
    .hcf-hero {
        padding: 20px 15px 20px;
    }

    .hcf-header {
        margin-bottom: 16px;
    }

    .hcf-header h1 {
        font-size: 28px;
    }

    .hcf-header p {
        font-size: 14px;
    }

    .hcf-finder {
        padding: 15px;
    }

    .hcf-legend {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .hcf-info-cards {
        grid-template-columns: 1fr;
    }
}
