/* ===== POLICY PAGES STYLES ===== */
.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 5rem 5%;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.policy-section {
    max-width: 1400px;
    margin: 0 auto 5rem;
    padding: 0 5%;
}

.policy-container {
    background: white;
    border-radius: 48px;
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.policy-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

/* Shipping Grid */
.shipping-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}

.shipping-region-card {
    background: #f8fafd;
    border-radius: 24px;
    padding: 1.8rem;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(0,102,204,0.1);
}

.shipping-region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,102,204,0.1);
}

.region-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.shipping-region-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.shipping-time {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.partner-card {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.partner-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(0,102,204,0.1);
}

.partner-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* Policy FAQ Accordion */
.policy-faq-item {
    margin-bottom: 1rem;
    border: 1px solid #f0f0f0;
    border-radius: 24px;
    overflow: hidden;
}

.policy-faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: background 0.3s;
}

.policy-faq-question:hover {
    background: #f8fafd;
}

.policy-faq-icon {
    font-size: 1.8rem;
    color: var(--accent);
    transition: transform 0.3s;
}

.policy-faq-item.active .policy-faq-icon {
    transform: rotate(45deg);
}

.policy-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8fafd;
    padding: 0 1.5rem;
}

.policy-faq-item.active .policy-faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.policy-list {
    list-style: none;
    padding: 0;
}

.policy-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.process-steps {
    padding-left: 1.5rem;
}

.process-steps li {
    margin-bottom: 0.8rem;
}

/* Shipping Promise */
.shipping-promise {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f7ff, #e6f0ff);
    border-radius: 32px;
}

.promise-card {
    text-align: center;
}

.promise-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Warranty Tiers */
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tier-card {
    background: white;
    border-radius: 32px;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    position: relative;
    transition: all 0.3s;
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,102,204,0.1);
}

.tier-card.standard {
    border-top: 4px solid #4a4a4e;
}

.tier-card.extended {
    border-top: 4px solid var(--accent);
    transform: scale(1.05);
}

.tier-card.commercial {
    border-top: 4px solid #1e7b4c;
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 2rem;
    background: var(--accent);
    color: white;
    padding: 0.3rem 1.2rem;
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tier-card.commercial .tier-badge {
    background: #1e7b4c;
}

.tier-duration {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin: 1rem 0;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.tier-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.tier-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* Coverage Grid */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.coverage-item {
    background: #f8fafd;
    border-radius: 24px;
    padding: 1.8rem;
    text-align: center;
}

.coverage-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Not Covered Grid */
.not-covered-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.not-covered-item {
    background: #fff5f5;
    border-radius: 24px;
    padding: 1.8rem;
    text-align: center;
}

.exclude-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 3rem 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.timeline-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    z-index: 2;
    background: white;
    padding: 1rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Service Centers */
.centers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.center-card {
    background: #f8fafd;
    border-radius: 24px;
    padding: 1.5rem;
    text-align: center;
}

.center-flag {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

/* Return Summary */
.return-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.summary-card {
    background: linear-gradient(135deg, #f0f7ff, #e6f0ff);
    border-radius: 32px;
    padding: 2rem;
    text-align: center;
}

.summary-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Conditions Grid */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.condition-card {
    border-radius: 32px;
    padding: 2rem;
}

.condition-card.eligible {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

.condition-card.not-eligible {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
}

.condition-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.condition-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Vertical Process Steps */
.process-steps-vertical {
    margin: 3rem 0;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-marker {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-detail h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Timeline Table */
.timeline-table {
    margin: 2rem 0;
    border: 1px solid #f0f0f0;
    border-radius: 24px;
    overflow: hidden;
}

.timeline-row {
    display: flex;
    justify-content: space-between;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.timeline-row:last-child {
    border-bottom: none;
}

.timeline-row:nth-child(even) {
    background: #f8fafd;
}

.timeline-method {
    font-weight: 600;
}

.timeline-time {
    color: var(--accent);
    font-weight: 500;
}

/* Return FAQ Grid */
.return-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.return-faq-item {
    background: #f8fafd;
    border-radius: 24px;
    padding: 1.8rem;
}

.return-faq-item h4 {
    margin-bottom: 1rem;
    color: var(--accent);
}

/* Responsive */
@media (max-width: 900px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .policy-container {
        padding: 1.5rem;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .timeline-step {
        margin-bottom: 2rem;
    }
    
    .tier-card.extended {
        transform: none;
    }
}

@media (max-width: 600px) {
    .process-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-row {
        flex-direction: column;
        gap: 0.5rem;
    }
}