/* Return Policy Page Styles */

/* Hero Section */
.return-hero {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    color: #fff;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Return Policy Section */
.return-policy-section {
    padding: 6rem 0;
    background: #0f0f0f;
}

.policy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.policy-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 53, 0.3);
}

.policy-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.policy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.policy-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.policy-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.policy-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.policy-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.policy-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.policy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.2rem;
}

.feedback-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.feedback-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-item h4 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.highlight-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.contact-info {
    background: rgba(255, 107, 53, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid #ff6b35;
}

.contact-info p {
    margin: 0;
    font-size: 1.1rem;
}

.contact-info a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    color: #f7931e;
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form-section {
    background: #1a1a1a;
    padding: 4rem 0;
    margin-top: 2rem;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.form-container h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.contact-form {
    background: #2a2a2a;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: #1a1a1a;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, #ff7b45 0%, #ffa31e 100%);
}

/* Company Information Section */
.company-info-section {
    background: #0f0f0f;
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.company-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.company-info h3 {
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.info-item h4 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.info-item a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.info-item a:hover {
    color: #f7931e;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .return-hero {
        padding: 6rem 0 3rem;
    }
    
    .policy-container {
        padding: 0 1rem;
    }
    
    .policy-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .policy-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .policy-header h2 {
        font-size: 1.5rem;
    }
    
    .feedback-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-container h2 {
        font-size: 2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .policy-card {
        padding: 1.5rem;
    }
    
    .policy-header h2 {
        font-size: 1.3rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-container h2 {
        font-size: 1.8rem;
    }
    
    .company-info h3 {
        font-size: 2rem;
    }
}

