/* style/user-community-feedback-channel.css */

/* Variables for colors */
:root {
    --rikvip-dark-blue: #1A2B4C;
    --rikvip-gold: #FFD700;
    --rikvip-light-gray: #f4f4f4;
    --rikvip-white: #ffffff;
    --rikvip-text-dark: #333333; /* Dark text on light background */
    --rikvip-text-light: #ffffff; /* Light text on dark background */
}

.page-user-community-feedback-channel {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--rikvip-text-dark); /* Default text color for light backgrounds */
    background-color: var(--rikvip-white);
}

.page-user-community-feedback-channel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-user-community-feedback-channel-hero {
    background: var(--rikvip-dark-blue); /* Dark blue background */
    color: var(--rikvip-text-light); /* White text on dark blue */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-user-community-feedback-channel-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.page-user-community-feedback-channel-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-user-community-feedback-channel-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--rikvip-gold); /* Gold title on dark blue background */
    position: relative;
    z-index: 1;
}

.page-user-community-feedback-channel-subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

/* General Section Styling */
.page-user-community-feedback-channel-section {
    padding: 60px 0;
    background-color: var(--rikvip-white);
}

.page-user-community-feedback-channel-section:nth-of-type(even) {
    background-color: var(--rikvip-light-gray); /* Light gray for alternating sections */
}

.page-user-community-feedback-channel-heading {
    font-size: 2.5em;
    color: var(--rikvip-dark-blue); /* Dark blue heading */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-user-community-feedback-channel-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--rikvip-gold);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Importance Section */
.page-user-community-feedback-channel-importance p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-user-community-feedback-channel-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-user-community-feedback-channel-list li {
    background-color: var(--rikvip-white);
    padding: 20px;
    border-left: 5px solid var(--rikvip-gold);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    font-size: 1.05em;
    transition: transform 0.3s ease;
}

.page-user-community-feedback-channel-list li:hover {
    transform: translateY(-5px);
}

.page-user-community-feedback-channel-list li strong {
    color: var(--rikvip-dark-blue);
}

/* How to Submit Section */
.page-user-community-feedback-channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-user-community-feedback-channel-card {
    background-color: var(--rikvip-white);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-user-community-feedback-channel-card-title {
    font-size: 1.8em;
    color: var(--rikvip-dark-blue);
    margin-bottom: 20px;
}

.page-user-community-feedback-channel-card p {
    margin-bottom: 15px;
}

.page-user-community-feedback-channel-card-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Form Styling */
.page-user-community-feedback-channel-form {
    width: 100%;
    margin-top: 20px;
}

.page-user-community-feedback-channel-form-group {
    margin-bottom: 20px;
    text-align: left;
    width: 100%;
}

.page-user-community-feedback-channel-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--rikvip-dark-blue);
}

.page-user-community-feedback-channel-form-group input[type="text"],
.page-user-community-feedback-channel-form-group input[type="email"],
.page-user-community-feedback-channel-form-group select,
.page-user-community-feedback-channel-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box; /* Include padding in width */
}

.page-user-community-feedback-channel-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.page-user-community-feedback-channel-btn {
    display: inline-block;
    background-color: var(--rikvip-gold);
    color: var(--rikvip-dark-blue); /* Dark text on gold button */
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.page-user-community-feedback-channel-btn:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-user-community-feedback-channel-link {
    color: var(--rikvip-dark-blue);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-user-community-feedback-channel-link:hover {
    color: var(--rikvip-gold);
}

.page-user-community-feedback-channel-contact-list,
.page-user-community-feedback-channel-social-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    width: 100%;
}

.page-user-community-feedback-channel-contact-list li,
.page-user-community-feedback-channel-social-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: var(--rikvip-text-dark);
}

.page-user-community-feedback-channel-contact-list li strong {
    color: var(--rikvip-dark-blue);
}

