/* ==========================================================================
   modern.css — Modern design overlay for app2.css
   Blue (#2E86C1) + burgundy (#6D0E36) color scheme, Plus Jakarta Sans font.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
    /* Blue palette (matching logo) */
    --clr-blue-50: #EBF5FB;
    --clr-blue-100: #D6EAF8;
    --clr-blue-200: #AED6F1;
    --clr-blue-300: #85C1E9;
    --clr-blue-400: #5DADE2;
    --clr-blue-500: #2E86C1;
    --clr-blue-600: #2874A6;
    --clr-blue-700: #21618C;
    --clr-blue-800: #1A4F72;
    --clr-blue-900: #0E2F44;

    /* Burgundy accent */
    --clr-burgundy: #6D0E36;
    --clr-burgundy-light: #8e1248;
    --clr-burgundy-dark: #520928;

    /* Neutrals */
    --clr-charcoal: #1a2332;
    --clr-body: #2a3441;
    --clr-muted: #556270;
    --clr-light-bg: #f4f7fa;
    --clr-card-bg: #fff;

    /* Blue-tinted shadows */
    --shadow-sm: 0 2px 8px rgba(14, 47, 68, 0.06);
    --shadow-md: 0 4px 20px rgba(14, 47, 68, 0.08);
    --shadow-lg: 0 8px 30px rgba(14, 47, 68, 0.10);
    --shadow-hover: 0 12px 36px rgba(14, 47, 68, 0.14);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition: 0.25s var(--ease);

    /* Font */
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --------------------------------------------------------------------------
   2. Global / Base
   -------------------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--clr-body);
}

::selection {
    background: var(--clr-blue-200);
    color: var(--clr-blue-900);
}

.content {
    padding: 5rem 0.9375rem 5.5rem;
}

.content .content-title {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: clamp(1.625rem, 2.5vw, 2.25rem);
    letter-spacing: -0.02em;
    margin-bottom: 2.25rem;
    padding-bottom: 0;
    position: relative;
    color: var(--clr-charcoal);
}

.content .content-title:after {
    width: 3rem;
    height: 3px;
    border-radius: 2px;
    background: var(--clr-blue-500);
    position: relative;
    display: block;
    margin-top: 0.75rem;
    margin-left: auto;
    margin-right: auto;
    transform: translateX(3rem);
    left: auto;
    bottom: auto;
}

.content .content-desc {
    font-family: var(--font-family);
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--clr-muted);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --------------------------------------------------------------------------
   3. Navbar — Stronger glassmorphism, blue active indicator
   -------------------------------------------------------------------------- */
.header,
.header .nav.navbar-nav .nav-item .nav-link {
    transition: all var(--transition);
}

.header.navbar-default,
.header.navbar-sm {
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    backdrop-filter: blur(16px) saturate(1.2);
    box-shadow: 0 1px 12px rgba(14, 47, 68, 0.06);
}

.header .navbar-brand {
    padding: 1.1rem 0.9375rem;
}

.header .navbar-brand img {
    max-height: 3.25rem;
    transition: transform var(--transition);
}

.header .navbar-brand:hover img {
    transform: scale(1.04);
}

.header .nav.navbar-nav .nav-item .nav-link {
    font-family: var(--font-family);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 1.1rem;
    color: var(--clr-body);
    position: relative;
    transition: color var(--transition);
}

/* Burgundy text on hover/active — matching logo accent */
.header .nav.navbar-nav .nav-item .nav-link:hover,
.header .nav.navbar-nav .nav-item.active .nav-link {
    color: var(--clr-burgundy);
}

/* Light blue underline touching the bottom of link text */
.header .nav.navbar-nav .nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.85rem;
    right: 1.1rem;
    left: auto;
    width: 0;
    height: 2px;
    background: var(--clr-blue-400);
    border-radius: 1px;
    transition: width var(--transition);
}

.header .nav.navbar-nav .nav-item .nav-link:hover::after,
.header .nav.navbar-nav .nav-item.active .nav-link::after {
    width: 1.5rem;
}

/* --------------------------------------------------------------------------
   4. Hero — Blue-toned gradient overlay, fluid typography
   -------------------------------------------------------------------------- */
.content.has-bg .content-bg:before {
    background: rgba(0, 0, 0, 0.6);
    opacity: 1;
}

.content.home {
    padding-top: 1rem;
}

