/* ========================================
   Refund Policy Page Styles
   ======================================== */

/* Refund Section */
.refund-section {
    padding: 140px 0 80px;
    min-height: 100vh;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease-out;
}

.header-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 240, 255, 0.1));
    border: 2px solid var(--primary-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPulse 2s ease-in-out infinite;
}

.header-icon i {
    font-size: 48px;
    color: var(--primary-cyan);
    filter: drop-shadow(0 0 20px var(--primary-cyan));
}

.page-title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-subtitle {
    font-family: var(--font-secondary);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 10px;
}

.page-updated {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

/* Refund Content */
.refund-content {
    max-width: 1000px;
    margin: 0 auto;
}

.refund-section-item {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(255, 0, 255, 0.05));
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 12px;
    padding: 50px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 
        0 8px 32px rgba(199, 0, 255, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out backwards;
}

.refund-section-item:nth-child(1) { animation-delay: 0.1s; }
.refund-section-item:nth-child(2) { animation-delay: 0.2s; }
.refund-section-item:nth-child(3) { animation-delay: 0.3s; }
.refund-section-item:nth-child(4) { animation-delay: 0.4s; }
.refund-section-item:nth-child(5) { animation-delay: 0.5s; }
.refund-section-item:nth-child(6) { animation-delay: 0.6s; }

.refund-section-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-pink);
    box-shadow: 
        0 12px 40px rgba(255, 0, 255, 0.25),
        0 0 30px rgba(199, 0, 255, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

/* Section Icon */
.section-icon {
    position: absolute;
    top: -30px;
    left: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.5);
}

.section-icon i {
    font-size: 28px;
    color: #fff;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: var(--primary-cyan);
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.subsection-title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-pink);
    margin: 25px 0 15px;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
}

.section-content {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.section-content > p {
    margin-bottom: 25px;
}

/* Eligibility Grid */
.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.eligibility-card {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(138, 43, 226, 0.08));
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.eligibility-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-cyan);
    box-shadow: 0 12px 40px rgba(0, 240, 255, 0.3);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.12), rgba(138, 43, 226, 0.12));
}

.eligibility-card i {
    font-size: 42px;
    color: var(--primary-cyan);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.eligibility-card:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 20px var(--primary-cyan));
}

.eligibility-card h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--primary-pink);
    margin-bottom: 10px;
    font-weight: 700;
}

.eligibility-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin: 0;
}

/* Requirements Box */
.requirements-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 10px;
    padding: 30px;
    margin: 25px 0;
}

.requirements-box h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    color: var(--primary-pink);
    margin-bottom: 20px;
    font-weight: 700;
}

/* Refund List */
.refund-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.refund-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    border-bottom: 1px solid rgba(255, 0, 255, 0.1);
    transition: all 0.3s ease;
}

.refund-list li:last-child {
    border-bottom: none;
}

.refund-list li:hover {
    padding-left: 50px;
    color: var(--primary-cyan);
}

.refund-list li::before {
    content: '✓';
    position: absolute;
    left: 10px;
    top: 15px;
    color: var(--primary-cyan);
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.refund-list li:hover::before {
    transform: translateX(5px) scale(1.2);
    color: var(--primary-pink);
}

/* Info Boxes */
.partial-refund-box,
.info-box,
.warning-box,
.highlight-box,
.paypal-box {
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.partial-refund-box {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.08), rgba(255, 69, 0, 0.08));
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.partial-refund-box:hover {
    border-color: rgba(255, 165, 0, 0.6);
    box-shadow: 0 0 30px rgba(255, 165, 0, 0.2);
}

.info-box {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.08), rgba(255, 0, 255, 0.08));
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.info-box:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.2);
}

.warning-box {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.08), rgba(255, 0, 0, 0.08));
    border: 1px solid rgba(255, 69, 0, 0.3);
}

.warning-box:hover {
    border-color: rgba(255, 69, 0, 0.6);
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.2);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(138, 43, 226, 0.08));
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.highlight-box:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

.paypal-box {
    background: linear-gradient(135deg, rgba(0, 48, 135, 0.15), rgba(0, 112, 240, 0.15));
    border: 1px solid rgba(0, 112, 240, 0.4);
}

