﻿/* Additional styles for Cancellation Policy page */
.cancellation-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

    .cancellation-content .page-header {
        text-align: center;
        margin-bottom: 3rem;
    }

        .cancellation-content .page-header h1 {
            font-size: 2.8rem;
            font-weight: 700;
            background: linear-gradient(145deg, #e6b18c, #c47d58);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            margin-bottom: 0.5rem;
        }

        .cancellation-content .page-header p {
            color: #9a877a;
            font-size: 1.1rem;
        }

        .cancellation-content .page-header .last-updated {
            color: #6b5544;
            font-size: 0.85rem;
            margin-top: 0.3rem;
        }

.cancellation-section {
    background: #1a1714;
    border-radius: 28px;
    padding: 2rem 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid #2f2822;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

    .cancellation-section:hover {
        border-color: #c47d58;
        box-shadow: 0 8px 28px rgba(196, 125, 88, 0.08);
    }

    .cancellation-section h2 {
        color: #e6b18c;
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .cancellation-section h2 i {
            color: #c47d58;
            font-size: 1.3rem;
        }

    .cancellation-section p {
        color: #c7b2a0;
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 0.8rem;
    }

    .cancellation-section ul {
        list-style: none;
        padding: 0;
        margin: 0.5rem 0 1rem 0;
    }

        .cancellation-section ul li {
            color: #c7b2a0;
            font-size: 0.95rem;
            line-height: 1.8;
            padding: 0.3rem 0 0.3rem 1.8rem;
            position: relative;
        }

            .cancellation-section ul li::before {
                content: "▸";
                color: #c47d58;
                position: absolute;
                left: 0;
                font-weight: 700;
            }

            .cancellation-section ul li strong {
                color: #e6b18c;
            }

    .cancellation-section .highlight-box {
        background: #1e2a22;
        border-left: 3px solid #4ade80;
        padding: 1rem 1.5rem;
        border-radius: 8px;
        margin: 1rem 0;
    }

        .cancellation-section .highlight-box p {
            color: #9bc4af;
            margin-bottom: 0;
            font-size: 0.9rem;
        }

        .cancellation-section .highlight-box i {
            color: #4ade80;
            margin-right: 8px;
        }

.back-to-menu {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #c47d58;
    color: #0e0d0c;
    padding: 0.8rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

    .back-to-menu:hover {
        background: #e6b18c;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(196, 125, 88, 0.3);
        color: #0e0d0c;
    }

/* Timeline Grid */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.timeline-card {
    background: #221d19;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #2f2822;
    transition: all 0.3s ease;
}

    .timeline-card:hover {
        border-color: #c47d58;
        transform: translateY(-2px);
    }

.timeline-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.8rem;
}

.timeline-status {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

    .timeline-status.success {
        background: #1e2a22;
        color: #4ade80;
        border: 1px solid #4ade80;
    }

    .timeline-status.warning {
        background: #2a241e;
        color: #fbbf24;
        border: 1px solid #fbbf24;
    }

    .timeline-status.danger {
        background: #2a1e1e;
        color: #f87171;
        border: 1px solid #f87171;
    }

    .timeline-status.info {
        background: #1e242a;
        color: #60a5fa;
        border: 1px solid #60a5fa;
    }

.timeline-header h4 {
    color: #e6b18c;
    font-size: 1rem;
    font-weight: 600;
}

.timeline-body p {
    color: #c7b2a0;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.timeline-body .timeline-desc {
    color: #9a877a;
    font-size: 0.8rem;
}

/* Methods Grid */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.method-card {
    background: #221d19;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #2f2822;
    text-align: center;
    transition: all 0.3s ease;
}

    .method-card:hover {
        border-color: #c47d58;
        transform: translateY(-2px);
    }

    .method-card i {
        font-size: 2rem;
        color: #c47d58;
        display: block;
        margin-bottom: 0.5rem;
    }

    .method-card h4 {
        color: #e6b18c;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.8rem;
    }

    .method-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: left;
    }

        .method-card ul li {
            color: #c7b2a0;
            font-size: 0.85rem;
            line-height: 1.6;
            padding: 0.2rem 0 0.2rem 1.2rem;
            position: relative;
        }

            .method-card ul li::before {
                content: "•";
                color: #9a877a;
                position: absolute;
                left: 0;
            }

            .method-card ul li strong {
                color: #e6b18c;
            }

/* Fees Table */
.fees-table {
    background: #221d19;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #2f2822;
    margin: 1.5rem 0;
}

.fee-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0.8rem 1.5rem;
    border-bottom: 1px solid #2f2822;
    align-items: center;
}

    .fee-row:last-child {
        border-bottom: none;
    }

    .fee-row:nth-child(even) {
        background: #1a1714;
    }

.fee-stage {
    color: #c7b2a0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .fee-stage i {
        color: #c47d58;
    }

.fee-amount {
    color: #e6b18c;
    font-weight: 700;
    font-size: 1rem;
}

.fee-note {
    color: #9a877a;
    font-size: 0.85rem;
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.comparison-card {
    background: #221d19;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #2f2822;
    transition: all 0.3s ease;
}

    .comparison-card:hover {
        border-color: #c47d58;
    }

    .comparison-card.prepaid {
        border-top: 3px solid #c47d58;
    }

    .comparison-card.cod {
        border-top: 3px solid #4ade80;
    }

.comparison-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

    .comparison-header i {
        font-size: 1.5rem;
        color: #c47d58;
    }

.comparison-card.cod .comparison-header i {
    color: #4ade80;
}

.comparison-header h4 {
    color: #e6b18c;
    font-size: 1.1rem;
    font-weight: 600;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .comparison-card ul li {
        color: #c7b2a0;
        font-size: 0.9rem;
        line-height: 1.8;
        padding: 0.2rem 0;
    }

        .comparison-card ul li .highlight-green {
            color: #4ade80;
        }

        .comparison-card ul li .highlight-yellow {
            color: #fbbf24;
        }

        .comparison-card ul li .highlight-red {
            color: #f87171;
        }

@media (max-width: 680px) {
    .cancellation-content .page-header h1 {
        font-size: 2rem;
    }

    .cancellation-section {
        padding: 1.5rem;
    }

        .cancellation-section h2 {
            font-size: 1.2rem;
        }

        .cancellation-section p,
        .cancellation-section ul li {
            font-size: 0.9rem;
        }

    .back-to-menu {
        width: 100%;
        justify-content: center;
    }

    .timeline-grid,
    .methods-grid,
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .fee-row {
        grid-template-columns: 1fr;
        gap: 0.3rem;
        padding: 0.8rem 1rem;
    }

    .fee-stage {
        font-size: 0.9rem;
    }

    .fee-amount {
        font-size: 1.1rem;
    }

    .fee-note {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .cancellation-section ul li {
        padding-left: 1.2rem;
    }
}
