/*
Theme Name: HomeGuard Insurance Hub
Theme URI: https://homeguardinsurance.com
Author: Your Name
Author URI: https://yourwebsite.com
Description: A professional, fully responsive landing page template for insurance lead generation with built-in form handling, lead management, and analytics integration.
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: homeguard
Tags: landing-page, insurance, lead-generation, responsive, business, one-page
*/

/* 
 * HomeGuard Insurance Hub - Landing Page Styles
 * Fully Responsive CSS
 */

/* ==================== RESET & BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #ff6b35;
    --accent-orange: #ff8534;
    --dark-navy: #0f172a;
    --light-navy: #1e293b;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-600: #475569;
    --gray-700: #334155;
    --white: #ffffff;
    --success-green: #10b981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
span.alert-icon svg {
    margin-top: 12px;
}


/* Hide the default radio circle */
.radio-option input[type="radio"] {
    display: none;
}

/* Selected state → Make full box blue */
.radio-option input[type="radio"]:checked + .radio-label {
    color: #0b57d0;
    font-weight: 600;
}

.number-value {
    display: flex;
    padding: 8px;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

a#ringbaNumber {
    text-decoration: none;
    color: #fff !important;
    font-weight: 500;
}
.number-value {
     width: 50%;
    text-align: center;
    margin: 20px auto;
    border-radius: 30px;
        background: #f97316;
    box-shadow: 1px 8px 10px -1px;
}
 
/* Hover POP effect */
.number-value:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

 
div#phoneReveal {
    text-align: center;
}
/* Make the blue border + bg stay */
.radio-option input[type="radio"]:checked ~ .radio-label,
.radio-option input[type="radio"]:checked {
    background: rgba(59,130,246,0.07);
}

/* ⭐ MOST IMPORTANT — highlight whole .radio-option */
.radio-option input[type="radio"]:checked {
    /* Apply to parent */
}
.radio-option input[type="radio"]:checked:checked {
    /* nothing */
}

/* This is what actually changes the BORDER */
.radio-option input[type="radio"]:checked + .radio-label,
.radio-option input[type="radio"]:checked ~ .radio-label {
    border-color: transparent;
}

 
.radio-option:has(input[type="radio"]:checked) {
    border-color: #3b82f6 !important;
    background: rgba(59,130,246,0.07) !important;
}


span.bar_ {height: 20px;}

/* ==================== ALERT BANNER ==================== */
.alert-banner {
    background: #f97316;
    color: var(--white);
    padding: 0px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    /*position: sticky;*/
    top: 0;
    z-index: 1000;
}

.partners-marquee-section {
    padding: 40px 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    overflow: hidden;
}

.partners-title {
    text-align: center;
    color: #475569;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.marquee-content {
    display: flex;
    gap: 60px;
    min-width: 200%;
    animation: marqueeSlide 18s linear infinite;
    white-space: nowrap;
}

.partner-logo {
    font-size: 32px;
    font-weight: 700;
    color: #cbd5e1;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .partner-logo {
        font-size: 24px;
    }
    
    
}

@keyframes marqueeSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.alert-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.alert-icon {
    font-size: 17px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.alert-separator {
    display: flex;
    gap: 6px;
    margin-top: -3px;
    align-items: center;
    margin-left: 20px;
}
span.dot_ {
    color: #4ade80 !important;
    font-size: 30px !important;
}

/* ==================== TOP BAR ==================== */
.top-bar {
    background: var(--dark-navy);
    color: var(--white);
    padding: 12px 0;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.fire-icon {
    font-size: 20px;
}

.get-started-btn-top {
    background: var(--white);
    color: var(--dark-navy);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.get-started-btn-top:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==================== HEADER ==================== */
.site-header {
    background: var(--white);
    padding: 14px 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid #f0f0ea;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-icon {
    font-size: 28px;
}

.header-tagline {
    color: var(--gray-600);
    font-size: 14px;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight-blue {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #4b5563;
    margin-bottom: 30px;
    line-height: 1.8;
    font-weight: 600;
}

.cta-button {
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: #ff7425;
}

/* ==================== FEATURE CARDS ==================== */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    color: var(--dark-navy);
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 14px;
}

/* ==================== TRUST INDICATORS ==================== */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.trust-item {
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 600;
}

/* ==================== QUALIFICATION SECTION ==================== */
.qualification-section {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-navy);
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 1.25rem;
    margin-bottom: 50px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 10px;
}

.form-subtitle {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 30px;
}

/* ==================== FORM STYLES ==================== */
.qualification-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-option:hover {
    border-color: var(--primary-color);
    background: var(--gray-100);
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-400);
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
    background: #2563eb !important;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-label {
    font-size: 15px;
    color: var(--gray-700);
}

.submit-button {
    width: 100%;
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-button:hover {
    background: #ff7425;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==================== FORM TRUST BADGES ==================== */
.form-trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--gray-600);
}

.badge-icon {
    color: var(--success-green);
    font-weight: 700;
}

/* ==================== PARTNERS SECTION ==================== */
.partners-section {
    margin-top: 60px;
    text-align: center;
}

.partners-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-600);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.partner-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-400);
    letter-spacing: 1px;
}

