/* ========================================
   Tarqeyah Terms and Conditions Styles
   ======================================== */

/* Variables */
:root {
    --primary-blue: #4d61f4;
    --primary-lime: #d7fe7c;
    --primary-dark: #232323;
    --secondary-green: #0b3e27;
    --secondary-purple: #cb89ff;
    --secondary-light-blue: #d0edfa;
    --secondary-light-gray: #f6f5f2;

    --gradient-primary: linear-gradient(135deg, #4d61f4, #cb89ff);
    --gradient-lime: linear-gradient(135deg, #d7fe7c, #a7fe3c);
    --gradient-dark: linear-gradient(135deg, #232323, #434343);

    --text-primary: #232323;
    --text-secondary: #666666;
    --text-white: #ffffff;

    --border-color: #e8e8e8;
    --error-color: #ff4444;
    --success-color: #4CAF50;
    --warning-color: #ff9800;

    --shadow-sm: 0 2px 8px rgba(35, 35, 35, 0.08);
    --shadow: 0 5px 20px rgba(35, 35, 35, 0.12);
    --shadow-lg: 0 10px 40px rgba(35, 35, 35, 0.16);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

/* Terms Wrapper */
.terms-wrapper {
    min-height: 100vh;
    background: var(--secondary-light-gray);
}

/* Hero Section */
.terms-hero {
    position: relative;
    background: var(--gradient-primary);
    padding: 220px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image:
            radial-gradient(circle at 20% 50%, var(--primary-lime) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, var(--secondary-purple) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-white);
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    opacity: 0.8;
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-meta i {
    font-size: 16px;
}

/* Terms Navigation - Removed sticky behavior */
.terms-nav {
    background: var(--text-white);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 100;
    transition: var(--transition);
}

/* Removed sticky class styles */
/* .terms-nav.sticky {
    top: 0;
} */

.terms-nav .nav-wrapper {
    padding: 0;
}

.terms-nav .nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.terms-nav .nav-list li {
    margin: 0;
}

.terms-nav .nav-list a {
    display: block;
    padding: 20px 25px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.terms-nav .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.terms-nav .nav-list a:hover {
    color: var(--primary-blue);
    background: rgba(77, 97, 244, 0.05);
}

.terms-nav .nav-list a.active {
    color: var(--primary-blue);
}

.terms-nav .nav-list a.active::after,
.terms-nav .nav-list a:hover::after {
    width: 80%;
}

/* Terms Content */
.terms-content {
    padding: 60px 0 100px;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 40px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--text-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
}

.action-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.action-btn i {
    font-size: 16px;
}

/* Terms Sections */
.terms-sections {
    background: var(--text-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 60px;
}

.terms-section {
    margin-bottom: 60px;
    scroll-margin-top: 20px;
}

.terms-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--gradient-primary);
}

.section-content {
    line-height: 1.8;
    color: var(--text-secondary);
}

.section-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 30px 0 20px;
}

.section-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.section-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.section-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.section-content ul li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
}

[dir="rtl"] .section-content ul li {
    padding-left: 0;
    padding-right: 30px;
}

[dir="rtl"] .section-content ul li::before {
    left: auto;
    right: 10px;
}

/* Highlight Box */
.highlight-box {
    background: rgba(77, 97, 244, 0.05);
    border-left: 4px solid var(--primary-blue);
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: var(--border-radius);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

[dir="rtl"] .highlight-box {
    border-left: none;
    border-right: 4px solid var(--primary-blue);
}

.highlight-box i {
    color: var(--primary-blue);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-box p {
    margin: 0;
    font-weight: 500;
    color: var(--text-primary);
}

/* Warning Box */
.warning-box {
    background: rgba(255, 68, 68, 0.05);
    border-left: 4px solid var(--error-color);
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: var(--border-radius);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

[dir="rtl"] .warning-box {
    border-left: none;
    border-right: 4px solid var(--error-color);
}

.warning-box i {
    color: var(--error-color);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.warning-box p {
    margin: 0;
    font-weight: 600;
    color: var(--text-primary);
}

/* No Refund Box */
.no-refund-box {
    background: var(--gradient-dark);
    color: var(--text-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.no-refund-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 68, 68, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.no-refund-box i {
    font-size: 60px;
    margin-bottom: 20px;
    color: var(--error-color);
    position: relative;
    z-index: 1;
}

.no-refund-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    color: var(--error-color);
}

.no-refund-box p {
    font-size: 18px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.service-card {
    background: var(--secondary-light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-card h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card ul {
    margin: 0;
}

.service-card ul li {
    font-size: 14px;
    color: var(--text-secondary);
    padding-left: 20px;
}

.service-card ul li::before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
    left: 0;
}

/* Payment Structure */
.payment-structure {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    padding: 40px;
    background: var(--secondary-light-gray);
    border-radius: var(--border-radius-lg);
}

.payment-phase {
    flex: 1;
    text-align: center;
    position: relative;
}

.payment-phase:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--primary-blue);
}

[dir="rtl"] .payment-phase:not(:last-child)::after {
    content: '←';
    right: auto;
    left: -20px;
}

.phase-percentage {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.phase-details h4 {
    font-size: 18px;
    color: var(--text-primary);
    margin: 0 0 5px;
}

.phase-details p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* Contract Options */
.contract-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.contract-card {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.contract-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.contract-card h4 {
    font-size: 20px;
    margin: 0 0 10px;
}

.contract-card p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* Payment Cycle */
.payment-cycle {
    background: rgba(215, 254, 124, 0.1);
    border: 2px solid var(--primary-lime);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 30px 0;
}

.payment-cycle h4 {
    color: var(--secondary-green);
    margin-top: 0;
}

.payment-cycle ul li::before {
    content: '💰';
    font-size: 16px;
}

/* AMC Features */
.amc-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.amc-feature {
    background: var(--secondary-light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.amc-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.amc-feature i {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.amc-feature h4 {
    font-size: 18px;
    color: var(--text-primary);
    margin: 0 0 10px;
}

.amc-feature p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* Contact Info Grid - Updated for centering */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.contact-card {
    background: var(--secondary-light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.contact-card i {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.contact-card h4 {
    font-size: 18px;
    color: var(--text-primary);
    margin: 0 0 10px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.contact-card a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Final Note */
.final-note {
    background: var(--gradient-lime);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    margin-top: 40px;
}

.final-note p {
    color: var(--secondary-green);
    font-weight: 600;
    margin: 0 0 10px;
    font-size: 16px;
}

.final-note p:last-child {
    margin: 0;
    font-size: 18px;
}

/* Agreement Box */
.agreement-box {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.agreement-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.agreement-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.agreement-box p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.agreement-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.agreement-actions .btn {
    padding: 15px 30px;
    font-weight: 600;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.btn-primary {
    background: var(--text-white);
    color: var(--primary-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary.agreed {
    background: var(--success-color);
    color: var(--text-white);
    cursor: not-allowed;
}

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

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-blue);
}

/* Share Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--text-white);
    border-radius: var(--border-radius-lg);
    max-width: 500px;
    width: 90%;
    animation: modalSlideIn 0.3s ease;
}

.modal.active .modal-content {
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 24px;
    color: var(--text-primary);
}

.modal-close {
    background: none;
    border: none;
    font-size: 30px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.share-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.share-option {
    background: var(--secondary-light-gray);
    border: 2px solid transparent;
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.share-option:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.share-option i {
    font-size: 30px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    display: block;
}

.share-option span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

/* Notification Toast */
.notification-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 20px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
    z-index: 1000;
    font-weight: 600;
}

[dir="rtl"] .notification-toast {
    right: auto;
    left: 30px;
}

.notification-toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Print Styles */
@media print {
    .terms-hero {
        background: none;
        color: var(--text-primary);
        padding: 40px 0;
    }

    .hero-content * {
        color: var(--text-primary) !important;
    }

    .terms-nav,
    .quick-actions,
    .agreement-box,
    .modal {
        display: none !important;
    }

    .terms-sections {
        box-shadow: none;
        padding: 0;
    }

    .section-title {
        page-break-after: avoid;
    }

    .terms-section {
        page-break-inside: avoid;
    }

    .highlight-box,
    .warning-box,
    .no-refund-box {
        border: 1px solid var(--border-color);
        background: none !important;
    }

    .contract-card,
    .service-card,
    .amc-feature,
    .contact-card {
        border: 1px solid var(--border-color);
        background: none !important;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-wrapper {
        max-width: 900px;
    }

    .terms-sections {
        padding: 50px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .terms-nav .nav-list {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .terms-nav .nav-list::-webkit-scrollbar {
        height: 4px;
    }

    .terms-nav .nav-list::-webkit-scrollbar-thumb {
        background: var(--primary-blue);
        border-radius: 2px;
    }

    .terms-sections {
        padding: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .payment-structure {
        flex-direction: column;
        gap: 30px;
    }

    .payment-phase:not(:last-child)::after {
        content: '↓';
        right: 50%;
        transform: translateX(50%);
        top: auto;
        bottom: -25px;
    }

    [dir="rtl"] .payment-phase:not(:last-child)::after {
        content: '↓';
        left: auto;
        right: 50%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-meta {
        flex-direction: column;
        gap: 15px;
    }

    .terms-nav {
        top: 60px;
    }

    .terms-nav .nav-list a {
        padding: 15px 20px;
        font-size: 13px;
    }

    .quick-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .action-btn {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }

    .terms-sections {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-content h3 {
        font-size: 20px;
    }

    .contract-options {
        grid-template-columns: 1fr 1fr;
    }

    .amc-features {
        grid-template-columns: 1fr;
    }

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

    .agreement-box {
        padding: 30px 20px;
    }

    .agreement-actions {
        flex-direction: column;
        width: 100%;
    }

    .agreement-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .share-options {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .terms-hero {
        padding: 100px 0 60px;
    }

    .terms-nav .nav-list a {
        padding: 12px 15px;
        font-size: 12px;
    }

    .quick-actions {
        gap: 10px;
    }

    .action-btn {
        font-size: 12px;
        padding: 8px 15px;
    }

    .action-btn i {
        font-size: 14px;
    }

    .terms-sections {
        padding: 20px 15px;
        border-radius: var(--border-radius);
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .highlight-box,
    .warning-box,
    .payment-cycle {
        padding: 15px;
    }

    .no-refund-box {
        padding: 30px 20px;
    }

    .no-refund-box i {
        font-size: 40px;
    }

    .no-refund-box h3 {
        font-size: 22px;
    }

    .no-refund-box p {
        font-size: 16px;
    }

    .phase-percentage {
        font-size: 36px;
    }

    .contract-options {
        grid-template-columns: 1fr;
    }

    .contract-card {
        padding: 20px;
    }

    .service-card,
    .amc-feature,
    .contact-card {
        padding: 20px;
    }

    .agreement-box h3 {
        font-size: 22px;
    }

    .notification-toast {
        right: 15px;
        left: 15px;
        bottom: 15px;
        text-align: center;
    }

    [dir="rtl"] .notification-toast {
        right: 15px;
        left: 15px;
    }
}

/* RTL Specific Styles */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .section-title::after {
    left: auto;
    right: 0;
}

[dir="rtl"] .quick-actions {
    justify-content: flex-start;
}

[dir="rtl"] .section-content p {
    text-align: justify;
    direction: rtl;
}

/* Loading State */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid var(--primary-blue);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Accessibility */
.terms-nav .nav-list a:focus,
.action-btn:focus,
.btn:focus,
.share-option:focus {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .highlight-box,
    .warning-box,
    .no-refund-box,
    .payment-cycle {
        border-width: 2px;
    }

    .section-title {
        border-bottom-width: 3px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}