/* ════════════════════════════════
   PRIVACY POLICY PAGE STYLES
   Scoped with .np-privacy prefix
════════════════════════════════ */

.np-privacy-content-wrap {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    padding: 4rem;
    position: relative;
    z-index: 10;
    border: 1px solid var(--border);
}

.np-privacy-section {
    margin-bottom: 3rem;
}

.np-privacy-section:last-child {
    margin-bottom: 0;
}

.np-privacy-h3 {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.np-privacy-h3 i {
    color: var(--saffron);
    font-size: 1.4rem;
}

.np-privacy-text {
    color: var(--text-mid);
    line-height: 1.8;
    font-size: 1.05rem;
}

.np-privacy-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.np-privacy-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-mid);
}

.np-privacy-list li::before {
    content: "\f26a";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: var(--saffron);
    font-weight: bold;
}

.np-privacy-last-updated {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    display: block;
}

@media (max-width: 991px) {
    .np-privacy-content-wrap {
        padding: 2.5rem 1.5rem;
        margin-top: -50px;
    }
}

/* ════════════════════════════════
   CANCELLATION POLICY PAGE STYLES
════════════════════════════════ */

.cancellation-policy-section {
    margin-top: -80px;
    z-index: 10;
}

.cancellation-content-wrap {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    padding: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cancellation-header .icon-wrap {
    width: 70px;
    height: 70px;
    background: rgba(200, 133, 10, 0.1);
    color: var(--saffron);
    font-size: 2rem;
    border-radius: 50%;
}

.cancellation-title {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.cancellation-subtitle {
    color: var(--text-mid);
    font-size: 1.1rem;
}

/* Custom Accordion Styling */
.custom-accordion .accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    margin-bottom: 1.2rem;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.custom-accordion .accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border-color: rgba(200, 133, 10, 0.3);
}

.custom-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.custom-accordion .accordion-button {
    font-family: var(--sans);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    padding: 1.5rem;
    background-color: #fff;
    box-shadow: none !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--saffron);
    background-color: rgba(200, 133, 10, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.custom-accordion .accordion-button i.align-middle {
    font-size: 1.3rem;
    color: var(--saffron);
}

.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23222'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C8850A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-accordion .accordion-body {
    padding: 1.5rem;
    color: var(--text-mid);
    line-height: 1.7;
    font-size: 1.05rem;
}

.cancellation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cancellation-list li {
    padding: 0.8rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.cancellation-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cancellation-list .badge {
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
    font-weight: 600;
    min-width: 100px;
    text-align: center;
}

@media (max-width: 768px) {
    .cancellation-content-wrap {
        padding: 2rem 1.5rem;
    }

    .cancellation-title {
        font-size: 1.8rem;
    }

    .cancellation-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* cancellation-policy */
.sec-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sec-card-title {
    background: linear-gradient(135deg, var(--saffron), var(--gold-lt));
    color: white;
    padding: 24px 28px;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sec-card-title .icon {
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-acc {
    padding: 0;
}

.acc-item {
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.acc-item:last-child {
    border-bottom: none;
}

.acc-item:hover {
    background-color: #f9fafb;
}

.acc-header {
    padding: 20px 28px;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: all 0.3s ease;
}

.acc-header:hover {
    color: var(--saffron);
}

.acc-arrow {
    transition: transform 0.3s ease;
    font-size: 20px;
    color: #6b7280;
}

.acc-item.open .acc-arrow {
    transform: rotate(180deg);
    color: var(--saffron);
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.7;
}

.acc-item.open .acc-body {
    max-height: 500px;
    padding: 0 28px 24px 28px;
}

.acc-body p {
    margin-bottom: 12px;
    color: #374151;
}

.acc-body ul {
    list-style: none;
    padding-left: 0;
}

.acc-body ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #4b5563;
}

.acc-body ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 18px;
}

.acc-body ul li strong {
    color: #1f2937;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 16px;
    }

    .sec-card-title {
        padding: 20px 20px;
        font-size: 20px;
    }

    .sec-card-title .icon {
        font-size: 24px;
    }

    .acc-header {
        padding: 18px 20px;
        font-size: 16px;
    }

    .acc-body {
        padding: 0 20px;
        font-size: 15px;
    }

    .acc-item.open .acc-body {
        padding: 0 20px 20px 20px;
    }

    .acc-body ul li {
        padding-left: 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 12px;
    }

    .sec-card {
        border-radius: 12px;
    }

    .sec-card-title {
        padding: 18px 16px;
        font-size: 18px;
        flex-direction: row;
        gap: 10px;
    }

    .sec-card-title .icon {
        font-size: 22px;
    }

    .acc-header {
        padding: 16px;
        font-size: 15px;
        gap: 8px;
    }

    .acc-arrow {
        font-size: 18px;
        flex-shrink: 0;
    }

    .acc-body {
        padding: 0 16px;
        font-size: 14px;
    }

    .acc-item.open .acc-body {
        padding: 0 16px 18px 16px;
    }

    .acc-body ul li {
        padding: 8px 0;
        padding-left: 20px;
        font-size: 13px;
    }

    .acc-body ul li:before {
        font-size: 16px;
    }
}

/* Animation for content reveal */
.reveal {
    animation: reveal 0.8s ease-out;
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}