/* Process Section */
.page-user-community-feedback-channel-process-flow {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.page-user-community-feedback-channel-step {
    flex: 1;
    min-width: 250px;
    background-color: var(--rikvip-white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.page-user-community-feedback-channel-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--rikvip-dark-blue);
    color: var(--rikvip-gold); /* Gold number on dark blue */
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 15px;
    border: 3px solid var(--rikvip-gold);
}

.page-user-community-feedback-channel-step-title {
    font-size: 1.5em;
    color: var(--rikvip-dark-blue);
    margin-bottom: 10px;
}

.page-user-community-feedback-channel-process-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-user-community-feedback-channel-faq-item {
    background-color: var(--rikvip-white);
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-user-community-feedback-channel-faq-question {
    font-size: 1.3em;
    color: var(--rikvip-dark-blue);
    margin-bottom: 10px;
    cursor: pointer; /* Indicate it's clickable */
    position: relative;
    padding-right: 30px;
}

.page-user-community-feedback-channel-faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: var(--rikvip-gold);
    transition: transform 0.3s ease;
}

.page-user-community-feedback-channel-faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-user-community-feedback-channel-faq-answer {
    font-size: 1.1em;
    color: var(--rikvip-text-dark);
    margin-top: 10px;
    display: none; /* Hidden by default */
}

.page-user-community-feedback-channel-faq-answer.active {
    display: block;
}

/* Community Call to Action */
.page-user-community-feedback-channel-community-call {
    text-align: center;
    background-color: var(--rikvip-dark-blue); /* Dark blue background */
    color: var(--rikvip-text-light); /* White text */
    padding: 80px 0;
}

.page-user-community-feedback-channel-community-call .page-user-community-feedback-channel-heading {
    color: var(--rikvip-gold); /* Gold heading on dark blue */
}

.page-user-community-feedback-channel-community-call p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 30px;
}

.page-user-community-feedback-channel-community-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-user-community-feedback-channel-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-user-community-feedback-channel-btn-primary {
    background-color: var(--rikvip-gold);
    color: var(--rikvip-dark-blue);
    border: 2px solid var(--rikvip-gold);
}

.page-user-community-feedback-channel-btn-primary:hover {
    background-color: #e6c200;
    color: var(--rikvip-dark-blue);
}

.page-user-community-feedback-channel-btn-secondary {
    background-color: transparent;
    color: var(--rikvip-gold);
    border: 2px solid var(--rikvip-gold);
}

.page-user-community-feedback-channel-btn-secondary:hover {
    background-color: var(--rikvip-gold);
    color: var(--rikvip-dark-blue);
}


/* Responsive Design */
@media (max-width: 992px) {
    .page-user-community-feedback-channel-title {
        font-size: 3em;
    }
    .page-user-community-feedback-channel-heading {
        font-size: 2em;
    }
    .page-user-community-feedback-channel-grid {
        grid-template-columns: 1fr;
    }
    .page-user-community-feedback-channel-list {
        grid-template-columns: 1fr;
    }
    .page-user-community-feedback-channel-process-flow {
        flex-direction: column;
    }
    .page-user-community-feedback-channel-step {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-user-community-feedback-channel-hero {
        padding: 60px 0;
    }
    .page-user-community-feedback-channel-title {
        font-size: 2.5em;
    }
    .page-user-community-feedback-channel-subtitle {
        font-size: 1em;
    }
    .page-user-community-feedback-channel-section {
        padding: 40px 0;
    }
    .page-user-community-feedback-channel-heading {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-user-community-feedback-channel-list li {
        padding: 15px;
        font-size: 1em;
    }
    .page-user-community-feedback-channel-card {
        padding: 20px;
    }
    .page-user-community-feedback-channel-card-title {
        font-size: 1.5em;
    }
    .page-user-community-feedback-channel-form-group label {
        font-size: 0.95em;
    }
    .page-user-community-feedback-channel-form-group input,
    .page-user-community-feedback-channel-form-group select,
    .page-user-community-feedback-channel-form-group textarea {
        padding: 10px;
        font-size: 0.95em;
    }
    .page-user-community-feedback-channel-btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-user-community-feedback-channel-step-title {
        font-size: 1.3em;
    }
    .page-user-community-feedback-channel-faq-question {
        font-size: 1.2em;
    }
    .page-user-community-feedback-channel-faq-answer {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-user-community-feedback-channel-title {
        font-size: 2em;
    }
    .page-user-community-feedback-channel-heading {
        font-size: 1.5em;
    }
    .page-user-community-feedback-channel-btn {
        width: 100%;
        margin-bottom: 10px;
    }
    .page-user-community-feedback-channel-cta-buttons {
        flex-direction: column;
    }
}