/* Guarantee Badges and Trust Seals */

/* Main Guarantee Badge Container */
.guarantee-badges-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px 0;
}

/* Individual Trust Badge */
.trust-seal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.trust-seal:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-color: #10b981;
}

.trust-seal i {
    font-size: 16px;
}

/* Trust Seal Variants */
.trust-seal.ssl {
    border-color: #10b981;
}

.trust-seal.ssl i {
    color: #10b981;
}

.trust-seal.money-back {
    border-color: #3b82f6;
}

.trust-seal.money-back i {
    color: #3b82f6;
}

.trust-seal.verified {
    border-color: #8b5cf6;
}

.trust-seal.verified i {
    color: #8b5cf6;
}

.trust-seal.secure {
    border-color: #ef4444;
}

.trust-seal.secure i {
    color: #ef4444;
}

.trust-seal.rating {
    border-color: #f59e0b;
}

.trust-seal.rating i {
    color: #f59e0b;
}

/* Large Guarantee Badge (Hero/Prominent) */
.guarantee-badge-large {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
    position: relative;
    overflow: hidden;
    animation: pulse-badge 3s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(16, 185, 129, 0.6);
    }
}

.guarantee-badge-large::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.guarantee-badge-large .badge-icon {
    font-size: 28px;
    margin-bottom: 5px;
}

.guarantee-badge-large .badge-text-top {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
}

.guarantee-badge-large .badge-text-bottom {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.9;
}

/* Medium Guarantee Badge */
.guarantee-badge-medium {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-radius: 12px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.guarantee-badge-medium i {
    font-size: 20px;
}

/* Zero Risk Badge for CTA Buttons */
.btn-with-guarantee {
    position: relative;
    overflow: visible;
}

.zero-risk-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #10b981;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    z-index: 10;
    white-space: nowrap;
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.zero-risk-badge i {
    margin-right: 3px;
}

/* Safe & Secure Badge with Animation */
.safe-secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #10b981;
    border-radius: 8px;
    padding: 8px 16px;
    color: #065f46;
    font-weight: 600;
    font-size: 14px;
}

.safe-secure-badge .shield-icon {
    font-size: 18px;
    color: #10b981;
    animation: shield-pulse 2s infinite;
}

@keyframes shield-pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(16, 185, 129, 0));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.6));
    }
}

/* Guaranteed Delivery Banner */
.guaranteed-delivery-banner {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.guaranteed-delivery-banner .banner-icon {
    font-size: 32px;
    color: #3b82f6;
    flex-shrink: 0;
}

.guaranteed-delivery-banner .banner-content h4 {
    margin: 0 0 5px 0;
    color: #1e3a8a;
    font-size: 16px;
    font-weight: 700;
}

.guaranteed-delivery-banner .banner-content p {
    margin: 0;
    color: #1e40af;
    font-size: 13px;
}

/* Money-Back Guarantee Seal */
.money-back-seal {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 3px solid #f59e0b;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px;
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.3);
    position: relative;
    animation: rotate-seal 20s linear infinite;
}

@keyframes rotate-seal {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.money-back-seal .seal-inner {
    animation: rotate-seal-reverse 20s linear infinite;
}

@keyframes rotate-seal-reverse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

.money-back-seal .seal-days {
    font-size: 24px;
    font-weight: 800;
    color: #92400e;
    line-height: 1;
}

.money-back-seal .seal-text {
    font-size: 10px;
    font-weight: 600;
    color: #78350f;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Trust Seals Row (Multiple badges in a row) */
.trust-seals-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 15px 0;
}

/* Verified Checkmark Badge */
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #10b981;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.verified-badge i {
    font-size: 14px;
}

/* BBB-Style Badge */
.bbb-style-badge {
    background: white;
    border: 2px solid #003366;
    border-radius: 8px;
    padding: 10px 15px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 51, 102, 0.2);
}

.bbb-style-badge .badge-rating {
    font-size: 20px;
    font-weight: 800;
    color: #003366;
    line-height: 1;
    margin-bottom: 2px;
}

.bbb-style-badge .badge-label {
    font-size: 9px;
    font-weight: 600;
    color: #003366;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Norton/McAfee Style Security Badge */
.security-badge {
    background: white;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 10px rgba(255, 193, 7, 0.2);
}

.security-badge .security-icon {
    font-size: 22px;
    color: #ffc107;
}

.security-badge .security-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.security-badge .security-title {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
}

.security-badge .security-subtitle {
    font-size: 9px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
}

/* Trustpilot Style Badge */
.trustpilot-badge {
    background: #00b67a;
    color: white;
    border-radius: 8px;
    padding: 10px 15px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 182, 122, 0.3);
}

.trustpilot-badge .stars {
    font-size: 14px;
    margin-bottom: 3px;
    color: #fff;
}

.trustpilot-badge .rating-text {
    font-size: 11px;
    font-weight: 600;
}

/* Payment Security Badges */
.payment-security-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px 0;
}

.payment-badge {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 6px 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #374151;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.payment-badge i {
    font-size: 16px;
    color: #10b981;
}

/* CTA Button Enhancement with Badges */
.btn-primary.with-guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-right: 20px;
}

.btn-primary.with-guarantee-badge::after {
    content: '100% Safe';
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

/* Inline Badge Icon */
.inline-guarantee-icon {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #10b981;
    font-size: 13px;
    font-weight: 600;
}

.inline-guarantee-icon i {
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .guarantee-badge-large {
        width: 90px;
        height: 90px;
        padding: 10px;
    }

    .guarantee-badge-large .badge-icon {
        font-size: 22px;
    }

    .guarantee-badge-large .badge-text-top {
        font-size: 14px;
    }

    .guarantee-badge-large .badge-text-bottom {
        font-size: 9px;
    }

    .money-back-seal {
        width: 80px;
        height: 80px;
        padding: 10px;
    }

    .money-back-seal .seal-days {
        font-size: 20px;
    }

    .money-back-seal .seal-text {
        font-size: 9px;
    }

    .trust-seal {
        font-size: 11px;
        padding: 6px 10px;
    }

    .zero-risk-badge {
        font-size: 9px;
        padding: 3px 6px;
    }
}

/* Desktop Enhancements */
@media (min-width: 1024px) {
    .guarantee-badge-large {
        width: 140px;
        height: 140px;
    }

    .guarantee-badge-large .badge-icon {
        font-size: 32px;
    }

    .guarantee-badge-large .badge-text-top {
        font-size: 18px;
    }
}
