/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #F7931E;
    --primary-navy: #1E3A5F;
    --light-gray: #f5f5f5;
    --dark-gray: #333;
    --white: #ffffff;
    --success-green: #10b981;
    --danger-red: #ef4444;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light-gray);
    color: var(--dark-gray);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-orange);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--primary-orange);
}

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-orange) 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.contact-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Contact Form */
.contact-form-container {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-orange);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.submit-btn:hover {
    background-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(247, 147, 30, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Contact Information */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-container h2 {
    font-size: 2rem;
    color: var(--primary-navy);
}

.info-subtitle {
    color: #666;
    margin-top: -1rem;
    margin-bottom: 1rem;
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.info-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.info-card h3 {
    font-size: 1.3rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #666;
    line-height: 1.8;
}

.info-card a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.info-card a:hover {
    color: var(--primary-navy);
}

/* Social Section */
.social-section {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.social-section h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--primary-orange);
    transform: translateY(-5px);
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.map-section h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 2rem;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-orange) 100%);
    height: 400px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-size: 1.3rem;
    line-height: 2;
}

/* Footer */
.footer {
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.footer-col h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #ccc;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

/* Success Message */
.success-message {
    background-color: var(--success-green);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: none;
    animation: slideDown 0.3s ease-out;
}

.success-message.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 3rem 0;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .map-placeholder {
        height: 300px;
    }

    .map-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 1.8rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .logo-img {
        height: 40px;
    }

    .info-cards {
        gap: 1rem;
    }

    .info-card {
        padding: 1.5rem;
    }
}


/* ============================================
   FAQ PAGE STYLES - Add to styles.css
   ============================================ */

/* FAQ Hero Section */
.faq-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-orange) 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.faq-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.faq-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

/* FAQ Search */
.faq-search {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.faq-search-wrapper {
    position: relative;
    background-color: var(--white);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 0.5rem;
    transition: box-shadow 0.3s;
}

.faq-search-wrapper:focus-within {
    box-shadow: 0 6px 30px rgba(247, 147, 30, 0.2);
}

.faq-search-wrapper input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    outline: none;
}

.faq-search-btn {
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-search-btn:hover {
    background-color: var(--primary-navy);
    transform: scale(1.05);
}

.faq-search-hint {
    text-align: center;
    color: #666;
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* FAQ Categories */
.faq-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.faq-category-btn {
    padding: 0.8rem 1.8rem;
    border: 2px solid var(--primary-navy);
    background-color: var(--white);
    color: var(--primary-navy);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-category-btn:hover {
    background-color: var(--primary-navy);
    color: var(--white);
    transform: translateY(-2px);
}

.faq-category-btn.active {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--white);
}

/* FAQ Container */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category-section {
    margin-bottom: 3rem;
}

.faq-section-title {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-orange);
}

/* FAQ Items */
.faq-item {
    background-color: var(--white);
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-item.hidden {
    display: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--primary-navy);
    font-weight: 600;
    margin: 0;
    flex: 1;
    transition: color 0.3s;
}

.faq-item:hover .faq-question h3 {
    color: var(--primary-orange);
}

.faq-icon {
    font-size: 1.8rem;
    color: var(--primary-orange);
    font-weight: 300;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 2rem;
}

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

.faq-answer p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

/* FAQ Contact Section */
.faq-contact-section {
    margin-top: 5rem;
    padding: 3rem 0;
}

.faq-contact-card {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-orange) 100%);
    color: var(--white);
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-contact-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.faq-contact-card p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.faq-contact-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-contact-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.faq-contact-btn.primary {
    background-color: var(--white);
    color: var(--primary-navy);
}

.faq-contact-btn.primary:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.faq-contact-btn.secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.faq-contact-btn.secondary:hover {
    background-color: var(--white);
    color: var(--primary-navy);
    transform: translateY(-3px);
}

