/**
 * IYA Medical - Mobile Overhaul v2.0
 * Complete mobile/responsive fix — loaded LAST
 */

/* ===== GLOBAL: PREVENT OVERFLOW ===== */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

*, *::before, *::after {
    box-sizing: border-box !important;
}

img, video, iframe, canvas, svg, embed, object {
    max-width: 100% !important;
}

/* ===== GLOBAL DECORATIONS: HIDE ON MOBILE ===== */
@media (max-width: 991px) {
    .decoration,
    .dot-icon-lg,
    .dots-icon,
    .floating-blob,
    .floating-ring,
    .bg-pattern,
    .bg-shapes,
    [class*="floating-blob"],
    [class*="floating-ring"],
    .contact-bg-shapes,
    .halftone-pattern,
    svg.dot-icon-lg {
        display: none !important;
        visibility: hidden !important;
    }
}

/* ==========================================================
   TABLET & MOBILE (991px and below)
   ========================================================== */
@media (max-width: 991px) {

    /* ---------- CONTAINERS ---------- */
    .container, .container-fluid, .container-xxl {
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    section, .section, main, footer {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    /* ---------- ANNOUNCEMENT BAR ---------- */
    .slim-announcement-bar {
        padding: 6px 10px !important;
        font-size: 0.75rem !important;
    }

    .slim-announcement-bar .btn {
        font-size: 0.7rem !important;
        padding: 3px 10px !important;
    }

    /* ---------- HEADER / NAV ---------- */
    .mainHeader, header.mainHeader {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 99999 !important;
        padding: 6px 0 !important;
    }

    /* Hide desktop nav social row on mobile */
    .navbar .w-100.d-flex.justify-content-end.mb-lg-1 {
        display: none !important;
    }

    /* Logo */
    .main-logo {
        max-width: 52px !important;
    }

    .main-logo img {
        max-height: 38px !important;
        width: auto !important;
    }

    /* Hamburger - ensure tappable */
    #sidebarCollapse {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        min-height: 48px !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
    }

    #sidebarCollapse i {
        font-size: 24px !important;
        color: #ffffff !important;
    }

    /* Login button in header */
    .navbar .btn-outline-light {
        font-size: 0.8rem !important;
        padding: 6px 14px !important;
    }

    /* ---------- SIDEBAR MOBILE MENU ---------- */
    #sidebar {
        position: fixed !important;
        top: 0 !important;
        left: -300px !important;
        width: 280px !important;
        height: 100vh !important;
        height: 100dvh !important;
        z-index: 1000000 !important;
        background: linear-gradient(180deg, #0891b2 0%, #0e7490 100%) !important;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        visibility: hidden !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 20px 0 100px 0 !important;
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.3) !important;
    }

    #sidebar.active {
        left: 0 !important;
        visibility: visible !important;
    }

    /* Sidebar close area */
    .overlay {
        display: none;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(0, 0, 0, 0.6) !important;
        z-index: 999999 !important;
        opacity: 0;
        transition: opacity 0.3s ease !important;
        -webkit-tap-highlight-color: transparent !important;
    }

    .overlay.show,
    body.sidebar-active .overlay {
        display: block !important;
        opacity: 1 !important;
    }

    /* Menu items - ensure readable and tappable */
    #sidebar .metismenu > li > a {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 14px 16px !important;
        color: #ffffff !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        text-decoration: none !important;
        border-radius: 8px !important;
        min-height: 48px !important;
    }

    #sidebar .metismenu ul li a {
        padding: 12px 16px !important;
        font-size: 14px !important;
        color: rgba(255, 255, 255, 0.9) !important;
        min-height: 44px !important;
        display: flex !important;
        align-items: center !important;
    }

    /* ---------- HERO SECTION ---------- */
    .iya-hero, .hero-section {
        width: 100% !important;
        max-width: 100vw !important;
        overflow: hidden !important;
        padding-top: 90px !important;
        min-height: auto !important;
    }

    /* Reduce canvas load on mobile */
    #heroCanvas {
        opacity: 0.15 !important;
    }

    .hero-content-wrapper {
        padding: 20px 0 30px !important;
        z-index: 50 !important;
    }

    .hero-content {
        text-align: center !important;
        padding: 0 4px !important;
    }

    .hero-badge {
        font-size: 0.7rem !important;
        padding: 5px 12px !important;
        margin: 0 auto 10px !important;
        display: inline-flex !important;
        justify-content: center !important;
    }

    .hero-title,
    .hero-title h1,
    #leading-title {
        font-size: clamp(1.4rem, 5vw, 2.2rem) !important;
        line-height: 1.2 !important;
        text-align: center !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }

    .hero-subtitle,
    .hero-subtitle p {
        font-size: 0.88rem !important;
        line-height: 1.5 !important;
        text-align: center !important;
        padding: 0 !important;
        margin-top: 8px !important;
    }

    /* Hero accolades badge - hide on mobile */
    .hero-accolades-badge {
        display: none !important;
    }

    /* Hero CTA */
    .hero-cta {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 12px 0 0 !important;
        width: 100% !important;
    }

    .hero-cta a,
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100% !important;
        max-width: 280px !important;
        text-align: center !important;
        justify-content: center !important;
        padding: 13px 20px !important;
        font-size: 0.88rem !important;
        border-radius: 10px !important;
        display: inline-flex !important;
        align-items: center !important;
    }

    .btn-hero-primary i,
    .btn-hero-secondary i {
        font-size: 14px !important;
    }

    /* ---------- TRUST STATS ---------- */
    .trust-stats-section {
        padding: 20px 0 !important;
    }

    .trust-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 0 8px !important;
    }

    .stat-card {
        padding: 14px 10px !important;
        border-radius: 10px !important;
        text-align: center !important;
    }

    .stat-icon {
        width: 32px !important;
        height: 32px !important;
        margin: 0 auto 6px !important;
    }

    .stat-icon i,
    .stat-icon svg,
    .stat-icon .fa,
    .stat-icon [class*="fa-"] {
        font-size: 14px !important;
    }

    .stat-number {
        font-size: 1.4rem !important;
        line-height: 1.2 !important;
    }

    .stat-suffix {
        font-size: 0.9rem !important;
    }

    .stat-label {
        font-size: 0.68rem !important;
        line-height: 1.3 !important;
    }

    /* Trust badges row */
    .trust-badges-row {
        flex-wrap: wrap !important;
        gap: 6px !important;
        justify-content: center !important;
        padding: 12px 8px !important;
    }

    .badge-item {
        padding: 6px 10px !important;
        font-size: 0.7rem !important;
    }

    .badge-item i,
    .badge-item [class*="fa-"] {
        font-size: 12px !important;
    }

    /* ---------- SECTION HEADINGS (GLOBAL) ---------- */
    .secton-head h1,
    .text-title,
    h1.text-title {
        font-size: 1.5rem !important;
        line-height: 1.25 !important;
        word-break: break-word !important;
    }

    .secton-head h5,
    .section-title,
    h5.section-title {
        font-size: 0.8rem !important;
    }

    .secton-head p,
    .section-description {
        font-size: 0.88rem !important;
        line-height: 1.5 !important;
    }

    /* ---------- PATIENT JOURNEY ---------- */
    .patient-journey-section {
        padding: 28px 0 !important;
    }

    .patient-journey-section .step-card {
        margin-bottom: 16px !important;
    }

    .step-number {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.75rem !important;
    }

    .step-card h5 {
        font-size: 1rem !important;
    }

    .step-card p {
        font-size: 0.85rem !important;
    }

    /* Reassurance banner */
    .reassurance-banner {
        padding: 14px !important;
        margin: 0 8px !important;
        border-radius: 10px !important;
    }

    .reassurance-banner p {
        font-size: 0.82rem !important;
        line-height: 1.4 !important;
    }

    .reassurance-banner i,
    .reassurance-banner [class*="fa-"] {
        font-size: 14px !important;
    }

    /* ---------- RADIOLOGY SPECIALISTS ---------- */
    .radiology-specialists-wrapper {
        overflow: hidden !important;
        padding: 28px 0 !important;
    }

    .radiology-specialists-wrapper .row {
        flex-direction: column !important;
    }

    .radiology-specialists-wrapper [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .specialist-image-wrapper {
        margin-bottom: 20px !important;
    }

    .specialist-image-wrapper img {
        width: 100% !important;
        max-height: 220px !important;
        object-fit: cover !important;
        border-radius: 12px !important;
    }

    .benefits-list li {
        padding: 10px 12px !important;
        font-size: 0.85rem !important;
        margin-bottom: 8px !important;
    }

    .benefits-list li i,
    .benefits-list li [class*="fa-"] {
        font-size: 14px !important;
        min-width: 20px !important;
    }

    .cta-wrapper {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .cta-wrapper .btn,
    .cta-wrapper a {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }

    /* ---------- INSURANCE LOGOS ---------- */
    .logo-collect-wrapper {
        padding: 20px 0 !important;
        overflow: hidden !important;
    }

    .insurance-logo {
        max-height: 28px !important;
        margin: 4px !important;
    }

    /* ---------- YOUTUBE / VIDEO ---------- */
    .youtube-wrapper {
        padding: 28px 0 !important;
    }

    .youtube-wrapper iframe {
        border-radius: 10px !important;
    }

    /* ---------- DOCTOR CAROUSEL ---------- */
    .doctor-list {
        overflow: hidden !important;
        padding: 28px 0 !important;
    }

    .doctor-carousel.owl-carousel .owl-item {
        width: 200px !important;
    }

    .meta__avatar {
        width: 180px !important;
        height: 180px !important;
        object-fit: cover !important;
        border-radius: 12px !important;
    }

    .dr-name {
        font-size: 0.85rem !important;
    }

    .title--preview {
        font-size: 0.72rem !important;
    }

    .button-bubble-pop {
        font-size: 0.75rem !important;
        padding: 8px 16px !important;
    }

    /* ---------- CONTACT SECTION ---------- */
    .contact-us-wrapper {
        overflow: hidden !important;
    }

    .contact-us-card {
        padding: 20px 14px !important;
        border-radius: 12px !important;
    }

    .contact-us-card .row {
        flex-direction: column !important;
    }

    .contact-us-card [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .contact-us-card img {
        max-height: 200px !important;
        object-fit: cover !important;
        border-radius: 10px !important;
        margin-bottom: 16px !important;
    }

    .contact-us-card h1 {
        font-size: 1.3rem !important;
    }

    .contact-us-card p {
        font-size: 0.85rem !important;
    }

    /* Remove hover grow on mobile */
    .hvr-grow {
        transform: none !important;
    }

    .hvr-grow:hover {
        transform: none !important;
    }

    /* ---------- CONDITIONS / PROCEDURES ---------- */
    .conditions-wrapper {
        overflow: hidden !important;
        padding: 28px 0 !important;
    }

    .conditions-wrapper .row {
        flex-direction: column !important;
    }

    .conditions-wrapper [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .conditions-wrapper ul {
        padding-left: 0 !important;
    }

    .conditions-wrapper li {
        padding: 10px 12px !important;
        font-size: 0.85rem !important;
        margin-bottom: 4px !important;
    }

    .conditions-wrapper li i,
    .conditions-wrapper li [class*="fa-"] {
        font-size: 13px !important;
        min-width: 18px !important;
    }

    /* ---------- TESTIMONIALS ---------- */
    .testimonial-nw, .testimonial-nw-wrapper {
        overflow: hidden !important;
        padding: 28px 0 !important;
    }

    .testimonial-card-yt {
        margin: 8px !important;
        border-radius: 12px !important;
    }

    .testimonial-card-yt h6.description {
        font-size: 0.82rem !important;
        line-height: 1.5 !important;
    }

    /* Video Modal */
    #testimonialVideoModal .modal-dialog {
        max-width: 96vw !important;
        width: 96vw !important;
        margin: 8px auto !important;
    }

    #testimonialVideoModal .modal-body {
        padding: 0 !important;
    }

    #testimonialVideoModal iframe {
        width: 100% !important;
        aspect-ratio: 16/9 !important;
        height: auto !important;
    }

    .btn-close-video {
        position: absolute !important;
        top: -32px !important;
        right: 4px !important;
        font-size: 1.4rem !important;
        z-index: 1065 !important;
        color: #fff !important;
        opacity: 1 !important;
        background: rgba(0,0,0,0.5) !important;
        border-radius: 50% !important;
        width: 32px !important;
        height: 32px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* ---------- VIDEOS GALLERY ---------- */
    .videos-gallery, .explore-videos {
        overflow: hidden !important;
        padding: 28px 0 !important;
    }

    .videos-gallery .row [class*="col-"] {
        margin-bottom: 16px !important;
    }

    .videos-gallery iframe,
    .explore-videos iframe {
        border-radius: 10px !important;
    }

    /* ---------- BOOK APPOINTMENT ---------- */
    .book-appointment-wrapper {
        overflow: hidden !important;
    }

    .book-appointment-wrapper .container-xxl {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .book-appointment-wrapper [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .book-appointment-content {
        padding: 24px 16px !important;
    }

    .book-appointment-image {
        min-height: 200px !important;
        background-size: cover !important;
        background-position: center !important;
    }

    .acreditation-wrapper {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        padding: 12px 16px !important;
    }

    /* ---------- NEWS / ARTICLES ---------- */
    .news-section {
        overflow: hidden !important;
        padding: 28px 0 !important;
    }

    .news-card {
        margin: 8px !important;
        border-radius: 12px !important;
    }

    /* FIX: .me-5 on news card titles wastes 48px on mobile */
    .news-card h4.me-5,
    .news-card .me-5 {
        margin-right: 0 !important;
    }

    .news-card h4 {
        font-size: 1rem !important;
        line-height: 1.3 !important;
    }

    .news-card p {
        font-size: 0.82rem !important;
    }

    /* ---------- LOCATIONS ---------- */
    .locations-wrapper {
        overflow: hidden !important;
        padding: 28px 0 !important;
    }

    .locations-wrapper .row {
        flex-direction: column !important;
    }

    .locations-wrapper [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-bottom: 16px !important;
    }

    .location-card {
        padding: 18px !important;
        border-radius: 12px !important;
    }

    .location-card h5 {
        font-size: 1rem !important;
    }

    .location-card p,
    .location-card a {
        font-size: 0.85rem !important;
    }

    .location-card i,
    .location-card [class*="fa-"] {
        font-size: 14px !important;
    }

    /* ---------- FOOTER ---------- */
    footer, .main-footer, .footer-wrapper {
        overflow: hidden !important;
    }

    footer .row {
        flex-direction: column !important;
    }

    footer [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-bottom: 20px !important;
    }

    .footer-cta-section {
        text-align: center !important;
        padding: 20px 16px !important;
    }

    .footer-cta-section .row {
        flex-direction: column !important;
        align-items: center !important;
    }

    .footer-trust-points {
        padding-left: 0 !important;
    }

    .footer-trust-points li {
        font-size: 0.82rem !important;
        margin-bottom: 4px !important;
    }

    .footer-trust-points li i,
    .footer-trust-points li [class*="fa-"] {
        font-size: 12px !important;
        min-width: 16px !important;
    }

    /* Footer newsletter */
    footer .form-control {
        font-size: 0.85rem !important;
        padding: 10px 14px !important;
    }

    footer h5 {
        font-size: 1rem !important;
    }

    footer p, footer li, footer a {
        font-size: 0.82rem !important;
    }

    /* Sub footer */
    .sub-footer .d-flex {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 8px !important;
    }

    /* SEO footer */
    .footer-seo-section {
        padding: 20px 16px !important;
    }

    .footer-seo-section h6 {
        font-size: 0.85rem !important;
    }

    .footer-seo-section a {
        font-size: 0.78rem !important;
    }

    /* ---------- STICKY BOTTOM CTA ---------- */
    .appointment-fixed-wrapper,
    .mobile-sticky-cta {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 99990 !important;
        background: #ffffff !important;
        box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1) !important;
        padding: 8px 12px !important;
    }

    .mobile-sticky-cta .btn {
        font-size: 0.82rem !important;
        padding: 10px 14px !important;
        border-radius: 8px !important;
        min-height: 44px !important;
    }

    .mobile-sticky-cta .btn i,
    .mobile-sticky-cta .btn [class*="fa-"] {
        font-size: 14px !important;
    }

    body {
        padding-bottom: 65px !important;
    }

    /* Hide duplicate appointment button */
    .appointment-fixed-wrapper {
        display: none !important;
    }

    /* ---------- SEARCH DROPDOWN ---------- */
    .dropdown-search .dropdown-menu,
    .search-results-dropdown {
        position: fixed !important;
        top: 56px !important;
        left: 8px !important;
        right: 8px !important;
        width: auto !important;
        max-width: calc(100vw - 16px) !important;
        max-height: 60vh !important;
        overflow-y: auto !important;
        border-radius: 10px !important;
        z-index: 100002 !important;
    }

    /* ---------- OWL CAROUSEL GLOBAL ---------- */
    .owl-carousel {
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
    }

    .owl-carousel .owl-stage-outer {
        overflow: hidden !important;
    }

    .owl-carousel .owl-stage {
        display: flex !important;
        flex-wrap: nowrap !important;
    }

    .owl-carousel .owl-item {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-shrink: 0 !important;
    }

    /* Owl nav arrows - make tappable */
    .owl-carousel .owl-nav button {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        font-size: 16px !important;
    }

    .owl-carousel .owl-dots {
        margin-top: 12px !important;
    }

    .owl-carousel .owl-dots .owl-dot span {
        width: 8px !important;
        height: 8px !important;
    }

    /* ---------- GENERAL ICON VISIBILITY ---------- */
    i, [class*="fa-"], [class*="icon-"], .icon, svg {
        display: inline-flex !important;
        visibility: visible !important;
    }

    /* Except decorations we already hid */
    .decoration i,
    .decoration svg,
    .dot-icon-lg,
    .dots-icon,
    svg.dot-icon-lg {
        display: none !important;
        visibility: hidden !important;
    }

    /* ---------- WAVE DIVIDERS ---------- */
    .wave-divider, .wave-svg, [class*="wave-divider"] {
        height: 40px !important;
        overflow: hidden !important;
    }

    /* ---------- MODAL BACKDROP ---------- */
    .modal-backdrop {
        z-index: 99991 !important;
    }

    .modal {
        z-index: 99992 !important;
    }
}

/* ==========================================================
   SMALL PHONES (576px and below)
   ========================================================== */
@media (max-width: 576px) {
    .hero-title,
    .hero-title h1,
    #leading-title {
        font-size: 1.25rem !important;
    }

    .hero-subtitle,
    .hero-subtitle p {
        font-size: 0.82rem !important;
    }

    .hero-cta a,
    .btn-hero-primary,
    .btn-hero-secondary {
        max-width: 240px !important;
        font-size: 0.82rem !important;
        padding: 11px 18px !important;
    }

    .trust-grid {
        gap: 8px !important;
        padding: 0 6px !important;
    }

    .stat-number {
        font-size: 1.2rem !important;
    }

    .stat-label {
        font-size: 0.65rem !important;
    }

    .stat-card {
        padding: 10px 8px !important;
    }

    .stat-icon {
        width: 28px !important;
        height: 28px !important;
    }

    .stat-icon i,
    .stat-icon [class*="fa-"] {
        font-size: 12px !important;
    }

    .secton-head h1, .text-title {
        font-size: 1.25rem !important;
    }

    .secton-head h5, .section-title {
        font-size: 0.75rem !important;
    }

    .doctor-carousel.owl-carousel .owl-item {
        width: 170px !important;
    }

    .meta__avatar {
        width: 150px !important;
        height: 150px !important;
    }

    .dr-name {
        font-size: 0.78rem !important;
    }

    /* Procedure badges */
    .conditions-wrapper .d-flex,
    .conditions-wrapper .flex-wrap {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .badge-item {
        padding: 5px 8px !important;
        font-size: 0.65rem !important;
    }

    /* Book appointment */
    .book-appointment-content {
        padding: 20px 12px !important;
    }

    .book-appointment-content h1,
    .book-appointment-content .text-title {
        font-size: 1.2rem !important;
    }

    /* Location cards */
    .location-card {
        padding: 14px !important;
    }
}

/* ==========================================================
   TINY PHONES (400px and below)
   ========================================================== */
@media (max-width: 400px) {
    .hero-title,
    .hero-title h1,
    #leading-title {
        font-size: 1.1rem !important;
    }

    .stat-number {
        font-size: 1.05rem !important;
    }

    .stat-label {
        font-size: 0.6rem !important;
    }

    .hero-cta a,
    .btn-hero-primary,
    .btn-hero-secondary {
        max-width: 210px !important;
        font-size: 0.78rem !important;
    }

    .mobile-sticky-cta .btn {
        font-size: 0.75rem !important;
        padding: 8px 10px !important;
    }

    .contact-us-card {
        padding: 14px 10px !important;
    }
}

/* ==========================================================
   LANDSCAPE PHONES
   ========================================================== */
@media (max-height: 500px) and (orientation: landscape) {
    .iya-hero, .hero-section {
        min-height: auto !important;
        padding-top: 60px !important;
        padding-bottom: 20px !important;
    }

    .hero-content-wrapper {
        padding: 10px 0 !important;
    }

    #heroCanvas {
        display: none !important;
    }

    .trust-stats-section {
        padding: 12px 0 !important;
    }
}

/* ==========================================================
   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;
    }

    #heroCanvas {
        display: none !important;
    }

    .hero-glow, .hero-glow-1, .hero-glow-2, .hero-glow-3 {
        display: none !important;
    }
}
