/* ==========================================================================
   THOR – Автоматизирани решения за текстилната и рекламна индустрия
   Цветова схема по оригиналния сайт: тъмно navy, стоманено синьо, бяло/сиво
   ========================================================================== */

:root {
    --thor-dark: #17191d;        /* header фон */
    --thor-navy: #1e5785;        /* заглавия, бутони */
    --thor-blue: #2a5578;        /* footer, акценти */
    --thor-link: #2e7cc0;        /* линкове ВИЖ ПОВЕЧЕ */
    --thor-text: #3d4145;
    --thor-grey: #6b7078;
    --thor-line: #e3e5e8;
    --thor-bg-grey: #eef1f4;
    --thor-white: #ffffff;
    --font-display: "Roboto Condensed", "Arial Narrow", sans-serif;
    --font-body: "Open Sans", "Segoe UI", sans-serif;
    --thor-shadow-soft: 0 10px 30px rgba(30, 61, 92, 0.10);
    --thor-shadow-strong: 0 18px 44px rgba(30, 61, 92, 0.18);
    --thor-easing: cubic-bezier(0.22, 1, 0.36, 1);
    --thor-transition: 0.28s var(--thor-easing);
}

html { font-size: 15px; scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--thor-text);
    background: var(--thor-white);
    margin: 0;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

main { flex: 1 0 auto; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--thor-navy);
}

a { color: var(--thor-link); text-decoration: none; }
a:hover { color: var(--thor-navy); }

.section-title {
    text-align: center;
    font-size: 2.2rem;
    letter-spacing: 0.04em;
    color: #2c3e50;
    margin-bottom: 48px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 2px;
    margin: 16px auto 0;
    background: currentColor;
    opacity: 0.35;
    transform: scaleX(0.75);
    transition: transform var(--thor-transition), opacity var(--thor-transition);
}

.section-title:hover::after { opacity: 0.7; transform: scaleX(1); }

/* --------------------------------------------------------------------------
   Header — тъмна лента, лого вляво, меню в главни букви вдясно
   -------------------------------------------------------------------------- */
.site-header {
    background: var(--thor-blue);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.14);
    backdrop-filter: saturate(130%) blur(8px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.14em;
    color: var(--thor-white);
}

.brand img { height: 46px; width: auto; transition: transform var(--thor-transition), filter var(--thor-transition); }
.brand:hover { color: var(--thor-white); opacity: 0.9; }
.brand:hover img { transform: translateY(-1px) scale(1.04); filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.22)); }

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.main-nav a {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    color: var(--thor-white);
    padding: 10px 12px;
    display: block;
    position: relative;
    transition: color var(--thor-transition), transform var(--thor-transition);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 6px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--thor-transition);
}

.main-nav a:hover { color: #9fc3e0; transform: translateY(-2px); }
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav .admin-link { color: #9fc3e0; }

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid #444;
    color: var(--thor-white);
    font-size: 1.3rem;
    padding: 4px 12px;
    border-radius: 4px;
}

/* --------------------------------------------------------------------------
   Hero — снимка с тъмен слой, текст вляво, очертан бял бутон
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    color: var(--thor-white);
    padding: 210px 0 240px;
    overflow: hidden;
    isolation: isolate;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1s ease-in-out, transform 6s ease;
    z-index: 2;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 18, 22, 0.55), rgba(15, 18, 22, 0.55));
    z-index: 4;
}

.hero-text {
    position: relative;
    z-index: 5;
    max-width: 620px;
    animation: heroTextIn 0.9s var(--thor-easing) both;
}

.hero h1 {
    color: var(--thor-white);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-sub {
    font-style: italic;
    color: #dfe4e8;
    font-size: 1.02rem;
    margin-bottom: 36px;
}

.hero .container {
    position: relative;
    z-index: 6;
}

/* --------------------------------------------------------------------------
   Бутони
   -------------------------------------------------------------------------- */
.btn-thor {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.08em;
    background: var(--thor-navy);
    color: var(--thor-white);
    padding: 13px 34px;
    border: none;
    border-radius: 3px;
    box-shadow: 0 8px 18px rgba(30, 87, 133, 0.18);
    transition: background var(--thor-transition), color var(--thor-transition), box-shadow var(--thor-transition), transform var(--thor-transition);
}

.btn-thor:hover { background: var(--thor-blue); color: var(--thor-white); box-shadow: 0 14px 28px rgba(30, 87, 133, 0.25); transform: translateY(-2px); }
.btn-sm-thor { padding: 9px 22px; font-size: 0.9rem; }

.btn-outline-light {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--thor-white);
    border: 1px solid var(--thor-white);
    padding: 13px 36px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
    transition: background var(--thor-transition), color var(--thor-transition), box-shadow var(--thor-transition), transform var(--thor-transition);
}