/* No Results Message */
.no-results-message {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.no-results-message h3 {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.no-results-message p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.no-results-message .submit-btn {
    display: inline-flex;
    width: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .faq-hero h1 {
        font-size: 2.5rem;
    }

    .faq-section-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .faq-hero {
        padding: 3rem 0;
    }

    .faq-hero h1 {
        font-size: 2rem;
    }

    .faq-hero p {
        font-size: 1.1rem;
    }

    .faq-search {
        margin-bottom: 2.5rem;
    }

    .faq-search-wrapper input {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }

    .faq-search-btn {
        padding: 0.8rem 1.5rem;
    }

    .faq-categories {
        gap: 0.7rem;
    }

    .faq-category-btn {
        padding: 0.6rem 1.3rem;
        font-size: 0.9rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.05rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.2rem 1.5rem;
    }

    .faq-contact-card {
        padding: 3rem 2rem;
    }

    .faq-contact-card h2 {
        font-size: 2rem;
    }

    .faq-contact-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .faq-contact-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .faq-hero h1 {
        font-size: 1.8rem;
    }

    .faq-search-wrapper {
        border-radius: 15px;
    }

    .faq-search-btn {
        border-radius: 15px;
    }

    .faq-section-title {
        font-size: 1.5rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    .faq-contact-card {
        padding: 2rem 1.5rem;
    }

    .faq-contact-card h2 {
        font-size: 1.7rem;
    }

    .faq-contact-card p {
        font-size: 1rem;
    }
}

/* Animation for filtered items */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item.show {
    animation: fadeIn 0.4s ease-out;
}

/* ============================================
   RETURNS PAGE STYLES - Add to styles.css
   ============================================ */

/* Returns Hero Section */
.returns-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-orange) 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.returns-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.returns-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Returns Stats Section */
.returns-stats {
    background-color: var(--white);
    padding: 3rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

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

.stat-card h3 {
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #666;
    font-size: 1.1rem;
}

/* Returns Content Section */
.returns-content {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.section-heading {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* Policy Section */
.policy-section {
    margin-bottom: 5rem;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.policy-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border-top: 4px solid var(--primary-orange);
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.policy-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.policy-card h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.policy-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Items Section */
.items-section {
    margin-bottom: 5rem;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.items-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.items-card.returnable {
    border-left: 5px solid var(--success-green);
}

.items-card.non-returnable {
    border-left: 5px solid var(--danger-red);
}

.items-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-navy);
}

.items-card.returnable h3 {
    color: var(--success-green);
}

.items-card.non-returnable h3 {
    color: var(--danger-red);
}

.items-card ul {
    list-style: none;
    padding: 0;
}

.items-card ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

.items-card ul li:last-child {
    border-bottom: none;
}

.items-card.returnable ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.items-card.non-returnable ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--danger-red);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Steps Section */
.steps-section {
    margin-bottom: 5rem;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-orange) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    font-size: 1.4rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.step-card p {
    color: #666;
    line-height: 1.7;
}

.step-card a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.step-card a:hover {
    text-decoration: underline;
}

/* Return Form Section */
.return-form-section {
    margin-bottom: 5rem;
}

.return-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.return-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.return-form .form-group {
    margin-bottom: 1.5rem;
}

.return-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--white);
    cursor: pointer;
    transition: border-color 0.3s;
    outline: none;
}

.return-form select:focus {
    border-color: var(--primary-orange);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--primary-orange);
}

.form-checkbox label {
    color: #555;
    line-height: 1.6;
    cursor: pointer;
}

/* Shipping Costs Section */
.shipping-costs-section {
    margin-bottom: 5rem;
}

.shipping-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.shipping-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.shipping-card.free {
    border-left: 5px solid var(--success-green);
}

.shipping-card.paid {
    border-left: 5px solid var(--primary-orange);
}

.shipping-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-navy);
}

.shipping-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.shipping-card ul {
    list-style: none;
    padding: 0;
}

.shipping-card ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.shipping-card.free ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-size: 1.5rem;
    font-weight: bold;
}

.shipping-card.paid ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Quick FAQ Section */
.quick-faq-section {
    margin-bottom: 5rem;
}

.quick-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.quick-faq-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.quick-faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-left: 4px solid var(--primary-orange);
}

.quick-faq-card h4 {
    font-size: 1.3rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.quick-faq-card p {
    color: #666;
    line-height: 1.7;
}

/* Returns Contact Section */
.returns-contact-section {
    margin-top: 5rem;
}

.returns-contact-card {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-orange) 100%);
    color: var(--white);
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.returns-contact-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.returns-contact-card > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.method-icon {
    font-size: 2rem;
}

.contact-method div {
    text-align: left;
}

.contact-method strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-method a,
.contact-method span {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
}

.contact-method a:hover {
    opacity: 1;
    text-decoration: underline;
}

.contact-page-btn {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-navy);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-page-btn:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .returns-hero h1 {
        font-size: 2.5rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .returns-hero {
        padding: 3rem 0;
    }

    .returns-hero h1 {
        font-size: 2rem;
    }

    .returns-hero p {
        font-size: 1.1rem;
    }

    .returns-stats {
        padding: 2rem 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .policy-grid,
    .items-grid,
    .steps-container,
    .shipping-grid,
    .quick-faq-grid {
        grid-template-columns: 1fr;
    }

    .return-form-container {
        padding: 2rem;
    }

    .return-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .returns-contact-card {
        padding: 3rem 2rem;
    }
}

@media (max-width: 480px) {
    .returns-hero h1 {
        font-size: 1.8rem;
    }

    .section-heading {
        font-size: 1.7rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .policy-card,
    .items-card,
    .step-card,
    .shipping-card,
    .quick-faq-card {
        padding: 1.5rem;
    }

    .return-form-container {
        padding: 1.5rem;
    }

    .returns-contact-card h2 {
        font-size: 2rem;
    }

    .stat-icon {
        font-size: 2.5rem;
    }

    .stat-card h3 {
        font-size: 1.5rem;
    }
}