/* ===== CSS Reset & Base ===== */
/*
   NOTE: All theme colors, fonts, spacing, and other variables
   are now defined in theme-config.css
   Edit that file to change the website's appearance!
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-family);
    line-height: var(--line-height-base);
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* ===== Utilities ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    letter-spacing: 1px;
    text-align: center;
}

.section__title--white {
    color: var(--text-light);
}

.section__subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn--primary {
    background-color: var(--accent-color);
    color: var(--text-light);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn--secondary:hover {
    background-color: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-base);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo__icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.logo__icon span {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo__text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

/* Navigation Menu */
.nav__list {
    display: flex;
    gap: var(--spacing-md);
    list-style: none;
}

.nav__link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all var(--transition-fast);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link.active-link {
    color: var(--accent-color);
}

.nav__link:hover::after,
.nav__link.active-link::after {
    width: 80%;
}

/* Mobile Navigation */
.nav__toggle,
.nav__close {
    display: none;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: var(--hero-height);
    min-height: var(--hero-min-height);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(var(--hero-gradient-angle), var(--hero-bg-start) 0%, var(--hero-bg-middle) 50%, var(--hero-bg-end) 100%);
    /* Blueprint/Technical drawing pattern - professional architectural look */
    background-image:
        /* Main grid lines */
        url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="blueprint" width="80" height="80" patternUnits="userSpaceOnUse"><path d="M 80 0 L 0 0 0 80" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/><path d="M 40 0 L 40 80 M 0 40 L 80 40" fill="none" stroke="rgba(255,255,255,0.04)" stroke-width="1" stroke-dasharray="2,3"/><circle cx="0" cy="0" r="1.5" fill="rgba(255,255,255,0.15)"/><circle cx="40" cy="0" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="0" r="1.5" fill="rgba(255,255,255,0.15)"/><circle cx="0" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="0" cy="80" r="1.5" fill="rgba(255,255,255,0.15)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1.5" fill="rgba(255,255,255,0.15)"/></pattern></defs><rect width="80" height="80" fill="url(%23blueprint)"/></svg>'),
        linear-gradient(var(--hero-gradient-angle), var(--hero-bg-start) 0%, var(--hero-bg-middle) 50%, var(--hero-bg-end) 100%);
    margin-top: var(--header-height);
    padding-top: var(--hero-padding-top);
    padding-bottom: var(--hero-padding-bottom);
    z-index: 1;
    transition: opacity 0.1s ease, transform 0.1s ease;
    will-change: opacity, transform, z-index;
}

/* Hero overlay (optional dark overlay) */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, var(--hero-bg-overlay-opacity));
    z-index: 0;
    pointer-events: none;
}

.hero__container {
    position: relative;
    z-index: 2;
    text-align: var(--hero-text-align);
    max-width: var(--hero-content-max-width);
    padding: 0 var(--spacing-md);
}

.hero__content {
    transition: opacity 0.1s ease;
    will-change: opacity;
}

.hero__title {
    font-size: var(--hero-title-size);
    font-weight: var(--hero-title-weight);
    color: var(--hero-text-color);
    margin-bottom: var(--spacing-md);
    line-height: var(--hero-title-line-height);
    letter-spacing: var(--hero-title-letter-spacing);
    text-shadow: var(--hero-text-shadow);
    animation: fadeInUp 0.8s ease;
}

.hero__subtitle {
    font-size: var(--hero-subtitle-size);
    font-weight: var(--hero-subtitle-weight);
    color: var(--hero-text-color);
    margin-bottom: var(--spacing-lg);
    opacity: var(--hero-subtitle-opacity);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero__content .btn {
    animation: fadeInUp 0.8s ease 0.4s backwards;
    background-color: var(--hero-button-bg);
    color: var(--hero-button-text);
    padding: var(--hero-button-padding);
    border-radius: var(--hero-button-radius);
    box-shadow: var(--hero-button-shadow);
}

/* ===== Services Section ===== */
.services {
    position: relative;
    z-index: 10;
    background-color: var(--bg-light);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.service__card {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: var(--spacing-lg);
    border-radius: 8px;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.service__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service__icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--spacing-md);
    color: var(--accent-color);
}

.service__icon svg {
    width: 100%;
    height: 100%;
}

.service__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-light);
}

.service__description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== About Section ===== */
.about {
    position: relative;
    z-index: 10;
    background-color: var(--bg-white);
}

.about__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-top: var(--spacing-lg);
}

.about__content {
    text-align: left;
}

.about__content .section__title {
    text-align: left;
}

.about__text p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about__text p strong {
    color: var(--primary-color);
}