.home .home-content {
    margin-top: -12rem;
}

.home .home-content h1 {
    font-family: var(--font-family);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(14, 47, 68, 0.3);
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.home .home-content h3 {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    text-shadow: 0 1px 10px rgba(14, 47, 68, 0.2);
}

.home .home-content p {
    font-family: var(--font-family);
    font-size: 1.3em;
    color: #fff;
    max-width: none;
    margin: 0.5rem 0 1.5rem;
    text-shadow: 0 1px 8px rgba(14, 47, 68, 0.15);
}

.home .home-content .secondary-tagline {
    font-family: var(--font-family);
    font-size: 1.15rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    opacity: 0.85;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.home .home-content .cta-btn {
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.9rem 2.5rem;
    border: 2px solid #fff;
    border-radius: var(--radius-sm);
    margin-top: 0.5rem;
    transition: all var(--transition);
}

.home .home-content .cta-btn:hover {
    background: #fff;
    color: var(--clr-blue-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(14, 47, 68, 0.25);
}

/* --------------------------------------------------------------------------
   5. About — Image aspect-ratio, burgundy accent underline, blue callouts
   -------------------------------------------------------------------------- */
#about .col-md-5 img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
    margin-top: 3.5rem;
}

#about .col-md-5 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

#about .about p {
    font-family: var(--font-family);
    line-height: 1.8;
    color: var(--clr-muted);
    margin-bottom: 1.15rem;
}

/* Bold callout paragraphs styled in blue */
#about .about p strong {
    color: var(--clr-blue-700);
    font-weight: 700;
}

#about .about h3 {
    font-family: var(--font-family);
    font-weight: 800;
    color: var(--clr-charcoal);
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

/* Burgundy accent underline on "Our Story" heading */
#about .about h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2.5rem;
    height: 3px;
    background: var(--clr-burgundy);
    border-radius: 2px;
}

/* --------------------------------------------------------------------------
   6. Services — Left-aligned cards, rounded square icon, blue hover border
   -------------------------------------------------------------------------- */
#service {
    background-color: #f2f2f2;
}

/* Alternating section backgrounds */
#about {
    background: #fff;
}

#contact {
    background: #fff;
}

#service .service {
    background: var(--clr-card-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(14, 47, 68, 0.06);
    padding: 2.25rem 1.75rem;
    text-align: left;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    height: 100%;
}

#service .service:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--clr-blue-300);
}

#service .service .icon {
    float: none;
    margin: 0 0 1.25rem 0;
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    font-size: 1.3rem;
    border-radius: var(--radius-sm);
    background: var(--clr-blue-50);
    color: var(--clr-blue-500);
}

#service .service .icon + .info {
    margin-left: 0;
}

#service .service .info .title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--clr-charcoal);
}

#service .service .info .desc {
    font-family: var(--font-family);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--clr-muted);
    text-align: left;
}

#service .service .list-heading {
    font-family: var(--font-family);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-charcoal);
    margin-bottom: 0.15rem;
    margin-top: 0.75rem;
    text-align: left;
}

#service .service .service-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0.5rem;
    text-align: left;
}

/* Small blue dot bullets */
#service .service .service-list li {
    font-family: var(--font-family);
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--clr-muted);
    padding-left: 1rem;
    position: relative;
}

#service .service .service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--clr-blue-400);
}

#service .service .ideal-for {
    font-family: var(--font-family);
    font-size: 0.85rem;
    color: var(--clr-burgundy);
    margin-top: 0.75rem;
    margin-bottom: 0;
}

#service .row {
    display: flex;
    flex-wrap: wrap;
}

#service .row > [class*="col-"] {
    display: flex;
    margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   7. Contact — Light gray inputs, blue focus rings, flat burgundy button
   -------------------------------------------------------------------------- */
#contact .form-col .form-horizontal {
    padding-left: 0;
}

#contact .form-control {
    font-family: var(--font-family);
    border: 1px solid #d5dce4;
    border-radius: var(--radius-sm);
    background-color: #f8f9fb;
    padding: 0.65rem 0.75rem;
    font-size: 1rem;
    transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

#contact .form-control:focus {
    background-color: #fff;
    border-color: var(--clr-blue-400);
    box-shadow: 0 0 0 3px rgba(46, 134, 193, 0.12);
    outline: none;
}

#contact textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

