/* Guarantee Section Specific Styles */
.guarantee-section {
    padding: 20px 20px;
    position: relative;
    overflow: hidden;
   }

.guarantee-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* Main Guarantee Card */
.guarantee-card {
    background: white;
    border-radius: 24px;
    padding: 20px 40px;
    box-shadow: 0 30px 80px rgba(124, 58, 237, 0.15);
    border: 2px solid rgba(124, 58, 237, 0.1);
    position: relative;
    overflow: hidden;
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.guarantee-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Guarantee Content Wrapper */
.guarantee-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Side: Badge & Text */
.guarantee-text {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Guarantee Badge */
.guarantee-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
    border-radius: 50%;
    margin-bottom: 25px;
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.3);
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 20px 50px rgba(124, 58, 237, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 25px 60px rgba(124, 58, 237, 0.4);
        transform: scale(1.05);
    }
}

.guarantee-badge::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px dashed rgba(124, 58, 237, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.guarantee-badge svg {
    width: 50px;
    height: 50px;
    color: white;
    stroke-width: 1.5;
}

.guarantee-badge .days {
    position: absolute;
    bottom: -10px;
    background: white;
    color: var(--primary-solid);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Heading */
.guarantee-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 15px;
    line-height: 1.2;
}

.guarantee-text h2 span {
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guarantee-text > p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Guarantee Points */
.guarantee-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.guarantee-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.guarantee-point .check {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--success), #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-point .check svg {
    width: 14px;
    height: 14px;
    color: white;
    stroke-width: 3;
}

.guarantee-point span {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
}

/* CTA Button */
.guarantee-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.guarantee-btn {
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
}

.guarantee-btn.primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.guarantee-btn.primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
}

.guarantee-btn.secondary {
    background: transparent;
    color: var(--primary-solid);
    border: 2px solid var(--primary-solid);
}

.guarantee-btn.secondary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.guarantee-btn svg {
    width: 20px;
    height: 20px;
}

/* Right Side: Visual */
.guarantee-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

/* Shield Illustration */
.guarantee-shield {
    position: relative;
    width: 280px;
    height: 320px;
}

.shield-main {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
    border-radius: 20px 20px 100px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 80px rgba(124, 58, 237, 0.3);
    position: relative;
    z-index: 2;
}

.shield-main svg {
    width: 120px;
    height: 120px;
    color: white;
    stroke-width: 1.5;
}

.shield-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 380px;
    border: 3px dashed rgba(124, 58, 237, 0.3);
    border-radius: 30px 30px 120px 120px;
    z-index: 1;
    animation: rotate 30s linear infinite reverse;
}

.shield-ring-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 420px;
    border: 2px dotted rgba(99, 102, 241, 0.2);
    border-radius: 40px 40px 140px 140px;
    z-index: 0;
    animation: rotate 40s linear infinite;
}

/* Floating Elements */
.guarantee-float {
    position: absolute;
    background: white;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.guarantee-float.refund {
    top: 10%;
    right: -30px;
    animation-delay: 0s;
}

.guarantee-float.secure {
    bottom: 15%;
    left: -25px;
    animation-delay: 1.5s;
}

.guarantee-float svg {
    width: 24px;
    height: 24px;
}

.guarantee-float.refund svg {
    color: var(--success);
}

.guarantee-float.secure svg {
    color: var(--primary-solid);
}

.guarantee-float span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Trust Stats */
.guarantee-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px dashed var(--border);
}

.stat-card {
    text-align: center;
    padding: 15px;
}

.stat-card .number {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-card .label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 5px;
    font-weight: 500;
}

/* FAQ Accordion */
.guarantee-faq {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.guarantee-faq h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 25px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.faq-item {
    background: var(--primary-light);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-solid);
    transform: translateY(-2px);
}

.faq-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-item h4 svg {
    width: 18px;
    height: 18px;
    color: var(--primary-solid);
    flex-shrink: 0;
}

.faq-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .guarantee-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .guarantee-text {
        order: 2;
    }
    
    .guarantee-visual {
        order: 1;
    }
    
    .guarantee-text h2 {
        font-size: 2rem;
    }
    
    .guarantee-points {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .guarantee-point {
        justify-content: center;
    }
    
    .guarantee-cta {
        justify-content: center;
    }
    
    .guarantee-shield {
        width: 220px;
        height: 260px;
    }
    
    .shield-ring {
        width: 280px;
        height: 320px;
    }
    
    .shield-ring-2 {
        width: 320px;
        height: 360px;
    }
    
    .guarantee-float {
        display: none;
    }
    
    .guarantee-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .guarantee-section {
        padding: 60px 15px;
    }
    
    .guarantee-card {
        padding: 40px 20px;
    }
    
    .guarantee-text h2 {
        font-size: 1.75rem;
    }
    
    .guarantee-badge {
        width: 100px;
        height: 100px;
    }
    
    .guarantee-badge svg {
        width: 40px;
        height: 40px;
    }
    
    .guarantee-btn {
        width: 100%;
        justify-content: center;
    }
    
    .guarantee-cta {
        flex-direction: column;
    }
    
    .guarantee-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card .number {
        font-size: 1.75rem;
    }
}

/* Animation for floating elements */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Print styles */
@media print {
    .guarantee-section {
        background: white !important;
    }
    
    .guarantee-card {
        box-shadow: none !important;
        border: 2px solid #000 !important;
    }
}