.about__highlight {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    font-size: 1.1rem;
}

.about__image {
    height: 100%;
    min-height: 400px;
}

.image__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0e0e0 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    box-shadow: var(--shadow-md);
}

.image__placeholder svg {
    width: 80px;
    height: 80px;
    opacity: 0.5;
}

/* ===== References Section ===== */
.references {
    position: relative;
    z-index: 10;
    background-color: var(--bg-light);
}

.project {
    margin-bottom: var(--spacing-xl);
}

.project:last-child {
    margin-bottom: 0;
}

.project__title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 3px solid var(--accent-color);
}

.project__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.project__grid--three {
    grid-template-columns: repeat(3, 1fr);
}

.project__image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.project__image:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.project__image .image__placeholder {
    min-height: 250px;
}

/* ===== Contact Section ===== */
.contact {
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--text-light);
}

.contact__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact__info .section__title {
    text-align: left;
}

.contact__description {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact__item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.contact__icon {
    width: 40px;
    height: 40px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.contact__icon svg {
    width: 100%;
    height: 100%;
}

.contact__item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--accent-light);
}

.contact__item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact__item a:hover {
    color: var(--accent-light);
}

.contact__item p {
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Form */
.contact__form {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.form__group {
    margin-bottom: var(--spacing-md);
}

.form__input {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-family: var(--font-family);
    color: var(--text-dark);
    background-color: var(--bg-white);
    border: 2px solid transparent;
    border-radius: 4px;
    transition: all var(--transition-base);
}

.form__input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact__form .btn {
    width: 100%;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer__col .logo {
    margin-bottom: var(--spacing-sm);
}

.footer__description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-light);
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer__spacer {
    margin-bottom: var(--spacing-sm);
}

.footer__bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   RESPONSIVE DESIGN - 6 Breakpoints
   =====================================================

   1. Extra Large: 1400px+ (4K, Ultra Wide)
   2. Large: 1200px-1399px (Standard Desktop)
   3. Medium: 992px-1199px (Small Desktop/Laptop)
   4. Tablet: 768px-991px (iPad Landscape)
   5. Mobile: 576px-767px (Large Phone)
   6. Small: 320px-575px (Small Phone)

   ===================================================== */

/* ===== 1. EXTRA LARGE SCREENS (1400px+) ===== */
@media screen and (min-width: 1400px) {
    :root {
        --container-width: 1400px;
        --font-size-base: 18px;
        --spacing-xl: 8rem;
    }

    .hero__title {
        font-size: 5rem;
    }

    .section__title {
        font-size: 3rem;
    }
}

/* ===== 2. LARGE SCREENS (1200px-1399px) ===== */
/* Default styles - no media query needed */

/* ===== 3. MEDIUM SCREENS (992px-1199px) ===== */
@media screen and (max-width: 1199px) {
    .container {
        max-width: 100%;
        padding: 0 var(--spacing-md);
    }

    .hero__title {
        font-size: 4rem;
    }

    .section__title {
        font-size: 2.25rem;
    }
}

/* ===== 4. TABLET (768px-991px) ===== */
@media screen and (max-width: 991px) {
    :root {
        --spacing-lg: 3.5rem;
        --spacing-xl: 5rem;
    }

    /* Hero - Center aligned on tablet */
    .hero__title {
        font-size: 3rem;
        font-weight: 800;
        text-align: center;
    }

    .hero__subtitle {
        font-size: 1.25rem;
        text-align: center;
    }

    .hero__container {
        text-align: center;
    }

    .section__title {
        font-size: 2rem;
    }

    /* Grids - 2 columns */
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project__grid--three {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Single column layouts */
    .about__grid,
    .contact__wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== 5. MOBILE (576px-767px) ===== */
@media screen and (max-width: 767px) {
    :root {
        --spacing-lg: 2.5rem;
        --spacing-xl: 3.5rem;
        --font-size-base: 15px;
    }

    .container {
        padding: 0 1.5rem;
    }

    /* Mobile Navigation */
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--primary-color);
        padding: var(--spacing-lg) var(--spacing-md);
        transition: right var(--transition-base);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .nav__link {
        color: var(--text-light);
        font-size: 1.125rem;
    }

    .nav__link::after {
        background-color: var(--accent-color);
    }

    .nav__toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 100;
    }

    .toggle__line {
        width: 28px;
        height: 3px;
        background-color: var(--primary-color);
        border-radius: 2px;
        transition: all var(--transition-base);
    }

    .nav__close {
        display: block;
        position: absolute;
        top: var(--spacing-sm);
        right: var(--spacing-sm);
        font-size: 2rem;
        color: var(--text-light);
        cursor: pointer;
    }

    /* Hero - Centered, smaller */
    .hero {
        height: 85vh;
        min-height: 550px;
        /* Lighter blueprint pattern on mobile */
        background-image:
            url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="blueprint" width="80" height="80" patternUnits="userSpaceOnUse"><path d="M 80 0 L 0 0 0 80" fill="none" stroke="rgba(255,255,255,0.04)" stroke-width="1"/><circle cx="0" cy="0" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="80" cy="0" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="0" cy="80" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="80" height="80" fill="url(%23blueprint)"/></svg>'),
            linear-gradient(var(--hero-gradient-angle), var(--hero-bg-start) 0%, var(--hero-bg-middle) 50%, var(--hero-bg-end) 100%);
    }

    .hero__title {
        font-size: 2.5rem;
        font-weight: 700;
        letter-spacing: -1px;
        text-align: center;
    }

    .hero__subtitle {
        font-size: 1.125rem;
        text-align: center;
    }

    .hero__container {
        text-align: center;
        padding: 0 1.5rem;
    }

    .section__title {
        font-size: 1.75rem;
    }

    /* All grids - single column */
    .services__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .project__grid,
    .project__grid--three {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    /* Service cards - reduce padding */
    .service__card {
        padding: var(--spacing-md);
    }

    /* Buttons - touch friendly */
    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
        min-height: 48px;
    }

    /* Form inputs - touch friendly */
    .form__input {
        min-height: 48px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .form__textarea {
        min-height: 120px;
    }
}

/* ===== 6. SMALL MOBILE (320px-575px) ===== */
@media screen and (max-width: 575px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
        --spacing-md: 1.5rem;
        --font-size-base: 14px;
    }

    .container {
        padding: 0 1rem;
    }

    /* Smaller header */
    .nav {
        height: 70px;
    }

    .logo__icon {
        width: 38px;
        height: 38px;
    }

    .logo__icon span {
        font-size: 1.25rem;
    }

    .logo__text {
        font-size: 1.25rem;
    }

    /* Hero - Compact for small screens */
    .hero {
        margin-top: 70px;
        height: 80vh;
        min-height: 500px;
        /* Minimal pattern on small mobile for performance */
        background-image:
            url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="minimal" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="0" cy="0" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="100" cy="0" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="0" cy="100" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="100" cy="100" r="1" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23minimal)"/></svg>'),
            linear-gradient(var(--hero-gradient-angle), var(--hero-bg-start) 0%, var(--hero-bg-middle) 50%, var(--hero-bg-end) 100%);
    }

    .hero__title {
        font-size: 2rem;
        font-weight: 700;
        letter-spacing: -1px;
        line-height: 1.1;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__container {
        padding: 0 1rem;
    }

    /* Typography */
    .section__title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .section__subtitle {
        font-size: 0.95rem;
    }

    /* Buttons - smaller but still touch-friendly */
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        min-height: 44px;
    }

    /* Service cards */
    .service__card {
        padding: 1.5rem;
    }

    .service__title {
        font-size: 1.25rem;
    }

    .service__description {
        font-size: 0.95rem;
    }

    .service__icon {
        width: 50px;
        height: 50px;
    }

    /* Project titles */
    .project__title {
        font-size: 1.25rem;
    }

    /* About section */
    .about__text p {
        font-size: 0.95rem;
    }

    /* Contact section */
    .contact__description {
        font-size: 0.95rem;
    }

    .contact__item h4 {
        font-size: 1rem;
    }

    .contact__item {
        font-size: 0.9rem;
    }

    /* Footer */
    .footer__title {
        font-size: 1.1rem;
    }

    .footer__list li,
    .footer__description {
        font-size: 0.9rem;
    }

    .footer__bottom {
        font-size: 0.85rem;
    }

    /* Form */
    .form__input,
    .form__textarea {
        padding: 0.875rem;
        font-size: 16px; /* Prevents iOS zoom */
    }

    /* Image placeholders */
    .image__placeholder svg {
        width: 60px;
        height: 60px;
    }
}

/* ===== EXTRA SMALL MOBILE (320px) - Safety net ===== */
@media screen and (max-width: 360px) {
    .hero__title {
        font-size: 1.75rem;
    }

    .section__title {
        font-size: 1.35rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .service__card {
        padding: 1.25rem;
    }
}

/* ===== LANDSCAPE ORIENTATION FIXES ===== */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 400px;
        padding: 3rem 0;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }
}

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

    .hero__title,
    .hero__subtitle,
    .hero__content .btn {
        animation: none;
    }
}