#contact .col-form-label {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--clr-charcoal);
}

#contact .btn-theme {
    font-family: var(--font-family);
    background: var(--clr-burgundy);
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.75rem 2rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: #fff;
    transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

#contact .btn-theme:hover {
    background: var(--clr-burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(109, 14, 54, 0.25);
}

#contact .btn-theme:active {
    transform: translateY(0);
}

/* Email link */
#contact a.text-primary {
    color: var(--clr-blue-600) !important;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

#contact a.text-primary:hover,
#contact a.text-primary:focus {
    color: var(--clr-burgundy) !important;
}

/* Contact info column */
#contact .col-md-4 {
    background: #fff;
    border-radius: 0;
    padding: 2rem 1.75rem;
    border-left: 4px solid var(--clr-blue-400);
}

#contact .col-md-4 p {
    font-family: var(--font-family);
    font-size: 1.0rem;
    line-height: 1.5;
    color: var(--clr-muted);
    margin-bottom: 1rem;
}

/* Company name */
#contact .col-md-4 p strong {
    font-size: 1.1rem;
    color: var(--clr-charcoal);
    display: block;
    margin-bottom: 0.25rem;
}

/* Phone number */
#contact .col-md-4 .phone {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--clr-charcoal);
    letter-spacing: 0.01em;
}

/* --------------------------------------------------------------------------
   8. Footer — Social icons hover blue, smaller logo (260px)
   -------------------------------------------------------------------------- */
.footer {
    box-shadow: none;
    border-top: none;
    padding: 3.5rem 0 2.5rem;
}

.footer .footer-brand {
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

.footer .footer-brand img {
    width: 260px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.footer p {
    font-family: var(--font-family);
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer .social-list {
    margin-top: 0.5rem;
}

.footer .social-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0.35rem;
    font-size: 0.95rem;
    transition: all var(--transition);
}

.footer .social-list a:hover {
    background: var(--clr-blue-500);
    border-color: var(--clr-blue-500);
    color: #fff;
    box-shadow: 0 0 16px rgba(46, 134, 193, 0.35);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   9. Buttons — Flat colors, explicit font-family
   -------------------------------------------------------------------------- */
.btn {
    font-family: var(--font-family);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.btn-primary,
.btn.btn-primary {
    background: var(--clr-burgundy);
    border-color: var(--clr-burgundy);
}

.btn-primary:hover,
.btn.btn-primary:hover {
    background: var(--clr-burgundy-dark);
    border-color: var(--clr-burgundy-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(109, 14, 54, 0.25);
}

/* --------------------------------------------------------------------------
   10. Form Controls — Global rounded & blue focus ring
   -------------------------------------------------------------------------- */
.form-control {
    font-family: var(--font-family);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
    border-color: var(--clr-blue-400);
    box-shadow: 0 0 0 3px rgba(46, 134, 193, 0.12);
}

/* --------------------------------------------------------------------------
   11. Responsive Breakpoints
   -------------------------------------------------------------------------- */

/* Large desktop (1400px+) */
@media (min-width: 1400px) {
    .home .home-content h1 {
        font-size: 4.25rem;
    }
}

/* Small desktop (up to 1200px) */
@media (max-width: 1200px) {
    .content {
        padding: 4.5rem 0.9375rem 5rem;
    }
}

/* Tablets landscape (up to 992px) */
@media (max-width: 992px) {
    .header .nav.navbar-nav .nav-item .nav-link {
        font-size: 0.8rem;
    }

    /* Service cards 2-column grid */
    #service .row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }

    #service .row > [class*="col-"] {
        max-width: 100%;
        flex: none;
        margin-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .content {
        padding: 4rem 0.9375rem 4.5rem;
    }
}

/* Tablets portrait (up to 768px) */
@media (max-width: 768px) {
    /* About image reorders above text */
    #about .row {
        display: flex;
        flex-direction: column-reverse;
    }

    #about .col-md-5 {
        max-width: 100%;
        flex: none;
    }

    #about .col-md-5 img {
        aspect-ratio: 16 / 9;
        margin-top: 0;
        margin-bottom: 2rem;
    }

    #about .col-md-7 {
        max-width: 100%;
        flex: none;
    }

    /* Contact labels left-aligned */
    #contact .col-form-label {
        text-align: left !important;
    }

    /* Service cards single column */
    #service .row {
        grid-template-columns: 1fr;
    }

    .content {
        padding: 3.5rem 1rem 4rem;
    }

    .content .content-title {
        margin-bottom: 1.75rem;
    }

    .home .home-content {
        margin-top: -8rem;
    }

    .footer .footer-brand img {
        width: 200px;
    }
}