.btn-outline-light:hover { background: var(--thor-white); color: var(--thor-dark); box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24); transform: translateY(-2px); }

.btn-outline-navy {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--thor-navy);
    border: 1px solid var(--thor-navy);
    padding: 11px 30px;
    border-radius: 3px;
    transition: background var(--thor-transition), color var(--thor-transition), box-shadow var(--thor-transition), transform var(--thor-transition);
}

.btn-outline-navy:hover { background: var(--thor-navy); color: var(--thor-white); box-shadow: 0 12px 26px rgba(30, 87, 133, 0.18); transform: translateY(-2px); }

.link-more {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    color: var(--thor-link);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--thor-transition), transform var(--thor-transition);
}

.link-more::after { content: "›"; transition: transform var(--thor-transition); }
.link-more:hover { transform: translateX(3px); }
.link-more:hover::after { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   Секции на началната страница
   -------------------------------------------------------------------------- */
.section-light { background: var(--thor-white); padding: 80px 0; }
.section-grey { background: var(--thor-bg-grey); padding: 80px 0; }

.icon-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1060px;
    margin: 0 auto;
}

.icon-card {
    background: var(--thor-white);
    box-shadow: var(--thor-shadow-soft);
    padding: 34px 32px 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-radius: 6px;
    transition: transform var(--thor-transition), box-shadow var(--thor-transition);
}

.icon-card:hover { transform: translateY(-8px); box-shadow: var(--thor-shadow-strong); }
.icon-card-icon { color: var(--thor-navy); transition: transform var(--thor-transition); }
.icon-card:hover .icon-card-icon { transform: translateY(-3px) scale(1.08); }
.icon-card h3 { font-size: 1.15rem; letter-spacing: 0.03em; margin: 0; color: #2c3e50; }
.icon-card p { color: var(--thor-grey); margin: 0; flex: 1; }

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    max-width: 1060px;
    margin: 0 auto;
}

.service-card {
    background: var(--thor-white);
    box-shadow: var(--thor-shadow-soft);
    padding: 0 26px 28px;
    text-align: center;
    border-radius: 6px;
    overflow: hidden;
    transition: transform var(--thor-transition), box-shadow var(--thor-transition);
}

.service-card:hover { transform: translateY(-8px); box-shadow: var(--thor-shadow-strong); }
.service-img { margin: 0 -26px 20px; aspect-ratio: 3 / 2; overflow: hidden; background: var(--thor-bg-grey); }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease, filter var(--thor-transition); }
.service-card:hover .service-img img { transform: scale(1.06); filter: saturate(1.04); }
.service-img.no-img { display: flex; align-items: center; justify-content: center; }
.service-img.no-img::after { content: "THOR"; font-family: var(--font-display); color: #cfd6dc; letter-spacing: 0.2em; font-size: 1.4rem; }
.service-card h3 { font-size: 1.1rem; color: #2c3e50; }
.service-card p { color: var(--thor-grey); font-size: 0.95rem; text-align: left; }

.application-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 56px;
    align-items: start;
}

.application-title { color: var(--thor-blue); font-size: 2.6rem; letter-spacing: 0.02em; }
.application-rule { border: 0; border-top: 1px solid var(--thor-line); margin: 18px 0 22px; }
.application-grid p { line-height: 1.75; }

.application-images { position: relative; min-height: 420px; }
.app-img-back { width: 78%; display: block; margin-left: auto; box-shadow: 0 10px 30px rgba(0,0,0,0.18); transition: transform var(--thor-transition), box-shadow var(--thor-transition); }
.app-img-front { position: absolute; width: 62%; left: 0; bottom: -30px; box-shadow: 0 14px 34px rgba(0,0,0,0.24); transition: transform var(--thor-transition), box-shadow var(--thor-transition); }
.application-images:hover .app-img-back { transform: translateY(-6px) scale(1.015); box-shadow: 0 18px 42px rgba(0,0,0,0.22); }
.application-images:hover .app-img-front { transform: translateY(-10px) scale(1.02); box-shadow: 0 22px 48px rgba(0,0,0,0.28); }

/* --------------------------------------------------------------------------
   Hero лента на вътрешните страници
   -------------------------------------------------------------------------- */
.page-hero {
    background:
        linear-gradient(rgba(12, 20, 30, 0.68), rgba(20, 34, 50, 0.68)),
        url('/images/hero.jpg') center / cover no-repeat,
        linear-gradient(115deg, #1a2632 0%, #2b3d50 100%);
    min-height: 190px;
    overflow: hidden;
}

.page-hero-title {
    display: flex;
    align-items: center;
    text-align: center;
}

.page-hero-title h1 {
    color: var(--thor-white);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    margin: 40px auto;
    max-width: 720px;
    animation: pageTitleIn 0.8s var(--thor-easing) both;
}

.category-hero .container {
    padding-top: 40px;
    padding-bottom: 42px;
}

.category-hero h1 {
    margin-bottom: 14px;
}

.category-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: #dfe4e8;
    line-height: 1.7;
    text-align: center;
    animation: pageTitleIn 0.9s var(--thor-easing) 0.08s both;
}

/* --------------------------------------------------------------------------
   Списък машини в категория — хоризонтални редове
   -------------------------------------------------------------------------- */
.machine-list-section { padding: 56px 0 72px; }

.machine-list-grid {
    display: grid;
    grid-auto-rows: 1fr;
}

.machine-row {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 44px;
    padding: 36px 0;
    transition: transform var(--thor-transition), box-shadow var(--thor-transition);
}

.machine-row:hover { transform: translateY(-4px); }

.machine-row + .machine-row { border-top: 1px solid var(--thor-line); }

.machine-row-img,
.machine-row-img a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.machine-row-img img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    transition: transform var(--thor-transition), filter var(--thor-transition);
}

