/* ========== Global Styles ========== */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Fjalla One", sans-serif;
    line-height: 1.6;
    color: #b8b8b8;
    background-color: #1E1C1D;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* ========== Custom Scrollbar ========== */
/* For Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1a1818;
    border-left: 1px solid rgba(217, 181, 108, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d9b56c 0%, #b8965a 100%);
    border-radius: 6px;
    border: 2px solid #1a1818;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #e6c57d 0%, #d9b56c 100%);
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #d9b56c #1a1818;
}


/* ========== Header ========== */
header {
    background-color: #1E1C1D;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    flex-wrap: wrap;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right,
            transparent 0%,
            #d9b56c 40%,
            #d9b56c 60%,
            transparent 100%);
}

header img::hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.logo {
    width: 80px;
    height: auto;
    display: block;
}

.header-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-email {
    color: #d9b56c;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.header-email:hover {
    color: #fff;
}

.cta-btn {
    padding: 10px 25px;
    background: #d9b56c;
    color: #1E1C1D;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(217, 181, 108, 0.3);
}

/* ========== Navigation ========== */
nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #b8b8b8;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #d9b56c;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover {
    color: #d9b56c;
}

nav a:hover::after {
    width: 100%;
}

nav a.active::after {
    width: 100%;
}

/* ========== Main Content ========== */
#kamion {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

#kamion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/kamiontest.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(70%);
    z-index: 0;
}

#kamion::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 28, 29, 0.7);
    z-index: 1;
}

.hero {
    text-align: center;
    padding: 60px 20px;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #d9b56c;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #b8b8b8;
    margin-bottom: 20px;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-description {
    font-size: 1.1rem;
    color: #b8b8b8;
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #d9b56c;
    color: #d9b56c;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #d9b56c;
    transition: left 0.4s ease;
    z-index: -1;
}

.hero-btn:hover {
    color: #1E1C1D;
}

.hero-btn:hover::before {
    left: 0;
}

.hero-btn-secondary {
    background: #d9b56c;
    color: #1E1C1D;
    animation-delay: 0.9s;
}

.hero-btn-secondary::before {
    background: #fff;
}

.hero-btn-secondary:hover {
    color: #1E1C1D;
}

/* ========== Animations ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== Service Icons ========== */
.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon svg {
    transition: transform 0.3s ease;
}

.feature-card:hover .service-icon svg {
    transform: scale(1.1);
}


/* ========== About Section ========== */
.about-section {
    padding: 80px 20px;
    background-color: #1E1C1D;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    color: #d9b56c;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 900;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-intro {
    font-size: 1.2rem;
    color: #b8b8b8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-intro.visible {
    opacity: 1;
    transform: translateY(0);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(217, 181, 108, 0.2);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease, all 0.4s ease;
}

.feature-card:nth-child(1).visible {
    transition-delay: 0.1s;
}

.feature-card:nth-child(2).visible {
    transition-delay: 0.3s;
}

.feature-card:nth-child(3).visible {
    transition-delay: 0.5s;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 181, 108, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #d9b56c;
    box-shadow: 0 10px 30px rgba(217, 181, 108, 0.2);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #d9b56c;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: #b8b8b8;
    line-height: 1.6;
    font-size: 1rem;
}

/* ========== Company Info Section ========== */
.company-info-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1818 0%, #1E1C1D 50%, #1a1818 100%);
    position: relative;
}

