/* ========================================
   PAYMENT LINKS STYLING
   Universal styles for payment information links
   ======================================== */

/* Payment Link in Pricing Cards */
.payment-info-link {
    margin-top: 16px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.15) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.payment-info-link i {
    color: #d4af37;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.payment-info-link a {
    color: #1e3a5f;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.payment-info-link:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.25) 100%);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.payment-info-link:hover i {
    transform: scale(1.1);
}

.payment-info-link:hover a {
    color: #d4af37;
}

/* Payment Note Style (for Consultation Cards) */
.payment-note {
    margin-top: 20px;
    padding: 14px 18px;
    background: rgba(30, 58, 95, 0.05);
    border-left: 3px solid #d4af37;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.payment-note i {
    color: #d4af37;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.payment-note span {
    color: #1e3a5f;
}

.payment-note a {
    color: #d4af37;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.payment-note a:hover {
    border-bottom-color: #d4af37;
}

/* Payment CTA Style (for Homepage) */
.payment-cta-note {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.payment-cta-note i {
    color: #d4af37;
    font-size: 14px;
}

.payment-cta-note a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.payment-cta-note a:hover {
    border-bottom-color: #d4af37;
}

/* Trust Note Style (for About Page) */
.trust-payment-note {
    margin-top: 24px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(30, 58, 95, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    text-align: center;
}

.trust-payment-note .trust-icon {
    font-size: 32px;
    color: #d4af37;
    margin-bottom: 12px;
}

.trust-payment-note h4 {
    color: #1e3a5f;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.trust-payment-note p {
    color: #5a6c7d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.trust-payment-note a {
    color: #d4af37;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.trust-payment-note a:hover {
    border-bottom-color: #d4af37;
}

.trust-payment-note a i {
    font-size: 14px;
}

/* Guide Premium Hint */
.guide-payment-hint {
    margin-top: 12px;
    padding: 8px 12px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 6px;
    font-size: 13px;
    color: #1e3a5f;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guide-payment-hint i {
    color: #d4af37;
    font-size: 14px;
}

.guide-payment-hint a {
    color: #d4af37;
    font-weight: 600;
    text-decoration: none;
    margin-left: 4px;
}

.guide-payment-hint a:hover {
    text-decoration: underline;
}

/* Footer Payment Column */
.footer-payment-column h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-payment-column h4 i {
    color: #d4af37;
    font-size: 18px;
}

.footer-payment-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-payment-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 6px 0;
}

.footer-payment-link i {
    color: #d4af37;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.footer-payment-link:hover {
    color: #d4af37;
    padding-left: 8px;
}

.footer-payment-link:hover i {
    transform: translateX(4px);
}

.footer-payment-highlight {
    padding: 12px 16px;
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid #d4af37;
    border-radius: 6px;
    margin-top: 12px;
}

.footer-payment-highlight a {
    color: #d4af37;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .payment-info-link {
        padding: 10px 14px;
        font-size: 13px;
    }

    .payment-note {
        padding: 12px 14px;
        font-size: 13px;
    }

    .payment-cta-note {
        font-size: 13px;
        flex-direction: column;
        gap: 6px;
    }

    .trust-payment-note {
        padding: 16px 18px;
    }

    .trust-payment-note h4 {
        font-size: 16px;
    }

    .trust-payment-note p {
        font-size: 13px;
    }

    .guide-payment-hint {
        font-size: 12px;
        padding: 8px 10px;
    }
}

/* Touch-Friendly Targets for Mobile */
@media (max-width: 480px) {
    .payment-info-link,
    .payment-note,
    .guide-payment-hint {
        min-height: 44px; /* iOS accessibility minimum */
    }

    .footer-payment-link {
        min-height: 44px;
        align-items: center;
    }
}

/* Print Styles - Hide on Print */
@media print {
    .payment-info-link,
    .payment-note,
    .payment-cta-note,
    .guide-payment-hint {
        display: none;
    }
}