/* Phones (up to 575px) */
@media (max-width: 575px) {
    .cookie-consent__inner {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 0.75rem;
    }

    .cookie-consent__btn {
        width: 100%;
        padding: 0.7rem;
    }

    .privacy-table {
        font-size: 0.85rem;
    }

    .privacy-table th,
    .privacy-table td {
        padding: 0.5rem 0.65rem;
    }
    .content {
        padding: 3rem 0.75rem 3.5rem;
    }

    .content .content-title {
        margin-bottom: 1.5rem;
    }

    .content .content-desc {
        font-size: 0.95rem;
    }

    .home .home-content {
        margin-top: -6rem;
    }

    .home .home-content h3 {
        font-size: 0.9rem;
    }

    .home .home-content p {
        font-size: 1.05em;
    }

    .home .home-content .secondary-tagline {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }

    /* Block CTA button on small screens */
    .home .home-content .cta-btn {
        display: block;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    /* About landscape image */
    #about .col-md-5 img {
        aspect-ratio: 16 / 9;
    }

    /* 16px form inputs to prevent iOS zoom */
    #contact .form-control {
        font-size: 16px;
    }

    #service .service {
        padding: 1.75rem 1.25rem;
    }

    .footer {
        padding: 2.5rem 0 2rem;
    }

    .footer .footer-brand img {
        width: 180px;
    }
}

/* --------------------------------------------------------------------------
   12. Cookie Consent Banner
   -------------------------------------------------------------------------- */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--clr-card-bg);
    box-shadow: 0 -4px 24px rgba(14, 47, 68, 0.12);
    border-top: 1px solid rgba(14, 47, 68, 0.08);
}

.cookie-consent__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-consent__text {
    font-family: var(--font-family);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--clr-muted);
    margin: 0;
}

.cookie-consent__link {
    color: var(--clr-blue-600);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-consent__link:hover {
    color: var(--clr-burgundy);
}

.cookie-consent__btn {
    font-family: var(--font-family);
    background: var(--clr-burgundy);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.6rem 1.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.cookie-consent__btn:hover {
    background: var(--clr-burgundy-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(109, 14, 54, 0.25);
}

.cookie-consent__btn:active {
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   13. Privacy Policy Page
   -------------------------------------------------------------------------- */
.privacy-policy-body {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.privacy-policy-body h2 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--clr-charcoal);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.privacy-policy-body p,
.privacy-policy-body li {
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--clr-muted);
}

.privacy-policy-body ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.privacy-policy-body li {
    margin-bottom: 0.4rem;
}

.privacy-policy-body a {
    color: var(--clr-blue-600);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.privacy-policy-body a:hover {
    color: var(--clr-burgundy);
}

.privacy-policy-body code {
    background: var(--clr-light-bg);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.85em;
    color: var(--clr-charcoal);
}

.privacy-updated {
    font-size: 0.9rem;
    color: var(--clr-muted);
    margin-bottom: 1.5rem;
}

.privacy-contact {
    list-style: none;
    padding-left: 0;
}

.privacy-contact li {
    padding-left: 0;
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-family: var(--font-family);
    font-size: 0.95rem;
}

.privacy-table th,
.privacy-table td {
    border: 1px solid #d5dce4;
    padding: 0.75rem 1rem;
    text-align: left;
    line-height: 1.6;
    color: var(--clr-muted);
    vertical-align: top;
}

.privacy-table th {
    background: var(--clr-light-bg);
    font-weight: 700;
    color: var(--clr-charcoal);
}

.privacy-table td strong {
    color: var(--clr-charcoal);
}

.privacy-rights-list {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-rights-list li {
    margin-bottom: 0.6rem;
}

/* --------------------------------------------------------------------------
   14. Footer Links
   -------------------------------------------------------------------------- */
.footer .footer-links {
    margin-top: 0.25rem;
}

.footer .footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-family);
    font-size: 0.85rem;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition);
}

.footer .footer-links a:hover {
    color: rgba(255, 255, 255, 0.85);
}

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