/* ============================================
   REFERRALS PAGE STYLES
   ============================================ */

/* ===== INTRO SECTION ===== */
.referrals-intro {
    padding: 60px 0 40px;
}

.referrals-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.referrals-content .lead {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.referrals-content .lead strong {
    color: var(--gold);
}

.referrals-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ===== FEE GUARANTEE ===== */
.fee-guarantee {
    padding: 60px 0 80px;
}

.fee-guarantee-wrapper {
    background: var(--dark-card);
    border-radius: var(--radius);
    padding: 50px 40px;
    border: 1px solid rgba(255,255,255,0.05);
}

.fee-guarantee-header {
    text-align: center;
    margin-bottom: 40px;
}

.fee-guarantee-header h2 {
    margin-bottom: 0.5rem;
}

.fee-guarantee-header h2 span {
    color: var(--gold);
}

.fee-guarantee-header .subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.fee-guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.fee-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    background: var(--dark-bg);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.fee-item:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.fee-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(233, 175, 0, 0.1);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.4rem;
}

.fee-content h4 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.fee-content h4 strong {
    color: var(--gold);
}

.fee-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ===== ABOUT STEVE BRADY ===== */
.about-steve {
    padding: 60px 0 80px;
}

.steve-image-wrapper {
    position: relative;
    display: inline-block;
}

.steve-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.steve-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.steve-image-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--gold);
    white-space: nowrap;
}

.steve-image-badge i {
    color: var(--gold);
    font-size: 1rem;
}

.steve-image-badge span {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
}

.steve-content {
    padding-left: 20px;
}

.steve-content-badge {
    display: inline-block;
    background: rgba(233, 175, 0, 0.15);
    color: var(--gold);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.steve-content h2 {
    margin-bottom: 1rem;
}

.steve-content h2 span {
    color: var(--gold);
}

.steve-content .lead {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.steve-accolades {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.steve-accolades li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.steve-accolades li:last-child {
    border-bottom: none;
}

.steve-accolades li i {
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 2px;
}

.steve-accolades li strong {
    color: var(--text-light);
}

/* ===== REFERRALS CTA ===== */
.referrals-cta {
    padding: 50px 0;
}

.referrals-cta-wrapper {
    background: var(--dark-card);
    border-radius: var(--radius);
    padding: 40px 45px;
    border: 1px solid rgba(255,255,255,0.05);
}

.referrals-cta-wrapper h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.referrals-cta-wrapper p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1rem;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.text-lg-right {
    text-align: right;
}

/* ===== CONTACT OPTIONS ===== */
.referrals-contact {
    padding: 60px 0 80px;
}

.contact-options-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-option {
    background: var(--dark-card);
    border-radius: var(--radius);
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.contact-option:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.contact-option-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(233, 175, 0, 0.1);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.8rem;
    margin: 0 auto 14px;
}

.contact-option h4 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-option p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.contact-option-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-option-link:hover {
    color: var(--gold-light);
    text-decoration: none;
}

.contact-option-link i {
    transition: var(--transition);
}

.contact-option-link:hover i {
    transform: translateX(4px);
}

/* ===== STATS BAR ===== */
.referrals-stats {
    padding: 60px 0;
    background: var(--dark-section);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

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

@media (max-width: 992px) {
    .fee-guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-options-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .steve-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .text-lg-right {
        text-align: center !important;
        margin-top: 20px;
    }
    
    .referrals-cta-wrapper {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .fee-guarantee-wrapper {
        padding: 30px 20px;
    }
    
    .fee-guarantee-grid {
        grid-template-columns: 1fr;
    }
    
    .fee-item {
        padding: 16px;
    }
    
    .fee-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .fee-content h4 {
        font-size: 0.9rem;
    }
    
    .fee-content p {
        font-size: 0.8rem;
    }
    
    .contact-options-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-option {
        padding: 25px 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .referrals-cta-wrapper {
        padding: 25px 20px;
    }
    
    .referrals-cta-wrapper h3 {
        font-size: 1.2rem;
    }
    
    .btn-large {
        padding: 14px 30px;
        font-size: 1rem;
        width: 100%;
    }
    
    .referrals-intro {
        padding: 40px 0 20px;
    }
    
    .fee-guarantee {
        padding: 40px 0 60px;
    }
    
    .about-steve {
        padding: 40px 0 60px;
    }
    
    .referrals-contact {
        padding: 40px 0 60px;
    }
    
    .referrals-stats {
        padding: 40px 0;
    }
    
    .steve-image-badge {
        bottom: 12px;
        padding: 6px 16px;
        font-size: 0.75rem;
    }
    
    .steve-image-badge i {
        font-size: 0.8rem;
    }
    
    .steve-image-badge span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .referrals-content h1 {
        font-size: 1.8rem;
    }
    
    .referrals-content .lead {
        font-size: 1rem;
    }
    
    .fee-guarantee-wrapper {
        padding: 20px 15px;
    }
    
    .fee-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 16px 12px;
    }
    
    .fee-icon {
        margin-bottom: 8px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .steve-accolades li {
        font-size: 0.85rem;
    }
    
    .steve-image-badge {
        bottom: 8px;
        padding: 4px 12px;
    }
    
    .steve-image-badge i {
        font-size: 0.7rem;
    }
    
    .steve-image-badge span {
        font-size: 0.65rem;
    }
}