/* ═══════════════════════════════════════
   REFUND POLICY PAGE - CUSTOM STYLES
   ═══════════════════════════════════════ */

:root {
    --refund-blue: #007bff;
    --refund-blue-light: #e7f1ff;
    --refund-text-muted: #6c757d;
    --refund-border: #e9ecef;
    --refund-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.refund-policy-page {
    background-color: #f8f9fa;
}

/* ═══ BREADCRUMB ═══ */
.rts-breadcrumb-area.one {
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    margin-bottom: 40px;
}

.nav-bread-crumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.nav-bread-crumb a {
    color: var(--color-body-1);
    font-size: 14px;
    text-decoration: none;
}

.nav-bread-crumb span {
    color: var(--color-body-1);
    font-size: 12px;
}

.nav-bread-crumb .current {
    font-weight: 600;
    color: var(--header-primary, #008B8B);
}

.breadcrumb-area-wrapper .title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-title);
    margin: 0;
}

.breadcrumb-area-wrapper .title span {
    color: var(--refund-blue);
}

.policy-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-body-1);
    max-width: 600px;
    margin-top: 20px;
}

/* ═══ SEARCH BAR ═══ */
.policy-search-container {
    margin-bottom: 30px;
    position: relative;
}

.policy-search-input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: #fff;
    box-shadow: var(--refund-shadow);
    font-size: 15px;
    transition: all 0.3s ease;
}

.policy-search-input:focus {
    outline: none;
    border-color: var(--refund-blue);
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.1);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--refund-blue);
    font-size: 18px;
}

/* ═══ ACCORDION ═══ */
.policy-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--refund-border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: var(--refund-blue-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--refund-blue);
    font-size: 18px;
}

.accordion-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-title);
    margin: 0;
}

.chevron-icon {
    transition: transform 0.3s ease;
    color: var(--refund-text-muted);
}

.accordion-item.active {
    box-shadow: var(--refund-shadow);
}

.accordion-item.active .chevron-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding-bottom: 25px;
}

.content-inner {
    padding-top: 15px;
    border-top: 1px solid var(--refund-border);
}

.content-inner p {
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--color-body-1);
}

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

.refund-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 10px;
}

.refund-list li .check-icon {
    color: #28a745;
}

.refund-list li .info-icon {
    color: #ffc107;
}

.refund-list li .cross-icon {
    color: #dc3545;
}

.refund-list li strong {
    color: var(--color-title);
}

/* ═══ TIMELINE PROCESS ═══ */
.timeline-section {
    margin-top: 50px;
}

.timeline-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-title);
    margin-bottom: 30px;
}

.timeline-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    box-shadow: var(--refund-shadow);
}

.timeline-item {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.timeline-icon-container {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #fff;
    font-size: 20px;
}

.step-1 .timeline-icon-container {
    background: #007bff;
}

.step-2 .timeline-icon-container {
    background: #00bfff;
}

.step-3 .timeline-icon-container {
    background: #4169e1;
}

.step-4 .timeline-icon-container {
    background: #28a745;
}

.timeline-step {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-title);
    margin-bottom: 5px;
}

.timeline-desc {
    font-size: 11px;
    color: var(--refund-text-muted);
    line-height: 1.4;
}

.timeline-line {
    position: absolute;
    top: 65px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e9ecef;
    z-index: 0;
}

.timeline-note {
    text-align: center;
    font-style: italic;
    font-size: 12px;
    color: var(--refund-text-muted);
    margin-top: 20px;
}

/* ═══ SIDEBAR ═══ */
.policy-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.help-card-blue {
    background: var(--refund-blue);
    border-radius: 20px;
    padding: 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.help-card-blue h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.help-card-blue p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.help-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.help-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp {
    background: #fff;
    color: var(--refund-blue);
}

.btn-email {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(5px);
}

.help-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.resources-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--refund-shadow);
}

.resources-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-title);
    margin-bottom: 20px;
}

.resource-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.resource-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
    color: var(--refund-text-muted);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.resource-item:hover {
    color: var(--refund-blue);
}

.resource-item i {
    font-size: 14px;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 991px) {
    .timeline-wrapper {
        flex-wrap: wrap;
        gap: 30px;
    }

    .timeline-item {
        flex: 0 0 45%;
    }

    .timeline-line {
        display: none;
    }
}

@media (max-width: 767px) {
    .breadcrumb-area-wrapper .title {
        font-size: 32px;
    }

    .timeline-item {
        flex: 0 0 100%;
    }
}