/* ==========================================
   PAGES STYLE - Terms, Privacy, Disclaimer
   ========================================== */

/* Legal Pages Container */
.legal-page-container {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.legal-section {
    padding: 40px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    border-radius: 8px;
}

/* Section Heading */
.legal-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #fb590b;
    position: relative;
}

.legal-section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #fb590b, #b74711);
}

/* Sub-section Heading */
.legal-subsection-title {
    font-size: 20px;
    font-weight: 600;
    color: #fb590b;
    margin-top: 0px;
    margin-bottom: 15px;
    padding-top: 10px;
}

.legal-subsection-title:first-child {
    margin-top: 0;
    padding-top: 0;
}

/* Content Paragraph */
.legal-content {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
    text-align: justify;
}

.legal-content strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* List Styles */
.legal-list {
    margin: 20px 0 20px 30px;
    padding: 0;
    list-style-type: disc;
}

.legal-list li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
    font-size: 15px;
    list-style: disc;
}

.legal-list li strong {
    color: #0d5bc0;
}

/* Ordered List */
.legal-list-ordered {
    margin: 20px 0 20px 30px;
    padding: 0;
    list-style-type: decimal;
}

.legal-list-ordered li {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.7;
    font-size: 15px;
    list-style: disc;
}

/* Key Points Box */
.legal-highlight-box {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%);
    border-left: 4px solid #0066cc;
    padding: 20px;
    margin: 25px 0;
    border-radius: 4px;
}

.legal-highlight-box p {
    margin: 0;
    color: #1a1a1a;
    font-weight: 500;
}

/* Important Notice */
.legal-notice {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe9a3 100%);
    border: 2px solid #ffc107;
    padding: 20px;
    margin: 25px 0;
    border-radius: 6px;
}

.legal-notice-title {
    color: #ff8c00;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
}

.legal-notice p {
    margin: 0;
    color: #555;
    line-height: 1.7;
}

/* Contact Information Box */
.legal-contact-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-left: 4px solid #4caf50;
    padding: 25px;
    margin: 35px 0;
    border-radius: 6px;
}

.legal-contact-title {
    color: #2e7d32;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.legal-contact-item {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.7;
}

.legal-contact-item strong {
    color: #1a1a1a;
}

/* Table Styling */
.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.legal-table th {
    background-color: #0066cc;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.legal-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
    color: #555;
    font-size: 15px;
}

.legal-table tr:hover {
    background-color: #f9f9f9;
}

/* Last Updated */
.legal-updated {
    background: #f0f0f0;
    padding: 20px;
    margin-top: 40px;
    border-radius: 6px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.legal-updated strong {
    color: #1a1a1a;
}

/* Side-by-Side Content */
.legal-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.legal-content-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.legal-content-item h4 {
    color: #0066cc;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.legal-content-item p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}

/* Divider */
.legal-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #0066cc, transparent);
    margin: 40px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-section {
        padding: 40px 0 30px;
        margin-bottom: 30px;
    }

    .legal-section-title {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .legal-subsection-title {
        font-size: 18px;
        margin-top: 25px;
    }

    .legal-content {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .legal-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 20px 0;
    }

    .legal-table {
        font-size: 13px;
    }

    .legal-table th,
    .legal-table td {
        padding: 10px;
    }

    .legal-page-container {
        padding: 40px 0;
    }

    .legal-list {
        margin: 15px 0 15px 20px;
    }

    .legal-list-ordered {
        margin: 15px 0 15px 20px;
    }
}

@media (max-width: 480px) {
    .legal-section {
        padding: 30px 20px;
        margin-bottom: 20px;
        border-radius: 4px;
    }

    .legal-section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .legal-subsection-title {
        font-size: 16px;
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .legal-content {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 12px;
        text-align: left;
    }

    .legal-highlight-box,
    .legal-notice,
    .legal-contact-box {
        padding: 15px;
        margin: 20px 0;
    }

    .legal-updated {
        padding: 15px;
        margin-top: 30px;
        font-size: 12px;
    }

    .legal-divider {
        margin: 30px 0;
    }
}

/* Print Styles */
@media print {
    .legal-section {
        box-shadow: none;
        page-break-inside: avoid;
    }

    .legal-section-title {
        color: #000;
    }

    .legal-subsection-title {
        color: #000;
    }
}

/* Category Heading */
.legal-category-title {
    color: #0066cc;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* ==========================================
   FEEDBACK FORM STYLES
   ========================================== */

.feedback-container {
    padding: 60px 0;
    background-color: #f9f9f9;
    min-height: calc(100vh - 300px);
}

.feedback-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.feedback-form-section {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feedback-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
}

.feedback-subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 35px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-label .required {
    color: #e74c3c;
    font-weight: 700;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #fb590b;
    box-shadow: 0 0 0 3px rgba(251, 89, 11, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.rating-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.rating-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-option input[type="radio"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: #fb590b;
}

.rating-option label {
    cursor: pointer;
    color: #555;
    font-size: 14px;
    margin: 0;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-option input[type="checkbox"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: #fb590b;
}

.checkbox-option label {
    cursor: pointer;
    color: #555;
    font-size: 14px;
    margin: 0;
}

.form-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
    margin: 30px 0;
}

.feedback-btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 35px;
}

.feedback-btn {
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feedback-btn-submit {
    background: linear-gradient(135deg, #fb590b, #ff7f39);
    color: white;
}

.feedback-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 89, 11, 0.3);
}

.feedback-btn-reset {
    background-color: #f0f0f0;
    color: #1a1a1a;
    border: 2px solid #e0e0e0;
}

.feedback-btn-reset:hover {
    background-color: #e0e0e0;
    border-color: #c0c0c0;
}

.success-message {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    color: #155724;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    display: none;
}

.success-message.show {
    display: block;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feedback-info-box {
    background: linear-gradient(135deg, #e8f4ff 0%, #f0f9ff 100%);
    border-left: 4px solid #fb590b;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.feedback-info-box h4 {
    color: #fb590b;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feedback-info-box p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Contact Details Box */
.feedback-contact-info {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 8px;
    margin-top: 35px;
    border: 1px solid #e0e0e0;
}

.feedback-contact-info h4 {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fb590b, #ff7f39);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-details p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.contact-details p strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feedback-form-section {
        padding: 30px;
    }

    .feedback-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .feedback-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .rating-group {
        gap: 10px;
    }

    .feedback-btn-group {
        flex-direction: column;
        gap: 10px;
        margin-top: 25px;
    }

    .feedback-btn {
        width: 100%;
        padding: 12px 25px;
    }

    .contact-item {
        gap: 12px;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .contact-details p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .feedback-container {
        padding: 40px 0;
    }

    .feedback-form-section {
        padding: 20px;
        margin: 0 15px;
        border-radius: 8px;
    }

    .feedback-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .feedback-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .form-label {
        font-size: 14px;
    }

    .form-input,
    .form-textarea,
    .form-select {
        padding: 10px 12px;
        font-size: 14px;
    }

    .form-textarea {
        min-height: 120px;
    }

    .rating-group {
        flex-direction: column;
        gap: 8px;
    }

    .form-divider {
        margin: 20px 0;
    }

    .feedback-btn-group {
        margin-top: 20px;
    }

    .feedback-contact-info {
        padding: 20px;
        margin-top: 25px;
    }

    .feedback-contact-info h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .contact-item {
        gap: 10px;
        margin-bottom: 12px;
    }

    .contact-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .contact-details p {
        font-size: 12px;
    }
}