/* =========================================================
   🔵 COMPONENTS
   Újrahasználható UI elemek
   ========================================================= */

/* =========================================================
   🔵 ORION DROPDOWN (MEGA STYLE)
   ========================================================= */

.orion-dropdown {
    position: relative;
}

/* alap dropdown */
.orion-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;

    background: #000;
    border: none;
    padding: 0;
    min-width: 260px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 1000;
}

/* hover-re nyílik */
.orion-dropdown:hover .orion-dropdown-menu {
    display: block;
}

/* item */
.orion-dropdown-menu .dropdown-item {
    color: white!important;
    padding: 12px 20px;
    border-bottom: 1px solid #222;
    transition: 0.2s;
}

/* hover item */
.orion-dropdown-menu .dropdown-item:hover {
    background: #111c44;
    color: #4c7dff;
}


/* ORION DROPDOWN */
.orion-dropdown {
    position: relative;
}

.orion-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;

    background: #000;
    border: none;
    min-width: 260px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 1000;
}

.orion-dropdown:hover .orion-dropdown-menu {
    display: block;
}

.orion-dropdown-menu .dropdown-item {
    color: white!important;
    padding: 12px 20px;
    border-bottom: 1px solid #222;
}

.orion-dropdown-menu .dropdown-item:hover {
    background: #111c44;
    color: #4c7dff;
}

/* -----------------------------
   🟦 LANG SWITCHER
   ----------------------------- */
.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    min-width: 145px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.lang-toggle:hover {
    border-color: #bfbfbf;
}

.flag {
    width: 22px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 3px;
    flex-shrink: 0;
}

.flag svg {
    width: 100%;
    height: 100%;
    display: block;
}

.lang-label {
    flex: 1;
    text-align: left;
}

.lang-caret {
    font-size: 12px;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    padding: 6px;
    display: none;
    z-index: 9999;
}

.lang-switcher.open .lang-menu {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #222;
    font-size: 14px;
    transition: background .2s ease;
}

.lang-option:hover {
    background: #f4f6f8;
}

.lang-option.active {
    background: #eef4ff;
    font-weight: 600;
}


/* -----------------------------
   🟦 CARD SYSTEM (ORION CORE)
   ----------------------------- */

.card-tech {
    background: #111c44;
    border: 1px solid rgba(255,255,255,0.15);
    transition: 0.3s;
    color: white;
}

/* hover animáció */
.card-tech:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}


/* -----------------------------
   🟦 BUTTONS
   ----------------------------- */

.btn-orion {
    border: 1px solid #4c7dff;
    color: white;
}

.btn-orion:hover {
    background: #4c7dff;
    color: white;
}


/* -----------------------------
   🟦 TIMELINE
   ----------------------------- */

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 50px;
}

/* alap vonal */
.timeline::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    height: 2px;
    background: #4c7dff;
}

.timeline-point {
    text-align: center;
    position: relative;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: #4c7dff;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 10px;
}


.manufacturing-showcase {
    background: #212529;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
}

.contact i {
    font-size: 20px;
    color: #0d6efd;
}

.contact-item {
    font-size: 16px;
}