.company-content {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.company-image-wrapper {
    flex: 0 0 400px;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.company-image-wrapper.visible {
    opacity: 1;
    transform: translateX(0);
}

.company-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #d9b56c;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    filter: brightness(0.8) drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.decorative-lines {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 300px;
    height: 350px;
    opacity: 0.6;
    z-index: -1;
}

.company-text {
    flex: 1;
    min-width: 300px;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.company-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.company-text h2 {
    font-size: 2.5rem;
    color: #d9b56c;
    margin-bottom: 20px;
    font-weight: 900;
}

.company-description {
    font-size: 1.1rem;
    color: #b8b8b8;
    line-height: 1.8;
    margin-bottom: 40px;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-item {
    display: flex;
    gap: 15px;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(217, 181, 108, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(217, 181, 108, 0.05), rgba(217, 181, 108, 0.15));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item>.stat-icon,
.stat-item>.stat-content {
    position: relative;
    z-index: 1;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-item:nth-child(1).visible {
    transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.stat-item:nth-child(2).visible {
    transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}

.stat-item:nth-child(3).visible {
    transition: opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s;
}

.stat-item:nth-child(4).visible {
    transition: opacity 0.6s ease 0.7s, transform 0.6s ease 0.7s;
}

.stat-item:hover {
    border-color: #d9b56c;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(217, 181, 108, 0.2);
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-item:nth-child(1).visible {
    transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s, all 0.4s ease;
}

.stat-item:nth-child(2).visible {
    transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s, all 0.4s ease;
}

.stat-item:nth-child(3).visible {
    transition: opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s, all 0.4s ease;
}

.stat-item:nth-child(4).visible {
    transition: opacity 0.6s ease 0.7s, transform 0.6s ease 0.7s, all 0.4s ease;
}

.stat-icon {
    font-size: 2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
}

.stat-content h4 {
    color: #d9b56c;
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.stat-content p {
    color: #b8b8b8;
    font-size: 0.95rem;
    margin: 0;
}

/* ========== Footer ========== */
footer {
    background-color: #1E1C1D;
    padding: 20px;
    text-align: center;
}

footer p {
    font-size: 0.95rem;
    color: #d9b56c;
}

/* ========== Destinations Section ========== */
.destinations-section {
    padding: 80px 20px;
    background-color: #1a1818;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.destination-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(217, 181, 108, 0.2);
    padding: 30px 20px;
    text-align: center;
    font-size: 1.3rem;
    color: #d9b56c;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.destination-item:hover {
    transform: translateY(-5px);
    border-color: #d9b56c;
    box-shadow: 0 5px 20px rgba(217, 181, 108, 0.2);
}

@keyframes shine {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ========== Why Section ========== */
.why-section {
    padding: 80px 20px;
    background-color: #1E1C1D;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(217, 181, 108, 0.2);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    border-color: #d9b56c;
    box-shadow: 0 5px 20px rgba(217, 181, 108, 0.2);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-icon svg {
    transition: transform 0.3s ease;
}

.why-item:hover .why-icon svg {
    transform: scale(1.1);
}

.why-item h3 {
    color: #d9b56c;
    font-size: 1.2rem;
    font-weight: 600;
}

/* ========== CTA Section ========== */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a1818 0%, #1E1C1D 50%, #1a1818 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #d9b56c;
    margin-bottom: 30px;
    font-weight: 900;
}

/* ========== Page Header ========== */
.page-header {
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, #1a1818 0%, #1E1C1D 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    color: #d9b56c;
    margin-bottom: 20px;
    font-weight: 900;
}

.page-intro {
    font-size: 1.2rem;
    color: #b8b8b8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========== Services List Section ========== */
.services-list-section {
    padding: 80px 20px;
    background-color: #1E1C1D;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.service-list-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(217, 181, 108, 0.2);
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-list-item:hover {
    transform: translateX(10px);
    border-color: #d9b56c;
    box-shadow: 0 5px 20px rgba(217, 181, 108, 0.2);
}

.service-number {
    font-size: 2.5rem;
    color: #d9b56c;
    font-weight: 900;
    min-width: 60px;
    opacity: 0.5;
}

.service-content h3 {
    color: #d9b56c;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-content p {
    color: #b8b8b8;
    line-height: 1.6;
}

/* ========== Specialized Section ========== */
.specialized-section {
    padding: 80px 20px;
    background-color: #1E1C1D;
}

.specialized-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.specialized-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(217, 181, 108, 0.2);
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.specialized-card:hover {
    transform: translateY(-10px);
    border-color: #d9b56c;
    box-shadow: 0 10px 30px rgba(217, 181, 108, 0.2);
}

.specialized-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.specialized-icon svg {
    transition: transform 0.3s ease;
}

.specialized-card:hover .specialized-icon svg {
    transform: scale(1.1);
}

.specialized-card h3 {
    color: #d9b56c;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.specialized-card p {
    color: #b8b8b8;
    line-height: 1.6;
}

.equipment-note {
    background: rgba(217, 181, 108, 0.1);
    border: 2px solid #d9b56c;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.equipment-note p {
    color: #d9b56c;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 600;
}

/* ========== About Content Section ========== */
.about-content-section {
    padding: 80px 20px;
    background-color: #1E1C1D;
}

.about-text-block {
    max-width: 800px;
    margin: 0 auto 60px;
}

.about-text-block p {
    font-size: 1.2rem;
    color: #b8b8b8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text-block2 {
    max-width: 800px;
    margin: 0 auto 60px;
    padding-top: 60px;
}

.about-text-block2 p {
    font-size: 1.2rem;
    color: #b8b8b8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-title {
    font-size: 2.5rem;
    color: #d9b56c;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 900;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(217, 181, 108, 0.2);
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: #d9b56c;
    box-shadow: 0 10px 30px rgba(217, 181, 108, 0.2);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.value-icon svg {
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon svg {
    transform: scale(1.1);
}

.value-card h3 {
    color: #d9b56c;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.value-card p {
    color: #b8b8b8;
    line-height: 1.6;
}

/* ========== Contact Section ========== */
.contact-section {
    padding: 80px 20px;
    background-color: #1E1C1D;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container h2,
.contact-info-container h2 {
    font-size: 2rem;
    color: #d9b56c;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #d9b56c;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(217, 181, 108, 0.3);
    border-radius: 5px;
    color: #b8b8b8;
    font-family: "Fjalla One", sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group select {
    cursor: pointer;
}

/* Custom select dropdown styling */
.form-group select option {
    background-color: #1E1C1D;
    color: #b8b8b8;
    padding: 10px;
}

.form-group select option:hover,
.form-group select option:checked {
    background-color: #d9b56c;
    color: #1E1C1D;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d9b56c;
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    padding: 15px 40px;
    background: #d9b56c;
    color: #1E1C1D;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Fjalla One", sans-serif;
}

.submit-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(217, 181, 108, 0.3);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(217, 181, 108, 0.2);
    padding: 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    border-color: #d9b56c;
    transform: translateX(5px);
}

a {
    text-decoration: none;
}

a svg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.contact-info-icon {
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-item h4 {
    color: #d9b56c;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-info-item p {
    color: #b8b8b8;
    margin: 0;
}

/* ========== Form Validation Styles ========== */
.input-error {
    border-color: #ff6b6b !important;
    background: rgba(255, 107, 107, 0.05) !important;
    animation: shake 0.4s ease;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: slideDown 0.3s ease;
}

.error-message::before {
    content: '⚠';
    font-size: 1rem;
    color: #ff6b6b;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}