/* =====================================================
   Exchange & Returns Page Styles
   ===================================================== */

/* Hero Section */
.er-hero-section {
    position: relative;
    padding: 0;
    margin-top: 0;
}

.er-hero-bg {
    background: linear-gradient(135deg, #1a5c3c 0%, #2d7a4f 50%, #1a5c3c 100%);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.er-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.er-flower {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.er-flower svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.er-hero-title {
    font-family: 'Koulen', sans-serif;
    font-size: 52px;
    color: #ffd700;
    text-align: center;
    margin: 0;
    letter-spacing: 4px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    text-transform: uppercase;
}

/* FAQ Section */
.er-faq-section {
    position: relative;
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #f5e6c8 0%, #e8d4a8 30%, #f0dbb8 70%, #f5e6c8 100%);
    overflow: hidden;
}

.er-decorative-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.er-wave-top {
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 200px;
    background: 
        radial-gradient(ellipse 100% 100% at 50% 0%, transparent 45%, rgba(212, 180, 120, 0.3) 50%, transparent 55%),
        radial-gradient(ellipse 80% 60% at 30% 100px, rgba(212, 180, 120, 0.2) 0%, transparent 60%);
}

.er-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.er-circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #d4a574 0%, transparent 70%);
    top: 20%;
    left: -100px;
}

.er-circle-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #d4a574 0%, transparent 70%);
    bottom: 10%;
    right: -50px;
}

.er-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, 
        rgba(255, 120, 100, 0.4) 0%, 
        rgba(255, 150, 120, 0.3) 30%, 
        rgba(255, 180, 140, 0.2) 60%, 
        transparent 100%);
}

/* FAQ Cards */
.er-faq-card {
    background: linear-gradient(145deg, #8b5a42 0%, #6d4535 100%);
    border-radius: 20px;
    padding: 40px 50px;
    margin-bottom: 40px;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.2),
        0 5px 15px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
}

.er-faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, transparent 50%);
    border-radius: 20px;
    pointer-events: none;
}

.er-question-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.er-answer-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-left: 30px;
}

.er-label {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
    min-width: 100px;
    text-align: center;
}

.er-label-question {
    background: linear-gradient(135deg, #ffd700 0%, #f0c000 100%);
    color: #8b5a42;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.er-label-answer {
    background: linear-gradient(135deg, #ff7f6e 0%, #ff6b5a 100%);
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 127, 110, 0.3);
}

.er-question {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 500;
    font-style: italic;
    color: #f5e6c8;
    margin: 0;
    line-height: 1.4;
    padding-top: 5px;
}

.er-answer {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: rgba(245, 230, 200, 0.85);
    line-height: 1.8;
    margin: 0;
    padding-top: 5px;
    border-left: 3px solid rgba(255, 127, 110, 0.5);
    padding-left: 20px;
}

/* Info Section */
.er-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff8f0 0%, #f5e6c8 100%);
}

.er-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.er-info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.er-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.er-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a5c3c 0%, #2d7a4f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.er-info-icon i {
    font-size: 32px;
    color: #ffd700;
}

.er-info-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a5c3c;
    margin-bottom: 12px;
}

.er-info-card p {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact CTA Section */
.er-contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a5c3c 0%, #2d7a4f 100%);
    position: relative;
    overflow: hidden;
}

.er-contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 90%, rgba(255,255,255,0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(255,255,255,0.05) 0%, transparent 30%);
    pointer-events: none;
}

.er-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.er-cta-content h2 {
    font-family: 'Koulen', sans-serif;
    font-size: 42px;
    color: #ffd700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.er-cta-content p {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.er-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ffd700 0%, #f0c000 100%);
    color: #1a5c3c;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.er-cta-btn:hover {
    background: linear-gradient(135deg, #ffe44d 0%, #ffd700 100%);
    color: #1a5c3c;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    text-decoration: none;
}

.er-cta-btn i {
    transition: transform 0.3s ease;
}

.er-cta-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .er-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .er-hero-title {
        font-size: 38px;
        letter-spacing: 2px;
    }
    
    .er-flower {
        width: 60px;
        height: 60px;
    }
    
    .er-faq-card {
        padding: 30px 35px;
    }
    
    .er-question {
        font-size: 20px;
    }
    
    .er-answer {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .er-hero-bg {
        flex-direction: column;
        gap: 20px;
        padding: 40px 15px;
    }
    
    .er-hero-title {
        font-size: 28px;
        order: -1;
    }
    
    .er-flower {
        display: none;
    }
    
    .er-faq-section {
        padding: 50px 0 70px;
    }
    
    .er-faq-card {
        padding: 25px 20px;
        margin-bottom: 25px;
        border-radius: 15px;
    }
    
    .er-question-wrapper,
    .er-answer-wrapper {
        flex-direction: column;
        gap: 12px;
    }
    
    .er-answer-wrapper {
        padding-left: 0;
    }
    
    .er-label {
        min-width: auto;
        padding: 6px 15px;
        font-size: 11px;
    }
    
    .er-question {
        font-size: 18px;
    }
    
    .er-answer {
        font-size: 14px;
        padding-left: 15px;
    }
    
    .er-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .er-info-card {
        padding: 30px 25px;
    }
    
    .er-cta-content h2 {
        font-size: 32px;
    }
    
    .er-cta-content p {
        font-size: 16px;
    }
    
    .er-cta-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .er-hero-bg {
        padding: 30px 10px;
    }
    
    .er-hero-title {
        font-size: 24px;
    }
    
    .er-faq-card {
        padding: 20px 15px;
    }
    
    .er-question {
        font-size: 16px;
    }
    
    .er-answer {
        font-size: 13px;
        line-height: 1.7;
    }
    
    .er-info-icon {
        width: 60px;
        height: 60px;
    }
    
    .er-info-icon i {
        font-size: 24px;
    }
    
    .er-info-card h4 {
        font-size: 18px;
    }
    
    .er-cta-content h2 {
        font-size: 26px;
    }
}

/* Animation Enhancements */
.er-faq-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.er-faq-card:nth-child(1) { animation-delay: 0.1s; }
.er-faq-card:nth-child(2) { animation-delay: 0.2s; }
.er-faq-card:nth-child(3) { animation-delay: 0.3s; }
.er-faq-card:nth-child(4) { animation-delay: 0.4s; }
.er-faq-card:nth-child(5) { animation-delay: 0.5s; }
.er-faq-card:nth-child(6) { animation-delay: 0.6s; }
.er-faq-card:nth-child(7) { animation-delay: 0.7s; }
.er-faq-card:nth-child(8) { animation-delay: 0.8s; }
.er-faq-card:nth-child(9) { animation-delay: 0.9s; }
.er-faq-card:nth-child(10) { animation-delay: 1.0s; }
.er-faq-card:nth-child(11) { animation-delay: 1.1s; }
.er-faq-card:nth-child(12) { animation-delay: 1.2s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effects for FAQ Cards */
.er-faq-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.er-faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 45px rgba(0,0,0,0.25),
        0 8px 20px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.15);
}