.paypal-box:hover {
    border-color: rgba(0, 112, 240, 0.7);
    box-shadow: 0 0 30px rgba(0, 112, 240, 0.3);
}

.partial-refund-box i { color: #FFA500; font-size: 32px; }
.info-box i { color: var(--primary-purple); font-size: 32px; }
.warning-box i { color: #FF4500; font-size: 32px; }
.highlight-box i { color: var(--primary-cyan); font-size: 32px; }
.paypal-box i { color: #0070f0; font-size: 48px; }

.partial-refund-box h4,
.info-box h4,
.warning-box h4,
.highlight-box h4,
.paypal-box h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.partial-refund-box h4 { color: #FFA500; }
.info-box h4 { color: var(--primary-purple); }
.warning-box h4 { color: #FF4500; }
.highlight-box h4 { color: var(--primary-cyan); }
.paypal-box h4 { color: #0070f0; }

.partial-refund-box p,
.info-box p,
.warning-box p,
.highlight-box p,
.paypal-box p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Non-Refundable Grid */
.non-refundable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.non-refundable-item {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(138, 43, 226, 0.05));
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.non-refundable-item:hover {
    transform: translateY(-8px);
    border-color: #FF4500;
    box-shadow: 0 12px 40px rgba(255, 69, 0, 0.3);
}

.non-refundable-item i {
    font-size: 42px;
    color: #FF4500;
    margin-bottom: 15px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.non-refundable-item:hover i {
    transform: scale(1.2);
    opacity: 1;
    filter: drop-shadow(0 0 20px #FF4500);
}

.non-refundable-item h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--primary-pink);
    margin-bottom: 10px;
    font-weight: 700;
}

.non-refundable-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Process Steps */
.process-steps {
    margin: 30px 0;
}

.process-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 25px;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(255, 0, 255, 0.05);
    border-color: var(--primary-pink);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.4);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 0, 255, 0.6);
}

.step-content h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--primary-cyan);
    margin-bottom: 10px;
    font-weight: 700;
}

.step-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Timeline */
.timeline {
    margin: 30px 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-pink), var(--primary-cyan));
}

.timeline-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.5);
    position: relative;
    z-index: 1;
}

.timeline-marker i {
    font-size: 28px;
    color: #fff;
}

.timeline-content {
    flex: 1;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background: rgba(255, 0, 255, 0.05);
    border-color: var(--primary-pink);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.2);
}

.timeline-content h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--primary-cyan);
    margin-bottom: 10px;
    font-weight: 700;
}

.timeline-duration {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--primary-pink);
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.contact-card {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(255, 0, 255, 0.1));
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-pink);
    box-shadow: 0 15px 50px rgba(255, 0, 255, 0.3);
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(255, 0, 255, 0.15));
}

.contact-card i {
    font-size: 48px;
    color: var(--primary-cyan);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover i {
    transform: scale(1.3);
    filter: drop-shadow(0 0 25px var(--primary-cyan));
}

.contact-card h4 {
    font-family: var(--font-primary);
    font-size: 20px;
    color: var(--primary-pink);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-card a {
    color: var(--primary-cyan);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--primary-cyan);
}

.contact-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Related Policies */
.related-policies {
    max-width: 1000px;
    margin: 60px auto 40px;
    text-align: center;
}

.related-policies h3 {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-cyan);
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.policy-card {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(255, 0, 255, 0.1));
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 12px;
    padding: 35px 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.policy-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-pink);
    box-shadow: 0 15px 50px rgba(255, 0, 255, 0.3);
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(255, 0, 255, 0.15));
}

.policy-card i {
    font-size: 48px;
    color: var(--primary-cyan);
    transition: all 0.3s ease;
}

.policy-card:hover i {
    transform: scale(1.3) rotate(10deg);
    filter: drop-shadow(0 0 25px var(--primary-cyan));
}

.policy-card h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--primary-pink);
    margin: 0;
    font-weight: 700;
}

/* Back to Top */
.back-to-top {
    text-align: center;
    margin-top: 50px;
    animation: fadeIn 1s ease-out 1s backwards;
}

.back-to-top .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 16px;
}

.back-to-top .btn-primary i {
    font-size: 18px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(0, 240, 255, 0.8);
    }
}

/* Responsive Design */