.machine-row:hover .machine-row-img img { transform: scale(1.035); filter: drop-shadow(0 14px 20px rgba(30, 61, 92, 0.14)); }

.machine-row-body { display: flex; flex-direction: column; }
.machine-row-body h2 { font-size: 1.9rem; margin-bottom: 14px; }
.machine-row-body h2 a { color: #2c3e50; }
.machine-row-body h2 a:hover { color: var(--thor-link); }
.machine-row-desc { color: var(--thor-grey); line-height: 1.7; flex: 1; }
.machine-row-desc p { margin: 0 0 8px; }

.machine-row-rule {
    border: 0;
    border-top: 2px solid var(--thor-navy);
    width: 96px;
    margin: 20px 0;
}

.machine-row-cta { display: flex; justify-content: flex-end; margin-top: auto; }

/* --------------------------------------------------------------------------
   Детайлна страница — центрирана колона
   -------------------------------------------------------------------------- */
.machine-detail { padding: 44px 16px 80px; }

.detail-column { max-width: 780px; margin: 0 auto; }

.detail-intro { color: var(--thor-blue); }

.detail-heading {
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    color: #2c3e50;
    margin: 38px 0 14px;
    text-transform: uppercase;
}

.rich-text { line-height: 1.7; }
.rich-text ul { padding-left: 22px; }
.rich-text li { margin-bottom: 7px; }

.detail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 14px;
    margin: 30px 0;
}

.detail-gallery-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: opacity var(--thor-transition), transform var(--thor-transition), box-shadow var(--thor-transition);
}

.detail-gallery-item {
    border: 0;
    padding: 0;
    background: none;
    cursor: pointer;
    transition: transform var(--thor-transition);
}

.detail-gallery-item:hover { transform: translateY(-4px); }
.detail-gallery-item:hover img { opacity: 0.9; transform: scale(1.025); box-shadow: var(--thor-shadow-soft); }
.detail-gallery-item:focus-visible { outline: 3px solid var(--thor-navy); outline-offset: 3px; }

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 64px 80px 40px;
    background: rgba(0, 0, 0, 0.9);
}

.gallery-lightbox.open { display: flex; animation: lightboxFade 0.22s ease both; }
.gallery-lightbox-content { max-width: min(1200px, 100%); max-height: 100%; margin: 0; text-align: center; }
.gallery-lightbox-image { display: block; max-width: 100%; max-height: calc(100vh - 120px); margin: 0 auto; object-fit: contain; animation: imagePop 0.28s var(--thor-easing) both; }
.gallery-lightbox-counter { margin-top: 12px; color: var(--thor-white); }

.gallery-lightbox-close,
.gallery-lightbox-nav {
    position: absolute;
    border: 0;
    background: rgba(0, 0, 0, 0.45);
    color: var(--thor-white);
    cursor: pointer;
}

.gallery-lightbox-close { top: 16px; right: 22px; padding: 2px 14px; font-size: 2.5rem; line-height: 1; }
.gallery-lightbox-nav { top: 50%; width: 52px; height: 72px; transform: translateY(-50%); font-size: 3.5rem; line-height: 1; }
.gallery-lightbox-prev { left: 16px; }
.gallery-lightbox-next { right: 16px; }
.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover { background: var(--thor-navy); }
body.gallery-open { overflow: hidden; }

@media (max-width: 600px) {
    .gallery-lightbox { padding: 58px 12px 70px; }
    .gallery-lightbox-nav { top: auto; bottom: 10px; width: 48px; height: 48px; font-size: 2.5rem; transform: none; }
}

