/* Returns Policy Specific Styles */

/* Hero Section */
.policy-hero {
    position: relative;
    height: 40vh;
    min-height: 350px;
    background: linear-gradient(135deg, rgba(40,32,86,0.5) 0%, rgba(239,48,147,0.6) 100%),
                url('https://images.unsplash.com/photo-1607748862156-7c548e7e98f4?w=1200') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.policy-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.policy-hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Eligibility Grid */
.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.eligibility-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.eligibility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-color: var(--accent-color);
}

.eligibility-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.eligibility-card:hover i {
    transform: scale(1.1);
    color: var(--primary-color);
}

.eligibility-card h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.eligibility-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    margin: 30px 0;
}

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 35px;
}

.step-item::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 60px;
    bottom: -35px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-color), transparent);
}

.step-item:last-child::after {
    display: none;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.step-item:hover .step-number {
    transform: scale(1.1);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.step-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.step-content a:hover {
    text-decoration: underline;
}

/* Exchange Options */
.exchange-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0 40px;
}

.exchange-card {
    background: var(--light-bg);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.exchange-card:hover {
    background: white;
    border-color: var(--accent-color);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.exchange-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.exchange-card:hover i {
    transform: scale(1.15);
    color: var(--primary-color);
}

.exchange-card h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.exchange-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Refund Timeline */
.refund-timeline {
    position: relative;
    margin: 40px 0;
    padding-left: 80px;
}

.refund-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: -80px;
    width: 50px;
    height: 50px;
    background: white;
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.15);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-color: var(--primary-color);
}

.timeline-icon i {
    font-size: 1.3rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-icon i {
    color: white;
}

.timeline-content {
    flex: 1;
    background: var(--light-bg);
    padding: 25px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.timeline-item:hover .timeline-content {
    background: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-left-color: var(--accent-color);
}

.timeline-content h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
}

.timeline-date {
    display: inline-block;
    padding: 6px 15px;
    background: var(--accent-color);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Non-Returnable List */
.non-returnable-list {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.non-returnable-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.non-returnable-item:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left-color: #dc3545;
}

.non-returnable-item i {
    font-size: 2rem;
    color: #dc3545;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.non-returnable-item:hover i {
    transform: scale(1.1);
}

.non-returnable-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.non-returnable-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Defective Process */
.defective-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.defective-card {
    background: var(--light-bg);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.defective-card:hover {
    background: white;
    border-color: var(--accent-color);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.defective-card h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.defective-card h4 i {
    color: var(--accent-color);
    margin-right: 10px;
}

.defective-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.defective-card a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.defective-card a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .refund-timeline {
        padding-left: 60px;
    }
    
    .timeline-icon {
        left: -60px;
        width: 45px;
        height: 45px;
    }
    
    .timeline-icon i {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .policy-hero-content h1 {
        font-size: 2rem;
    }

    .policy-hero-content p {
        font-size: 1rem;
    }

    .eligibility-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        margin: 20px 0;
    }

    .step-item {
        flex-direction: column;
        gap: 15px;
        padding-bottom: 25px;
        margin-bottom: 25px;
    }

    .step-item::after {
        display: none;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .step-content h4 {
        font-size: 1.1rem;
    }

    .exchange-options {
        grid-template-columns: 1fr;
    }

    .refund-timeline {
        padding-left: 0;
        padding-top: 10px;
    }

    .refund-timeline::before {
        display: none;
    }

    .timeline-item {
        flex-direction: column;
        margin-bottom: 30px;
        padding: 0;
    }

    .timeline-icon {
        position: relative;
        left: 0;
        margin: 0 auto 15px;
    }

    .timeline-content {
        border-left: none;
        border-top: 4px solid transparent;
    }

    .timeline-item:hover .timeline-content {
        border-left: none;
        border-top-color: var(--accent-color);
    }

    .non-returnable-item {
        flex-direction: column;
        text-align: center;
    }

    .non-returnable-item i {
        margin: 0 auto 15px;
    }

    .defective-process {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .policy-hero {
        height: 35vh;
        min-height: 300px;
    }

    .section-icon {
        width: 60px;
        height: 60px;
    }

    .section-icon i {
        font-size: 1.5rem;
    }

    .policy-section h2 {
        font-size: 1.6rem;
    }

    .eligibility-card,
    .exchange-card,
    .defective-card {
        padding: 25px 20px;
    }

    .eligibility-card i,
    .exchange-card i {
        font-size: 2.5rem;
    }

    .timeline-date {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
}


/* Hero Section */
.policy-hero {
    position: relative;
    height: 40vh;
    min-height: 350px;
    background: linear-gradient(135deg, rgba(40,32,86,0.5) 0%, rgba(239,48,147,0.6) 100%),
                url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=1200') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.policy-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.policy-hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Main Content Section */
.policy-content {
    padding: 80px 0;
    background: white;
}

/* Sidebar */
.policy-sidebar {
    background: var(--light-bg);
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 10px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #555;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.sidebar-nav a i {
    margin-right: 10px;
    color: var(--accent-color);
    width: 20px;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

/* Policy Sections */
.policy-section {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--light-bg);
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-intro {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff !important;
    padding: 30px 35px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.policy-intro p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.section-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.section-icon i {
    font-size: 2rem;
    color: white;
}

.policy-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.policy-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.policy-section strong {
    color: var(--primary-color);
}

/* Info Boxes */
.info-box,
.warning-box {
    display: flex;
    align-items: flex-start;
    padding: 20px 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.info-box {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
}

.warning-box {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
}

.info-box i,
.warning-box i {
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 3px;
}

.info-box i {
    color: #2196f3;
}

.warning-box i {
    color: #ff9800;
}

.info-box div,
.warning-box div {
    flex: 1;
}

.info-box strong,
.warning-box strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.05rem;
}

/* Shipping Options Cards */
.shipping-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.shipping-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.shipping-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-color: var(--accent-color);
}

.shipping-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.shipping-header i {
    font-size: 2rem;
}

.shipping-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.shipping-details {
    padding: 25px 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row.highlight {
    background: #f0f8ff;
    padding: 12px 15px;
    margin: 10px -20px -25px;
    border-bottom: none;
}

.detail-row .label {
    color: #666;
    font-weight: 500;
}

.detail-row .value {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.detail-row.highlight .value {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.detail-row .note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* International Info */
.international-info {
    margin: 30px 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.info-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.info-item p {
    margin: 0;
    color: #666;
}

/* Tracking Methods */
.tracking-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.tracking-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--light-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tracking-card:hover {
    background: white;
    border-color: var(--accent-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.tracking-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.tracking-card h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.tracking-card p {
    color: #666;
    margin-bottom: 20px;
}

.track-btn {
    display: inline-block;
    padding: 10px 25px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.track-btn:hover {
    background: var(--primary-color);
    transform: scale(1.05);
    color: white;
}

/* Accordion Styles */
.accordion-item {
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.accordion-button {
    background: var(--light-bg);
    color: var(--primary-color);
    font-weight: 600;
    padding: 20px 25px;
    font-size: 1.1rem;
    border: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: none;
}

.accordion-button i {
    font-size: 1.3rem;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    margin-left: auto;
}

.accordion-body {
    padding: 25px;
    background: white;
}

.accordion-body ul {
    margin: 15px 0;
    padding-left: 25px;
}

.accordion-body li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 50px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.contact-icon {
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 5rem;
    opacity: 0.9;
}

.contact-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-contact-primary,
.btn-contact-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.btn-contact-primary {
    background: white;
    color: var(--primary-color);
}

.btn-contact-primary:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-contact-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-contact-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .policy-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .policy-hero-content h1 {
        font-size: 2rem;
    }

    .policy-hero-content p {
        font-size: 1rem;
    }

    .policy-content {
        padding: 50px 0;
    }

    .section-icon {
        width: 60px;
        height: 60px;
    }

    .section-icon i {
        font-size: 1.5rem;
    }

    .policy-section h2 {
        font-size: 1.6rem;
    }

    .shipping-options {
        grid-template-columns: 1fr;
    }

    .tracking-methods {
        grid-template-columns: 1fr;
    }

    .contact-cta {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
    }

    .contact-icon i {
        font-size: 3.5rem;
    }

    .contact-content h3 {
        font-size: 1.5rem;
    }

    .contact-buttons {
        justify-content: center;
    }

    .btn-contact-primary,
    .btn-contact-secondary {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}
