/* ===== Pages Styles ===== */

/* Logo visibility for pages */
.logo-dark { display: none; }
.logo-light { display: block; }

[data-theme="dark"] .logo-dark { display: block; }
[data-theme="dark"] .logo-light { display: none; }

/* Nav Logo Styling */
.nav__logo img {
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .nav__logo img {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Page Content */
.page-content {
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: calc(100vh - 200px);
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 10px;
}

.last-updated {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Content Sections */
.content-section {
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--bg-secondary);
    border-radius: 15px;
}

.content-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

[dir="ltr"] .content-section h2::after {
    right: auto;
    left: 0;
}

.content-section p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-section ul,
.content-section ol {
    margin-top: 15px;
    padding-right: 25px;
}

[dir="ltr"] .content-section ul,
[dir="ltr"] .content-section ol {
    padding-right: 0;
    padding-left: 25px;
}

.content-section li {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 10px;
    position: relative;
}

.content-section ul li::before {
    content: '•';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    right: -20px;
}

[dir="ltr"] .content-section ul li::before {
    right: auto;
    left: -20px;
}

/* Contact Info */
.contact-info {
    margin-top: 20px;
    padding: 20px;
    background-color: var(--bg-color);
    border-radius: 10px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-info i {
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 25px;
}

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 30px;
    transition: var(--transition);
}

.back-link:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-hover);
}

[dir="ltr"] .back-link:hover {
    transform: translateX(5px);
}

[dir="ltr"] .back-link i {
    transform: rotate(180deg);
}

/* Simple Footer */
.footer--simple {
    padding: 30px 0;
    text-align: center;
}

/* Policy Cards for Refund Page */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.policy-card {
    background-color: var(--bg-color);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.policy-icon {
    width: 60px;
    height: 60px;
    background-color: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.policy-icon.warning {
    background-color: #f39c12;
}

.policy-icon.danger {
    background-color: #e74c3c;
}

.policy-icon i {
    font-size: 1.5rem;
    color: white;
}

.policy-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.policy-card p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge--success {
    background-color: rgba(39, 174, 96, 0.15);
    color: #27ae60;
}

.badge--warning {
    background-color: rgba(243, 156, 18, 0.15);
    color: #f39c12;
}

.badge--danger {
    background-color: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

/* Guarantee Box */
.guarantee-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    color: white;
}

.guarantee-box i {
    font-size: 3rem;
    opacity: 0.9;
}

.guarantee-box p {
    color: white;
    font-size: 1.1rem;
    margin: 0;
}

/* Highlight Section */
.highlight-section {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.05), rgba(52, 152, 219, 0.05));
    border: 1px solid var(--border-color);
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 1.75rem;
    }

    .policy-grid {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding: 20px;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
}