.video-frame { aspect-ratio: 16 / 9; background: #0e141a; margin: 26px 0; }
.video-frame iframe { width: 100%; height: 100%; border: 0; }

.rich-text table,
.characteristics table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.rich-text table td,
.rich-text table th {
    border: 1px solid var(--thor-line);
    padding: 10px 16px;
}

.rich-text table tr:nth-child(even) { background: #f5f7f9; }
.rich-text table th,
.rich-text table tr:first-child td {
    background: #fbfcfd;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #2c3e50;
    text-align: center;
}

.detail-catalog { margin-top: 36px; text-align: center; }

/* --------------------------------------------------------------------------
   Контакти
   -------------------------------------------------------------------------- */
.contact-wrap { max-width: 720px; margin: 0 auto; padding: 64px 0; }
.contact-card { background: var(--thor-white); box-shadow: var(--thor-shadow-soft); padding: 36px 40px; border-radius: 6px; transition: transform var(--thor-transition), box-shadow var(--thor-transition); }
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--thor-shadow-strong); }
.contact-list { list-style: none; padding: 0; margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }

/* --------------------------------------------------------------------------
   Footer — синьо, три колони: връзки / лого / контакти
   -------------------------------------------------------------------------- */
.site-footer { background: var(--thor-blue); color: #d7e2ea; margin-top: auto; box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08); }

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    padding: 52px 12px 40px;
    align-items: start;
}

.footer-col h4 {
    color: var(--thor-white);
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.footer-nav { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }

.footer-nav a {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: #cfdde8;
    display: inline-block;
    transition: color var(--thor-transition), transform var(--thor-transition);
}

.footer-nav a:hover { color: var(--thor-white); transform: translateX(3px); }

.footer-logo-col { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer-logo-col img { height: 72px; }
.footer-brand { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.16em; font-size: 1.5rem; color: var(--thor-white); }

.footer-contact { text-align: right; line-height: 1.9; }
.footer-contact a, .footer-contact button { color: #cfdde8; background: none; border: none; padding: 0; transition: color var(--thor-transition); }
.footer-contact a:hover { color: var(--thor-white); }

.footer-bottom {
    background: rgba(0, 0, 0, 0.14);
    padding: 14px 0;
    font-size: 0.85rem;
    text-align: center;
}

/* --------------------------------------------------------------------------
   Админ
   -------------------------------------------------------------------------- */
.admin-body { background: var(--thor-bg-grey); }
.admin-main { padding: 30px 12px 60px; }
.admin-head { display: flex; justify-content: space-between; align-items: center; margin: 8px 0 24px; flex-wrap: wrap; gap: 12px; }
.admin-form { background: var(--thor-white); border: 1px solid var(--thor-line); padding: 28px; max-width: 980px; }
.admin-thumb { width: 64px; height: 48px; object-fit: cover; border: 1px solid var(--thor-line); }
.admin-thumb-lg { width: 180px; height: 135px; object-fit: cover; border: 1px solid var(--thor-line); }
.gallery-admin { display: flex; gap: 12px; flex-wrap: wrap; }
.gallery-admin-item { position: relative; }
.gallery-admin-item img { width: 110px; height: 82px; object-fit: cover; border: 1px solid var(--thor-line); }
.gallery-admin-item button { position: absolute; top: 4px; right: 4px; padding: 0 7px; }
.empty-note { color: var(--thor-grey); padding: 24px 0; }

.img-placeholder {
    font-family: var(--font-display);
    color: #cfd6dc;
    font-size: 1.6rem;
    letter-spacing: 0.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    background: var(--thor-bg-grey);
}

/* --------------------------------------------------------------------------
   Модерни анимации и появяване при скрол
   -------------------------------------------------------------------------- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s var(--thor-easing);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes heroTextIn {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pageTitleIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes lightboxFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes imagePop {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

/* --------------------------------------------------------------------------
   Мобилни
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
    .nav-toggle { display: block; }

    .main-nav { display: none; width: 100%; }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding-bottom: 12px; }
    .main-nav a { border-bottom: 1px solid #33363c; }

    .header-inner { flex-wrap: wrap; }
    .hero { padding: 72px 0 84px; }

    .machine-row { grid-template-columns: 1fr; gap: 20px; }
    .machine-row-cta { justify-content: flex-start; }

    .application-grid { grid-template-columns: 1fr; }
    .application-images { min-height: 0; }
    .app-img-front { position: static; width: 80%; margin-top: 14px; }

    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-contact { text-align: center; }
    .footer-nav { align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .reveal-on-scroll { opacity: 1; transform: none; }
    .hero-slide { transform: none; }
}
