/*
 Theme Name:   Family Health and Life Benefits
 Theme URI:    https://healthandlifebenefits.com
 Description:  Child theme for Divi - Family Health and Life Benefits Final Expense Insurance
 Author:       Family Health and Life Benefits
 Author URI:   https://healthandlifebenefits.com
 Template:     Divi
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  health-and-life-benefits
*/

/* ==========================================================================
   Custom Styles for Family Health and Life Benefits
   ========================================================================== */

/* Color Variables */
:root {
    --hlb-primary: #1e3a8a;
    --hlb-primary-light: #2563eb;
    --hlb-accent: #f59e0b;
    --hlb-green: #16a34a;
    --hlb-text-dark: #1f2937;
    --hlb-text-light: #6b7280;
    --hlb-bg-light: #f9fafb;
    --hlb-white: #ffffff;
}

/* Global Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Sticky Phone CTA Button */
.hlb-sticky-phone {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--hlb-green);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hlb-sticky-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.5);
    color: white;
}

/* Yellow CTA Buttons */
.hlb-btn-yellow {
    background: var(--hlb-accent) !important;
    color: var(--hlb-text-dark) !important;
    border: none !important;
    padding: 16px 32px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}

.hlb-btn-yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

/* Green CTA Buttons */
.hlb-btn-green {
    background: var(--hlb-green) !important;
    color: white !important;
    border: none !important;
    padding: 16px 32px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
}

/* Trust Badge Styles */
.hlb-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Plan Cards */
.hlb-plan-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.hlb-plan-card:hover {
    transform: translateY(-5px);
}

.hlb-plan-card.popular {
    border: 2px solid var(--hlb-primary-light);
}

/* Testimonial Cards */
.hlb-testimonial {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

/* Stats Section */
.hlb-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--hlb-primary-light);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hlb-sticky-phone {
        bottom: 15px;
        right: 15px;
        padding: 10px 16px;
        font-size: 14px;
    }
}