/* Tablets */
@media (max-width: 1024px) {
    .refund-section {
        padding: 120px 0 60px;
    }

    .refund-section-item {
        padding: 40px 35px;
    }

    .eligibility-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .non-refundable-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .refund-section {
        padding: 100px 0 50px;
    }

    .page-header {
        margin-bottom: 40px;
    }

    .header-icon {
        width: 80px;
        height: 80px;
    }

    .header-icon i {
        font-size: 40px;
    }

    .refund-section-item {
        padding: 35px 25px;
        margin-bottom: 20px;
    }

    .section-icon {
        width: 50px;
        height: 50px;
        left: 25px;
        top: -25px;
    }

    .section-icon i {
        font-size: 24px;
    }

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

    .section-content {
        font-size: 15px;
    }

    .eligibility-grid,
    .non-refundable-grid,
    .contact-grid,
    .policies-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .process-step {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .process-step:hover {
        transform: translateX(0);
        transform: translateY(-5px);
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-marker {
        width: 40px;
        height: 40px;
    }

    .timeline-marker i {
        font-size: 20px;
    }

    .partial-refund-box,
    .info-box,
    .warning-box,
    .highlight-box,
    .paypal-box {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .requirements-box {
        padding: 20px;
    }

    .refund-list li {
        padding: 12px 0 12px 35px;
    }

    .refund-list li:hover {
        padding-left: 40px;
    }

    .back-to-top {
        margin-top: 40px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .refund-section-item {
        padding: 30px 20px;
    }

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

    .section-content {
        font-size: 14px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .eligibility-card,
    .non-refundable-item,
    .contact-card,
    .policy-card {
        padding: 25px 20px;
    }

    .eligibility-card i,
    .non-refundable-item i,
    .contact-card i,
    .policy-card i {
        font-size: 36px;
    }

    .back-to-top .btn-primary {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Payment Refund Block */

.payment-box{
    display:flex;
    align-items:flex-start;
    gap:20px;

    margin-top:40px;
    padding:30px;

    border-radius:14px;

    background:linear-gradient(
        145deg,
        rgba(18,0,40,0.85),
        rgba(5,10,35,0.9)
    );

    border:1px solid rgba(180,0,255,0.25);

    backdrop-filter: blur(8px);

    transition:all 0.3s ease;

    box-shadow:
        0 0 25px rgba(140,0,255,0.15),
        inset 0 0 20px rgba(0,0,0,0.4);
}

.payment-box:hover{

    transform:translateY(-3px);

    border:1px solid rgba(200,0,255,0.45);

    box-shadow:
        0 0 40px rgba(180,0,255,0.35),
        inset 0 0 20px rgba(0,0,0,0.5);
}

/* icon */

.payment-icon{

    width:55px;
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    font-size:22px;

    background:linear-gradient(
        135deg,
        #00eaff,
        #c800ff
    );

    color:white;

    box-shadow:
        0 0 20px rgba(0,255,255,0.6),
        0 0 25px rgba(200,0,255,0.5);
}

/* text */

.payment-content h4{

    font-size:18px;
    font-weight:600;

    margin-bottom:8px;

    color:#ffffff;

    letter-spacing:0.5px;
}

.payment-content p{

    font-size:15px;

    line-height:1.6;

    color:rgba(220,220,255,0.8);
}

.payment-box {
    position: relative;
    overflow: hidden;
}

/* neon border */

.payment-box::before {

    content: "";

    position: absolute;
    inset: -1px;

    border-radius: 14px;

    background: linear-gradient(
        120deg,
        #00eaff,
        #c800ff,
        #00eaff
    );

    opacity: 0.25;

    z-index: 0;

    filter: blur(8px);
}

.payment-box > * {
    position: relative;
    z-index: 1;
}

@keyframes neonPulse {

    0% {
        box-shadow:
        0 0 20px rgba(180,0,255,0.15);
    }

    50% {
        box-shadow:
        0 0 40px rgba(180,0,255,0.35);
    }

    100% {
        box-shadow:
        0 0 20px rgba(180,0,255,0.15);
    }
}

.payment-box {
    animation: neonPulse 4s ease-in-out infinite;
}

.payment-content h4{
    color: #ffffff;

    text-shadow:
        0 0 8px rgba(0,255,255,0.5),
        0 0 12px rgba(200,0,255,0.5);
}