/* ==================== WHY CHOOSE US SECTION ==================== */
.why-choose-section {
    background: var(--gray-100);
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.7;
}

.see-more {
    text-align: center;
    margin-top: 40px;
    color: var(--gray-600);
    font-size: 16px;
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how-it-works-section {
    padding: 80px 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-card {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.step-card p {
    color: var(--gray-600);
    font-size: 17px;
    line-height: 1.7;
}

/* ==================== TRUST FEATURES ==================== */
.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.trust-feature {
    text-align: center;
    padding: 20px;
}

.trust-feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.trust-feature h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 10px;
}

.trust-feature p {
    color: var(--gray-600);
    font-size: 14px;
}

/* ==================== FINAL CTA SECTION ==================== */
.final-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-button-large {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: var(--white);
    border: none;
    padding: 18px 50px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-xl);
}

 button.cta-button-large {
    display: flex;
    margin: auto;
    gap: 15px;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-brand .logo-text {
    font-size: 18px;
    font-weight: 700;
}

.footer-tagline {
    font-size: 14px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    opacity: 0.8;
}

.footer-disclaimer {
    margin-top: 10px;
    font-size: 12px;
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

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

    .benefits-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 15px;
    }

    .header-content {
         gap: 10px;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .form-container {
        padding: 30px 20px;
    }
    .number-value {
    width: 70%;
    }
    button.get-started-btn-top {
    margin-bottom: 4px;
}
}

/* Mobile */
@media (max-width: 480px) {
    .alert-banner {
        font-size: 12px;
        padding: 10px 0;
    }

    .alert-banner .container {
        
        gap: 5px;
    }
.top-bar-content span {
    display: contents;
}
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        font-size: 12px;
    }

    .hero-title {
        font-size: 25px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .cta-title {
        font-size: 2.25rem;
    }

    .cta-button-large {
        padding: 16px 40px;
        font-size: 18px;
    }

    .partners-logos {
        gap: 20px;
    }

    .partner-logo {
        font-size: 14px;
    }

    .form-trust-badges {
        flex-direction: column;
        gap: 10px;
    }

    .container {
        padding: 0 15px;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.benefit-card,
.step-card {
    animation: fadeInUp 0.6s ease-out;
}

/* ==================== UTILITY CLASSES ==================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }




/* === QUALIFICATION FORM SECTION === */

.qualification-section {
    background: #f8fafc;
    padding: 60px 0;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    color: #1e293b;
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #64748b;
    margin-bottom: 30px;
}

.form-container {
    max-width: 450px;
    margin: 0 auto;
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.form-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e293b;
}

.form-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 14px;
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 16px;
    color: #1e293b;
    margin-bottom: 14px;
    font-weight: 600;
}

/* === RADIO OPTIONS === */
.radio-option {
    display: flex;
    align-items: center;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background: #ffffff;
}

.radio-option:hover {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.07);
}

.radio-option input {
    margin-right: 12px;
}

.radio-label {
    font-size: 15px;
    color: #1e293b;
    font-weight: 500;
}

.radio-option.selected {
    border-color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
}

/* === BUTTON === */
.submit-button {
    width: 100%;
    background: #2563eb;
    color: #fff;
    padding: 14px 16px;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 14px;
    transition: background 0.2s linear;
}

.submit-button:hover {
    background: #1d4ed8;
}

/* === REJECTION BOX === */
.rejection-box {
    background: #fee2e2;
    border: 2px solid #f87171;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    color: #b91c1c;
    font-size: 15px;
    font-weight: 600;
    margin-top: 20px;
}

/* === PHONE REVEAL BOX === */
.phone-reveal-box {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background: #ecfdf5;
    border: 2px solid #34d399;
    margin-top: 20px;
}

.reveal-title {
    font-size: 22px;
    font-weight: 800;
    color: #065f46;
    margin-bottom: 12px;
}

.phone-box {
    display: inline-block;
    font-size: 26px;
    font-weight: 800;
    padding: 12px 20px;
    background: #10b981;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.2s ease-in-out;
}

.phone-box:hover {
    background: #059669;
}

span.shownum_text {
    font-size: 12px;
}
.sub-text {
    font-size: 14px;
    color: #065f46;
    margin-bottom: 16px;
}

/* === INPUT VALIDATION === */
input.valid {
    border-color: #10b981 !important;
}

input.invalid {
    border-color: #ef4444 !important;
}

/* === FADE-IN ANIMATION === */
.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Fix */
@media (max-width: 480px) {
    .form-container {
        padding: 20px;
    }

    .phone-box {
        font-size: 22px;
    }
}

.radio-option {
    border: 2px solid #d1d5db;
    padding: 14px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: #fff;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

 